├── assets ├── main.scss ├── 404.json ├── datadog-logo.png ├── favicon-16x16.png ├── favicon-32x32.png ├── logo-192x192.png ├── logo-512x512.png ├── mstile-70x70.png ├── old-favicon.ico ├── mstile-144x144.png ├── mstile-150x150.png ├── mstile-310x150.png ├── mstile-310x310.png ├── apple-touch-icon.png └── register-show-hidden-releases-handler.js ├── .ruby-version ├── runtime.txt ├── _layouts ├── page.html ├── product-tags.html ├── product-list.html └── schema.html ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── feature_request.md │ ├── new_product_suggestion.md │ └── report_incorrect_details.md ├── workflows │ ├── check-links.yml │ └── auto-merge-release-updates.yml ├── dependabot.yml └── config.yml ├── robots.txt ├── package.json ├── schema.html ├── .gitmodules ├── _includes ├── nav_footer_custom.html ├── custom-column-th.html ├── css │ └── activation.scss.liquid ├── product-icon.html ├── custom-column-td.html ├── identifiers.html ├── variables.html └── head_custom.html ├── netlify.toml ├── .gitignore ├── .editorconfig ├── browserconfig.xml ├── humans.txt ├── manifest.json ├── products ├── steamos.md ├── ckeditor.md ├── goaccess.md ├── amazon-cdk.md ├── bun.md ├── visionos.md ├── jreleaser.md ├── apache-lucene.md ├── twig.md ├── opentofu.md ├── centos-stream.md ├── pnpm.md ├── dce.md ├── phpbb.md ├── sourcegraph.md ├── dependencytrack.md ├── redmine.md ├── calico.md ├── apache-http-server.md ├── quasar.md ├── eurolinux.md ├── craft-cms.md ├── memcached.md ├── ovirt.md ├── micronaut.md ├── privatebin.md ├── openvpn.md ├── yarn.md ├── cert-manager.md ├── tails.md ├── almalinux.md ├── joomla.md ├── nuxt.md ├── isc-dhcp.md ├── windows-embedded.md ├── apache-flink.md ├── readynas.md ├── logstash.md ├── kibana.md ├── pci-dss.md ├── jhipster.md ├── openwrt.md ├── vmware-photon.md ├── sqlite.md ├── ros.md ├── varnish.md ├── roundcube.md ├── node-feature-discovery.md ├── centos.md ├── mageia.md ├── xcp-ng.md ├── kyverno.md ├── grails.md ├── hbase.md ├── vuetify.md ├── nextjs.md ├── robo.md ├── gorilla.md ├── bazel.md ├── ipados.md ├── composer.md ├── mssharepoint.md ├── neos.md ├── proxmox-ve.md ├── splunk.md ├── coder.md ├── log4j.md ├── chef-infra-server.md ├── contour.md ├── etcd.md ├── solr.md ├── flux.md ├── zookeeper.md ├── react.md ├── coldfusion.md ├── unrealircd.md ├── elasticsearch.md ├── bootstrap.md ├── ruby-on-rails.md ├── watchos.md ├── rockylinux.md ├── lua.md ├── postmarketos.md ├── beats.md ├── jekyll.md └── hashicorp-vault.md ├── _auto └── deploy.sh ├── Gemfile ├── LICENSE ├── sitemap.xml ├── _redirects ├── _plugins └── generate-tag-pages.rb └── pages └── help └── identifiers-needed.md /assets/main.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.1 2 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | 3.8 2 | -------------------------------------------------------------------------------- /assets/404.json: -------------------------------------------------------------------------------- 1 | { 2 | "message": "Product not found" 3 | } -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {{content}} 6 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: endoflife-date 2 | open_collective: endoflife-date 3 | -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-Agent: * 2 | Allow: / 3 | Sitemap: https://endoflife.date/sitemap.xml 4 | -------------------------------------------------------------------------------- /assets/datadog-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/endoflife.date/master/assets/datadog-logo.png -------------------------------------------------------------------------------- /assets/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/endoflife.date/master/assets/favicon-16x16.png -------------------------------------------------------------------------------- /assets/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/endoflife.date/master/assets/favicon-32x32.png -------------------------------------------------------------------------------- /assets/logo-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/endoflife.date/master/assets/logo-192x192.png -------------------------------------------------------------------------------- /assets/logo-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/endoflife.date/master/assets/logo-512x512.png -------------------------------------------------------------------------------- /assets/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/endoflife.date/master/assets/mstile-70x70.png -------------------------------------------------------------------------------- /assets/old-favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/endoflife.date/master/assets/old-favicon.ico -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "devDependencies": { 3 | "netlify-plugin-submit-sitemap": "^0.4.0" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /assets/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/endoflife.date/master/assets/mstile-144x144.png -------------------------------------------------------------------------------- /assets/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/endoflife.date/master/assets/mstile-150x150.png -------------------------------------------------------------------------------- /assets/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/endoflife.date/master/assets/mstile-310x150.png -------------------------------------------------------------------------------- /assets/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/endoflife.date/master/assets/mstile-310x310.png -------------------------------------------------------------------------------- /assets/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/endoflife.date/master/assets/apple-touch-icon.png -------------------------------------------------------------------------------- /schema.html: -------------------------------------------------------------------------------- 1 | --- 2 | permalink: /docs/api 3 | layout: schema 4 | title: endoflife.date API Documentation 5 | nav_exclude: true 6 | --- 7 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "_data/release-data"] 2 | path = _data/release-data 3 | url = https://github.com/endoflife-date/release-data.git 4 | branch = main 5 | -------------------------------------------------------------------------------- /_includes/nav_footer_custom.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | command = """ 3 | ./_auto/deploy.sh 4 | """ 5 | publish = "_site/" 6 | 7 | [context.deploy-preview] 8 | command = """ 9 | ./_auto/deploy.sh $DEPLOY_PRIME_URL 10 | """ 11 | 12 | [[plugins]] 13 | package = "netlify-plugin-submit-sitemap" 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | vendor/bundle 5 | api/ 6 | calendar/ 7 | .idea/ 8 | .jekyll-cache 9 | _data/gke.json 10 | .bundle/ 11 | *.swp 12 | .vscode/* 13 | .history/ 14 | *.vsix 15 | .history 16 | .ionide 17 | .vscode/*.code-snippets 18 | *.code-workspace 19 | node_modules 20 | .DS_Store 21 | .venv 22 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | ; This file is for unifying the coding style for different editors and IDEs. 2 | ; More information at https://editorconfig.org/ 3 | 4 | root = true 5 | ; Use 2 spaces for indentation in all files 6 | 7 | [*] 8 | end_of_line = lf 9 | charset = utf-8 10 | trim_trailing_whitespace = true 11 | indent_style = space 12 | indent_size = 2 13 | insert_final_newline = true 14 | 15 | [*.py] 16 | indent_size = 4 17 | -------------------------------------------------------------------------------- /_layouts/product-tags.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 |

{{ page.title }}

6 | 7 | 14 | -------------------------------------------------------------------------------- /browserconfig.xml: -------------------------------------------------------------------------------- 1 | --- 2 | # See https://webmasters.stackexchange.com/q/131077 3 | 4 | # Setting a layout forces Jekyll to render this file. 5 | layout: null 6 | --- 7 | 8 | 9 | 10 | 11 | 12 | #2d89ef 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /_includes/custom-column-th.html: -------------------------------------------------------------------------------- 1 | {%- comment %} 2 | Render a product custom column header cell (). 3 | 4 | Parameters: 5 | - column (mandatory): the custom column definition. 6 | {% endcomment %} 7 | {%- assign label = include.column.label %} 8 | {%- assign description = include.column.description %} 9 | {%- assign link = include.column.link %} 10 | 11 | {% if link %}{{ label }}{% else %}{{ label }}{% endif %} 12 | 13 | -------------------------------------------------------------------------------- /humans.txt: -------------------------------------------------------------------------------- 1 | /* TEAM */ 2 | 3 | Team: https://github.com/orgs/endoflife-date/people 4 | Contributors: https://github.com/endoflife-date/endoflife.date/graphs/contributors 5 | 6 | /* SITE */ 7 | Software: Jekyll, Netlify, GitHub, Ruby, GitHub Actions 8 | Components: Just the Docs Jekyll Theme, Stoplight Elements, Simple Icons 9 | Logo: adaptation of "An hourglass in a round icon" by David Abián and Serhio Magpie (https://commons.wikimedia.org/wiki/File:Hourglass_icon_%28orange%29.svg) 10 | -------------------------------------------------------------------------------- /_includes/css/activation.scss.liquid: -------------------------------------------------------------------------------- 1 | /* 2 | * In Just the Docs v0.7.0, overriding _includes/css/activation.scss.liquid with an empty file 3 | * results in a background image on all the links in the main navigation panel when JS is disabled. 4 | * This suppress those images. Note that those rules are ignored when JS is enabled. 5 | * See https://github.com/just-the-docs/just-the-docs/pull/1358#issuecomment-1787487607. 6 | */ 7 | .site-nav ul li a { 8 | background-image: none; 9 | } 10 | -------------------------------------------------------------------------------- /_includes/product-icon.html: -------------------------------------------------------------------------------- 1 | {%- assign product_icon_url = include.product.iconUrl %} 2 | {%- assign product_icon_description = include.product.title %} 3 | {%- assign product_icon_size = include.size %} 4 | {%- unless product_icon_url %} 5 | {%- assign product_icon_url = '/assets/default-product-logo.svg' | relative_url %} 6 | {%- assign product_icon_description = 'No product' %} 7 | {%- endunless %} 8 | 9 | -------------------------------------------------------------------------------- /_includes/custom-column-td.html: -------------------------------------------------------------------------------- 1 | {%- comment %} 2 | Render a product custom column data cell (). 3 | 4 | Parameters: 5 | - release (mandatory): a product release cycle definition. 6 | - column (mandatory): the custom column definition. 7 | - cssClasses (optional): a space-separated list of CSS classes to add to the cell. 8 | {% endcomment %} 9 | {%- assign release = include.release %} 10 | {%- assign propertyName = include.column.property %} 11 | {%- assign cssClasses = include.cssClasses | default:'' %} 12 | {{ release[propertyName] | default: 'N/A' }} 13 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: 'enhancement' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /_includes/identifiers.html: -------------------------------------------------------------------------------- 1 | {% if page.identifiers.size > 0 %} 2 |
3 | Show Product Identifiers 4 | 21 |
22 | {% endif %} 23 | -------------------------------------------------------------------------------- /.github/workflows/check-links.yml: -------------------------------------------------------------------------------- 1 | name: Check URLs 2 | 3 | on: 4 | workflow_dispatch: # Manually run workflow. 5 | schedule: 6 | - cron: '0 0 * * 0' # At 00:00 on Sunday. 7 | 8 | jobs: 9 | check_urls: 10 | runs-on: ubuntu-latest 11 | # Do not run this job on forks, as it's not cool to query servers for nothing. 12 | if: ${{ github.repository == 'endoflife-date/endoflife.date' }} 13 | steps: 14 | - name: Checkout site 15 | uses: actions/checkout@v4 16 | 17 | - name: Setup ruby 18 | uses: ruby/setup-ruby@v1 19 | with: 20 | ruby-version: 3.3 21 | bundler-cache: true 22 | 23 | - name: Perform URLs check 24 | run: bundle exec jekyll build 25 | env: 26 | MUST_CHECK_URLS: true 27 | -------------------------------------------------------------------------------- /_includes/variables.html: -------------------------------------------------------------------------------- 1 | {%- assign api = site.data.openapi -%} 2 | 3 | {%- capture title -%} 4 | {%- if page.title -%} 5 | {{- page.title | append: ' - ' -}} 6 | {%- endif -%} 7 | {{- api.info.title -}} 8 | {%- endcapture -%} 9 | 10 | {%- assign description = api.info.description | xml_escape -%} 11 | 12 | {%- assign url = page.url | prepend: site.baseurl | prepend: site.url -%} 13 | 14 | {%- assign image = '/assets/img/image.png' | prepend: site.baseurl | prepend: site.url -%} 15 | 16 | {%- assign collections = '' -%} 17 | {%- for path in api.paths -%} 18 | {%- assign path_parts = path[0] | split: '/' -%} 19 | {%- assign collections = collections | append: path_parts[1] | append: ',' -%} 20 | {%- endfor -%} 21 | {%- assign collections = collections | split: ',' | uniq -%} -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | --- 2 | # See https://web.dev/add-manifest/ 3 | 4 | # Setting a layout forces Jekyll to render this file. 5 | layout: null 6 | --- 7 | { 8 | "name": "endoflife.date", 9 | "short_name": "endoflife", 10 | "icons": [ 11 | { 12 | "src": "{{ '/assets/logo-192x192.png' | absolute_url }}", 13 | "sizes": "192x192", 14 | "type": "image/png" 15 | }, 16 | { 17 | "src": "{{ '/assets/logo-512x512.png' | absolute_url }}", 18 | "sizes": "512x512", 19 | "type": "image/png" 20 | } 21 | ], 22 | "start_url": "{{ '/' | absolute_url }}?utm_source=homescreen", 23 | "theme_color": "#ffffff", 24 | "background_color": "#ffffff", 25 | "display": "standalone" 26 | } 27 | -------------------------------------------------------------------------------- /assets/register-show-hidden-releases-handler.js: -------------------------------------------------------------------------------- 1 | function showHideOldReleases(show) { 2 | const showMoreRow = document.getElementById("show-more-row"); 3 | const releases = document.querySelectorAll(".release.can-be-hidden"); 4 | 5 | if(show) { 6 | showMoreRow.classList.add('d-none'); 7 | releases.forEach((r) => r.classList.remove('d-none')); 8 | } else { 9 | showMoreRow.classList.remove('d-none'); 10 | releases.forEach((r) => r.classList.add('d-none')); 11 | } 12 | } 13 | 14 | function registerShowHiddenReleasesHandler() { 15 | document.getElementById('show-hidden-releases-button').addEventListener("click", 16 | (event) => { 17 | event.preventDefault(); 18 | showHideOldReleases(true); 19 | }, false); 20 | } 21 | 22 | showHideOldReleases(false); 23 | registerShowHiddenReleasesHandler(); 24 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_product_suggestion.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: New product suggestion 3 | about: Suggest a new product for endoflife.date 4 | title: '' 5 | labels: 'request' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Full and short name of product** 11 | 12 | Let us know the long, full name and, if it has one, the short name (for example, PowerShell and pwsh). 13 | 14 | 15 | **Does this product have LTS versions? What are the intervals between each LTS version?** 16 | 17 | For example, a current release is a release that occurs between LTS releases. Current releases can contain critical fixes. 18 | 19 | 20 | **What is the website for the product and for its version information?** 21 | 22 | For example: https://github.com/PowerShell/PowerShell/tags 23 | 24 | 25 | **Additional context** 26 | 27 | Add any other context or screenshots about the product which you want us to add endoflife.date 28 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/report_incorrect_details.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Report Incorrect Details 3 | about: Report incorrect details of a product on endoflife.date 4 | title: '' 5 | labels: 'bug' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Link to product page on endoflife.date** 11 | 12 | Let us know the URL of the product page on endoflife.date you found the incorrect details. 13 | 14 | 15 | **Details of incorrect and correct details you have found** 16 | 17 | For example, the active support date on endoflife.date is not the same as in the product documentation. 18 | 19 | endoflife.date: 2021-02-02 20 | 21 | Product documentation: 2022-02-02 22 | 23 | 24 | **What is the source website for the product and for its version information?** 25 | 26 | For example: https://github.com/PowerShell/PowerShell/tags 27 | 28 | 29 | **Additional context** 30 | 31 | Add any other context or screenshots about the incorrect details. 32 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # To get started with Dependabot version updates, you'll need to specify which 2 | # package ecosystems to update and where the package manifests are located. 3 | # Please see the documentation for all configuration options: 4 | # https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file 5 | 6 | version: 2 7 | updates: 8 | - package-ecosystem: "bundler" 9 | vendor: true 10 | directory: "/" # Location of package manifests 11 | schedule: 12 | interval: "daily" 13 | 14 | # This updates the _data/release-data submodule once a day 15 | # which itself is updated twice a day. 16 | - package-ecosystem: "gitsubmodule" 17 | directory: "/" 18 | schedule: 19 | interval: "daily" 20 | 21 | - package-ecosystem: "github-actions" 22 | directory: "/" 23 | schedule: 24 | interval: "daily" 25 | -------------------------------------------------------------------------------- /products/steamos.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SteamOS 3 | category: os 4 | tags: linux-distribution 5 | iconSlug: steam 6 | permalink: /steamos 7 | eolColumn: Support 8 | releaseColumn: false 9 | discontinuedColumn: true 10 | releases: 11 | 12 | - releaseCycle: "3" 13 | codename: holo 14 | releaseDate: 2022-03-01 15 | eol: false 16 | discontinued: false 17 | 18 | - releaseCycle: "2" 19 | codename: brewmaster 20 | releaseDate: 2015-11-01 21 | eol: 2019-06-30 22 | discontinued: true 23 | 24 | - releaseCycle: "1" 25 | codename: alchemist 26 | releaseDate: 2013-12-01 27 | eol: 2011-11-02 28 | discontinued: true 29 | 30 | --- 31 | 32 | > [SteamOS](https://store.steampowered.com/steamos) is a Linux distribution developed by Valve. 33 | 34 | SteamOS 3 is based on Arch Linux and is the main operating system for the Steam Deck. 35 | SteamOS 1 and 2 was based on Debian and was used on Steam Machines. 36 | -------------------------------------------------------------------------------- /products/ckeditor.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: CKEditor 3 | category: framework 4 | iconSlug: ckeditor4 5 | permalink: /ckeditor 6 | releasePolicyLink: https://ckeditor.com/docs/ckeditor5/latest/updating/versioning-policy.html 7 | 8 | eoasColumn: true 9 | releaseColumn: false 10 | eoesColumn: true 11 | 12 | identifiers: 13 | - repology: ckeditor 14 | - cpe: cpe:/a:ckeditor:ckeditor 15 | - cpe: cpe:2.3:a:ckeditor:ckeditor 16 | 17 | releases: 18 | - releaseCycle: "5" 19 | eoas: false 20 | eol: false 21 | 22 | - releaseCycle: "4" 23 | lts: true 24 | eoas: true 25 | eol: 2023-06-30 26 | eoes: 2026-12-01 27 | 28 | --- 29 | 30 | > [CKEditor](https://ckeditor.com/) is an open-source WYSIWYG rich text editor written in JavaScript. 31 | 32 | The open source version of CKEditor 4 is not maintained anymore. 33 | [CKEditor 4 LTS](https://ckeditor.com/ckeditor-4-support/) is a commercial offering to maintain CKE 4 past its EOL date. 34 | -------------------------------------------------------------------------------- /products/goaccess.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: GoAccess 3 | category: app 4 | permalink: /goaccess 5 | versionCommand: goaccess --version 6 | releasePolicyLink: https://github.com/allinurl/goaccess/blob/master/SECURITY.md 7 | changelogTemplate: "https://goaccess.io/release-notes#release-__LATEST__" 8 | 9 | releaseDateColumn: true 10 | 11 | auto: 12 | methods: 13 | - git: https://github.com/allinurl/goaccess 14 | 15 | identifiers: 16 | - repology: goaccess 17 | - purl: pkg:docker/allinurl/goaccess 18 | # eol(x) = releaseDate(x+1) 19 | releases: 20 | 21 | - releaseCycle: "1" 22 | releaseDate: 2016-06-09 23 | eol: false 24 | latest: "1.9.3" 25 | latestReleaseDate: 2024-06-01 26 | 27 | --- 28 | 29 | > [GoAccess](https://goaccess.io/) is an open source web analytics application for Unix-like 30 | > operating systems that runs in a terminal or through a browser. 31 | 32 | Based on the release history only the latest version is supported and actively maintained. 33 | -------------------------------------------------------------------------------- /products/amazon-cdk.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Amazon CDK 3 | category: framework 4 | iconSlug: amazonaws 5 | tags: amazon 6 | permalink: /amazon-cdk 7 | changelogTemplate: https://github.com/aws/aws-cdk/releases/tag/v__LATEST__ 8 | releaseDateColumn: true 9 | 10 | auto: 11 | methods: 12 | - git: https://github.com/aws/aws-cdk 13 | 14 | identifiers: 15 | - repology: aws-cdk 16 | - purl: pkg:npm/aws-cdk 17 | - purl: pkg:golang/github.com/aws/aws-cdk-go 18 | - purl: pkg:github/aws/aws-cdk-go 19 | 20 | releases: 21 | - releaseCycle: "2" 22 | releaseDate: 2021-12-01 23 | eoas: false 24 | eol: false 25 | latest: "2.151.0" 26 | latestReleaseDate: 2024-08-01 27 | 28 | --- 29 | 30 | > [Amazon CDK](https://aws.amazon.com/cdk/) help you define your cloud application in AWS resources 31 | > using familiar programming languages. 32 | 33 | The AWS CDK is updated approximately once a week. Maintenance versions may be released between 34 | weekly releases to address critical issues. 35 | -------------------------------------------------------------------------------- /_auto/deploy.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash -e 2 | 3 | # Display context information 4 | echo "Current directory: $PWD" 5 | echo "Current commit: $(git rev-parse HEAD)" 6 | echo "Ruby version: $(ruby --version)" 7 | echo "Python version: $(python --version)" 8 | echo "Jekyll version: $(bundle exec jekyll --version)" 9 | echo "Deploy URL: $1" 10 | 11 | # See https://github.com/endoflife-date/endoflife.date/pull/2081 12 | echo "Updating latest product information..." 13 | pip install -r '_data/release-data/requirements.txt' 14 | git submodule update --remote 15 | if ! python3 '_data/release-data/latest.py' -p 'products/' -d '_data/release-data/releases'; then # if the latest.py script fails... 16 | git checkout -- products/ # ...just undo the changes, and carry on 17 | fi 18 | 19 | # Replace the Deploy URL with the Preview URL 20 | if [ -n "$1" ]; then 21 | echo "Replacing Deploy URL with Preview URL ($1)" 22 | sed -i "/url\:/curl\: $1" _config.yml 23 | fi 24 | 25 | echo "Building site..." 26 | bundle exec jekyll build --trace 27 | -------------------------------------------------------------------------------- /products/bun.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Bun 3 | category: framework 4 | tags: javascript-runtime 5 | iconSlug: bun 6 | permalink: /bun 7 | versionCommand: bun --version 8 | releasePolicyLink: https://github.com/oven-sh/bun/releases 9 | changelogTemplate: https://github.com/oven-sh/bun/releases/tag/bun-v__LATEST__ 10 | releaseDateColumn: true 11 | 12 | identifiers: 13 | - purl: pkg:docker/oven/bun 14 | - repology: bun 15 | - purl: pkg:github/oven/bun 16 | 17 | auto: 18 | methods: 19 | - git: https://github.com/oven-sh/bun.git 20 | regex: ^bun-v(?P\d+(\.\d+)+)$ 21 | template: "{{version}}" 22 | 23 | releases: 24 | - releaseCycle: "1" 25 | releaseDate: 2023-09-07 26 | eol: false 27 | latest: "1.1.22" 28 | latestReleaseDate: 2024-08-07 29 | 30 | --- 31 | 32 | > [Bun](https://bun.sh/) is an open-source JavaScript runtime that focuses on speed, 33 | and comes with a bundler, test runner, and a Node.js-compatible package manager. 34 | 35 | Bun does not have a clearly defined support policy. 36 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "jekyll", "~> 4.3.3" 4 | 5 | # If you want to use GitHub Pages, remove the "gem "jekyll"" above and 6 | # uncomment the line below. To upgrade, run `bundle update github-pages`. 7 | # gem "github-pages", group: :jekyll_plugins 8 | 9 | # If you have any plugins, put them here! 10 | group :jekyll_plugins do 11 | gem 'jekyll-feed', '~> 0.17' 12 | gem 'jekyll-timeago' 13 | gem 'just-the-docs', '~> 0.8.2' 14 | gem 'jekyll-seo-tag' 15 | gem 'jekyll-last-modified-at' 16 | gem 'jemoji' 17 | end 18 | 19 | # Windows does not include zoneinfo files, so bundle the tzinfo-data gem 20 | gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby] 21 | 22 | # Performance-booster for watching directories on Windows 23 | gem "wdm", "~> 0.1.0" if Gem.win_platform? 24 | 25 | gem "webrick", "~> 1.8" 26 | 27 | gem 'icalendar', '~> 2.10' 28 | 29 | # Used in product-data-validator to check URLs 30 | gem "open-uri", "~> 0.4" 31 | 32 | # Used in purl-to-url to parse PURLs 33 | gem "packageurl-ruby", "~> 0.1.0" 34 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2020 endoflife.date contributors 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 8 | -------------------------------------------------------------------------------- /products/visionos.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apple visionOS 3 | category: os 4 | tags: apple 5 | iconSlug: apple 6 | permalink: /visionos 7 | releasePolicyLink: https://en.wikipedia.org/wiki/VisionOS#Version_history 8 | eoasColumn: true 9 | releaseDateColumn: true 10 | 11 | auto: 12 | methods: 13 | - apple: visionos 14 | regex: 15 | - 'visionOS\s+(?P\d+)' 16 | - 'visionOS\s+(?P\d+(?:\.\d+)+)' 17 | 18 | releases: 19 | - releaseCycle: "1" 20 | releaseDate: 2024-01-31 21 | eoas: false 22 | eol: false 23 | latest: "1.3" 24 | latestReleaseDate: 2024-07-29 25 | link: https://support.apple.com/en-us/118202 26 | 27 | --- 28 | 29 | > Apple [visionOS](https://www.apple.com/visionos) is an operating system specifically designed for Apple's spatial 30 | > computing device, the Apple Vision Pro. It integrates elements from iOS, iPadOS, and macOS, enabling users to interact 31 | > with digital content in a mixed reality environment. VisionOS supports new interaction paradigms such as 32 | > eye-tracking, gesture control, and voice input. 33 | -------------------------------------------------------------------------------- /_includes/head_custom.html: -------------------------------------------------------------------------------- 1 | {%- comment %} 2 | Favicons were generated from the SVG icons with https://realfavicongenerator.net. 3 | 4 | The SVG favicon supports dark mode (https://blog.tomayac.com/2019/09/21/prefers-color-scheme-in-svg-favicons-for-dark-mode-icons/). 5 | {% endcomment %} 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /products/jreleaser.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: JReleaser 3 | category: app 4 | tags: java-runtime 5 | permalink: /jreleaser 6 | versionCommand: jreleaser --version 7 | releasePolicyLink: https://jreleaser.org/guide/latest/release-history.html 8 | changelogTemplate: "https://github.com/jreleaser/jreleaser/releases/tag/v__LATEST__" 9 | releaseDateColumn: true 10 | eoasColumn: true 11 | eolColumn: Security Support 12 | 13 | auto: 14 | methods: 15 | - maven: org.jreleaser/jreleaser 16 | 17 | releases: 18 | - releaseCycle: "1" 19 | releaseDate: 2022-04-10 20 | eol: false 21 | eoas: false 22 | latest: "1.13.1" 23 | latestReleaseDate: 2024-06-30 24 | 25 | - releaseCycle: "0" 26 | releaseDate: 2021-04-10 27 | eol: 2022-04-10 28 | eoas: 2022-04-10 29 | latest: "0.10.0" 30 | latestReleaseDate: 2021-12-28 31 | 32 | --- 33 | 34 | > [JReleaser](https://jreleaser.org/) is a release automation tool for Java and non-Java projects. 35 | > Its goal is to simplify creating releases and publishing artifacts to multiple package 36 | > managers while providing customizable options. 37 | -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | 7 | {% assign pages = site.html_pages | where_exp:'doc','doc.sitemap != false' | where_exp:'doc','doc.url != "/404.html"' %} 8 | {% for page in pages %} 9 | {% capture last_modified_at %} 10 | {% if page.last_modified_at %} 11 | {{ page.last_modified_at | date_to_xmlschema }} 12 | {% endif %} 13 | {% endcapture %} 14 | 15 | {{ page.url | replace:'/index.html','/' | absolute_url | xml_escape }} 16 | {{last_modified_at}} 17 | 18 | {% if page.layout == 'product' %} 19 | 20 | {{ page.url | replace:'/index.html','/' | prepend: "/api" | append:'.json' | absolute_url | xml_escape }} 21 | {{last_modified_at}} 22 | 23 | {% endif %} 24 | {% endfor %} 25 | 26 | -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- 1 | # We use https://github.com/behaviorbot/welcome 2 | 3 | # Comment to be posted to on first time issues 4 | newIssueWelcomeComment: > 5 | Thank you for opening your first issue here :+1:. 6 | Be sure to follow the issue template if you chose one. 7 | 8 | # Comment to be posted to on PRs from first time contributors in your repository 9 | newPRWelcomeComment: > 10 | Thank you for opening this pull request :+1:. 11 | If you are not familiar with the project, please check out our 12 | [Contributing Guidelines](https://endoflife.date/contribute) and our 13 | [Guiding Principles](https://github.com/endoflife-date/endoflife.date/wiki/Guiding-Principles). 14 | Also take a look at our [Hacking Guide](https://github.com/endoflife-date/endoflife.date/blob/master/HACKING.md) if you intend to work on site internals. 15 | 16 | # Comment to be posted to on pull requests merged by a first time user 17 | firstPRMergeComment: > 18 | Thank you and congratulations for your first contribution! 19 | endoflife.date is a community wiki, and we're always looking for more contributions :1st_place_medal: :100: :tada:. 20 | -------------------------------------------------------------------------------- /_layouts/product-list.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 |

{{ page.title }}

5 | 6 | {% for product in page.products %} 7 |
8 |
9 |
10 |

11 | {% include product-icon.html product=product size=30 %} 12 | {{ product.title }} 13 |

14 | 15 | 21 |
22 | 23 | {%- for tag in product.tags %} 24 | {{ tag }} 25 | {%- endfor %} 26 | 27 |
28 | 29 |
30 | {{ product.content | extract_element:'blockquote' | first | extract_element:'p' }} 31 |
32 |
33 | {% endfor %} 34 | -------------------------------------------------------------------------------- /products/apache-lucene.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Lucene 3 | category: library 4 | tags: apache java-runtime 5 | iconSlug: apache 6 | permalink: /apache-lucene 7 | alternate_urls: 8 | - /lucene 9 | releasePolicyLink: https://lucene.apache.org/core/downloads.html 10 | changelogTemplate: "https://lucene.apache.org/core/{{'__LATEST__'|replace:'.','_'}}/changes/Changes.html" 11 | releaseDateColumn: true 12 | 13 | auto: 14 | methods: 15 | - maven: org.apache.lucene/lucene-core 16 | 17 | releases: 18 | - releaseCycle: "9" 19 | releaseDate: 2021-12-07 20 | eol: false 21 | latest: "9.11.1" 22 | latestReleaseDate: 2024-06-27 23 | 24 | - releaseCycle: "8" 25 | releaseDate: 2019-03-13 26 | eol: false 27 | latest: "8.11.3" 28 | latestReleaseDate: 2024-02-08 29 | 30 | - releaseCycle: "7" 31 | releaseDate: 2017-09-19 32 | eol: true 33 | latest: "7.7.3" 34 | latestReleaseDate: 2020-04-24 35 | 36 | --- 37 | 38 | > [Apache Lucene](https://lucene.apache.org/) is an open-source search engine library written in Java. 39 | 40 | The previous major version will get occasional critical security fixes. 41 | Versions older than that are considered EOL. 42 | 43 | No releases are scheduled in advance. 44 | -------------------------------------------------------------------------------- /products/twig.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Twig 3 | category: framework 4 | tags: php-runtime 5 | permalink: /twig 6 | changelogTemplate: https://github.com/twigphp/Twig/blob/__RELEASE_CYCLE__.x/CHANGELOG 7 | releaseDateColumn: true 8 | 9 | auto: 10 | methods: 11 | - git: https://github.com/twigphp/Twig.git 12 | 13 | releases: 14 | - releaseCycle: "3" 15 | releaseDate: 2019-11-15 16 | eol: false 17 | latest: "3.10.3" 18 | latestReleaseDate: 2024-05-16 19 | 20 | - releaseCycle: "2" 21 | releaseDate: 2017-01-05 22 | eol: 2023-12-31 # https://symfony.com/blog/twig-2-end-of-life 23 | latest: "2.16.0" 24 | latestReleaseDate: 2023-12-22 25 | 26 | - releaseCycle: "1" 27 | releaseDate: 2011-03-27 28 | eol: 2022-09-28 29 | latest: "1.44.7" 30 | latestReleaseDate: 2022-09-28 31 | 32 | --- 33 | 34 | > [Twig](https://twig.symfony.com/) is an open-source template language for PHP. 35 | 36 | Twig 1, 2 and 3 still receive security updates. 37 | 38 | ## [PHP Compatibility](https://packagist.org/packages/twig/twig) 39 | 40 | | Twig Version | Supported PHP Version | 41 | |-------------------------------------------------------|-----------------------| 42 | | [3](https://packagist.org/packages/twig/twig#3.x-dev) | `>=7.2.5` | 43 | | [2](https://packagist.org/packages/twig/twig#2.x-dev) | `>=7.2.5` | 44 | | [1](https://packagist.org/packages/twig/twig#1.x-dev) | `>=7.2.5` | 45 | -------------------------------------------------------------------------------- /products/opentofu.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: OpenTofu 3 | category: app 4 | tags: cncf 5 | iconSlug: opentofu 6 | permalink: /opentofu 7 | alternate_urls: 8 | - /tofu 9 | - /open-tofu 10 | versionCommand: tofu --version 11 | changelogTemplate: https://github.com/opentofu/opentofu/blob/v__LATEST__/CHANGELOG.md 12 | releaseDateColumn: true 13 | 14 | auto: 15 | methods: 16 | - git: https://github.com/opentofu/opentofu.git 17 | 18 | # eol(x) = releaseDate(x+2) 19 | releases: 20 | - releaseCycle: "1.8" 21 | releaseDate: 2024-07-29 22 | eol: false # releaseDate(1.10) 23 | latest: "1.8.1" 24 | latestReleaseDate: 2024-08-07 25 | 26 | - releaseCycle: "1.7" 27 | releaseDate: 2024-04-30 28 | eol: false # releaseDate(1.9) 29 | latest: "1.7.3" 30 | latestReleaseDate: 2024-07-09 31 | 32 | - releaseCycle: "1.6" 33 | releaseDate: 2024-01-09 34 | eol: 2024-07-29 # releaseDate(1.8) 35 | latest: "1.6.3" 36 | latestReleaseDate: 2024-07-09 37 | 38 | --- 39 | 40 | > [OpenTofu](https://opentofu.org/) is a fork of Terraform that is open-source, community-driven, and managed by the Linux Foundation. 41 | 42 | In their 2024-01-22 meeting, the OpenTofu Technical Steering Committee (TSC) [decided to adopt 43 | the same support policy as Terraform](https://github.com/opentofu/opentofu/blob/main/TSC_SUMMARY.md#2024-01-22-async): 44 | patches for the most recent major release, as well as up to two prior ones. So up to three releases 45 | will be supported at any given point in time. 46 | -------------------------------------------------------------------------------- /products/centos-stream.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: CentOS Stream 3 | category: os 4 | tags: linux-distribution 5 | iconSlug: centos 6 | permalink: /centos-stream 7 | versionCommand: cat /etc/redhat-release 8 | releasePolicyLink: https://centos.org/stream9/ 9 | eoasColumn: true 10 | releaseDateColumn: true 11 | 12 | identifiers: 13 | - cpe: cpe:/o:centos:stream 14 | - cpe: cpe:2.3:o:centos:stream 15 | 16 | releases: 17 | - releaseCycle: "9" 18 | releaseDate: 2021-09-15 19 | eoas: 2027-05-31 20 | eol: 2027-05-31 21 | latest: "9" 22 | link: https://blog.centos.org/2021/12/introducing-centos-stream-9/ 23 | 24 | - releaseCycle: "8" 25 | releaseDate: 2019-09-24 26 | eoas: 2024-05-31 27 | eol: 2024-05-31 28 | latest: "8" 29 | link: http://web.archive.org/web/20230417021744/https://wiki.centos.org/Manuals/ReleaseNotes/CentOSStream 30 | 31 | --- 32 | 33 | > [CentOS Stream](https://www.centos.org/centos-stream/) is a continuously delivered Linux 34 | > distribution that tracks just ahead of Red Hat Enterprise Linux (RHEL) development, positioned as 35 | > a midstream between Fedora Linux and RHEL. 36 | 37 | CentOS Stream is the upstream variant of [CentOS](/centos) and contains content that is planned for 38 | the next minor release of [Red Hat Enterprise Linux (RHEL)](/rhel). 39 | 40 | CentOS Stream only has major versions, and its support ends when its [corresponding RHEL release](/rhel) 41 | leaves full support. 42 | 43 | Support information for CentOS are available on the [CentOS page](/centos). 44 | -------------------------------------------------------------------------------- /products/pnpm.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: pnpm 3 | category: app 4 | tags: build-tool javascript-runtime 5 | iconSlug: pnpm 6 | permalink: /pnpm 7 | versionCommand: pnpm --version 8 | releasePolicyLink: https://github.com/pnpm/pnpm/security/policy 9 | changelogTemplate: "https://github.com/pnpm/pnpm/releases/tag/v__LATEST__" 10 | releaseDateColumn: true 11 | eolColumn: Support 12 | 13 | auto: 14 | methods: 15 | - npm: pnpm 16 | 17 | releases: 18 | - releaseCycle: "9" 19 | releaseDate: 2024-04-16 20 | eol: false 21 | latest: '9.7.0' 22 | latestReleaseDate: 2024-08-07 23 | 24 | - releaseCycle: "8" 25 | releaseDate: 2023-03-27 26 | eol: 2025-04-30 27 | latest: '8.15.9' 28 | latestReleaseDate: 2024-07-17 29 | 30 | - releaseCycle: "7" 31 | releaseDate: 2022-04-30 32 | eol: 2024-04-16 33 | latest: '7.33.7' 34 | latestReleaseDate: 2024-02-15 35 | 36 | - releaseCycle: "6" 37 | releaseDate: 2021-04-05 38 | eol: 2023-03-20 39 | latest: '6.35.1' 40 | latestReleaseDate: 2022-11-11 41 | 42 | - releaseCycle: "5" 43 | releaseDate: 2020-05-27 44 | eol: 2022-04-29 45 | latest: '5.18.11' 46 | latestReleaseDate: 2021-09-16 47 | 48 | - releaseCycle: "4" 49 | releaseDate: 2019-10-07 50 | eol: 2021-04-24 51 | latest: '4.14.4' 52 | latestReleaseDate: 2020-05-23 53 | 54 | --- 55 | 56 | > [pnpm](https://pnpm.io/) is a fast, disk space efficient package manager for JavaScript. 57 | > It is a drop-in replacement for npm, but faster and more efficient. 58 | -------------------------------------------------------------------------------- /products/dce.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: DaoCloud Enterprise 3 | category: server-app 4 | tags: kubernetes 5 | permalink: /dce 6 | releasePolicyLink: https://docs.daocloud.io/en/dce/support.html 7 | releaseDateColumn: true 8 | releaseLabel: DCE __RELEASE_CYCLE__ 9 | eolColumn: Standard Support 10 | eoesColumn: Support Life 11 | 12 | releases: 13 | - releaseCycle: "5.0" 14 | releaseDate: 2023-06-01 15 | eol: 2026-06-01 16 | eoes: 2028-10-30 17 | latest: "5.0-20240530" 18 | latestReleaseDate: 2024-05-30 19 | link: https://docs.daocloud.io/en/dce/dce-rn/20240530.html 20 | 21 | - releaseCycle: "4.0" 22 | releaseDate: 2020-03-31 23 | eol: 2023-03-31 24 | eoes: 2025-03-31 25 | latest: "2022.12.15.4.0.11" 26 | latestReleaseDate: 2022-12-15 27 | 28 | - releaseCycle: "3.0" 29 | releaseDate: 2018-07-15 30 | eol: 2021-07-30 31 | eoes: 2023-07-30 32 | latest: "2021.12.30.3.0.8" 33 | latestReleaseDate: 2021-12-30 34 | 35 | --- 36 | 37 | > [DaoCloud Enterprise (DCE)](https://docs.daocloud.io/en/) is a Kubernetes based community and commercial 38 | > development platform from DaoCloud. 39 | 40 | DCE's lifecycle is typically 3 years after release, with new releases usually about every two 41 | years. A list of all the releases with their dates can be seen on 42 | [the download page](https://docs.daocloud.io/en/download/index.html). 43 | 44 | [Extended Software Maintenance](https://docs.daocloud.io/en/dce/support.html#extended-software-maintenance-eam) 45 | is available to qualifying customers, and includes critical fixes, with no backport guarantees. 46 | -------------------------------------------------------------------------------- /products/phpbb.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: phpBB 3 | category: server-app 4 | tags: php-runtime 5 | permalink: /phpbb 6 | releaseDateColumn: true 7 | eoasColumn: true 8 | 9 | identifiers: 10 | - repology: phpbb 11 | - cpe: cpe:/a:phpbb:phpbb 12 | - cpe: cpe:2.3:a:phpbb:phpbb 13 | 14 | auto: 15 | methods: 16 | - git: https://github.com/phpbb/phpbb.git 17 | regex: ^release-(?P\d+)\.(?P\d+)\.(?P\d+)$ 18 | 19 | releases: 20 | - releaseCycle: "3.3" 21 | releaseDate: 2020-01-06 22 | eoas: false 23 | eol: false 24 | latest: "3.3.12" 25 | latestReleaseDate: 2024-05-31 26 | link: https://www.phpbb.com/community/viewtopic.php?t=2635986 27 | 28 | - releaseCycle: "3.2" 29 | releaseDate: 2017-01-07 30 | eoas: 2019-05-01 31 | eol: 2019-11-01 32 | latest: "3.2.11" 33 | latestReleaseDate: 2020-11-04 34 | 35 | - releaseCycle: "3.1" 36 | releaseDate: 2014-10-28 37 | eoas: 2017-06-01 38 | eol: 2018-11-01 39 | latest: "3.1.12" 40 | latestReleaseDate: 2018-01-07 41 | 42 | - releaseCycle: "3.0" 43 | releaseDate: 2007-12-12 44 | eoas: 2015-05-01 45 | eol: 2015-11-01 46 | latest: "3.0.14" 47 | latestReleaseDate: 2015-05-03 48 | 49 | --- 50 | 51 | > [phpBB](https://www.phpbb.com/) is an open-source forum software written in PHP. 52 | 53 | phpBB [follows semantic versioning](https://area51.phpbb.com/docs/dev/master/development/processes.html#target-versions). 54 | The support policy is not clearly defined, but it seems only the latest minor release sees active 55 | development and gets bug and security fixes. 56 | -------------------------------------------------------------------------------- /products/sourcegraph.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Sourcegraph 3 | category: server-app 4 | tags: java-runtime 5 | permalink: /sourcegraph 6 | releasePolicyLink: https://handbook.sourcegraph.com/departments/engineering/dev/process/releases/ 7 | changelogTemplate: https://github.com/sourcegraph/sourcegraph/releases/tag/v__LATEST__ 8 | releaseDateColumn: true 9 | eolColumn: Support 10 | 11 | identifiers: 12 | - purl: pkg:github/sourcegraph/sourcegraph 13 | - purl: pkg:docker/sourcegraph/sg 14 | 15 | auto: 16 | methods: 17 | - git: https://github.com/sourcegraph/sourcegraph.git 18 | 19 | # eol(x) = releaseDate(x+1) 20 | releases: 21 | - releaseCycle: "5" 22 | releaseDate: 2023-03-22 23 | eol: false 24 | latest: "5.6.0" 25 | latestReleaseDate: 2024-08-07 26 | 27 | - releaseCycle: "4" 28 | releaseDate: 2022-09-22 29 | eol: 2023-05-22 30 | latest: "4.5.1" 31 | latestReleaseDate: 2023-02-24 32 | 33 | --- 34 | 35 | > [Sourcegraph](https://sourcegraph.com/) is a code search and intelligence tool for developers that helps 36 | > them find, understand, and fix code across all of their projects and dependencies. 37 | 38 | Sourcegraph is available in self-hosted and cloud editions. This page only tracks releases for 39 | the self-hosted offering. While limited support is offered for the previous major version, it does 40 | not include bug-fixes or security backports. Consequentially, this page marks all but the latest 41 | release as unsupported. 42 | 43 | Sourcegraph provides [enterprise support](https://sourcegraph.com/pricing) with additional features and support for organizations. 44 | -------------------------------------------------------------------------------- /products/dependencytrack.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency-Track 3 | category: server-app 4 | tags: java-runtime 5 | iconSlug: owasp 6 | permalink: /dependency-track 7 | alternate_urls: 8 | - /dependencytrack 9 | changelogTemplate: https://docs.dependencytrack.org/changelog/ 10 | 11 | auto: 12 | methods: 13 | - git: https://github.com/DependencyTrack/dependency-track.git 14 | 15 | # eol(x) = releaseDate(x+1) 16 | releases: 17 | - releaseCycle: "4.11" 18 | releaseDate: 2024-05-07 19 | eol: false 20 | latest: "4.11.5" 21 | latestReleaseDate: 2024-07-08 22 | 23 | - releaseCycle: "4.10" 24 | releaseDate: 2023-12-08 25 | eol: 2024-05-07 26 | latest: "4.10.1" 27 | latestReleaseDate: 2023-12-19 28 | 29 | - releaseCycle: "4.9" 30 | releaseDate: 2023-10-16 31 | eol: 2023-12-08 32 | latest: "4.9.1" 33 | latestReleaseDate: 2023-10-30 34 | 35 | - releaseCycle: "4.8" 36 | releaseDate: 2023-04-18 37 | eol: 2023-10-16 38 | latest: "4.8.2" 39 | latestReleaseDate: 2023-05-16 40 | 41 | - releaseCycle: "4.7" 42 | releaseDate: 2022-12-16 43 | eol: 2023-04-18 44 | latest: "4.7.1" 45 | latestReleaseDate: 2023-01-31 46 | 47 | --- 48 | 49 | > [OWASP Dependency-Track](https://dependencytrack.org/) is an intelligent API-first Component 50 | > Analysis platform that allows organizations to identify and reduce risk in the software supply 51 | > chain. It monitors component usage across all versions of every application in order to 52 | > proactively identify risk across an organization. 53 | 54 | Dependency-Track does not have a fixed release cycle, and only the latest version is supported. 55 | -------------------------------------------------------------------------------- /products/redmine.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Redmine 3 | category: server-app 4 | tags: ruby-runtime 5 | iconSlug: redmine 6 | permalink: /redmine 7 | releasePolicyLink: https://www.redmine.org/projects/redmine/news 8 | changelogTemplate: "https://www.redmine.org/projects/redmine/wiki/Changelog_{{'__RELEASE_CYCLE__'|replace:'.','_'}}" 9 | releaseDateColumn: true 10 | 11 | identifiers: 12 | - repology: redmine 13 | - cpe: cpe:/a:redmine:redmine 14 | - cpe: cpe:2.3:a:redmine:redmine 15 | 16 | auto: 17 | methods: 18 | - git: https://github.com/redmine/redmine.git 19 | 20 | # eol releases announced in new versions blog posts 21 | releases: 22 | - releaseCycle: "5.1" 23 | releaseDate: 2023-10-31 24 | eol: false 25 | latest: "5.1.3" 26 | latestReleaseDate: 2024-06-12 27 | 28 | - releaseCycle: "5.0" 29 | releaseDate: 2022-03-28 30 | eol: false 31 | latest: "5.0.9" 32 | latestReleaseDate: 2024-06-12 33 | 34 | - releaseCycle: "4.2" 35 | releaseDate: 2021-03-28 36 | eol: 2023-10-31 37 | latest: "4.2.11" 38 | latestReleaseDate: 2023-09-30 39 | 40 | - releaseCycle: "4.1" 41 | releaseDate: 2019-12-20 42 | eol: 2022-03-28 43 | latest: "4.1.7" 44 | latestReleaseDate: 2022-03-28 45 | 46 | - releaseCycle: "4.0" 47 | releaseDate: 2018-12-09 48 | eol: 2021-04-26 49 | latest: "4.0.9" 50 | latestReleaseDate: 2021-04-26 51 | 52 | --- 53 | 54 | > [Redmine](https://www.redmine.org/) is an open-source project management tool written using Ruby 55 | > on Rails framework. 56 | 57 | ## Links 58 | 59 | - [Security Advisories](https://www.redmine.org/projects/redmine/wiki/Security_Advisories) 60 | -------------------------------------------------------------------------------- /products/calico.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Calico 3 | category: server-app 4 | permalink: /calico 5 | changelogTemplate: https://github.com/projectcalico/calico/releases/tag/v__LATEST__ 6 | releaseDateColumn: true 7 | 8 | auto: 9 | methods: 10 | - git: https://github.com/projectcalico/calico.git 11 | 12 | identifiers: 13 | - purl: pkg:github/projectcalico/calico 14 | - purl: pkg:docker/calico/cni 15 | - purl: pkg:docker/chainguard/calico-cni 16 | - repology: calico 17 | 18 | # eol(x) = releaseDate(x+2) 19 | releases: 20 | - releaseCycle: "3.28" 21 | releaseDate: 2024-05-10 22 | eol: false 23 | latest: "3.28.1" 24 | latestReleaseDate: 2024-07-30 25 | 26 | - releaseCycle: "3.27" 27 | releaseDate: 2023-12-15 28 | eol: false 29 | latest: "3.27.4" 30 | latestReleaseDate: 2024-07-08 31 | 32 | - releaseCycle: "3.26" 33 | releaseDate: 2023-05-27 34 | eol: 2024-05-11 35 | latest: "3.26.4" 36 | latestReleaseDate: 2023-11-16 37 | 38 | - releaseCycle: "3.25" 39 | releaseDate: 2023-01-11 40 | eol: 2023-12-15 41 | latest: "3.25.2" 42 | latestReleaseDate: 2023-09-05 43 | 44 | --- 45 | 46 | > Calico is a networking and network security solution for containers, virtual 47 | > machines, and native host-based workloads. It provides high-performance, 48 | > scalable, and secure networking for Kubernetes clusters. 49 | 50 | {: .warning } 51 | > Calico Cloud and Calico Enterprise, are separate versions maintained by 52 | > [Tigera](https://www.tigera.io/tigera-products), and may have separate support 53 | > options. 54 | 55 | Looking at prior GitHub releases, it seems that security and bug fixes are 56 | maintained for the latest two releases. 57 | -------------------------------------------------------------------------------- /products/apache-http-server.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache HTTP Server 3 | category: server-app 4 | tags: apache web-server 5 | iconSlug: apache 6 | permalink: /apache 7 | alternate_urls: 8 | - /httpd 9 | - /apache-http-server 10 | releasePolicyLink: https://httpd.apache.org/dev/release.html 11 | versionCommand: |- 12 | httpd -v 13 | 14 | # or for Debian-based systems 15 | apachectl -v 16 | releaseDateColumn: true 17 | 18 | identifiers: 19 | - repology: apache 20 | - cpe: cpe:/a:apache:http_server 21 | - cpe: cpe:2.3:a:apache:http_server 22 | 23 | auto: 24 | methods: 25 | - custom: apache-http-server 26 | 27 | releases: 28 | - releaseCycle: "2.4" 29 | releaseDate: 2012-02-21 30 | eol: false 31 | latest: "2.4.62" 32 | latestReleaseDate: 2024-07-17 33 | link: https://downloads.apache.org/httpd/Announcement2.4.html 34 | 35 | - releaseCycle: "2.2" 36 | releaseDate: 2005-12-01 37 | eol: 2017-07-11 38 | latest: "2.2.34" 39 | latestReleaseDate: 2017-07-11 40 | 41 | - releaseCycle: "2.0" 42 | releaseDate: 2002-04-05 43 | eol: 2013-07-10 44 | latest: "2.0.65" 45 | latestReleaseDate: 2013-07-09 46 | 47 | - releaseCycle: "1.3" 48 | releaseDate: 1998-06-01 49 | eol: 2010-02-03 50 | latest: "1.3.42" 51 | latestReleaseDate: 2010-02-02 52 | 53 | --- 54 | 55 | > [Apache HTTP Server](https://httpd.apache.org/) is a collaborative software development effort 56 | > aimed at creating a robust, commercial-grade, feature-rich and freely available source code 57 | > implementation of an HTTP (Web) server. 58 | 59 | The update and release strategy is _complex_ and is best described on the 60 | [Apache HTTP Server Release Guidelines](https://httpd.apache.org/dev/release.html). 61 | -------------------------------------------------------------------------------- /products/quasar.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Quasar 3 | category: framework 4 | tags: javascript-runtime 5 | iconSlug: quasar 6 | permalink: /quasar 7 | versionCommand: quasar -v 8 | releasePolicyLink: https://github.com/quasarframework/quasar/blob/dev/ROADMAP.md#support-policy-and-schedule 9 | changelogTemplate: https://github.com/quasarframework/quasar/releases/tag/quasar-v__LATEST__ 10 | releaseDateColumn: true 11 | eoasColumn: true 12 | eolColumn: LTS support 13 | 14 | identifiers: 15 | - purl: pkg:npm/quasar 16 | 17 | auto: 18 | methods: 19 | - npm: quasar 20 | - release_table: https://github.com/quasarframework/quasar/blob/dev/ROADMAP.md 21 | render_javascript: true 22 | selector: "table:nth-of-type(1)" 23 | fields: 24 | releaseCycle: 25 | column: "Version" 26 | regex: '^(?P\d+)\.x$' 27 | releaseDate: "Released" 28 | eoas: "Active support ends" 29 | eol: "LTS support ends" 30 | 31 | releases: 32 | - releaseCycle: "2" 33 | releaseDate: 2021-06-21 34 | eoas: false 35 | eol: false 36 | latest: "2.16.8" 37 | latestReleaseDate: 2024-08-07 38 | 39 | - releaseCycle: "1" 40 | releaseDate: 2019-03-07 41 | eoas: 2021-04-01 42 | eol: 2023-06-30 43 | latest: "1.22.10" 44 | latestReleaseDate: 2023-05-05 45 | 46 | --- 47 | 48 | > [Quasar](https://quasar.dev/) is an MIT licensed open-source Vue.js based framework, which allows 49 | > web developer to quickly create responsive websites/apps in many flavors: Single Page Apps, SSR 50 | > Apps, PWAs, Browser extensions, Hybrid Mobile Apps and Electron Apps. 51 | 52 | All major releases are typically supported for at least 12 months. LTS support ends 12 months after 53 | the release of a new major version. 54 | -------------------------------------------------------------------------------- /products/eurolinux.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: EuroLinux 3 | category: os 4 | tags: linux-distribution 5 | permalink: /eurolinux 6 | versionCommand: lsb_release --release 7 | releasePolicyLink: https://euro-linux.com/en/software/eurolinux/specification/ 8 | changelogTemplate: https://euro-linux.com/en/software/eurolinux/specification/ 9 | releaseDateColumn: true 10 | eoasColumn: true 11 | 12 | auto: 13 | methods: 14 | - distrowatch: eurolinux 15 | regex: '^Distribution Release: EuroLinux (?P\d).(?P\d)$' 16 | 17 | releases: 18 | - releaseCycle: "9" 19 | releaseDate: 2022-06-14 20 | eoas: 2032-05-31 21 | eol: 2032-06-30 22 | latest: "9.4" 23 | latestReleaseDate: 2024-05-10 24 | 25 | - releaseCycle: "8" 26 | releaseDate: 2021-07-12 27 | eoas: 2029-03-01 28 | eol: 2029-06-30 29 | latest: "8.10" 30 | latestReleaseDate: 2024-05-27 31 | 32 | - releaseCycle: "7" 33 | releaseDate: 2020-11-25 34 | eoas: 2024-07-31 35 | eol: 2024-07-31 36 | latest: "7.9" 37 | latestReleaseDate: 2020-11-25 38 | 39 | - releaseCycle: "6" 40 | releaseDate: 2015-02-16 41 | eoas: 2020-12-31 42 | eol: 2020-12-31 43 | latest: "6.10" 44 | latestReleaseDate: 2018-07-25 45 | 46 | --- 47 | 48 | > [EuroLinux](https://euro-linux.com) is a Polish Enterprise Linux distribution that has been in 49 | > development since 2013. EuroLinux guarantees its compatibility with RHEL and CentOS. It is 50 | > available in two versions: paid and free, with the paid version providing additional technical 51 | > support cover. 52 | 53 | EuroLinux releases regular updates within 1 business day from RHEL. Each release, like RHEL, comes 54 | with a 10-year lifecycle. 55 | 56 | The table above showcases Standard Support dates. EuroLinux 6 paid Extended Support ends at 57 | July 31, 2024 58 | -------------------------------------------------------------------------------- /products/craft-cms.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Craft CMS 3 | category: server-app 4 | tags: php-runtime 5 | iconSlug: craftcms 6 | permalink: /craft-cms 7 | alternate_urls: 8 | - /craftcms 9 | - /craft 10 | versionCommand: composer show craftcms/cms |grep versions 11 | releasePolicyLink: https://craftcms.com/knowledge-base/supported-versions 12 | changelogTemplate: https://craftcms.com/docs/{{__RELEASE_CYCLE__}}.x/ 13 | eoasColumn: true 14 | releaseDateColumn: true 15 | 16 | auto: 17 | methods: 18 | - git: https://github.com/craftcms/cms.git 19 | - release_table: https://craftcms.com/knowledge-base/supported-versions 20 | selector: "table" 21 | fields: 22 | releaseCycle: 23 | column: "Major Version" 24 | regex: '^Craft\sCMS\s(?P[0-9.]+)$' 25 | eoas: "Full Support Until" 26 | eol: "Security Support Until" 27 | 28 | releases: 29 | - releaseCycle: "5" 30 | releaseDate: 2024-03-26 31 | eoas: 2027-04-30 32 | eol: 2028-04-30 33 | latest: '5.3.1' 34 | latestReleaseDate: 2024-08-07 35 | 36 | - releaseCycle: "4" 37 | releaseDate: 2022-05-04 38 | eoas: 2025-04-30 39 | eol: 2026-04-30 40 | latest: '4.11.1' 41 | latestReleaseDate: 2024-08-07 42 | 43 | - releaseCycle: "3" 44 | releaseDate: 2018-04-04 45 | eoas: 2023-04-30 46 | eol: 2024-04-30 47 | latest: '3.9.13' 48 | latestReleaseDate: 2024-04-03 49 | 50 | - releaseCycle: "2" 51 | releaseDate: 2014-04-01 52 | eoas: 2020-01-31 53 | eol: 2022-01-31 54 | latest: "2.9.2" 55 | latestReleaseDate: 2020-03-06 56 | 57 | --- 58 | 59 | > [Craft](https://craftcms.com/) is a flexible, user-friendly content management system. 60 | 61 | Each major version receives two years of active support and maintenance. Critical security issues 62 | are fixed for another one year (where possible). 63 | -------------------------------------------------------------------------------- /products/memcached.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Memcached 3 | category: database 4 | permalink: /memcached 5 | versionCommand: memcached -h 6 | changelogTemplate: "https://github.com/memcached/memcached/wiki/ReleaseNotes{{'__LATEST__'|replace:'.',''}}" 7 | releaseDateColumn: true 8 | 9 | identifiers: 10 | - purl: pkg:generic/memcached 11 | - purl: pkg:deb/ubuntu/memcached 12 | - purl: pkg:deb/debian/memcached 13 | - purl: pkg:rpm/amzn/memcached 14 | - purl: pkg:rpm/redhat/memcached 15 | - purl: pkg:rpm/centos/memcached 16 | - purl: pkg:docker/library/memcached 17 | - repology: memcached 18 | 19 | auto: 20 | methods: 21 | - git: https://github.com/memcached/memcached.git 22 | 23 | # eol(x) = releaseDate(x+1) 24 | releases: 25 | - releaseCycle: "1.6" 26 | releaseDate: 2020-03-08 27 | eol: false 28 | latest: '1.6.29' 29 | latestReleaseDate: 2024-06-28 30 | 31 | - releaseCycle: "1.5" 32 | releaseDate: 2017-07-21 33 | eol: 2020-03-09 34 | latest: '1.5.22' 35 | latestReleaseDate: 2020-02-01 36 | 37 | - releaseCycle: "1.4" 38 | releaseDate: 2009-07-09 39 | eol: 2017-07-21 40 | latest: '1.4.39' 41 | latestReleaseDate: 2017-07-04 42 | 43 | --- 44 | 45 | > [Memcached](https://www.memcached.org/) is a free and open source, high-performance, distributed 46 | > memory object caching system, generic in nature, but intended for use in speeding up dynamic web 47 | > applications by alleviating database load. Memcached is an in-memory key-value store for small 48 | > chunks of arbitrary data (strings, objects) from results of database calls, API calls, or page 49 | > rendering. 50 | 51 | Memcached is community-supported, and doesn't have a clearly defined release and support policy. 52 | [Based on the latest releases](https://github.com/memcached/memcached/wiki/ReleaseNotes), it 53 | appears that only the latest release is supported. 54 | -------------------------------------------------------------------------------- /products/ovirt.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: oVirt 3 | category: server-app 4 | permalink: /ovirt 5 | releasePolicyLink: https://blogs.ovirt.org/2022/04/ovirt-4-4-end-of-life/ 6 | changelogTemplate: https://github.com/oVirt/ovirt-engine/releases/tag/ovirt-engine-__LATEST__ 7 | releaseDateColumn: true 8 | 9 | auto: 10 | methods: 11 | - git: https://github.com/oVirt/ovirt-engine 12 | regex: ^ovirt-engine-(?P\d+)\.(?P\d+)\.(?P\d{1,3})\.?(?P\d+)?$ 13 | 14 | # eol(x) = releaseDate(x+1) 15 | releases: 16 | - releaseCycle: "4.5" 17 | releaseDate: 2022-03-16 18 | eol: false 19 | latest: "4.5.6" 20 | latestReleaseDate: 2024-02-12 21 | 22 | - releaseCycle: "4.4" 23 | releaseDate: 2020-05-06 24 | eol: 2022-05-20 25 | latest: "4.4.10.7" 26 | latestReleaseDate: 2022-03-07 27 | 28 | - releaseCycle: "4.3" 29 | releaseDate: 2019-01-22 30 | eol: 2020-05-20 31 | latest: "4.3.11.4" 32 | latestReleaseDate: 2020-08-18 33 | 34 | - releaseCycle: "4.2" 35 | releaseDate: 2017-12-04 36 | eol: 2019-02-04 37 | latest: "4.2.8.9" 38 | latestReleaseDate: 2019-09-25 39 | 40 | - releaseCycle: "4.1" 41 | releaseDate: 2017-01-12 42 | eol: 2017-12-17 43 | latest: "4.1.11.2" 44 | latestReleaseDate: 2018-04-17 45 | 46 | - releaseCycle: "4.0" 47 | releaseDate: 2016-05-31 48 | eol: 2017-01-12 49 | latest: "4.0.7.5" 50 | latestReleaseDate: 2017-06-06 51 | 52 | - releaseCycle: "3.6" 53 | releaseDate: 2015-09-25 54 | eol: 2016-06-23 55 | latest: "3.6.13.5" 56 | latestReleaseDate: 2018-05-25 57 | 58 | --- 59 | 60 | > [oVirt](https://www.ovirt.org/) is an open-source 61 | > software for centralized virtualization management. It is a hosted hypervisor 62 | > that can run operating systems including Linux and Windows 63 | 64 | oVirt versions are supported until the new one is available. 65 | -------------------------------------------------------------------------------- /products/micronaut.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Micronaut Framework 3 | category: framework 4 | tags: java-runtime 5 | permalink: /micronaut 6 | alternate_urls: 7 | - /micronaut-framework 8 | - /mn 9 | releasePolicyLink: https://micronaut.io/support-schedule/ 10 | changelogTemplate: "https://github.com/micronaut-projects/micronaut-core/releases/tag/v__LATEST__" 11 | eoasColumn: Active Development 12 | eolColumn: Active Maintenance 13 | releaseDateColumn: true 14 | 15 | auto: 16 | methods: 17 | - git: https://github.com/micronaut-projects/micronaut-core.git 18 | 19 | releases: 20 | - releaseCycle: "4" 21 | releaseDate: 2023-07-11 22 | eol: false 23 | eoas: false 24 | latest: "4.5.4" 25 | latestReleaseDate: 2024-07-22 26 | 27 | - releaseCycle: "3" 28 | releaseDate: 2021-08-18 29 | eol: false 30 | eoas: 2023-07-11 31 | latest: "3.10.4" 32 | latestReleaseDate: 2024-03-23 33 | 34 | - releaseCycle: "2" 35 | releaseDate: 2020-06-26 36 | eol: 2023-03-01 37 | eoas: 2021-08-18 38 | latest: "2.5.13" 39 | latestReleaseDate: 2021-09-03 40 | 41 | - releaseCycle: "1" 42 | releaseDate: 2018-10-23 43 | eol: 2021-12-31 44 | eoas: true 45 | latest: "1.3.7" 46 | latestReleaseDate: 2020-07-10 47 | 48 | --- 49 | 50 | > [Micronaut](https://micronaut.io/) is a modern, JVM-based, full-stack framework for building 51 | > modular, easily testable microservice and serverless applications. 52 | 53 | Versions of the Micronaut framework may fall into one of three lifecycle stages: 54 | 55 | - Active Development: those versions receive regular updates. 56 | - Active Maintenance: those versions receive limited bug fixes and patches, mostly focused around 57 | the resolution of critical security advisories. 58 | 59 | The Micronaut Foundation offers [commercial support](https://micronaut.io/support/). This typically 60 | lasts a few years after active maintenance ends. 61 | -------------------------------------------------------------------------------- /products/privatebin.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: PrivateBin 3 | category: server-app 4 | permalink: /privatebin 5 | releasePolicyLink: https://github.com/PrivateBin/PrivateBin?tab=security-ov-file#readme 6 | changelogTemplate: https://github.com/PrivateBin/PrivateBin/releases/tag/__LATEST__ 7 | releaseDateColumn: true 8 | 9 | auto: 10 | methods: 11 | - git: https://github.com/PrivateBin/PrivateBin.git 12 | 13 | # eol(x) = releaseDate(x+1) 14 | releases: 15 | - releaseCycle: "1.7" 16 | releaseDate: 2024-02-11 17 | eol: false 18 | latest: "1.7.4" 19 | latestReleaseDate: 2024-07-09 20 | 21 | - releaseCycle: "1.6" 22 | releaseDate: 2023-09-11 23 | eol: 2024-02-12 24 | latest: "1.6.2" 25 | latestReleaseDate: 2023-12-15 26 | 27 | - releaseCycle: "1.5" 28 | releaseDate: 2022-12-11 29 | eol: 2023-09-12 30 | latest: "1.5.2" 31 | latestReleaseDate: 2023-07-09 32 | 33 | - releaseCycle: "1.4" 34 | releaseDate: 2022-04-09 35 | eol: 2022-12-11 36 | latest: "1.4.0" 37 | latestReleaseDate: 2022-04-09 38 | 39 | - releaseCycle: "1.3" 40 | releaseDate: 2019-07-09 41 | eol: 2022-04-09 42 | latest: "1.3.5" 43 | latestReleaseDate: 2021-04-05 44 | 45 | - releaseCycle: "1.2" 46 | releaseDate: 2018-07-22 47 | eol: 2019-07-10 48 | latest: "1.2.3" 49 | latestReleaseDate: 2020-02-16 50 | 51 | - releaseCycle: "1.1" 52 | releaseDate: 2016-12-26 53 | eol: 2018-07-22 54 | latest: "1.1.1" 55 | latestReleaseDate: 2017-10-08 56 | 57 | - releaseCycle: "1.0" 58 | releaseDate: 2016-08-25 59 | eol: 2016-12-26 60 | latest: "1.0" 61 | latestReleaseDate: 2016-08-25 62 | 63 | --- 64 | 65 | > [PrivateBin](https://privatebin.info/) is a minimalist, open source [Pastebin](https://pastebin.com/) where the server 66 | > has zero knowledge of pasted data. 67 | 68 | 69 | PrivateBin follows [SemVer](https://semver.org/). Only the latest version is supported. 70 | -------------------------------------------------------------------------------- /products/openvpn.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: OpenVPN 3 | category: app 4 | iconSlug: openvpn 5 | permalink: /openvpn 6 | releasePolicyLink: https://community.openvpn.net/openvpn/wiki/SupportedVersions 7 | changelogTemplate: https://github.com/OpenVPN/openvpn/blob/release/__RELEASE_CYCLE__/ChangeLog 8 | releaseDateColumn: true 9 | 10 | auto: 11 | methods: 12 | - git: https://github.com/OpenVPN/openvpn.git 13 | 14 | identifiers: 15 | - repology: openvpn 16 | 17 | # releaseDate and eol https://community.openvpn.net/openvpn/wiki/SupportedVersions 18 | releases: 19 | - releaseCycle: "2.6" 20 | releaseDate: 2023-01-25 21 | eol: false 22 | latest: "2.6.12" 23 | latestReleaseDate: 2024-07-17 24 | 25 | - releaseCycle: "2.5" 26 | releaseDate: 2020-10-27 27 | eol: false 28 | latest: "2.5.11" 29 | latestReleaseDate: 2024-07-18 30 | 31 | - releaseCycle: "2.4" 32 | releaseDate: 2016-12-16 33 | eol: 2023-03-31 34 | latest: "2.4.12" 35 | latestReleaseDate: 2022-03-17 36 | 37 | - releaseCycle: "2.3" 38 | releaseDate: 2013-01-02 39 | eol: 2021-06-30 40 | latest: "2.3.18" 41 | latestReleaseDate: 2017-09-25 42 | 43 | - releaseCycle: "2.2" 44 | releaseDate: 2011-04-21 45 | eol: 2015-11-30 46 | latest: "2.2.3" 47 | latestReleaseDate: 2014-11-30 48 | 49 | - releaseCycle: "2.1" 50 | releaseDate: 2009-12-11 51 | eol: 2011-11-30 52 | latest: "2.1.4" 53 | latestReleaseDate: 2010-11-06 54 | 55 | --- 56 | 57 | > [OpenVPN](https://openvpn.net/) is a widely used virtual private networking system. 58 | 59 | OpenVPN Community Edition aka OpenVPN is a GPLv2 server and client. 60 | OpenVPN Access Server (OpenVPN-AS) provides additional paid and proprietary features. 61 | There is a strict dependency on [OpenSSL](https://endoflife.date/openssl) which is documented at [Suppported OpenSSL versions](https://community.openvpn.net/openvpn/wiki/SupportedVersions#SuppportedOpenSSLversions). 62 | -------------------------------------------------------------------------------- /products/yarn.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Yarn 3 | category: app 4 | tags: build-tool javascript-runtime 5 | iconSlug: yarn 6 | permalink: /yarn 7 | versionCommand: yarn --version 8 | changelogTemplate: https://github.com/yarnpkg/berry/releases/tag/%40yarnpkg%2Fcli%2F__LATEST__ 9 | releaseDateColumn: true 10 | 11 | identifiers: 12 | - purl: pkg:github/yarnpkg/berry 13 | - purl: pkg:github/yarnpkg/yarn 14 | - purl: pkg:npm/yarn 15 | - purl: pkg:npm/yarnpkg/cli 16 | - repology: yarn 17 | 18 | auto: 19 | methods: 20 | - npm: yarn # for 1.x 21 | - npm: "@yarnpkg/cli" # for 2.x+ 22 | 23 | releases: 24 | - releaseCycle: "4" 25 | releaseDate: 2023-10-22 26 | eol: false 27 | latest: '4.4.0' 28 | latestReleaseDate: 2024-08-02 29 | 30 | - releaseCycle: "3" 31 | releaseDate: 2021-07-26 32 | eol: false # still not clear, will wait until there is no more updates 33 | latest: '3.8.4' 34 | latestReleaseDate: 2024-08-05 35 | 36 | - releaseCycle: "2" 37 | releaseDate: 2020-07-09 38 | eol: 2021-09-06 39 | latest: '2.4.3' 40 | latestReleaseDate: 2021-09-06 41 | 42 | - releaseCycle: "1" 43 | releaseDate: 2017-09-05 44 | eol: false 45 | latest: '1.22.22' 46 | latestReleaseDate: 2024-03-09 47 | link: https://github.com/yarnpkg/yarn/releases/tag/v__LATEST__ 48 | 49 | --- 50 | 51 | > [Yarn](https://yarnpkg.com/) is a modern package manager for the Javascript ecosystem. It offers 52 | > extensibility via plugins, and a Plug and Play strategy that supports various frameworks and tools. 53 | 54 | Yarn's support and EOL policy is not clearly defined. 55 | 56 | Yarn Classic (v1) [entered maintenance mode in January 2020](https://dev.to/arcanis/introducing-yarn-2-4eh1#what-will-happen-to-the-legacy-codebase) 57 | and will eventually reach end-of-life. It is highly recommended to 58 | [Migrate](https://yarnpkg.com/migration/overview) to the latest version. Yarn 59 | Classic only receives critical and security fixes. 60 | -------------------------------------------------------------------------------- /products/cert-manager.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: cert-manager 3 | category: app 4 | tags: cncf 5 | permalink: /cert-manager 6 | alternate_urls: 7 | - /cert-manager 8 | versionCommand: |- 9 | # cmctl must be installed separately, see https://cert-manager.io/docs/reference/cmctl/. 10 | cmctl version 11 | releasePolicyLink: https://cert-manager.io/docs/releases/ 12 | changelogTemplate: https://github.com/cert-manager/cert-manager/releases/tag/v__LATEST__ 13 | releaseDateColumn: true 14 | eolColumn: Support 15 | 16 | auto: 17 | methods: 18 | - git: https://github.com/cert-manager/cert-manager.git 19 | 20 | identifiers: 21 | - repology: cert-manager 22 | - purl: pkg:docker/cert-manager/cert-manager 23 | 24 | # eol(x) = releaseDate(x+2) 25 | releases: 26 | - releaseCycle: "1.15" 27 | releaseDate: 2024-06-05 28 | eol: false 29 | latest: "1.15.2" 30 | latestReleaseDate: 2024-07-30 31 | 32 | - releaseCycle: "1.14" 33 | releaseDate: 2024-01-31 34 | eol: false 35 | latest: "1.14.7" 36 | latestReleaseDate: 2024-06-21 37 | 38 | - releaseCycle: "1.13" 39 | releaseDate: 2023-09-12 40 | eol: 2024-06-05 41 | latest: "1.13.6" 42 | latestReleaseDate: 2024-04-25 43 | 44 | - releaseCycle: "1.12" 45 | releaseDate: 2023-05-19 46 | eol: 2025-05-19 47 | lts: true 48 | latest: "1.12.12" 49 | latestReleaseDate: 2024-06-21 50 | 51 | - releaseCycle: "1.11" 52 | releaseDate: 2023-01-11 53 | eol: 2023-09-12 54 | latest: "1.11.5" 55 | latestReleaseDate: 2023-09-01 56 | 57 | --- 58 | 59 | > [cert-manager](https://cert-manager.io) is a powerful and extensible X.509 certificate controller 60 | > for Kubernetes and OpenShift workloads 61 | 62 | Each release is supported for a period of four months, and they aim to create a new release roughly 63 | every two months, accounting for holiday periods, major conferences and other world events. 64 | 65 | [SemVer](https://semver.org/) is used for all packages released. 66 | -------------------------------------------------------------------------------- /products/tails.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Tails 3 | category: os 4 | tags: linux-distribution 5 | iconSlug: tails 6 | permalink: /tails 7 | versionCommand: cat /etc/amnesia/version 8 | changelogTemplate: https://tails.net/news/version___LATEST__/ 9 | releaseDateColumn: true 10 | 11 | # We fetch dates from Git, and then override a few 12 | # older releases with more accurate dates from distrowatch 13 | # pre-1.3 releases were tagged later, so git data isn't accurate for those. 14 | auto: 15 | methods: 16 | - distrowatch: tails 17 | regex: 18 | - '^Distribution Release: Tails (?P\d).(?P\d)$' 19 | - '^Distribution Release: Incognito Live System (?P\d).(?P\d)$' 20 | 21 | # eol(x) = releaseDate(x+1) 22 | releases: 23 | - releaseCycle: "6" 24 | releaseDate: 2024-02-27 25 | eol: false 26 | latest: "6.4" 27 | latestReleaseDate: 2024-06-18 28 | 29 | - releaseCycle: "5" 30 | releaseDate: 2022-05-03 31 | eol: 2024-02-27 32 | latest: "5.20" 33 | latestReleaseDate: 2023-11-28 34 | 35 | - releaseCycle: "4" 36 | releaseDate: 2019-10-22 37 | eol: 2022-05-02 38 | latest: "4.29" 39 | latestReleaseDate: 2022-04-04 40 | 41 | - releaseCycle: "3" 42 | releaseDate: 2017-06-13 43 | eol: 2019-10-21 44 | latest: "3.16" 45 | latestReleaseDate: 2019-09-03 46 | 47 | - releaseCycle: "2" 48 | releaseDate: 2016-01-27 49 | eol: 2017-07-10 50 | latest: "2.12" 51 | latestReleaseDate: 2017-04-18 52 | 53 | - releaseCycle: "1" 54 | releaseDate: 2014-04-29 55 | eol: 2016-01-25 56 | latest: "1.8.2" 57 | latestReleaseDate: 2016-01-09 58 | 59 | --- 60 | 61 | > [Tails](https://tails.net/about/), or _The Amnesic Incognito Live System_, is a 62 | > security-focused Debian-based Linux distribution aimed at preserving privacy and anonymity. 63 | 64 | Tails [provides upgrades every six weeks](https://tails.net/support/faq/#upgrade) and only 65 | supports the latest release. 66 | -------------------------------------------------------------------------------- /products/almalinux.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: AlmaLinux OS 3 | category: os 4 | tags: linux-distribution 5 | iconSlug: almalinux 6 | permalink: /almalinux 7 | versionCommand: cat /etc/redhat-release 8 | releasePolicyLink: https://blog.cloudlinux.com/announcing-open-sourced-community-driven-rhel-fork-by-cloudlinux 9 | changelogTemplate: https://wiki.almalinux.org/release-notes/__LATEST__.html 10 | eoasColumn: true 11 | releaseDateColumn: true 12 | 13 | identifiers: 14 | - cpe: cpe:/o:almalinux:almalinux 15 | - cpe: cpe:2.3:o:almalinux:almalinux 16 | 17 | auto: 18 | methods: 19 | - distrowatch: alma 20 | regex: '^Distribution Release: AlmaLinux OS (?P\d).(?P\d+)$' 21 | 22 | releases: 23 | - releaseCycle: "9" 24 | releaseDate: 2022-05-26 25 | eoas: 2027-05-31 26 | eol: 2032-05-31 27 | latest: "9.4" 28 | latestReleaseDate: 2024-05-06 29 | link: https://almalinux.org/blog/2024-05-06-announcing-94-stable/ 30 | 31 | - releaseCycle: "8" 32 | releaseDate: 2021-03-30 33 | eoas: 2024-05-01 34 | eol: 2029-03-01 35 | latest: "8.10" 36 | latestReleaseDate: 2024-05-28 37 | link: https://almalinux.org/blog/2024-05-28-announcing-810-stable/ 38 | 39 | --- 40 | 41 | > [AlmaLinux OS](https://almalinux.org/) is an open source, community-owned and governed, 42 | > forever-free enterprise Linux distribution, focused on long-term stability, providing a robust 43 | > production-grade platform. AlmaLinux OS is binary-compatible with 44 | > [RHEL](https://www.redhat.com/en/technologies/linux-platforms/enterprise-linux), and is owned 45 | > and controlled by the non-profit AlmaLinux OS Foundation, managed by a community-elected 46 | > board of directors. 47 | 48 | AlmaLinux OS attempts to release regular updates within 1 business day from RHEL. Each release, like 49 | RHEL, comes with a 10-year lifecycle. Major releases are typically available within a few days to a 50 | few weeks following a major RHEL release. 51 | 52 | *[RHEL]: Red Hat Enterprise Linux 53 | -------------------------------------------------------------------------------- /products/joomla.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Joomla! 3 | category: server-app 4 | tags: php-runtime 5 | iconSlug: joomla 6 | permalink: /joomla 7 | releasePolicyLink: https://docs.joomla.org/Release_and_support_cycle 8 | changelogTemplate: "https://docs.joomla.org/Special:MyLanguage/Joomla_{{'__LATEST__'|split:'.'|slice:0,2|join:'.'}}_version_history#Joomla___LATEST__" 9 | releaseDateColumn: true 10 | eoasColumn: true 11 | 12 | identifiers: 13 | - repology: joomla 14 | 15 | auto: 16 | methods: 17 | - git: https://github.com/joomla/joomla-cms.git 18 | 19 | # eol see https://developer.joomla.org/roadmap.html 20 | releases: 21 | - releaseCycle: "5" 22 | releaseDate: 2023-10-14 23 | eoas: false 24 | eol: 2027-10-19 25 | latest: "5.1.2" 26 | latestReleaseDate: 2024-07-08 27 | # check later for removal: link with changelogTemplate does not work (yet) 28 | link: https://www.joomla.org/announcements/release-news/5900-joomla-5-0-and-joomla-4-4-are-here 29 | 30 | - releaseCycle: "4" 31 | releaseDate: 2021-08-17 32 | eoas: 2024-10-17 33 | eol: 2025-10-17 34 | latest: "4.4.6" 35 | latestReleaseDate: 2024-07-08 36 | 37 | - releaseCycle: "3" 38 | releaseDate: 2012-09-27 39 | eoas: 2021-08-17 40 | eol: 2023-08-17 41 | latest: "3.10.12" 42 | latestReleaseDate: 2023-07-08 43 | 44 | --- 45 | 46 | > [Joomla!](https://www.joomla.org/) is an award-winning content management system (CMS), which 47 | > enables you to build websites and powerful online applications. 48 | 49 | - Each major version is supported for at least 4 years. 50 | - Each major version gets a minimum of 2 years of active development. 51 | - This may be followed by further development as per the [roadmap][roadmap]. 52 | 53 | ## Links 54 | 55 | - [Joomla! CMS Development Roadmap][roadmap] 56 | - [Joomla! CMS versions table](https://docs.joomla.org/Special:MyLanguage/Joomla!_CMS_versions). 57 | 58 | [roadmap]: https://docs.joomla.org/Special:MyLanguage/Joomla_CMS_Development_Roadmap 59 | -------------------------------------------------------------------------------- /products/nuxt.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Nuxt 3 | category: framework 4 | tags: javascript-runtime 5 | permalink: /nuxt 6 | versionCommand: npm list nuxt 7 | releasePolicyLink: https://nuxt.com/docs/community/roadmap 8 | changelogTemplate: https://github.com/nuxt/nuxt/releases/tag/v__LATEST__ 9 | eoasColumn: true 10 | eoesColumn: Commercial Support 11 | releaseDateColumn: true 12 | 13 | auto: 14 | methods: 15 | - npm: nuxt 16 | - release_table: https://nuxt.com/docs/community/roadmap 17 | ignore_empty_releases: true # Ignore future releases 18 | selector: "table" 19 | fields: 20 | releaseCycle: 21 | column: "Release" 22 | regex: '^(?P\d+)\.x.*$' 23 | eol: "End Of Life" 24 | 25 | releases: 26 | - releaseCycle: "3" 27 | releaseDate: 2022-11-16 28 | eoas: false 29 | eol: false 30 | latest: "3.12.4" 31 | latestReleaseDate: 2024-07-18 32 | 33 | - releaseCycle: "2" 34 | releaseDate: 2018-09-21 35 | eoas: 2022-11-16 36 | eol: 2024-06-30 37 | eoes: false 38 | latest: "2.18.1" 39 | latestReleaseDate: 2024-06-28 40 | 41 | --- 42 | 43 | > [Nuxt](https://nuxt.com/) is a free and open-source framework with an intuitive and extendable way 44 | > to create type-safe, performant and production-grade full-stack web applications and websites with 45 | > Vue.js. 46 | 47 | Nuxt follows [Semantic Versioning](https://semver.org/). The roadmap plans for a major release every 48 | year, with an expectation of patch releases every week or so and minor releases every month or so. 49 | 50 | Minor and Patch releases should never contain breaking changes except for features marked as 51 | _experimental_. 52 | 53 | All supported versions should run on [all currently supported Node.js](/nodejs) releases. 54 | 55 | Commercial security support for Nuxt 2 is available through the [HeroDevs Never-Ending Support](https://www.herodevs.com/support) initiative. For more information, see [Nuxt v2](https://v2.nuxt.com/lts) docs. 56 | -------------------------------------------------------------------------------- /products/isc-dhcp.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: ISC DHCP 3 | category: server-app 4 | permalink: /isc-dhcp 5 | releasePolicyLink: https://kb.isc.org/docs/aa-00896#isc-dhcp-eol 6 | changelogTemplate: https://ftp.isc.org/isc/dhcp/__LATEST__/dhcp-__LATEST__-RELNOTES 7 | eolColumn: Support 8 | releaseDateColumn: true 9 | 10 | identifiers: 11 | - repology: dhcp 12 | - purl: pkg:docker/networkboot/dhcpd 13 | 14 | releases: 15 | - releaseCycle: "4.4" 16 | releaseDate: 2018-01-31 17 | eol: 2022-10-05 18 | latest: "4.4.3-P1" 19 | latestReleaseDate: 2022-10-05 20 | 21 | - releaseCycle: "4.3" 22 | releaseDate: 2014-02-04 23 | eol: 2018-02-28 24 | latest: "4.3.6-P1" 25 | latestReleaseDate: 2018-02-28 26 | 27 | - releaseCycle: "4.2" 28 | # https://dhcp-users.isc.narkive.com/41iloiKm/isc-dhcp-4-2-0-is-now-available 29 | releaseDate: 2010-07-15 30 | eol: 2015-03-05 31 | latest: "4.2.8" 32 | latestReleaseDate: 2015-03-05 33 | 34 | - releaseCycle: "4.1" 35 | # dhcp-4.1.0.tar.gz on http://ftp.dei.uc.pt/pub/dhcp/ 36 | releaseDate: 2008-12-19 37 | eol: 2022-10-05 38 | latest: "4.1-ESV-R16-P2" 39 | latestReleaseDate: 2022-10-05 40 | 41 | --- 42 | 43 | > [ISC DHCP](https://www.isc.org/dhcp/) is an open source solution for DHCP servers, relay agents, 44 | > and clients, both IPv4 and IPv6. It is suitable for use in high-volume and high-reliability 45 | > applications. It [reached End-of-Life](https://www.isc.org/blogs/isc-dhcp-eol/) on October 5, 2022. 46 | 47 | The 4.4.3-P1 and 4.1-ESV-R16-P2 versions of ISC DHCP, released on October 5, 2022, were the last 48 | maintenance versions that ISC planned to publish. An exception might be made in case of a 49 | significant security vulnerability, but ISC's intention is to cease actively maintaining ISC DHCP 50 | codebase. 51 | 52 | ISC suggests new users to consider [ISC Kea DHCP server](https://www.isc.org/kea/) or [any other 53 | alternatives](https://en.wikipedia.org/wiki/Comparison_of_DHCP_server_software). 54 | -------------------------------------------------------------------------------- /_redirects: -------------------------------------------------------------------------------- 1 | --- 2 | # Netlify _redirects template. Documentation can be found on https://docs.netlify.com/routing/redirects/. 3 | # 4 | # The _redirects file is included in _config.yml/include key otherwise Jekyll doesn't copy it to 5 | # _site directory, where Netlify expects it. 6 | # 7 | # To create a new redirect, add an alternate_urls array in the page front-matter. 8 | 9 | # Setting a layout forces Jekyll to render this file 10 | layout: null 11 | --- 12 | {%- for page in site.pages -%} 13 | # Redirects for {{page.path}} 14 | {%- if page.alternate_urls %} 15 | {%- for url in page.alternate_urls %} 16 | {{url}} {{page.permalink}} 17 | {%- endfor %} 18 | {%- endif %} 19 | {%- if page.layout == 'product' %} 20 | {{page.permalink}}/_edit https://github.com/endoflife-date/endoflife.date/edit/master/{{page.path}} 21 | /api{{page.permalink}} /api{{page.permalink}}.json 22 | {%- if page.alternate_urls %} 23 | {%- for url in page.alternate_urls %} 24 | /calendar{{url}}.ics /calendar{{page.permalink}}.ics 25 | /api{{url}}.json /api{{page.permalink}}.json 26 | /api{{url}}/* /api{{page.permalink}}/:splat 27 | {%- endfor %} 28 | {%- endif %} 29 | {%- endif %} 30 | 31 | {% endfor %} 32 | 33 | # Clients will try to access /favicon.ico, in some scenarios 34 | # we don't want the file in our codebase, because the theme 35 | # embeds it as a favicon, so instead set a redirect for 36 | # these clients to a PNG file instead. 37 | /favicon.ico /assets/favicon-32x32.png 38 | 39 | # Send API 404 responses in JSON 40 | /api/* /assets/404.json 404 41 | 42 | # A few permanent redirects for removed pages 43 | /tags/api-gateway /tags/web-server 44 | /tags/configuration-management / 45 | /tags/db /tags/database 46 | /tags/library /tags/framework 47 | /tags/managed-mysql /tags/database 48 | /tags/managed-postgresql /tags/database 49 | /tags/package-manager /tags/build-tool 50 | /tags/redhat /tags/red-hat 51 | -------------------------------------------------------------------------------- /products/windows-embedded.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Microsoft Windows Embedded 3 | category: os 4 | tags: microsoft windows 5 | permalink: /windows-embedded 6 | alternate_urls: 7 | - /windowsembedded 8 | versionCommand: winver 9 | releasePolicyLink: https://learn.microsoft.com/lifecycle/products/?terms=Windows%20Embedded 10 | releaseLabel: "Windows Embedded __RELEASE_CYCLE__" 11 | releaseColumn: false 12 | releaseDateColumn: true 13 | eoasColumn: true 14 | 15 | releases: 16 | - releaseCycle: "8.1 Industry" 17 | releaseDate: 2013-11-25 18 | eoas: 2018-07-10 19 | eol: 2023-07-11 20 | link: https://learn.microsoft.com/lifecycle/products/windows-embedded-81-industry 21 | 22 | - releaseCycle: "8.1 Pro" 23 | releaseDate: 2013-11-13 24 | eoas: 2018-01-09 25 | eol: 2023-01-10 26 | link: https://learn.microsoft.com/lifecycle/products/windows-embedded-81-pro 27 | 28 | - releaseCycle: "Compact 2013" 29 | releaseDate: 2013-08-11 30 | eoas: 2018-10-09 31 | eol: 2023-10-10 32 | link: https://learn.microsoft.com/lifecycle/products/windows-embedded-compact-2013 33 | 34 | - releaseCycle: "POSReady 7" 35 | releaseDate: 2011-09-10 36 | eoas: 2016-10-11 37 | eol: 2021-10-12 38 | link: https://learn.microsoft.com/lifecycle/products/windows-embedded-posready-7 39 | 40 | - releaseCycle: "Compact 7" 41 | releaseDate: 2011-03-15 42 | eoas: 2016-04-12 43 | eol: 2021-04-13 44 | link: https://learn.microsoft.com/lifecycle/products/windows-embedded-compact-7 45 | 46 | - releaseCycle: "Standard 7 SP1" 47 | releaseDate: 2011-02-28 48 | eoas: 2015-10-13 49 | eol: 2020-10-13 50 | link: https://learn.microsoft.com/lifecycle/products/windows-embedded-standard-7 51 | 52 | --- 53 | 54 | > [Windows Embedded](https://developer.microsoft.com/windows/iot/), now called Windows IoT, is a 55 | > family of operating systems from Microsoft designed for use in embedded systems. Windows Embedded 56 | > operating systems are available to original equipment manufacturers (OEMs), who make it available 57 | > to end users preloaded with their hardware. 58 | -------------------------------------------------------------------------------- /products/apache-flink.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Flink 3 | category: server-app 4 | tags: apache java-runtime 5 | iconSlug: apacheflink 6 | permalink: /apache-flink 7 | alternate_urls: 8 | - /flink 9 | releasePolicyLink: https://hub.docker.com/_/flink # This is the most conclusive resource 10 | changelogTemplate: https://nightlies.apache.org/flink/flink-docs-release-__RELEASE_CYCLE__/release-notes/flink-__RELEASE_CYCLE__/ 11 | releaseDateColumn: true 12 | 13 | auto: 14 | methods: 15 | - git: https://github.com/apache/flink.git 16 | regex: '^release-(?P[\d\.]+)$' 17 | template: '{{version}}' 18 | 19 | identifiers: 20 | - repology: flink 21 | - purl: pkg:github/apache/flink 22 | - purl: pkg:docker/library/flink 23 | - purl: pkg:docker/apache/flink 24 | - cpe: cpe:/a:apache:flink 25 | - cpe: cpe:2.3:a:apache:flink 26 | 27 | releases: 28 | - releaseCycle: "1.20" 29 | releaseDate: 2024-08-01 30 | eol: false 31 | latest: "1.20.0" 32 | latestReleaseDate: 2024-08-01 33 | 34 | - releaseCycle: "1.19" 35 | releaseDate: 2024-03-15 36 | eol: false 37 | latest: "1.19.1" 38 | latestReleaseDate: 2024-06-14 39 | 40 | - releaseCycle: "1.18" 41 | releaseDate: 2023-10-24 42 | eol: false 43 | latest: "1.18.1" 44 | latestReleaseDate: 2024-01-16 45 | 46 | - releaseCycle: "1.17" 47 | releaseDate: 2023-03-23 48 | eol: false 49 | latest: "1.17.2" 50 | latestReleaseDate: 2023-11-27 51 | 52 | --- 53 | 54 | > [Apache Flink](https://flink.apache.org/) is a is a stream processing 55 | > framework designed for processing large-scale data streams in real-time with 56 | > high throughput and low latency. 57 | 58 | Apache Flink maintains match releases for multiple versions. Backports seem to be 59 | maintained for the latest 3 releases. 60 | 61 | ## [Java Compatibility](https://nightlies.apache.org/flink/flink-docs-release-1.19/docs/deployment/java_compatibility/) 62 | 63 | - Java 8 is supported, but deprecated. 64 | - Java 11 is the recommended version. 65 | - Java 17 is supported experimentally for Flink 1.18 and above. 66 | -------------------------------------------------------------------------------- /_layouts/schema.html: -------------------------------------------------------------------------------- 1 | {%- include variables.html -%} 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | {% if site.twitter.site != '' %}{% endif %} 28 | 29 | 30 | 31 | {{- title -}} 32 | 33 | 34 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /products/readynas.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Netgear ReadyNAS 3 | category: device 4 | tags: linux-distribution 5 | permalink: /readynas 6 | changelogTemplate: "https://www.netgear.com/support/product/{{'__RELEASE_CYCLE__'|downcase}}" 7 | releaseColumn: false 8 | 9 | releases: 10 | - releaseCycle: "RR4360X" 11 | eol: true 12 | 13 | - releaseCycle: "RR4360S" 14 | eol: true 15 | 16 | - releaseCycle: "RR4312X" 17 | eol: true 18 | 19 | - releaseCycle: "RR3312" 20 | eol: true 21 | 22 | - releaseCycle: "RR2304" 23 | eol: true 24 | 25 | - releaseCycle: "RN716X" 26 | eol: true 27 | 28 | - releaseCycle: "RN628X" 29 | eol: true 30 | 31 | - releaseCycle: "RN626X" 32 | eol: true 33 | 34 | - releaseCycle: "RN528X" 35 | eol: true 36 | 37 | - releaseCycle: "RN526X" 38 | eol: true 39 | 40 | - releaseCycle: "RN524X" 41 | eol: true 42 | 43 | - releaseCycle: "RN516" 44 | eol: true 45 | 46 | - releaseCycle: "RN426" 47 | eol: true 48 | 49 | - releaseCycle: "RN424" 50 | eol: true 51 | 52 | - releaseCycle: "RN422" 53 | eol: true 54 | 55 | - releaseCycle: "RN3220" 56 | eol: true 57 | 58 | - releaseCycle: "RN316" 59 | eol: true 60 | 61 | - releaseCycle: "RN314" 62 | eol: true 63 | 64 | - releaseCycle: "RN3138" 65 | eol: false 66 | 67 | - releaseCycle: "RN3130" 68 | eol: true 69 | 70 | - releaseCycle: "RN312" 71 | eol: true 72 | 73 | - releaseCycle: "RN214" 74 | eol: false 75 | 76 | - releaseCycle: "RN2120" 77 | eol: true 78 | 79 | - releaseCycle: "RN212" 80 | eol: false 81 | 82 | - releaseCycle: "RN204" 83 | eol: true 84 | 85 | - releaseCycle: "RN202" 86 | eol: true 87 | 88 | - releaseCycle: "RN104" 89 | eol: true 90 | 91 | - releaseCycle: "RN102" 92 | eol: true 93 | 94 | --- 95 | 96 | > ReadyNAS is a line of network-attached storages sold by [Netgear](https://www.netgear.com/). 97 | 98 | These devices run [ReadyNAS OS](https://www.netgear.com/support/product/readynas_os_6), a Linux 99 | distribution based on [Debian](https://endoflife.date/debian) 8. 100 | -------------------------------------------------------------------------------- /products/logstash.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Logstash 3 | category: server-app 4 | tags: elastic 5 | iconSlug: logstash 6 | permalink: /logstash 7 | releasePolicyLink: https://www.elastic.co/support_policy 8 | changelogTemplate: "https://www.elastic.co/guide/en/logstash/{{'__LATEST__'|split:'.'|pop|join:'.'}}/logstash-{{'__LATEST__'|replace:'.','-'}}.html" 9 | eolColumn: Support 10 | releaseDateColumn: true 11 | 12 | identifiers: 13 | - repology: logstash 14 | - cpe: cpe:/a:elastic:logstash 15 | - cpe: cpe:2.3:a:elastic:logstash 16 | 17 | auto: 18 | methods: 19 | - git: https://github.com/elastic/logstash.git 20 | 21 | releases: 22 | - releaseCycle: "8" 23 | eol: 2024-08-10 # later of 2024-08-10 or 6 months after the release date of 9.0 24 | latest: "8.14.3" 25 | latestReleaseDate: 2024-07-04 26 | releaseDate: 2022-02-10 27 | 28 | - releaseCycle: "7" 29 | eol: false # later of 2023-08-01 or the release date of 9.0 30 | latest: "7.17.23" 31 | latestReleaseDate: 2024-07-23 32 | releaseDate: 2019-04-05 33 | 34 | - releaseCycle: "6" 35 | eol: 2022-02-10 36 | latest: "6.8.23" 37 | latestReleaseDate: 2022-01-13 38 | releaseDate: 2017-11-08 39 | 40 | --- 41 | 42 | > [Logstash](https://www.elastic.co/logstash/) is a tool to collect, process, and forward events and 43 | > log messages. 44 | 45 | Logstash is part of the [Elastic Stack](https://www.elastic.co/elastic-stack/), also known as the 46 | [ELK Stack](https://www.elastic.co/what-is/elk-stack). It shares the same support policy as the 47 | other products in the Elastic Stack (Elasticsearch, Kibana, Beats...). 48 | 49 | Elastic Stack product releases follow [Semantic Versioning](https://semver.org/). Elastic provides 50 | maintenance for each major release series for the longest of 30 months after the GA date of the 51 | major release or 6 months after the GA date of the subsequent major release. 52 | 53 | End of life dates for Logstash can be found on the [Elastic product EOL dates page](https://www.elastic.co/support/eol). 54 | Support for various operating systems can also be found on the [Elastic support matrix page](https://www.elastic.co/support/matrix). 55 | 56 | *[GA]: General Availability 57 | *[EOL]: End Of Life 58 | -------------------------------------------------------------------------------- /products/kibana.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Kibana 3 | category: server-app 4 | tags: elastic 5 | iconSlug: kibana 6 | permalink: /kibana 7 | releasePolicyLink: https://www.elastic.co/support_policy 8 | changelogTemplate: "https://www.elastic.co/guide/en/kibana/{{'__LATEST__'|split:'.'|pop|join:'.'}}/release-notes-__LATEST__.html" 9 | eolColumn: Support 10 | releaseDateColumn: true 11 | 12 | identifiers: 13 | - repology: kibana 14 | - cpe: cpe:/a:elastic:kibana 15 | - cpe: cpe:2.3:a:elastic:kibana 16 | 17 | auto: 18 | methods: 19 | - git: https://github.com/elastic/kibana.git 20 | 21 | releases: 22 | - releaseCycle: "8" 23 | eol: 2024-08-10 # later of 2024-08-10 or 6 months after the release date of 9.0 24 | latest: "8.14.3" 25 | latestReleaseDate: 2024-07-08 26 | releaseDate: 2022-02-10 27 | 28 | - releaseCycle: "7" 29 | eol: false # later of 2023-08-01 or the release date of 9.0 30 | latest: "7.17.23" 31 | latestReleaseDate: 2024-07-24 32 | releaseDate: 2019-04-10 33 | 34 | - releaseCycle: "6" 35 | eol: 2022-02-10 36 | latest: "6.8.23" 37 | latestReleaseDate: 2022-01-13 38 | releaseDate: 2017-11-14 39 | 40 | --- 41 | 42 | > [Kibana](https://www.elastic.co/kibana/) is a free and open user interface that lets you visualize 43 | > your Elasticsearch data and navigate the Elastic Stack. 44 | 45 | Kibana is part of the [Elastic Stack](https://www.elastic.co/elastic-stack/), also known as the 46 | [ELK Stack](https://www.elastic.co/what-is/elk-stack). It shares the same support policy as the 47 | other products in the Elastic Stack (Elasticsearch, Logstash, Beats...). 48 | 49 | Elastic Stack product releases follow [Semantic Versioning](https://semver.org/). Elastic provides 50 | maintenance for each major release series for the longest of 30 months after the GA date of the 51 | major release or 6 months after the GA date of the subsequent major release. 52 | 53 | End of life dates for Kibana can be found on the [Elastic product EOL dates page](https://www.elastic.co/support/eol). 54 | Support for various operating systems can also be found on the [Elastic support matrix page](https://www.elastic.co/support/matrix). 55 | 56 | *[GA]: General Availability 57 | *[EOL]: End Of Life 58 | -------------------------------------------------------------------------------- /products/pci-dss.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: PCI-DSS 3 | category: standard 4 | permalink: /pci-dss 5 | alternate_urls: 6 | - /pci 7 | releasePolicyLink: https://blog.pcisecuritystandards.org/updated-pci-dss-v4.0-timeline 8 | releasePolicyImage: https://blog.pcisecuritystandards.org/hs-fs/hubfs/Development.png?width=750&name=Development.png 9 | releaseColumn: false 10 | releaseDateColumn: true 11 | eolColumn: Acceptance 12 | 13 | releases: 14 | - releaseCycle: "4.0.1" 15 | releaseDate: 2024-06-11 16 | eol: false 17 | link: https://blog.pcisecuritystandards.org/just-published-pci-dss-v4-0-1 18 | 19 | - releaseCycle: "4.0" 20 | releaseDate: 2022-03-31 21 | eol: 2024-12-31 22 | link: https://blog.pcisecuritystandards.org/pci-dss-v4-0-resource-hub 23 | 24 | - releaseCycle: "3.2.1" 25 | releaseDate: 2018-05-01 26 | eol: 2024-03-31 27 | link: https://docs-prv.pcisecuritystandards.org/PCI%20DSS/Standard/PCI_DSS_Summary_of_Changes_3-2-1.pdf 28 | 29 | - releaseCycle: "3.2" 30 | releaseDate: 2016-04-01 31 | eol: 2018-12-31 32 | 33 | - releaseCycle: "3.1" 34 | releaseDate: 2015-04-01 35 | eol: 2016-10-31 36 | 37 | --- 38 | 39 | > [PCI-DSS](https://www.pcisecuritystandards.org) is an information security standard for 40 | > organizations that handle branded credit cards from the major card schemes. 41 | 42 | - PCI DSS v3.2.1 will remain active till March 2024. This provides organizations time to become 43 | familiar with the new version, and plan for and implement the changes needed. A 44 | [summary of changes](https://docs-prv.pcisecuritystandards.org/PCI%20DSS/Standard/PCI-DSS-v3-2-1-to-v4-0-Summary-of-Changes-r1.pdf) 45 | from v3.2.1 to v4.0 is available. 46 | 47 | - Future-dated new requirements introduced in v4.0 will become effective on 31st March 2025. 48 | 49 | - PCI DSS 3.2 remained valid till 31 December 2018 and was retired on 1 January 2019. 50 | 51 | - PCI DSS [3.1 retired on 31 October 2016](https://listings.pcisecuritystandards.org/pdfs/PCI_DSS_Resource_Guide_%28003%29.pdf). 52 | The new requirements introduced in PCI DSS 3.2 were considered best practices until 31 January 2018. 53 | Starting 1 February 2018 they are effective as requirements and must be used. 54 | -------------------------------------------------------------------------------- /products/jhipster.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: JHipster 3 | category: app 4 | tags: java-runtime javascript-runtime 5 | permalink: /jhipster 6 | versionCommand: yo jhipster 7 | releasePolicyLink: https://www.jhipster.tech/releases/ 8 | changelogTemplate: "https://github.com/jhipster/generator-jhipster/releases/tag/v__LATEST__" 9 | releaseDateColumn: true 10 | eolColumn: Supported 11 | 12 | identifiers: 13 | - repology: jhipster 14 | - cpe: cpe:/a:jhipster:jhipster 15 | - cpe: cpe:2.3:a:jhipster:jhipster 16 | 17 | auto: 18 | methods: 19 | - npm: generator-jhipster 20 | 21 | # eol(x) = releaseDate(x+1) 22 | releases: 23 | - releaseCycle: "8" 24 | releaseDate: 2023-11-02 25 | eol: false 26 | latest: "8.6.0" 27 | latestReleaseDate: 2024-06-24 28 | 29 | - releaseCycle: "7" 30 | releaseDate: 2021-03-21 31 | eol: 2023-11-02 32 | latest: "7.9.4" 33 | latestReleaseDate: 2023-09-05 34 | 35 | - releaseCycle: "6" 36 | releaseDate: 2019-05-02 37 | eol: 2021-03-21 38 | latest: "6.10.5" 39 | latestReleaseDate: 2020-11-07 40 | 41 | - releaseCycle: "5" 42 | releaseDate: 2018-06-20 43 | eol: 2019-05-02 44 | latest: "5.8.2" 45 | latestReleaseDate: 2019-02-28 46 | 47 | - releaseCycle: "4" 48 | releaseDate: 2017-02-02 49 | eol: 2018-06-20 50 | latest: "4.14.5" 51 | latestReleaseDate: 2018-06-19 52 | 53 | - releaseCycle: "3" 54 | releaseDate: 2016-03-23 55 | eol: 2017-02-02 56 | latest: "3.12.2" 57 | latestReleaseDate: 2016-12-19 58 | 59 | - releaseCycle: "2" 60 | releaseDate: 2015-01-12 61 | eol: 2016-03-23 62 | latest: "2.27.2" 63 | latestReleaseDate: 2016-03-07 64 | 65 | - releaseCycle: "1" 66 | releaseDate: 2014-09-01 67 | eol: 2015-01-09 68 | latest: "1.10.2" 69 | latestReleaseDate: 2014-12-11 70 | 71 | - releaseCycle: "0" 72 | releaseDate: 2013-10-21 73 | eol: 2014-09-01 74 | latest: "0.18.1" 75 | latestReleaseDate: 2014-07-24 76 | 77 | --- 78 | 79 | > JHipster is a development platform to quickly generate, develop, & deploy modern 80 | > web applications & microservice architectures. 81 | 82 | 83 | Only the latest release is supported, with active feature development, and security fixes. 84 | -------------------------------------------------------------------------------- /products/openwrt.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: OpenWrt 3 | category: os 4 | tags: linux-distribution 5 | iconSlug: openwrt 6 | permalink: /openwrt 7 | alternate_urls: 8 | - /open-wrt 9 | versionCommand: cat /etc/os-release 10 | releasePolicyLink: https://openwrt.org/docs/guide-developer/security#support_status 11 | changelogTemplate: "https://openwrt.org/releases/{{'__LATEST__'|split:'.'|pop|join:'.'}}/start" 12 | releaseDateColumn: true 13 | eoasColumn: true 14 | 15 | auto: 16 | methods: 17 | - git: https://github.com/openwrt/openwrt.git 18 | 19 | # EOL(R)=MAX(releaseDate(R+1)+6m, releaseDate(R)+1y) 20 | # Support(R) = releaseDate(R+1) 21 | releases: 22 | - releaseCycle: "23.05" 23 | releaseDate: 2023-10-11 24 | eoas: false 25 | eol: false 26 | latest: "23.05.4" 27 | latestReleaseDate: 2024-07-16 28 | 29 | - releaseCycle: "22.03" 30 | releaseDate: 2022-09-03 31 | eoas: 2023-10-11 32 | eol: 2024-04-11 33 | latest: "22.03.7" 34 | latestReleaseDate: 2024-07-23 35 | 36 | - releaseCycle: "21.02" 37 | eol: 2023-04-30 38 | eoas: 2022-09-03 39 | releaseDate: 2021-09-01 40 | latestReleaseDate: 2023-04-27 41 | latest: "21.02.7" 42 | 43 | - releaseCycle: "19.07" 44 | eol: 2022-04-30 45 | eoas: 2021-09-01 46 | releaseDate: 2020-01-06 47 | latestReleaseDate: 2022-04-17 48 | latest: "19.07.10" 49 | 50 | - releaseCycle: "18.06" 51 | eol: 2021-07-01 52 | eoas: 2020-01-06 53 | releaseDate: 2018-07-30 54 | latestReleaseDate: 2020-11-17 55 | latest: "18.06.9" 56 | 57 | - releaseCycle: "17.01" 58 | eol: 2019-02-01 59 | eoas: 2018-07-30 60 | releaseDate: 2017-02-20 61 | latestReleaseDate: 2019-06-21 62 | latest: "17.01.7" 63 | 64 | 65 | 66 | 67 | --- 68 | 69 | > [OpenWrt](https://openwrt.org/) is a highly extensible GNU/Linux distribution for embedded devices 70 | > (typically wireless routers). 71 | 72 | The latest major release is fully supported with updates for the core packages, fixing security and other issues. 73 | The previous major release only receives security fixes till the End-of-Life date. 74 | Each major release becomes EoL 6 months after the release 75 | of the next major version, with a minimum of 1 year from its own release. 76 | -------------------------------------------------------------------------------- /products/vmware-photon.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: VMware Photon 3 | category: os 4 | tags: vmware 5 | iconSlug: vmware 6 | permalink: /photon 7 | alternate_urls: 8 | - /vmware-photon 9 | - /vmwarephoton 10 | versionCommand: cat /etc/os-release 11 | releasePolicyLink: https://blogs.vmware.com/vsphere/2023/05/announcing-photon-os-5-0-general-availability.html 12 | releaseColumn: false 13 | releaseDateColumn: true 14 | eolColumn: Security Support 15 | 16 | customColumns: 17 | - property: kernelVersion 18 | position: after-release-column 19 | label: Kernel Version 20 | description: Linux Kernel Version 21 | 22 | identifiers: 23 | - cpe: cpe:2.3:o:vmware:photon_os 24 | 25 | # EOL Dates for 3.0 and 4.0 are tentative, as they are documented as: 26 | # March 2024, and March 2026. 27 | releases: 28 | - releaseCycle: "5.0" 29 | releaseDate: 2023-05-02 30 | eol: false 31 | link: https://blogs.vmware.com/vsphere/2023/05/announcing-photon-os-5-0-general-availability.html 32 | kernelVersion: 6.1 33 | 34 | - releaseCycle: "4.0" 35 | releaseDate: 2021-02-25 36 | eol: 2026-03-01 37 | link: https://blogs.vmware.com/vsphere/2021/02/photon-os-4-0-release-announcement.html 38 | kernelVersion: 5.10 39 | 40 | - releaseCycle: "3.0" 41 | releaseDate: 2019-02-08 42 | eol: 2024-03-01 43 | link: https://vmware.github.io/photon/assets/files/html/3.0/What-is-New-in-Photon-OS-3.0.html 44 | kernelVersion: 4.19 45 | 46 | - releaseCycle: "2.0" 47 | releaseDate: 2017-11-01 48 | eol: 2022-12-01 49 | link: https://web.archive.org/web/20221224152228/https://blogs.vmware.com/cloudnative/2017/11/01/version-2-0-project-photon-os/ 50 | kernelVersion: 4.9 51 | 52 | - releaseCycle: "1.0" 53 | releaseDate: 2016-06-11 54 | eol: 2022-02-28 55 | link: https://web.archive.org/web/20220628122239/https://blogs.vmware.com/cloudnative/2016/06/16/vmwares-photon-os-1-0-now-available/ 56 | kernelVersion: 4.4 # https://github.com/vmware/photon/blob/1.0GA/SPECS/linux/linux.spec 57 | 58 | --- 59 | 60 | > VMWare [Photon OS](https://vmware.github.io/photon/) is an open source Linux container host 61 | > optimized for cloud-native applications, cloud platforms, and VMware infrastructure. 62 | 63 | End-of-Life dates are tentative. 64 | -------------------------------------------------------------------------------- /products/sqlite.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SQLite 3 | category: database 4 | iconSlug: sqlite 5 | permalink: /sqlite 6 | alternate_urls: 7 | - /sqlite3 8 | versionCommand: sqlite3 --version 9 | releasePolicyLink: https://www.sqlite.org/support.html 10 | changelogTemplate: "https://www.sqlite.org/changes.html#version_{{'__LATEST__'|replace:'.','_'}}" 11 | releaseDateColumn: true 12 | eolColumn: Support Status 13 | 14 | identifiers: 15 | - purl: pkg:generic/sqlite 16 | - purl: pkg:apk/alpine/sqlite 17 | - purl: pkg:github/sqlite/sqlite 18 | 19 | # This git mirror only contains versions from 3.6.10. 20 | auto: 21 | methods: 22 | - git: https://github.com/sqlite/sqlite.git 23 | regex: '^version-(?P\d+)\.(?P\d+)(\.(?P\d+))?$' 24 | 25 | releases: 26 | - releaseCycle: "3" 27 | releaseDate: 2009-01-15 28 | eol: false 29 | latest: "3.46.0" 30 | latestReleaseDate: 2024-05-23 31 | 32 | - releaseCycle: "2" 33 | releaseDate: 2001-09-28 34 | # 3.0.7 release date, because it is the first stable release in the 3.x line 35 | eol: 2004-09-18 36 | latest: "2.8.17" 37 | latestReleaseDate: 2005-12-19 38 | 39 | - releaseCycle: "1" 40 | releaseDate: 2000-08-17 41 | eol: 2001-09-28 42 | latest: "1.0.32" 43 | latestReleaseDate: 2001-07-23 44 | 45 | --- 46 | 47 | > SQLite is an in-process library that implements a self-contained, serverless, zero-configuration, 48 | > transactional SQL database engine. The code for SQLite is in the public domain and is thus free 49 | > for use for any purpose, commercial or private. 50 | 51 | SQLite follows [semantic versioning](https://semver.org) since [3.9.0](https://www.sqlite.org/versionnumbers.html). 52 | Only the latest version is supported, but [various professional support options](https://www.sqlite.org/prosupport.html) 53 | are available. The most notable one is the [Technical Support](https://sqlite.org/com/tech.html) 54 | which gives access to support for any version of SQLite up to a year old. 55 | 56 | Developers made a pledge to [_support SQLite through the year 2050_](https://www.sqlite.org/lts.html). 57 | This doesn't mean they are supporting [all SQLite releases](https://www.sqlite.org/chronology.html), 58 | it means they plan as if they will be supporting SQLite until 2050. 59 | -------------------------------------------------------------------------------- /products/ros.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: ROS 3 | category: os 4 | iconSlug: ros 5 | permalink: /ros 6 | versionCommand: rosversion -d 7 | releasePolicyLink: https://wiki.ros.org/Distributions 8 | changelogTemplate: 'https://wiki.ros.org/__RELEASE_CYCLE__' 9 | releaseLabel: '__CODENAME__' 10 | releaseDateColumn: true 11 | releaseColumn: false 12 | eolColumn: End Of Life 13 | 14 | releases: 15 | - releaseCycle: 'noetic' 16 | codename: 'Noetic Ninjemys' 17 | releaseDate: 2020-05-23 18 | eol: 2025-05-01 19 | latest: noetic 20 | latestReleaseDate: 2020-05-23 21 | 22 | - releaseCycle: 'melodic' 23 | codename: 'Melodic Morenia' 24 | releaseDate: 2018-05-23 25 | eol: 2023-04-01 26 | latest: melodic 27 | latestReleaseDate: 2018-05-23 28 | 29 | - releaseCycle: 'lunar' 30 | codename: 'Lunar Loggerhead' 31 | releaseDate: 2017-05-23 32 | eol: 2019-05-01 33 | latest: lunar 34 | latestReleaseDate: 2017-05-23 35 | 36 | - releaseCycle: 'kinetic' 37 | codename: 'Kinetic Kame' 38 | releaseDate: 2016-05-23 39 | eol: 2021-05-01 40 | latest: kinetic 41 | latestReleaseDate: 2016-05-23 42 | 43 | --- 44 | 45 | > ROS (Robot Operating System) provides libraries and tools to help software developers create robot 46 | > applications. 47 | 48 | Release rules: 49 | 50 | - There is a ROS release every year in May. 51 | - Releases on even numbered years will be a LTS release, supported for five years. 52 | - Releases on odd numbered years are normal ROS releases, supported for two years. 53 | - ROS releases will drop support for EOL Ubuntu distributions, even if the ROS release is still supported. 54 | 55 | Side effects of the release policy: 56 | 57 | - Every ROS release will be supported on exactly one Ubuntu LTS. 58 | - Releases on odd numbered years will share a common Ubuntu release with the LTS ROS release of the previous year. 59 | - LTS releases will not share a common Ubuntu release with any previous releases. 60 | - ROS releases will not add support for new Ubuntu distributions after their release date. 61 | 62 | These simplified rules and side effects are subject to change with changes to the underlying Ubuntu 63 | release policy. 64 | 65 | For more details see the official [Release Policy](https://wiki.ros.org/Distributions/ReleasePolicy). 66 | -------------------------------------------------------------------------------- /products/varnish.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Varnish 3 | category: server-app 4 | tags: web-server 5 | permalink: /varnish 6 | versionCommand: varnishd -V 7 | releasePolicyLink: https://varnish-cache.org/releases/ 8 | changelogTemplate: https://varnish-cache.org/releases/rel__LATEST__.html 9 | 10 | identifiers: 11 | - repology: varnish 12 | - purl: pkg:brew/varnish 13 | - purl: pkg:docker/library/varnish 14 | 15 | auto: 16 | methods: 17 | - git: https://github.com/varnishcache/varnish-cache.git 18 | regex: ^varnish-(?P\d+)\.(?P\d+)\.(?P\d+)$ 19 | - release_table: https://varnish-cache.org/releases/ 20 | selector: "table" 21 | fields: 22 | releaseCycle: 23 | column: "Release" 24 | regex: '(?P\d+\.\d+).*' 25 | eol: "EOL Date" 26 | 27 | releases: 28 | - releaseCycle: "7.5" 29 | releaseDate: 2024-03-18 30 | eol: 2025-03-15 31 | latest: '7.5.0' 32 | latestReleaseDate: 2024-03-18 33 | 34 | - releaseCycle: "7.4" 35 | releaseDate: 2023-09-15 36 | eol: 2024-09-15 37 | latest: '7.4.3' 38 | latestReleaseDate: 2024-03-18 39 | 40 | - releaseCycle: "7.3" 41 | releaseDate: 2023-03-15 42 | eol: 2024-03-15 43 | latest: '7.3.2' 44 | latestReleaseDate: 2024-03-18 45 | 46 | - releaseCycle: "7.2" 47 | releaseDate: 2022-09-15 48 | eol: 2023-09-15 49 | latest: '7.2.1' 50 | latestReleaseDate: 2022-10-11 51 | 52 | - releaseCycle: "7.1" 53 | releaseDate: 2022-03-15 54 | eol: 2023-03-15 55 | latest: '7.1.2' 56 | latestReleaseDate: 2022-10-10 57 | 58 | - releaseCycle: "7.0" 59 | releaseDate: 2021-09-15 60 | eol: 2022-09-15 61 | latest: '7.0.3' 62 | latestReleaseDate: 2022-08-05 63 | 64 | - releaseCycle: "6.0" 65 | lts: true 66 | releaseDate: 2018-03-15 67 | eol: false 68 | latest: '6.0.13' 69 | latestReleaseDate: 2024-03-18 70 | 71 | --- 72 | 73 | > [Varnish](https://varnish-cache.org/) is a caching HTTP reverse proxy. 74 | 75 | A new minor version is released every 6 months. 76 | 77 | A list of security vulnerabilities is [available here](https://varnish-cache.org/security/index.html). 78 | You can also subscribe to the [varnish-announce](https://varnish-cache.org/lists/mailman/listinfo/varnish-announce) 79 | mailing list. 80 | -------------------------------------------------------------------------------- /products/roundcube.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Roundcube Webmail 3 | category: server-app 4 | tags: php-runtime 5 | iconSlug: roundcube 6 | permalink: /roundcube 7 | releasePolicyLink: https://roundcube.net/news/2021/10/18/roundcube-1.5.0-released 8 | changelogTemplate: https://github.com/roundcube/roundcubemail/releases/tag/__LATEST__ 9 | eoasColumn: true 10 | releaseDateColumn: true 11 | eolColumn: Security Support 12 | 13 | identifiers: 14 | - repology: roundcube 15 | 16 | auto: 17 | methods: 18 | - git: https://github.com/roundcube/roundcubemail.git 19 | 20 | releases: 21 | - releaseCycle: "1.6" 22 | releaseDate: 2022-07-25 23 | eoas: false 24 | eol: false 25 | latest: "1.6.8" 26 | latestReleaseDate: 2024-08-04 27 | 28 | - releaseCycle: "1.5" 29 | releaseDate: 2021-10-18 30 | eoas: false 31 | eol: false 32 | latest: "1.5.8" 33 | latestReleaseDate: 2024-08-04 34 | 35 | - releaseCycle: "1.4" 36 | releaseDate: 2019-11-09 37 | eoas: true 38 | eol: false 39 | latest: "1.4.16" 40 | latestReleaseDate: 2023-12-10 41 | 42 | - releaseCycle: "1.3" 43 | releaseDate: 2017-06-26 44 | eoas: true 45 | eol: 2022-07-28 46 | latest: "1.3.17" 47 | latestReleaseDate: 2021-11-12 48 | 49 | - releaseCycle: "1.2" 50 | releaseDate: 2016-05-21 51 | eoas: true 52 | eol: 2021-10-18 53 | latest: "1.2.13" 54 | latestReleaseDate: 2020-12-27 55 | 56 | - releaseCycle: "1.1" 57 | releaseDate: 2015-02-07 58 | eoas: true 59 | eol: true 60 | latest: "1.1.12" 61 | latestReleaseDate: 2018-04-29 62 | 63 | - releaseCycle: "1.0" 64 | releaseDate: 2014-04-05 65 | eoas: true 66 | eol: true 67 | latest: "1.0.12" 68 | latestReleaseDate: 2017-11-08 69 | 70 | --- 71 | 72 | > [Roundcube Webmail](https://roundcube.net/) is a browser-based multilingual IMAP client with an 73 | > application-like user interface. It provides full functionality you expect from an email client, 74 | > including MIME support, address book, folder manipulation, message searching and spell checking. 75 | 76 | As of the last release, the project supports last 2 release branches in a "LTS low maintenance 77 | mode", which only includes important security updates only. Regular improvement updates are only 78 | available on the latest stable release. 79 | -------------------------------------------------------------------------------- /.github/workflows/auto-merge-release-updates.yml: -------------------------------------------------------------------------------- 1 | name: Dependabot auto-merge release-updates 2 | on: pull_request 3 | 4 | # Based on https://docs.github.com/en/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions#enable-auto-merge-on-a-pull-request 5 | permissions: 6 | pull-requests: write 7 | contents: write 8 | 9 | jobs: 10 | dependabot: 11 | runs-on: ubuntu-latest 12 | if: ${{ github.actor == 'dependabot[bot]' }} 13 | steps: 14 | - id: metadata 15 | name: Dependabot metadata 16 | uses: dependabot/fetch-metadata@v2.2.0 17 | with: 18 | github-token: "${{ secrets.GITHUB_TOKEN }}" 19 | 20 | - name: Clone self repository 21 | uses: actions/checkout@v4 22 | with: 23 | ref: ${{ github.head_ref }} 24 | submodules: true 25 | 26 | - name: Set up Python 27 | uses: actions/setup-python@v5 28 | with: 29 | python-version: '3.11' 30 | 31 | - name: Install Python Dependencies 32 | run: pip install -r '_data/release-data/requirements.txt' 33 | 34 | - id: latest 35 | name: Auto-update products 36 | run: python '_data/release-data/latest.py' -p 'products/' -d '_data/release-data/releases' 37 | 38 | - name: Commit changes 39 | uses: stefanzweifel/git-auto-commit-action@v5 40 | with: 41 | file_pattern: products/* 42 | commit_message: "🤖: Update latest release data" 43 | status_options: '--untracked-files=no' 44 | commit_author: 'github-actions[bot] ' 45 | 46 | - name: Create PR 47 | if: ${{ contains(steps.metadata.outputs.dependency-names, '_data/release-data') }} 48 | run: gh pr merge --auto --rebase "$PR_URL" 49 | env: 50 | PR_URL: ${{github.event.pull_request.html_url}} 51 | GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} 52 | 53 | - name: Comment on PR about missing releases 54 | uses: github-actions-up-and-running/pr-comment@v1.0.1 55 | with: 56 | repo-token: ${{ secrets.GITHUB_TOKEN }} 57 | message: | 58 | :warning: The following recent releases are not listed: 59 | ``` 60 | ${{ steps.latest.outputs.warning }} 61 | ``` 62 | -------------------------------------------------------------------------------- /products/node-feature-discovery.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Kubernetes Node Feature Discovery 3 | category: server-app 4 | tags: kubernetes 5 | iconSlug: kubernetes 6 | permalink: /kubernetes-node-feature-discovery 7 | alternate_urls: 8 | - /k8s-node-feature-discovery 9 | - /node-feature-discovery 10 | versionCommand: |- 11 | # Exec Into Kubectl Po and get version 12 | kubectl exec -it deploy/node-feature-discovery-gc -n node-feature-delivery -- bash 13 | $ nfd-gc -version 14 | releasePolicyLink: https://github.com/kubernetes-sigs/node-feature-discovery/releases 15 | changelogTemplate: https://github.com/kubernetes-sigs/node-feature-discovery/releases/tag/v__LATEST__ 16 | releaseDateColumn: true 17 | eolColumn: Support 18 | 19 | auto: 20 | methods: 21 | - git: https://github.com/kubernetes-sigs/node-feature-discovery.git 22 | regex: '^v?(?P\d)\.(?P\d+)(\.(?P\d+)(\.(?P\d+))?)?$' # 0.x versions are ignored by default 23 | 24 | identifiers: 25 | - purl: pkg:github/kubernetes-sigs/node-feature-discovery 26 | - purl: pkg:oci/node-feature-discovery?repository_url=registry.k8s.io/nfd 27 | 28 | # eol(x) = releaseDate(x+2) 29 | releases: 30 | - releaseCycle: "0.16" 31 | releaseDate: 2024-05-27 32 | eol: false 33 | latest: "0.16.3" 34 | latestReleaseDate: 2024-07-16 35 | 36 | - releaseCycle: "0.15" 37 | releaseDate: 2023-08-08 38 | eol: false 39 | latest: "0.15.6" 40 | latestReleaseDate: 2024-07-10 41 | 42 | - releaseCycle: "0.14" 43 | releaseDate: 2023-04-19 44 | eol: 2024-05-27 45 | latest: "0.14.6" 46 | latestReleaseDate: 2024-04-05 47 | 48 | - releaseCycle: "0.13" 49 | releaseDate: 2022-12-21 50 | eol: 2023-04-19 51 | latest: "0.13.6" 52 | latestReleaseDate: 2023-10-23 53 | 54 | - releaseCycle: "0.12" 55 | releaseDate: 2022-06-07 56 | eol: 2023-09-12 57 | latest: "0.12.5" 58 | latestReleaseDate: 2023-07-21 59 | 60 | --- 61 | 62 | > [node-feature-discovery](https://kubernetes-sigs.github.io/node-feature-discovery/) is a a Kubernetes add-on for 63 | > detecting hardware features and system configuration. It advertises these features using node labels and optionally 64 | > node extended resources, annotations and node taints. 65 | 66 | Looking at prior releases, a new release is made every two weeks, and the latest two releases receive bug fixes. 67 | -------------------------------------------------------------------------------- /products/centos.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: CentOS 3 | category: os 4 | tags: linux-distribution 5 | iconSlug: centos 6 | permalink: /centos 7 | versionCommand: cat /etc/redhat-release 8 | releasePolicyLink: https://wiki.centos.org/About(2f)Product.html 9 | eoasColumn: true 10 | releaseDateColumn: true 11 | 12 | identifiers: 13 | - cpe: cpe:/o:centos:centos 14 | - cpe: cpe:2.3:o:centos:centos 15 | 16 | releases: 17 | - releaseCycle: "8" 18 | releaseDate: 2019-09-24 19 | eoas: 2021-12-31 20 | eol: 2021-12-31 21 | latest: "8 (2111)" 22 | link: https://web.archive.org/web/20230711113909/https://wiki.centos.org/Manuals/ReleaseNotes/CentOS8.2111 23 | 24 | - releaseCycle: "7" 25 | releaseDate: 2014-07-07 26 | eoas: 2020-08-06 27 | eol: 2024-06-30 28 | latest: "7 (2009)" 29 | link: https://web.archive.org/web/20230711113909/https://wiki.centos.org/Manuals/ReleaseNotes/CentOS7.2009 30 | 31 | - releaseCycle: "6" 32 | releaseDate: 2011-07-10 33 | eoas: 2017-05-10 34 | eol: 2020-11-30 35 | latest: "6.10" 36 | link: https://web.archive.org/web/20230711113909/https://wiki.centos.org/Manuals/ReleaseNotes/CentOS6.10 37 | 38 | - releaseCycle: "5" 39 | releaseDate: 2007-04-12 40 | eoas: 2014-01-31 41 | eol: 2017-03-31 42 | latest: "5.11" 43 | link: https://web.archive.org/web/20230711113909/https://wiki.centos.org/Manuals/ReleaseNotes/CentOS5.11 44 | 45 | --- 46 | 47 | > [CentOS Linux](https://centos.org/centos-linux/) was a Linux distribution that provided a free, 48 | > enterprise-class, community-supported computing platform functionally compatible with Red Hat 49 | > Enterprise Linux. 50 | 51 | CentOS Linux was a rebuild of [Red Hat Enterprise Linux (RHEL)](/rhel) source code. Major versions 52 | were supported with security and bugfix updates as long as its corresponding RHEL release was not EOL, 53 | except for CentOS Linux 8. 54 | 55 | [It was announced on December 8th, 2020](https://blog.centos.org/2020/12/future-is-centos-stream/) 56 | that work on CentOS Linux 8 would cease at the end of 2021 and that focus would shift to CentOS Stream. 57 | Support information for CentOS Stream is available on the [CentOS Stream page](/centos-stream). 58 | 59 | Commercial long term support for CentOS 6, 7, and 8 post end-of-life is available at [OpenLogic by Perforce](https://www.openlogic.com/solutions/enterprise-linux-support/centos). 60 | -------------------------------------------------------------------------------- /products/mageia.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Mageia 3 | category: os 4 | tags: linux-distribution 5 | permalink: /mageia 6 | versionCommand: cat /usr/lib/os-release 7 | releasePolicyLink: https://www.mageia.org/support/ 8 | changelogTemplate: https://wiki.mageia.org/en/Archive:_Mageia___RELEASE_CYCLE___Release_Notes 9 | releaseDateColumn: true 10 | releaseColumn: false 11 | eolColumn: Supported 12 | 13 | auto: 14 | methods: 15 | - distrowatch: mageia 16 | regex: '^Distribution Release: Mageia (?P\d+)$' 17 | 18 | # EOL dates can be found on https://www.mageia.org/en/support/. 19 | releases: 20 | - releaseCycle: "9" 21 | releaseDate: 2023-08-27 22 | eol: 2025-03-31 23 | latest: '9' 24 | latestReleaseDate: 2023-08-27 25 | link: https://wiki.mageia.org/en/Mageia___RELEASE_CYCLE___Release_Notes 26 | 27 | - releaseCycle: "8" 28 | releaseDate: 2021-02-26 29 | eol: 2023-11-30 30 | latest: '8' 31 | latestReleaseDate: 2021-02-26 32 | link: https://wiki.mageia.org/en/Mageia___RELEASE_CYCLE___Release_Notes 33 | 34 | - releaseCycle: "7" 35 | releaseDate: 2019-07-01 36 | eol: 2021-06-30 37 | latest: '7' 38 | latestReleaseDate: 2019-07-01 39 | 40 | - releaseCycle: "6" 41 | releaseDate: 2017-07-16 42 | eol: 2019-09-30 43 | latest: '6' 44 | latestReleaseDate: 2017-07-16 45 | 46 | - releaseCycle: "5" 47 | releaseDate: 2015-06-20 48 | eol: 2017-12-31 49 | latest: '5' 50 | latestReleaseDate: 2015-06-20 51 | 52 | - releaseCycle: "4" 53 | releaseDate: 2014-02-01 54 | eol: 2015-09-19 55 | latest: '4' 56 | latestReleaseDate: 2014-02-01 57 | 58 | - releaseCycle: "3" 59 | releaseDate: 2013-05-19 60 | eol: 2014-11-26 61 | latest: '3' 62 | latestReleaseDate: 2013-05-19 63 | 64 | - releaseCycle: "2" 65 | releaseDate: 2012-05-22 66 | eol: 2013-11-22 67 | latest: '2' 68 | latestReleaseDate: 2012-05-22 69 | 70 | - releaseCycle: "1" 71 | releaseDate: 2011-06-01 72 | eol: 2012-12-01 73 | latest: '1' 74 | latestReleaseDate: 2011-06-01 75 | 76 | --- 77 | 78 | > [Mageia](https://www.mageia.org/) is a GNU/Linux-based, Free Software operating system. It is a 79 | > community project, supported by a nonprofit organisation of elected contributors. 80 | 81 | Mageia releases are supported at least for 18 months. Or a minimum of 3 months after the next 82 | release, whichever is longer. 83 | -------------------------------------------------------------------------------- /products/xcp-ng.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: XCP-ng 3 | category: os 4 | permalink: /xcp-ng 5 | alternate_urls: 6 | - /xcpng 7 | versionCommand: software-version 8 | releasePolicyLink: https://xcp-ng.org/docs/releases.html 9 | eolColumn: Support 10 | 11 | auto: 12 | methods: 13 | - git: https://github.com/xcp-ng/xcp-ng-release.git 14 | - release_table: https://xcp-ng.org/docs/releases.html#lts-releases 15 | selector: "table" 16 | fields: 17 | releaseCycle: 18 | column: "Version" 19 | regex: '^(?P\d+\.\d+).*$' 20 | releaseDate: "Released" 21 | eol: "Support until" 22 | 23 | releases: 24 | - releaseCycle: "8.2" 25 | releaseDate: 2020-11-13 26 | eol: 2025-06-25 27 | lts: true 28 | latest: "8.2.1" 29 | latestReleaseDate: 2022-01-03 30 | link: https://xcp-ng.org/docs/release-8-2.html 31 | 32 | - releaseCycle: "8.1" 33 | releaseDate: 2020-03-31 34 | eol: 2021-03-31 35 | latest: "8.1.0" 36 | latestReleaseDate: 2020-03-25 37 | link: https://xcp-ng.org/docs/release-8-1.html 38 | 39 | - releaseCycle: "8.0" 40 | releaseDate: 2019-07-25 41 | eol: 2020-11-13 42 | latest: "8.0.0" 43 | latestReleaseDate: 2019-07-18 44 | 45 | - releaseCycle: "7.6" 46 | releaseDate: 2018-10-31 47 | eol: 2020-03-30 48 | latest: "7.6.0" 49 | latestReleaseDate: 2018-10-10 50 | 51 | - releaseCycle: "7.5" 52 | releaseDate: 2018-08-10 53 | eol: 2019-07-25 54 | latest: "7.5.0" 55 | latestReleaseDate: 2018-08-09 56 | 57 | - releaseCycle: "7.4" 58 | releaseDate: 2018-03-31 59 | eol: 2018-10-31 60 | latest: "7.4.0" 61 | latestReleaseDate: 2018-03-31 62 | 63 | --- 64 | 65 | > [XCP-ng](https://xcp-ng.org) is a free and open-source hypervisor based on 66 | > [Xen](https://xenproject.org/). It is a fork of [XenServer](https://xenserver.com/), which was 67 | > acquired by Citrix in 2013. It is a drop-in replacement for XenServer, and can be used to manage 68 | > and run virtual machines on any hardware that supports the Xen hypervisor. XCP-ng is developed by 69 | > a community of contributors and is available for free. 70 | 71 | There are two kinds of XCP-ng releases: standard releases and Long Term Support (LTS) releases. 72 | Standard releases are supported until the next release, plus a few months to give the users some 73 | time to transition. LTS releases are supported for 5 years. 74 | -------------------------------------------------------------------------------- /products/kyverno.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Kyverno 3 | category: server-app 4 | tags: cncf kubernetes 5 | permalink: /kyverno 6 | versionCommand: kyverno version 7 | releasePolicyLink: https://kyverno.io/docs/installation/#compatibility-matrix 8 | changelogTemplate: https://github.com/kyverno/kyverno/releases/tag/v__LATEST__ 9 | releaseDateColumn: true 10 | eolColumn: Support 11 | customColumns: 12 | - property: supportedK8sVersions 13 | position: after-release-column 14 | label: Kubernetes Version 15 | description: Supported Kubernetes versions 16 | link: https://kyverno.io/docs/installation/#compatibility-matrix 17 | auto: 18 | methods: 19 | - git: https://github.com/kyverno/kyverno.git 20 | 21 | identifiers: 22 | - purl: pkg:github/kyverno/kyverno 23 | - purl: pkg:docker/nirmata/kyverno 24 | - repology: kyverno 25 | - purl: pkg:docker/chainguard/kyverno 26 | - purl: pkg:oci/kyverno?repository_url=cgr.dev/chainguard 27 | 28 | # eol(X) = releaseDate(X+3) 29 | releases: 30 | - releaseCycle: "1.12" 31 | releaseDate: 2024-04-26 32 | eol: false 33 | latest: "1.12.5" 34 | latestReleaseDate: 2024-07-12 35 | supportedK8sVersions: 1.26 - 1.29 36 | 37 | - releaseCycle: "1.11" 38 | releaseDate: 2023-11-10 39 | eol: false 40 | latest: "1.11.5" 41 | latestReleaseDate: 2024-05-09 42 | supportedK8sVersions: 1.25 - 1.28 43 | 44 | - releaseCycle: "1.10" 45 | releaseDate: 2023-05-30 46 | eol: false 47 | latest: "1.10.7" 48 | latestReleaseDate: 2023-12-20 49 | supportedK8sVersions: 1.24 - 1.26 50 | 51 | - releaseCycle: "1.9" 52 | releaseDate: 2023-02-01 53 | eol: 2024-04-26 54 | latest: "1.9.5" 55 | latestReleaseDate: 2023-05-29 56 | supportedK8sVersions: 1.24 - 1.26 57 | 58 | - releaseCycle: "1.8" 59 | releaseDate: 2022-10-10 60 | eol: 2023-11-10 61 | latest: "1.8.5" 62 | latestReleaseDate: 2022-12-20 63 | supportedK8sVersions: 1.23.3 - 1.25 64 | 65 | --- 66 | 67 | > Kyverno is a policy engine designed for Kubernetes. Kyverno allows cluster administrators to manage environment 68 | > specific configurations independently of workload configurations and enforce configuration best 69 | > practices for their clusters. 70 | 71 | Kyverno uses the [Semantic Versioning](https://semver.org/) scheme. It follows the same support policy as Kubernetes - the 72 | 3 most recent minor versions receive security and bug fixes. 73 | -------------------------------------------------------------------------------- /products/grails.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Grails Framework 3 | category: framework 4 | tags: java-runtime 5 | permalink: /grails 6 | alternate_urls: 7 | - /grails-framework 8 | releasePolicyLink: https://grails.org/support.html 9 | changelogTemplate: "https://github.com/grails/grails-core/releases/tag/v__LATEST__" 10 | eoasColumn: Active Development 11 | eolColumn: Active Maintenance 12 | releaseDateColumn: true 13 | 14 | identifiers: 15 | - repology: grails 16 | - cpe: cpe:/a:grails:grails 17 | - cpe: cpe:2.3:a:grails:grails 18 | 19 | auto: 20 | methods: 21 | - git: https://github.com/grails/grails-core.git 22 | 23 | releases: 24 | - releaseCycle: "6" 25 | releaseDate: 2023-07-24 26 | eoas: false 27 | eol: false 28 | latest: "6.2.0" 29 | latestReleaseDate: 2024-04-05 30 | 31 | - releaseCycle: "5" 32 | releaseDate: 2021-10-12 33 | eoas: 2023-07-24 34 | eol: false 35 | latest: "5.3.6" 36 | latestReleaseDate: 2024-01-09 37 | 38 | - releaseCycle: "4" 39 | releaseDate: 2019-07-11 40 | eoas: true 41 | eol: 2023-03-31 42 | latest: "4.1.4" 43 | latestReleaseDate: 2024-03-08 44 | 45 | - releaseCycle: "3" 46 | releaseDate: 2015-03-31 47 | eoas: true 48 | eol: 2021-09-30 49 | latest: "3.3.18" 50 | latestReleaseDate: 2024-01-09 51 | 52 | - releaseCycle: "2" 53 | releaseDate: 2011-12-15 54 | eoas: true 55 | eol: 2021-06-30 56 | latest: "2.5.6" 57 | latestReleaseDate: 2017-03-23 58 | 59 | - releaseCycle: "1" 60 | releaseDate: 2009-05-14 61 | eoas: true 62 | eol: 2012-05-01 63 | latest: "1.3.9" 64 | latestReleaseDate: 2015-01-16 65 | 66 | --- 67 | 68 | > [Grails](https://grails.org/) is a powerful Groovy-based web application framework for the JVM 69 | > built on top of Spring Boot. 70 | 71 | ## Support 72 | 73 | - **Active Development**: These versions get regular updates, including new features, performance 74 | enhancements, and bug fixes. Recommended for new and existing Grails applications. 75 | - **Active Maintenance**: These versions receive limited bug fixes and patches, mostly focused 76 | around the resolution of critical security advisories. New features, performance improvements, 77 | and minor bug fixes are unlikely. 78 | 79 | The Grails Foundation offers [commercial support](https://grails.org/support.html#standard). This typically 80 | lasts a few years after active maintenance ends. 81 | -------------------------------------------------------------------------------- /products/hbase.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache HBase 3 | category: database 4 | tags: apache java-runtime 5 | permalink: /hbase 6 | alternate_urls: 7 | - /apache_hbase 8 | - /apache-hbase 9 | releasePolicyLink: https://hbase.apache.org/downloads.html 10 | changelogTemplate: https://github.com/apache/hbase/blob/rel/__LATEST__/RELEASENOTES.md 11 | releaseDateColumn: true 12 | eolColumn: Service Status 13 | 14 | identifiers: 15 | - repology: hbase 16 | - cpe: cpe:/a:apache:hbase 17 | - cpe: cpe:2.3:a:apache:hbase 18 | 19 | auto: 20 | methods: 21 | - git: https://github.com/apache/hbase.git 22 | regex: '^rel\/(?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P\d+))?$' 23 | 24 | # Supported releases are listed on https://hbase.apache.org/downloads.html 25 | releases: 26 | - releaseCycle: "2.6" 27 | releaseDate: 2024-05-17 28 | eol: false 29 | latestReleaseDate: 2024-05-17 30 | latest: '2.6.0' 31 | 32 | - releaseCycle: "2.5" 33 | releaseDate: 2022-08-31 34 | eol: false 35 | latestReleaseDate: 2024-07-24 36 | latest: '2.5.10' 37 | 38 | - releaseCycle: "2.4" 39 | releaseDate: 2020-12-15 40 | eol: false 41 | latest: "2.4.18" 42 | latestReleaseDate: 2024-05-25 43 | 44 | - releaseCycle: "2.3" 45 | releaseDate: 2020-07-13 46 | eol: 2021-10-19 47 | latest: "2.3.7" 48 | latestReleaseDate: 2021-10-19 49 | 50 | - releaseCycle: "1.7" 51 | outOfOrder: true # wrong tag date for https://github.com/apache/hbase/releases/tag/rel%2F1.7.0 52 | releaseDate: 2021-06-12 53 | eol: 2022-08-09 54 | link: https://github.com/apache/hbase/blob/rel/__LATEST__/CHANGES.txt 55 | latest: "1.7.2" 56 | latestReleaseDate: 2022-08-09 57 | 58 | - releaseCycle: "2.2" 59 | releaseDate: 2019-07-25 60 | eol: 2021-04-19 61 | latest: "2.2.7" 62 | latestReleaseDate: 2021-04-19 63 | 64 | --- 65 | 66 | > [Apache HBase](https://hbase.apache.org/) is an open-source non-relational distributed database 67 | > modeled after Google's Bigtable and written in Java. It's useful for random, real-time read/write 68 | > access to Big Data. The project's goal is the hosting of very large tables -- billions of rows X 69 | > millions of columns -- atop clusters of commodity hardware. 70 | 71 | You must pick a supported release of Hadoop as per the [compatibility matrix](https://hbase.apache.org/book.html#hadoop). 72 | 73 | No releases are scheduled in advance. 74 | -------------------------------------------------------------------------------- /_plugins/generate-tag-pages.rb: -------------------------------------------------------------------------------- 1 | # This script create product pages for the website. 2 | 3 | require 'jekyll' 4 | 5 | module EndOfLife 6 | 7 | class ProductPagesGenerator < Jekyll::Generator 8 | safe true 9 | priority :lowest 10 | 11 | TOPIC = "Tag pages:" 12 | 13 | def generate(site) 14 | @site = site 15 | start = Time.now 16 | Jekyll.logger.info TOPIC, "Generating..." 17 | 18 | products = site.pages.select { |page| page.data['layout'] == 'product' } 19 | 20 | products_by_tag = products_by_tag(products) 21 | site.pages << TagsPage.new(site, products_by_tag) 22 | products_by_tag.each do |tag, products_for_tag| 23 | site.pages << TagPage.new(site, tag, products_for_tag) 24 | end 25 | 26 | Jekyll.logger.info TOPIC, "Done in #{(Time.now - start).round(3)} seconds." 27 | end 28 | 29 | def products_by_tag(products) 30 | products_by_tag = {} 31 | products.each do |product| 32 | product.data['tags'].each { |tag| add_to_map(products_by_tag, tag, product) } 33 | end 34 | products_by_tag 35 | end 36 | 37 | def add_to_map(map, key, page) 38 | if map.has_key? key 39 | map[key] << page 40 | else 41 | map[key] = [page] 42 | end 43 | end 44 | end 45 | 46 | class TagsPage < Jekyll::Page 47 | def initialize(site, products_by_tag) 48 | @site = site 49 | @base = site.source 50 | @dir = "tags" 51 | @name = "index.html" 52 | 53 | tags = products_by_tag.map { |tag, value| "#{tag}|#{value.size()}" }.sort 54 | @data = { 55 | "title" => "Product tags", 56 | "layout" => "product-tags", 57 | "permalink" => "/tags/", 58 | "tags" => tags, 59 | "nav_exclude"=> true 60 | } 61 | 62 | self.process(@name) 63 | end 64 | end 65 | 66 | class TagPage < Jekyll::Page 67 | def initialize(site, tag, products) 68 | @site = site 69 | @base = site.source 70 | @dir = "tags" 71 | @name = "#{tag}.html" 72 | 73 | @data = { 74 | "title" => "Products tagged with '#{tag}'", 75 | "layout" => "product-list", 76 | "permalink" => "/tags/#{tag}", 77 | "products" => products.sort_by { |product| product.data['title'] }, 78 | "nav_exclude"=> true 79 | } 80 | 81 | self.process(@name) 82 | end 83 | end 84 | end 85 | -------------------------------------------------------------------------------- /products/vuetify.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Vuetify 3 | category: framework 4 | tags: javascript-runtime 5 | iconSlug: vuetify 6 | permalink: /vuetify 7 | versionCommand: npm list vuetify 8 | releasePolicyLink: https://vuetifyjs.com/introduction/long-term-support/ 9 | changelogTemplate: https://github.com/vuetifyjs/vuetify/releases/tag/v__LATEST__ 10 | eoasColumn: true 11 | releaseDateColumn: true 12 | 13 | identifiers: 14 | - purl: pkg:npm/vuetify 15 | 16 | auto: 17 | methods: 18 | - npm: vuetify 19 | - release_table: https://vuetifyjs.com/introduction/long-term-support/ 20 | render_javascript: true 21 | selector: "table" 22 | fields: 23 | releaseCycle: 24 | column: "Version" 25 | regex: '^Vuetify (?P\d+).*$' 26 | releaseDate: 27 | column: "Initial Release Date" 28 | regex: '^(?P\w+) (?P\d+)(st|nd|rd|th)?,? (?P\d{4}).*$' 29 | template: "{{month}} {{day}} {{year}}" 30 | eoas: 31 | column: "LTS Start Date" 32 | regex: '^(?P\w+) (?P\d+)(st|nd|rd|th)?,? (?P\d{4}).*$' 33 | template: "{{month}} {{day}} {{year}}" 34 | eol: 35 | column: "LTS End Date" 36 | regex: '^(?P\w+) (?P\d+)(st|nd|rd|th)?,? (?P\d{4}).*$' 37 | template: "{{month}} {{day}} {{year}}" 38 | 39 | releases: 40 | - releaseCycle: "3" 41 | releaseDate: 2022-11-01 42 | eoas: false 43 | eol: false 44 | latest: "3.6.14" 45 | latestReleaseDate: 2024-07-31 46 | 47 | - releaseCycle: "2" 48 | releaseDate: 2019-07-23 49 | eoas: 2023-07-05 50 | eol: 2025-01-23 51 | latest: "2.7.2" 52 | latestReleaseDate: 2024-02-14 53 | 54 | - releaseCycle: "1.5" 55 | releaseDate: 2019-02-05 56 | eoas: 2019-06-24 57 | eol: 2020-07-31 58 | latest: "1.5.24" 59 | lts: 2019-07-31 60 | latestReleaseDate: 2020-03-03 61 | 62 | --- 63 | 64 | > [Vuetify](https://vuetifyjs.com/) is an open-source Vue Component Framework. It is a collection 65 | > of consistently styled UI components with features such as dynamic themes, global defaults, 66 | > application layouts, and more. 67 | 68 | Each major release is supported with critical and security fixes for [a minimum of 18 months](https://vuetifyjs.com/introduction/long-term-support/) 69 | from the date of release of the last minor version in a given cycle, which marks the start of LTS. 70 | -------------------------------------------------------------------------------- /products/nextjs.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Next.js 3 | category: framework 4 | tags: javascript-runtime vercel 5 | iconSlug: nextdotjs 6 | permalink: /nextjs 7 | alternate_urls: 8 | - /next-js 9 | - /nextdotjs 10 | versionCommand: npx next --version 11 | changelogTemplate: https://github.com/vercel/next.js/releases/tag/v__LATEST__ 12 | releaseDateColumn: true 13 | 14 | identifiers: 15 | - purl: pkg:npm/next.js 16 | - purl: pkg:github/vercel/next.js 17 | 18 | auto: 19 | methods: 20 | - npm: next 21 | 22 | # eol(x) = MAX(releaseDate(x+1), latestReleaseDate(x)) 23 | releases: 24 | - releaseCycle: "14" 25 | releaseDate: 2023-10-26 26 | eol: false 27 | latest: "14.2.5" 28 | latestReleaseDate: 2024-07-10 29 | 30 | - releaseCycle: "13" 31 | releaseDate: 2022-10-25 32 | eol: false 33 | latest: "13.5.6" 34 | latestReleaseDate: 2023-10-18 35 | 36 | - releaseCycle: "12" 37 | releaseDate: 2021-10-26 38 | eol: 2022-11-21 39 | latest: "12.3.4" 40 | latestReleaseDate: 2022-11-21 41 | 42 | - releaseCycle: "11" 43 | releaseDate: 2021-06-15 44 | eol: 2022-01-27 45 | latest: "11.1.4" 46 | latestReleaseDate: 2022-01-27 47 | 48 | - releaseCycle: "10" 49 | releaseDate: 2020-10-27 50 | eol: 2021-06-15 51 | latest: "10.2.3" 52 | latestReleaseDate: 2021-05-24 53 | 54 | - releaseCycle: "9" 55 | releaseDate: 2019-07-08 56 | eol: 2020-10-27 57 | latest: "9.5.5" 58 | latestReleaseDate: 2020-10-10 59 | 60 | --- 61 | 62 | > [Next.js](https://nextjs.org/) is an open-source React framework developed by Vercel. It offers 63 | > server-side rendering, static site generation, and client-side rendering capabilities, enabling 64 | > developers to build performant and scalable web applications. The framework is designed to be 65 | > developer-friendly, with a focus on fast refresh and an optimized production build. 66 | 67 | Next.js follows [semantic versioning](https://semver.org/). Major versions are released on average twice per year, 68 | minor versions more frequently, and patch versions very frequently. Important security patches can be 69 | backported to past major versions, but it's not clear which past versions are supported or not on https://nextjs.org/. 70 | 71 | Next.js has [two release channels](https://github.com/vercel/next.js/blob/canary/contributing/repository/release-channels-publishing.md): 72 | stable and canary. Only stable releases are suitable for production. 73 | -------------------------------------------------------------------------------- /products/robo.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Robo 3 | category: framework 4 | tags: php-runtime 5 | permalink: /robo 6 | versionCommand: robo --version 7 | eoasColumn: true 8 | customColumns: 9 | - property: supportedPHPVersions 10 | position: after-release-column 11 | label: PHP versions 12 | description: Supported PHP versions range 13 | link: https://github.com/consolidation/robo/blob/5.x/README.md 14 | 15 | auto: 16 | methods: 17 | - git: https://github.com/consolidation/robo.git 18 | - release_table: https://github.com/consolidation/robo/blob/5.x/README.md 19 | render_javascript: true 20 | selector: "table" 21 | fields: 22 | releaseCycle: 23 | column: "Branch" 24 | regex: '^(?P\d+)\.x$' 25 | supportedPHPVersions: "PHP Versions" 26 | 27 | # Based on https://github.com/consolidation/robo#branches: 28 | # eoas(x) = true if "Stable", false otherwise 29 | # eol(x) = false if "Stable" or "Important fixes only", false otherwise 30 | releases: 31 | - releaseCycle: "5" 32 | supportedPHPVersions: "8.2 - 8.3" 33 | eoas: false 34 | eol: false 35 | latest: "5.0.0" 36 | latestReleaseDate: 2024-04-17 37 | 38 | - releaseCycle: "4" 39 | supportedPHPVersions: "8.0 - 8.3" 40 | eoas: false 41 | eol: false 42 | latest: "4.0.6" 43 | latestReleaseDate: 2023-04-30 44 | 45 | - releaseCycle: "3" 46 | supportedPHPVersions: "7.1 - 8.1" 47 | eoas: true 48 | eol: true # https://github.com/consolidation/robo/pull/1154#issuecomment-1989610031 49 | latest: "3.0.12" 50 | latestReleaseDate: 2023-04-30 51 | 52 | - releaseCycle: "2" 53 | supportedPHPVersions: "7.1 - 7.4" 54 | eoas: true 55 | eol: true # https://github.com/consolidation/robo/pull/1154#issuecomment-1989610031 56 | latest: "2.2.2" 57 | latestReleaseDate: 2020-12-18 58 | 59 | - releaseCycle: "1" 60 | supportedPHPVersions: "5.5 - 7.4" 61 | eoas: true 62 | eol: true # https://github.com/consolidation/robo/pull/1154#issuecomment-1989610031 63 | latest: "1.5.0" 64 | latestReleaseDate: 2021-10-07 65 | 66 | --- 67 | 68 | > [Robo](https://robo.li/) is a task runner written in PHP. 69 | 70 | Supported releases are documented on . 71 | All versions are roughly compatible; the breaking changes introduced at each major version are 72 | fairly minor, and typically only affect classes that are not used by most clients. 73 | -------------------------------------------------------------------------------- /products/gorilla.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Gorilla Toolkit 3 | category: framework 4 | iconSlug: go 5 | permalink: /gorilla 6 | releasePolicyLink: https://github.com/gorilla/ 7 | releaseDateColumn: true 8 | eolColumn: Support 9 | 10 | identifiers: 11 | - repology: go:github-gorilla-context 12 | - repology: go:github-gorilla-csrf 13 | - repology: go:github-gorilla-css 14 | - repology: go:github-gorilla-handlers 15 | - repology: go:github-gorilla-mux 16 | - repology: go:github-gorilla-pat 17 | - repology: go:github-gorilla-rpc 18 | - repology: go:github-gorilla-schema 19 | - repology: go:github-gorilla-securecookie 20 | - repology: go:github-gorilla-sessions 21 | - repology: go:github-gorilla-websocket 22 | - repology: go:gorilla-context 23 | - repology: go:gorilla-mux 24 | - purl: pkg:github/gorilla/context 25 | - purl: pkg:github/gorilla/csrf 26 | - purl: pkg:github/gorilla/css 27 | - purl: pkg:github/gorilla/handlers 28 | - purl: pkg:github/gorilla/mux 29 | - purl: pkg:github/gorilla/pat 30 | - purl: pkg:github/gorilla/rpc 31 | - purl: pkg:github/gorilla/schema 32 | - purl: pkg:github/gorilla/securecookie 33 | - purl: pkg:github/gorilla/sessions 34 | - purl: pkg:github/gorilla/websocket 35 | - purl: pkg:golang/github.com/gorilla/context 36 | - purl: pkg:golang/github.com/gorilla/csrf 37 | - purl: pkg:golang/github.com/gorilla/css 38 | - purl: pkg:golang/github.com/gorilla/handlers 39 | - purl: pkg:golang/github.com/gorilla/mux 40 | - purl: pkg:golang/github.com/gorilla/pat 41 | - purl: pkg:golang/github.com/gorilla/rpc 42 | - purl: pkg:golang/github.com/gorilla/schema 43 | - purl: pkg:golang/github.com/gorilla/securecookie 44 | - purl: pkg:golang/github.com/gorilla/sessions 45 | - purl: pkg:golang/github.com/gorilla/websocket 46 | 47 | releases: 48 | - releaseCycle: "1" 49 | releaseDate: 2016-04-28 50 | eol: false 51 | latest: 1.5.0 52 | latestReleaseDate: 2022-01-04 53 | link: https://github.com/gorilla#gorilla-toolkit 54 | 55 | --- 56 | 57 | > [Gorilla](https://github.com/gorilla/) is a toolkit for building HTTP-based applications with the 58 | > Go programming language. 59 | 60 | The Gorilla project's repositories [were archived](https://www.reddit.com/r/golang/comments/zh0w0p/gorilla_web_toolkit_is_now_in_archive_only_mode/) 61 | near the end of 2022, and the project were no longer maintained until its [revival on July 62 | 2023](https://gorilla.github.io/blog/2023-07-17-project-status-update/). 63 | -------------------------------------------------------------------------------- /products/bazel.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Bazel 3 | category: app 4 | tags: google build-tool java-runtime 5 | permalink: /bazel 6 | versionCommand: bazel --version 7 | releasePolicyLink: https://bazel.build/release 8 | releaseImage: https://blog.bazel.build/assets/lts_timeline.png 9 | changelogTemplate: "https://github.com/bazelbuild/bazel/releases/tag/__LATEST__" 10 | releaseDateColumn: true 11 | eoasColumn: true 12 | 13 | identifiers: 14 | - repology: bazel 15 | - purl: pkg:github/bazelbuild/bazel 16 | - purl: pkg:docker/chainguard/bazel 17 | - purl: pkg:oci/bazel?repository_url=cgr.dev/chainguard 18 | 19 | auto: 20 | methods: 21 | - git: https://github.com/bazelbuild/bazel.git 22 | - release_table: https://bazel.build/release 23 | ignore_empty_releases: true # so that future releases are ignored 24 | selector: "table" 25 | fields: 26 | releaseCycle: 27 | column: "LTS release" 28 | regex: '^Bazel (?P\d+)$' 29 | eol: "End of support" 30 | 31 | # latestVersion and eol on https://bazel.build/release 32 | # eoas(x) = releaseDate(x+1) 33 | # eol(x) = releaseDate(x) + 3 years 34 | releases: 35 | - releaseCycle: "7" 36 | lts: true 37 | releaseDate: 2023-12-11 38 | eoas: false # releaseDate(8) 39 | eol: 2026-12-31 40 | latest: "7.2.1" 41 | latestReleaseDate: 2024-06-25 42 | 43 | - releaseCycle: "6" 44 | lts: true 45 | releaseDate: 2022-12-19 46 | eoas: 2023-12-11 # releaseDate(7) 47 | eol: 2025-12-31 48 | latest: "6.5.0" 49 | latestReleaseDate: 2024-01-23 50 | 51 | - releaseCycle: "5" 52 | lts: true 53 | releaseDate: 2022-01-19 54 | eoas: 2022-12-19 # releaseDate(6) 55 | eol: 2025-01-31 56 | latest: "5.4.1" 57 | latestReleaseDate: 2023-04-19 58 | 59 | - releaseCycle: "4" 60 | lts: true 61 | releaseDate: 2021-01-21 62 | eoas: 2022-01-19 # releaseDate(5) 63 | eol: 2024-01-31 64 | latest: "4.2.4" 65 | latestReleaseDate: 2023-04-20 66 | 67 | --- 68 | 69 | > [Bazel](https://bazel.build/) is a fast, scalable, multi-language and extensible build system. 70 | 71 | Bazel follows [Semantic Versioning](https://semver.org/). 72 | 73 | - A major release contains features that are not backward compatible with the previous release. Each major Bazel version is an LTS release. 74 | - A minor release contains backward-compatible bug fixes and features back-ported from the main branch. 75 | - A patch release contains critical bug fixes. 76 | -------------------------------------------------------------------------------- /products/ipados.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apple iPadOS 3 | category: os 4 | tags: apple 5 | iconSlug: apple 6 | permalink: /ipados 7 | releasePolicyLink: https://en.wikipedia.org/wiki/IOS_version_history#Overview 8 | releaseDateColumn: true 9 | eoasColumn: true 10 | 11 | auto: 12 | methods: 13 | - apple: ipados 14 | # If you are changing these, please use this as your corpus to validate your changes: 15 | # https://gist.githubusercontent.com/captn3m0/e7cb1f4fc3c07a5da0296ebda2b33e15/raw/5747e42ad611ec9ffdb7a2d1c0e3946bb87ab6d7/apple.txt 16 | regex: 17 | - 'iPadOS\s+(?P\d+)' 18 | - 'iPadOS\s+(?P\d+(?:\.\d+)+)' 19 | 20 | releases: 21 | - releaseCycle: "17" 22 | releaseDate: 2023-09-18 23 | eoas: false 24 | eol: false 25 | latest: '17.6.1' 26 | latestReleaseDate: 2024-08-07 27 | link: https://developer.apple.com/documentation/ios-ipados-release-notes/ios-ipados-17-release-notes 28 | 29 | - releaseCycle: "16" 30 | releaseDate: 2022-10-24 31 | eoas: 2023-09-18 32 | eol: false 33 | latest: '16.7.10' 34 | latestReleaseDate: 2024-08-07 35 | link: https://developer.apple.com/documentation/ios-ipados-release-notes/ipados-16-release-notes 36 | 37 | - releaseCycle: "15" 38 | releaseDate: 2021-09-20 39 | eoas: 2022-10-24 40 | eol: false 41 | latest: '15.8.3' 42 | latestReleaseDate: 2024-07-29 43 | link: https://developer.apple.com/documentation/ios-ipados-release-notes/ios-ipados-15-release-notes 44 | 45 | - releaseCycle: "14" 46 | releaseDate: 2020-09-16 47 | eoas: 2021-09-20 48 | eol: 2021-10-01 49 | latest: '14.8.1' 50 | latestReleaseDate: 2021-10-26 51 | link: https://developer.apple.com/documentation/ios-ipados-release-notes/ios-ipados-14-release-notes 52 | 53 | - releaseCycle: "13" 54 | releaseDate: 2019-09-24 55 | eoas: 2020-09-16 56 | eol: 2020-09-16 57 | latest: '13.6' 58 | latestReleaseDate: 2020-07-15 59 | link: https://developer.apple.com/documentation/ios-ipados-release-notes/ios-ipados-13_1-release-notes 60 | 61 | --- 62 | 63 | > [iPadOS](https://www.apple.com/ipados/) is a mobile operating system created by Apple for its iPad 64 | > line of devices. It is a rebranded variant of iOS, and introduced in 2019 as iPadOS 13. 65 | 66 | Major versions of iPadOS are released annually, and might lag behind corresponding iOS releases. 67 | 68 | Support information for iPad devices are available at [/ipad](/ipad). 69 | -------------------------------------------------------------------------------- /products/composer.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Composer 3 | category: app 4 | tags: php-runtime 5 | iconSlug: composer 6 | permalink: /composer 7 | versionCommand: composer --version 8 | changelogTemplate: https://getcomposer.org/changelog/__LATEST__ 9 | releaseDateColumn: true 10 | 11 | identifiers: 12 | - purl: pkg:composer/composer/composer 13 | - repology: php:composer 14 | - purl: pkg:docker/library/composer 15 | - purl: pkg:github/composer/composer 16 | 17 | auto: 18 | methods: 19 | - git: https://github.com/composer/composer.git 20 | 21 | # eol(x) = releaseDate(x+1) 22 | releases: 23 | - releaseCycle: "2.7" 24 | releaseDate: 2024-02-08 25 | eol: false 26 | latest: "2.7.7" 27 | latestReleaseDate: 2024-06-10 28 | 29 | - releaseCycle: "2.6" 30 | releaseDate: 2023-09-01 31 | eol: 2024-02-08 32 | latest: "2.6.6" 33 | latestReleaseDate: 2023-12-08 34 | 35 | - releaseCycle: "2.5" 36 | releaseDate: 2022-12-20 37 | eol: 2023-09-01 38 | latest: "2.5.8" 39 | latestReleaseDate: 2023-06-09 40 | 41 | - releaseCycle: "2.4" 42 | releaseDate: 2022-08-16 43 | eol: 2022-12-20 44 | latest: "2.4.4" 45 | latestReleaseDate: 2022-10-27 46 | 47 | - releaseCycle: "2.3" 48 | releaseDate: 2022-03-30 49 | eol: 2022-08-16 50 | latest: "2.3.10" 51 | latestReleaseDate: 2022-07-13 52 | 53 | - releaseCycle: "2.2" 54 | releaseDate: 2021-12-22 55 | lts: true 56 | eol: false # seems still supported https://github.com/endoflife-date/endoflife.date/issues/5119 57 | latest: "2.2.24" 58 | latestReleaseDate: 2024-06-10 59 | 60 | - releaseCycle: "1" 61 | releaseDate: 2016-04-05 62 | eol: 2020-10-24 63 | latest: "1.10.27" 64 | latestReleaseDate: 2023-09-29 65 | 66 | --- 67 | 68 | > [Composer](https://getcomposer.org/) is a package manager that is commonly used to manage 69 | > libraries and other dependencies for PHP projects. 70 | 71 | While it still receives critical fixes from time to time, Composer 1.x is mostly EOL and the 72 | developers urge everyone to switch to Composer 2.x. 73 | 74 | [Packagist](https://packagist.org/) (the main Composer repository) still supports Composer 1.x 75 | metadata for now but [with a few caveats](https://blog.packagist.com/deprecating-composer-1-support/). 76 | 77 | ## [PHP Support](https://blog.packagist.com/composer-2-2/) 78 | 79 | Composer Version|PHP Version 80 | ----------------|----------- 81 | 2.3+ | `>=7.2.5` 82 | 2.2 (LTS) | `>=5.3.2` 83 | -------------------------------------------------------------------------------- /products/mssharepoint.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Microsoft SharePoint 3 | category: server-app 4 | tags: microsoft 5 | permalink: /sharepoint 6 | alternate_urls: 7 | - /mssharepoint 8 | releasePolicyLink: https://learn.microsoft.com/lifecycle/products/?terms=SharePoint%20Server 9 | eoasColumn: true 10 | releaseDateColumn: true 11 | 12 | releases: 13 | - releaseCycle: "subscription" 14 | releaseLabel: "Subscription Edition" 15 | releaseDate: 2021-11-02 16 | eoas: false 17 | eol: false 18 | latest: "16.0.17328.20424" 19 | latestReleaseDate: 2024-07-09 20 | link: https://support.microsoft.com/help/5002606 21 | 22 | - releaseCycle: "2019" 23 | releaseDate: 2018-10-22 24 | eoas: 2024-01-09 25 | eol: 2026-07-14 26 | latest: "16.0.10412.20001" 27 | latestReleaseDate: 2024-07-09 28 | link: https://support.microsoft.com/help/5002615 29 | 30 | - releaseCycle: "2016" 31 | releaseDate: 2016-05-01 32 | eoas: 2021-07-13 33 | eol: 2026-07-14 34 | latest: "16.0.5456.1000" 35 | latestReleaseDate: 2024-07-09 36 | link: https://support.microsoft.com/help/5002618 37 | 38 | - releaseCycle: "2013" 39 | releaseLabel: "2013 SP1" 40 | releaseDate: 2013-01-09 41 | eoas: 2018-04-10 42 | eol: 2023-04-11 43 | latest: "15.0.5545.1000" 44 | latestReleaseDate: 2023-04-11 45 | link: https://support.microsoft.com/help/5002379 46 | 47 | - releaseCycle: "2010" 48 | releaseLabel: "2010 SP2" 49 | releaseDate: 2010-07-05 50 | eoas: 2015-10-13 51 | eol: 2021-04-13 52 | latest: "14.0.7268.5000" 53 | latestReleaseDate: 2021-04-13 54 | link: https://support.microsoft.com/help/4504709 55 | 56 | - releaseCycle: "2007" 57 | releaseLabel: "2007 SP3" 58 | releaseDate: 2007-01-27 59 | eoas: 2012-10-09 60 | eol: 2017-10-10 61 | latest: "12.0.6690.5000" 62 | latestReleaseDate: 2014-05-13 63 | link: https://support.microsoft.com/topic/70d30e40-2571-df91-5994-8109c8bc0f8b 64 | 65 | --- 66 | 67 | > [Microsoft SharePoint Server](https://en.wikipedia.org/wiki/SharePoint) is a web-based collaborative 68 | > platform that integrates with Microsoft Office, developed by Microsoft. 69 | 70 | Microsoft publishes tables for each release [detailing the build numbers, versions, and 71 | release dates](https://learn.microsoft.com/officeupdates/sharepoint-updates). 72 | 73 | The 2013 version was the last to which Service Pack (SP) appeared. As of 2016 onwards, only security 74 | updates are released for the product. 75 | -------------------------------------------------------------------------------- /products/neos.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Neos 3 | category: server-app 4 | tags: php-runtime 5 | permalink: /neos 6 | alternate_urls: 7 | - /neoscms 8 | versionCommand: ./flow 9 | releasePolicyLink: https://www.neos.io/features/release-process.html 10 | changelogTemplate: https://neos.readthedocs.io/en/__RELEASE_CYCLE__/Appendixes/ChangeLogs/{{"__LATEST__" | replace:'.',''}}.html 11 | eoasColumn: true 12 | releaseDateColumn: true 13 | auto: 14 | methods: 15 | - git: https://github.com/neos/neos.git 16 | 17 | identifiers: 18 | - purl: pkg:composer/neos/neos 19 | 20 | releases: 21 | 22 | - releaseCycle: "8.3" 23 | releaseDate: 2023-04-24 24 | lts: true 25 | eoas: 2026-09-01 26 | eol: 2027-09-01 27 | latest: "8.3.15" 28 | latestReleaseDate: 2024-06-14 29 | 30 | - releaseCycle: "8.2" 31 | releaseDate: 2022-12-01 32 | lts: false 33 | eoas: 2024-03-31 34 | eol: 2025-03-31 35 | latest: "8.2.14" 36 | latestReleaseDate: 2024-04-19 37 | 38 | - releaseCycle: "8.1" 39 | releaseDate: 2022-09-02 40 | lts: false 41 | eoas: 2024-03-31 42 | eol: 2025-03-31 43 | latest: "8.1.14" 44 | latestReleaseDate: 2024-04-19 45 | 46 | - releaseCycle: "8.0" 47 | releaseDate: 2022-04-01 48 | lts: false 49 | eoas: 2024-03-31 50 | eol: 2025-03-31 51 | latest: "8.0.19" 52 | latestReleaseDate: 2024-04-19 53 | 54 | - releaseCycle: "7.3" 55 | releaseDate: 2021-12-08 56 | lts: true 57 | eoas: 2024-03-31 58 | eol: 2025-03-31 59 | latest: "7.3.21" 60 | latestReleaseDate: 2024-04-19 61 | 62 | --- 63 | 64 | > [Neos](https://www.neos.io) is a highly extensible web-based content management system (CMS) written in PHP. 65 | 66 | ## Release schedule 67 | 68 | Neos releases follow Semantic Versioning, and the team strives for a regular Neos release every four months: 69 | 70 | - Three minor releases per year, with patch level releases as needed in between 71 | - Major releases happen yearly, assuming there will be breaking changes 72 | - Each release receives bug fixes for at least 1 year (extended by previous LTS) and security fixes for 1 additional year (at least 2 in total) 73 | - Each Long Term Support (LTS) version receives bug fixes for 2 years and security fixes for 1 additional year (3 in total) 74 | 75 | ## [PHP Support](https://docs.neos.io/guide/installation-development-setup/system-requirements) 76 | 77 | | Version | PHP | 78 | |---------|-----------| 79 | | 8.x | 8.0 - 8.3 | 80 | | 7.3 | 7.3 - 8.1 | 81 | -------------------------------------------------------------------------------- /products/proxmox-ve.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Proxmox VE 3 | category: os 4 | iconSlug: proxmox 5 | permalink: /proxmox-ve 6 | alternate_urls: 7 | - /pve 8 | - /proxmoxve 9 | versionCommand: pveversion –v 10 | releasePolicyLink: https://pve.proxmox.com/wiki/FAQ 11 | changelogTemplate: "https://pve.proxmox.com/wiki/Roadmap#Proxmox_VE___LATEST__" 12 | releaseDateColumn: true 13 | 14 | # https://regex101.com/r/ahCFde/1 15 | auto: 16 | methods: 17 | - distrowatch: proxmox 18 | regex: '^Distribution Release: Proxmox (?P\d+)\.(?P\d+) "Virtual Environment"$' 19 | - release_table: https://pve.proxmox.com/wiki/FAQ 20 | selector: "table#faq-support-table" 21 | fields: 22 | releaseCycle: 23 | column: "Proxmox VE Version" 24 | regex: '^Proxmox VE (?P\d+)$' 25 | eol: "Proxmox EOL" 26 | 27 | releases: 28 | - releaseCycle: "8" 29 | releaseDate: 2023-06-22 30 | eol: false 31 | latest: "8.2" 32 | latestReleaseDate: 2024-04-24 33 | 34 | - releaseCycle: "7" 35 | releaseDate: 2021-07-06 36 | eol: 2024-07-31 37 | latest: "7.4" 38 | latestReleaseDate: 2023-03-23 39 | 40 | - releaseCycle: "6" 41 | releaseDate: 2019-07-16 42 | eol: 2022-09-30 43 | latest: "6.4" 44 | latestReleaseDate: 2021-04-18 45 | 46 | - releaseCycle: "5" 47 | releaseDate: 2017-07-04 48 | eol: 2020-07-31 49 | latest: "5.4" 50 | latestReleaseDate: 2019-04-11 51 | 52 | - releaseCycle: "4" 53 | releaseDate: 2015-10-06 54 | eol: 2018-06-30 55 | latest: "4.4" 56 | latestReleaseDate: 2016-12-13 57 | 58 | - releaseCycle: "3" 59 | releaseDate: 2013-05-24 60 | eol: 2017-02-28 61 | latest: "3.4" 62 | latestReleaseDate: 2015-02-19 63 | 64 | - releaseCycle: "2" 65 | releaseDate: 2012-03-30 66 | eol: 2014-05-31 67 | latest: "2.3" 68 | latestReleaseDate: 2013-03-04 69 | 70 | - releaseCycle: "1" 71 | releaseDate: 2011-09-13 72 | eol: 2013-01-31 73 | latest: "1.9" 74 | latestReleaseDate: 2011-09-13 75 | 76 | --- 77 | 78 | > [Proxmox Virtual Environment (PVE)](https://www.proxmox.com/en/proxmox-ve) is an open-source 79 | > software server for virtualization management. It is a hosted hypervisor that can run operating 80 | > systems including Linux and Windows on x64 hardware. 81 | 82 | Proxmox VE versions are supported at least as long as the corresponding Debian Version is oldstable. 83 | Proxmox VE uses a rolling release model and using the latest stable version is always recommended. 84 | -------------------------------------------------------------------------------- /products/splunk.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Splunk 3 | category: server-app 4 | iconSlug: splunk 5 | permalink: /splunk 6 | versionCommand: splunk --version 7 | releasePolicyLink: https://www.splunk.com/en_us/legal/splunk-software-support-policy.html 8 | changelogTemplate: https://docs.splunk.com/Documentation/Splunk/__LATEST__/ReleaseNotes/MeetSplunk 9 | releaseDateColumn: true 10 | 11 | auto: 12 | methods: 13 | - custom: splunk 14 | 15 | # EOL dates can be found on https://www.splunk.com/en_us/legal/splunk-software-support-policy.html. 16 | releases: 17 | - releaseCycle: "9.3" 18 | releaseDate: 2024-07-24 19 | eol: 2026-07-24 20 | latest: "9.3.0" 21 | latestReleaseDate: 2024-07-24 22 | 23 | - releaseCycle: "9.2" 24 | releaseDate: 2024-01-31 25 | eol: 2026-01-31 26 | latest: "9.2.2" 27 | latestReleaseDate: 2024-07-01 28 | 29 | - releaseCycle: "9.1" 30 | releaseDate: 2023-06-28 31 | eol: 2025-06-28 32 | latest: "9.1.5" 33 | latestReleaseDate: 2024-07-01 34 | 35 | - releaseCycle: "9.0" 36 | releaseDate: 2022-06-14 37 | eol: 2024-06-14 38 | latest: "9.0.10" 39 | latestReleaseDate: 2024-07-01 40 | 41 | - releaseCycle: "8.2" 42 | releaseDate: 2021-05-12 43 | eol: 2023-05-12 44 | latest: "8.2.12" 45 | latestReleaseDate: 2023-08-30 46 | 47 | - releaseCycle: "8.1" 48 | releaseDate: 2020-10-20 49 | eol: 2023-04-19 50 | latest: "8.1.14" 51 | latestReleaseDate: 2023-06-01 52 | 53 | - releaseCycle: "8.0" 54 | releaseDate: 2019-10-22 55 | eol: 2021-10-22 56 | latest: "8.0.10" 57 | latestReleaseDate: 2021-08-03 58 | 59 | - releaseCycle: "7.3" 60 | releaseDate: 2019-06-04 61 | eol: 2021-10-22 62 | latest: "7.3.9" 63 | latestReleaseDate: 2021-02-24 64 | 65 | - releaseCycle: "7.2" 66 | releaseDate: 2018-10-02 67 | eol: 2021-04-30 68 | latest: "7.2.10.1" 69 | latestReleaseDate: 2020-04-27 70 | link: https://docs.splunk.com/Documentation/Splunk/7.2.10/ReleaseNotes/MeetSplunk 71 | 72 | - releaseCycle: "7.1" 73 | releaseDate: 2018-04-24 74 | eol: 2020-10-31 75 | latest: "7.1.10" 76 | latestReleaseDate: 2019-12-12 77 | 78 | - releaseCycle: "7.0" 79 | releaseDate: 2017-09-26 80 | eol: 2020-01-31 81 | latest: "7.0.13.1" 82 | latestReleaseDate: 2019-12-05 83 | link: https://docs.splunk.com/Documentation/Splunk/7.0.13/ReleaseNotes/MeetSplunk 84 | 85 | --- 86 | 87 | > [Splunk](https://www.splunk.com/) is a data platform built for expansive data access, powerful 88 | > analytics and automation. 89 | -------------------------------------------------------------------------------- /products/coder.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Coder 3 | category: server-app 4 | iconSlug: coder 5 | permalink: /coder 6 | versionCommand: coder version 7 | releasePolicyLink: https://coder.com/docs/install/releases 8 | changelogTemplate: https://github.com/coder/coder/releases/tag/v__LATEST__ 9 | releaseDateColumn: true 10 | eoasColumn: true 11 | eoasWarnThreshold: 60 12 | eolWarnThreshold: 90 13 | 14 | identifiers: 15 | - purl: pkg:github/coder/coder 16 | - purl: pkg:generic/coder 17 | 18 | auto: 19 | methods: 20 | - git: https://github.com/coder/coder.git 21 | 22 | # eoas(x) = releaseDate(x+2) 23 | # eol(x) = releaseDate(x+3) 24 | releases: 25 | - releaseCycle: "2.13" 26 | releaseDate: 2024-07-02 27 | eoas: false # releaseDate 2.15 28 | eol: false # releaseDate 2.16 29 | latest: "2.13.4" 30 | latestReleaseDate: 2024-08-06 31 | 32 | - releaseCycle: "2.12" 33 | releaseDate: 2024-06-04 34 | eoas: false # releaseDate 2.14 35 | eol: false # releaseDate 2.15 36 | latest: "2.12.6" 37 | latestReleaseDate: 2024-08-01 38 | 39 | - releaseCycle: "2.11" 40 | releaseDate: 2024-05-07 41 | eoas: 2024-07-02 # releaseDate 2.13 42 | eol: 2024-08-06 # releaseDate 2.14 43 | latest: "2.11.4" 44 | latestReleaseDate: 2024-06-24 45 | 46 | - releaseCycle: "2.10" 47 | releaseDate: 2024-04-03 48 | eoas: 2024-06-04 # releaseDate 2.12 49 | eol: 2024-07-02 # releaseDate 2.13 50 | latest: "2.10.3" 51 | latestReleaseDate: 2024-05-22 52 | 53 | - releaseCycle: "2.9" 54 | releaseDate: 2024-03-07 55 | eoas: 2024-05-07 # releaseDate 2.11 56 | eol: 2024-06-04 # releaseDate 2.12 57 | latest: "2.9.4" 58 | latestReleaseDate: 2024-04-22 59 | 60 | - releaseCycle: "2.8" 61 | releaseDate: 2024-02-06 62 | eoas: 2024-04-03 # releaseDate 2.10 63 | eol: 2024-05-07 # releaseDate 2.11 64 | latest: "2.8.5" 65 | latestReleaseDate: 2024-03-09 66 | 67 | - releaseCycle: "2.7" 68 | releaseDate: 2024-01-01 69 | eoas: 2024-03-07 # releaseDate 2.9 70 | eol: 2024-04-03 # releaseDate 2.10 71 | latest: "2.7.3" 72 | latestReleaseDate: 2024-03-04 73 | 74 | --- 75 | 76 | > [Coder](https://coder.com) is an open-source platform for creating and managing developer workspaces on your preferred 77 | > clouds and servers. 78 | 79 | There is a new minor release of Coder on the first Tuesday of each month. Minor releases are 80 | supported for three months with bug and security fixes the first month, major bug and security 81 | fixes the second month and only security fixes the third month. 82 | -------------------------------------------------------------------------------- /products/log4j.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Log4j 3 | category: framework 4 | tags: java-runtime 5 | iconSlug: apache 6 | permalink: /log4j 7 | alternate_urls: 8 | - /apache_log4j 9 | - /apache-log4j 10 | releasePolicyLink: https://logging.apache.org/log4j/2.x/security.html 11 | changelogTemplate: https://logging.apache.org/log4j/2.0/release-notes.html#release-notes-{{'__LATEST__'|replace:'.','-'}} 12 | releaseDateColumn: true 13 | eolColumn: Supported 14 | 15 | identifiers: 16 | - repology: log4j 17 | - cpe: cpe:/a:apache:log4j 18 | - cpe: cpe:2.3:a:apache:log4j 19 | 20 | auto: 21 | methods: 22 | - maven: org.apache.logging.log4j/log4j-core 23 | 24 | releases: 25 | - releaseCycle: "2" 26 | outOfOrder: true # to keep it at the top 27 | releaseDate: 2014-07-12 28 | eol: false 29 | latest: "2.23.1" 30 | latestReleaseDate: 2024-03-06 31 | 32 | - releaseCycle: "2.12" 33 | releaseDate: 2019-06-26 34 | eol: 2021-12-14 35 | latest: "2.12.4" 36 | latestReleaseDate: 2021-12-28 37 | link: https://github.com/apache/logging-log4j2/blob/rel/__LATEST__/RELEASE-NOTES.md 38 | 39 | - releaseCycle: "2.3" 40 | releaseDate: 2015-05-10 41 | eol: 2015-09-20 42 | latest: "2.3.2" 43 | latestReleaseDate: 2021-12-29 44 | link: https://github.com/apache/logging-log4j2/blob/rel/__LATEST__/RELEASE-NOTES.txt 45 | 46 | - releaseCycle: "1" 47 | releaseDate: 2001-01-08 48 | eol: 2015-10-15 49 | latest: "1.2.17" 50 | latestReleaseDate: 2012-05-06 51 | link: https://logging.apache.org/log4j/1.2/changes-report.html#a1.2.17 52 | 53 | --- 54 | 55 | > [Apache Log4j](https://logging.apache.org/log4j/2.x/) is a Java-based logging utility. It is part 56 | > of the Apache Logging Services, a project of the Apache Software Foundation. 57 | 58 | Log4j 1 reached End-Of-Life on [August 2015](https://news.apache.org/foundation/entry/apache_logging_services_project_announces). 59 | The [reload4j](https://reload4j.qos.ch/) project provides a drop-in replacement for Log4j 1.x with 60 | maintenance and security fixes. 61 | 62 | ## Java Support 63 | 64 | The only supported Java version is Java 8 and above. 65 | 66 | - Log4j 2.13.0 and greater require Java 8 or above. 67 | - Log4j (2.4 - 2.12.2) require Java 7 or above. 68 | - Log4j 2.12.2 was released as an emergency release (to fix CVE-2021-45046 and CVE-2021-44228) and 69 | is the last 2.x release to support Java 7. The Log4j team no longer supports Java 7, so this 70 | release (while fixing the vulnerability) is no longer supported. 71 | - Log4j 2.3 was the last 2.x release to support Java 6. 72 | -------------------------------------------------------------------------------- /products/chef-infra-server.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Chef Infra Server 3 | category: server-app 4 | tags: erlang-runtime ruby-runtime 5 | iconSlug: chef 6 | permalink: /chef-infra-server 7 | alternate_urls: 8 | - /chef-server 9 | versionCommand: chef-server-ctl version 10 | releasePolicyLink: https://docs.chef.io/versions/ 11 | changelogTemplate: https://docs.chef.io/release_notes_server/#__LATEST__ 12 | eoasColumn: true 13 | releaseDateColumn: true 14 | 15 | identifiers: 16 | - repology: chef-infra-server 17 | - cpe: cpe:2.3:a:progress:chef_infra_server 18 | 19 | auto: 20 | methods: 21 | - custom: chef-infra-server 22 | 23 | # eoas(x) = releaseDate(x+1) 24 | # eol(x) = releaseDate(x+2) or the date documented on https://docs.chef.io/versions/ 25 | releases: 26 | - releaseCycle: "15" 27 | releaseDate: 2022-06-13 28 | eoas: false 29 | eol: false 30 | latest: "15.9.38" 31 | latestReleaseDate: 2024-05-21 32 | 33 | - releaseCycle: "14" 34 | releaseDate: 2020-06-08 35 | eoas: 2022-06-13 36 | eol: false 37 | latest: "14.16.19" 38 | latestReleaseDate: 2022-06-07 39 | 40 | - releaseCycle: "13" 41 | releaseDate: 2019-05-31 42 | eoas: 2020-06-08 43 | eol: 2021-06-30 # https://www.chef.io/blog/announcing-the-chef-infra-server-13-deprecation 44 | latest: "13.2.0" 45 | latestReleaseDate: 2020-04-10 46 | 47 | - releaseCycle: "12" 48 | releaseDate: 2014-11-25 49 | eoas: 2019-05-31 50 | eol: 2020-12-31 # https://web.archive.org/web/20210613113759/https://docs.chef.io/versions/ 51 | latest: "12.19.31" 52 | latestReleaseDate: 2019-03-07 53 | 54 | - releaseCycle: "11" 55 | releaseDate: 2013-02-04 # https://www.chef.io/blog/chef-11-released 56 | eoas: 2014-11-25 57 | eol: 2018-12-31 # https://www.chef.io/blog/end-of-life-announcement-for-chef-reporting-enterprise-chef-server-11-and-chef-analytics 58 | latest: "11.1.7" 59 | latestReleaseDate: 2014-06-19 60 | 61 | --- 62 | 63 | > [Chef Infra Server](https://docs.chef.io/server/) is an open-source platform that complements 64 | > Chef Infra Client. It serves as a central hub for configuration data, providing scalable 65 | > infrastructure management. 66 | 67 | Supported releases of Chef Infra Server are documented on the [Chef Documentation website](https://docs.chef.io/versions/#supported-commercial-distributions). 68 | Looking at this document it seems that Chef Infra Server follows an N-1 support strategy, with the 69 | latest release supported with bug and security fixes, and the previous release marked "deprecated" 70 | and only supported with security fixes. 71 | -------------------------------------------------------------------------------- /products/contour.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Contour 3 | category: server-app 4 | tags: cncf kubernetes 5 | permalink: /contour 6 | releasePolicyLink: https://projectcontour.io/resources/support/ 7 | changelogTemplate: https://github.com/projectcontour/contour/releases/tag/v__LATEST__ 8 | releaseDateColumn: true 9 | eolColumn: Bug and Security Fixes 10 | 11 | auto: 12 | methods: 13 | - git: https://github.com/projectcontour/contour.git 14 | 15 | identifiers: 16 | - purl: pkg:github/projectcontour/contour 17 | - purl: pkg:docker/projectcontour/contour 18 | - purl: pkg:docker/bitnami/contour 19 | - purl: pkg:oci/contour?repository_url=ghcr.io/projectcontour 20 | 21 | # eol(X) = releaseDate(X+3) 22 | releases: 23 | - releaseCycle: "1.30" 24 | releaseDate: 2024-07-31 25 | eol: false # releaseDate(1.33) 26 | latest: "1.30.0" 27 | latestReleaseDate: 2024-07-31 28 | 29 | - releaseCycle: "1.29" 30 | releaseDate: 2024-05-07 31 | eol: false # releaseDate(1.32) 32 | latest: "1.29.2" 33 | latestReleaseDate: 2024-07-31 34 | 35 | - releaseCycle: "1.28" 36 | releaseDate: 2024-02-12 37 | eol: false # releaseDate(1.31) 38 | latest: "1.28.6" 39 | latestReleaseDate: 2024-07-31 40 | 41 | - releaseCycle: "1.27" 42 | releaseDate: 2023-10-30 43 | eol: 2024-07-31 # releaseDate(1.30) 44 | latest: "1.27.4" 45 | latestReleaseDate: 2024-06-12 46 | 47 | - releaseCycle: "1.26" 48 | releaseDate: 2023-08-29 49 | eol: 2024-05-07 # releaseDate(1.29) 50 | latest: "1.26.3" 51 | latestReleaseDate: 2024-04-10 52 | 53 | - releaseCycle: "1.25" 54 | releaseDate: 2023-05-09 55 | eol: 2024-02-12 # releaseDate(1.28) 56 | latest: "1.25.3" 57 | latestReleaseDate: 2023-10-17 58 | 59 | - releaseCycle: "1.24" 60 | releaseDate: 2023-01-31 61 | eol: 2023-10-30 # releaseDate(1.27) 62 | latest: "1.24.6" 63 | latestReleaseDate: 2023-10-17 64 | 65 | --- 66 | 67 | > [Contour](https://projectcontour.io/) is an ingress controller for Kubernetes that works by deploying [Envoy](https://www.envoyproxy.io/) as a reverse proxy and load balancer. Contour supports dynamic configuration updates out of the box while maintaining a lightweight profile. 68 | 69 | Contour follows [Semantic Versioning](https://semver.org/). A new minor version is released approximately once a quarter. 70 | 71 | The latest three releases are supported with critical and security fixes. 72 | 73 | A [compatibility matrix](https://projectcontour.io/resources/compatibility-matrix/) is published 74 | for compatibility with the Envoy/Kubernetes versions supported for every release. 75 | -------------------------------------------------------------------------------- /products/etcd.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: etcd 3 | category: database 4 | tags: cncf 5 | iconSlug: etcd 6 | permalink: /etcd 7 | versionCommand: etcdctl version 8 | releasePolicyLink: https://github.com/etcd-io/etcd/blob/main/Documentation/contributor-guide/branch_management.md#stable-branches 9 | changelogTemplate: https://github.com/etcd-io/etcd/releases/tag/v__LATEST__ 10 | releaseDateColumn: true 11 | 12 | auto: 13 | methods: 14 | - git: https://github.com/etcd-io/etcd.git 15 | 16 | identifiers: 17 | - repology: etcd 18 | - purl: pkg:docker/bitnami/etcd 19 | - purl: pkg:oci/etcd?repository_url=quay.io/repository/coreos 20 | - purl: pkg:oci/etcd?repository_url=gcr.io/etcd-development 21 | - purl: pkg:github/etcd-io/etcd 22 | - purl: pkg:golang/github.com/etcd-io/etcd 23 | 24 | 25 | # tentative rule: 26 | # eol(x) = max(latestReleaseDate(x), releaseDate(x+1)) 27 | releases: 28 | 29 | - releaseCycle: "3.5" 30 | releaseDate: 2021-06-15 31 | eol: false 32 | latest: '3.5.15' 33 | latestReleaseDate: 2024-07-19 34 | 35 | - releaseCycle: "3.4" 36 | releaseDate: 2019-08-30 37 | eol: false 38 | latest: '3.4.33' 39 | latestReleaseDate: 2024-06-13 40 | 41 | - releaseCycle: "3.3" 42 | releaseDate: 2018-02-01 43 | eol: 2021-10-15 # latestReleaseDate(3.3) 44 | latest: '3.3.27' 45 | latestReleaseDate: 2021-10-15 46 | 47 | - releaseCycle: "3.2" 48 | releaseDate: 2017-06-09 49 | eol: 2021-03-28 # latestReleaseDate(3.2) 50 | latest: '3.2.32' 51 | latestReleaseDate: 2021-03-28 52 | 53 | - releaseCycle: "3.1" 54 | releaseDate: 2017-01-20 55 | eol: 2018-10-10 # latestReleaseDate(3.1) 56 | latest: '3.1.20' 57 | latestReleaseDate: 2018-10-10 58 | 59 | - releaseCycle: "3.0" 60 | releaseDate: 2016-06-30 61 | eol: 2017-01-20 # latestReleaseDate(3.0) 62 | latest: '3.0.17' 63 | latestReleaseDate: 2017-01-20 64 | 65 | --- 66 | 67 | > [etcd](https://etcd.io) is an open-source, strongly consistent and distributed 68 | > key-value store that provides a reliable way to store data that needs to be 69 | > accessed by a distributed system or cluster of machines. It is used as the 70 | > backing store by [Kubernetes](/kubernetes). 71 | 72 | etcd follows [SemVer](https://semver.org/). Backwards-compatible bugs are 73 | fixed for the latest two stable releases. A patch release to each supported 74 | release branch, incorporating any bug fixes, happens every two weeks. 75 | 76 | The list of currently maintained releases is 77 | [available on GitHub](https://github.com/etcd-io/etcd/blob/main/Documentation/contributor-guide/release.md#release-management). 78 | -------------------------------------------------------------------------------- /products/solr.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Solr 3 | category: server-app 4 | tags: apache java-runtime 5 | iconSlug: apachesolr 6 | permalink: /solr 7 | alternate_urls: 8 | - /apache_solr 9 | - /apache-solr 10 | versionCommand: bin/solr version 11 | releasePolicyLink: https://solr.apache.org/downloads.html#about-versions-and-support 12 | changelogTemplate: "https://solr.apache.org/docs/{{'__LATEST__'|replace:'.','_'}}/changes/Changes.html" 13 | releaseDateColumn: true 14 | 15 | identifiers: 16 | - repology: solr 17 | - cpe: cpe:/a:apache:solr 18 | - cpe: cpe:2.3:a:apache:solr 19 | 20 | auto: 21 | methods: 22 | - git: https://github.com/apache/lucene-solr.git 23 | regex: '^releases\/lucene-solr\/(?P\d+\.\d+(.\d+)?)$' 24 | template: '{{version}}' 25 | - git: https://github.com/apache/solr.git 26 | # Only pick new release from the new repo 27 | regex: '^releases\/solr\/(?P\d+\.\d+(.\d+)?)$' 28 | template: '{{version}}' 29 | 30 | releases: 31 | - releaseCycle: "9" 32 | releaseDate: 2022-05-11 33 | eol: false 34 | latest: "9.6.1" 35 | latestReleaseDate: 2024-05-29 36 | 37 | - releaseCycle: "8" 38 | releaseDate: 2019-03-13 39 | eol: false 40 | latest: "8.11.3" 41 | latestReleaseDate: 2024-02-08 42 | 43 | - releaseCycle: "7" 44 | releaseDate: 2017-09-18 45 | eol: 2022-05-11 46 | latest: "7.7.3" 47 | latestReleaseDate: 2020-04-24 48 | 49 | - releaseCycle: "6" 50 | releaseDate: 2016-04-07 51 | eol: 2019-03-13 52 | latest: "6.6.6" 53 | latestReleaseDate: 2019-04-01 54 | 55 | - releaseCycle: "5" 56 | releaseDate: 2015-02-19 57 | eol: 2017-10-24 58 | latest: "5.5.5" 59 | latestReleaseDate: 2017-10-23 60 | 61 | - releaseCycle: "4" 62 | releaseDate: 2012-10-11 63 | eol: true 64 | latest: "4.10.4" 65 | latestReleaseDate: 2015-03-03 66 | 67 | - releaseCycle: "3" 68 | releaseDate: 2011-03-30 69 | eol: true 70 | latest: "3.6.2" 71 | latestReleaseDate: 2012-12-24 72 | link: https://cwiki.apache.org/confluence/display/solr/ReleaseNote362 73 | 74 | - releaseCycle: "1" 75 | releaseDate: 2006-12-22 76 | eol: true 77 | latest: "1.4.1" 78 | latestReleaseDate: 2010-06-25 79 | link: https://svn.apache.org/repos/asf/lucene/solr/tags/release-1.4.1/CHANGES.txt 80 | 81 | --- 82 | 83 | > [Apache Solr](https://solr.apache.org/) is an open-source search engine written in Java. 84 | 85 | The previous major version will get occasional critical security fixes. 86 | Versions older than that are considered EOL. 87 | 88 | No releases are scheduled in advance. 89 | -------------------------------------------------------------------------------- /products/flux.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Flux 3 | category: server-app 4 | tags: cncf 5 | permalink: /flux 6 | iconSlug: flux 7 | alternate_urls: 8 | - /flux2 9 | - /fluxcd 10 | versionCommand: flux version 11 | releasePolicyLink: https://fluxcd.io/flux/releases/#supported-releases 12 | changelogTemplate: https://github.com/fluxcd/flux2/releases/tag/v__LATEST__ 13 | releaseDateColumn: true 14 | eolColumn: Support 15 | 16 | auto: 17 | methods: 18 | - git: https://github.com/fluxcd/flux2.git 19 | - git: https://github.com/fluxcd/flux.git 20 | 21 | # eol(X) = releaseDate(X+3) 22 | releases: 23 | - releaseCycle: "2.3" 24 | releaseDate: 2024-05-13 25 | eol: false 26 | latest: "2.3.0" 27 | latestReleaseDate: 2024-05-13 28 | 29 | - releaseCycle: "2.2" 30 | releaseDate: 2023-12-12 31 | eol: false 32 | latest: "2.2.3" 33 | latestReleaseDate: 2024-02-05 34 | 35 | - releaseCycle: "2.1" 36 | releaseDate: 2023-08-24 37 | eol: false 38 | latest: "2.1.2" 39 | latestReleaseDate: 2023-10-12 40 | 41 | - releaseCycle: "2.0" 42 | releaseDate: 2023-07-05 43 | eol: 2024-05-13 # https://fluxcd.io/blog/2024/05/flux-v2.3.0/#supported-versions 44 | latest: "2.0.1" 45 | latestReleaseDate: 2023-07-11 46 | 47 | - releaseCycle: "1.25" 48 | releaseDate: 2022-03-30 49 | eol: 2022-11-02 # https://github.com/endoflife-date/endoflife.date/pull/3420#discussion_r1306636700 50 | latest: "1.25.4" 51 | latestReleaseDate: 2022-08-30 52 | link: https://github.com/fluxcd/flux/releases/tag/1.25.4 53 | 54 | --- 55 | 56 | > [Flux](https://fluxcd.io) is a tool for keeping Kubernetes clusters in sync with sources of 57 | > configuration (like Git repositories), and automating updates to configuration when there is new 58 | > code to deploy. Flux is built from the ground up to use Kubernetes' API extension system, and to 59 | > integrate with Prometheus and other core components of the Kubernetes ecosystem. Flux supports 60 | > multi-tenancy and support for syncing an arbitrary number of Git repositories. 61 | 62 | The project supports the last three minor releases of the CLI and its controllers with critical bug 63 | and security fixes. 64 | 65 | ## [Release Cadence](https://fluxcd.io/flux/releases/#release-cadence) 66 | 67 | Flux is at least released at the same rate as Kubernetes, following their cadence of three minor 68 | releases per year. After each Kubernetes minor release, the CLI and all controllers are tested 69 | against the latest Kubernetes version and are released approximately two weeks after Kubernetes. 70 | The newly released Flux version offers support for Kubernetes N-2 minor versions. 71 | -------------------------------------------------------------------------------- /products/zookeeper.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache ZooKeeper 3 | category: server-app 4 | tags: apache java-runtime 5 | permalink: /zookeeper 6 | alternate_urls: 7 | - /apache_zookeeper 8 | - /apache-zookeeper 9 | releasePolicyLink: https://zookeeper.apache.org/releases.html 10 | changelogTemplate: https://zookeeper.apache.org/doc/r{{"__LATEST__"}}/releasenotes.html 11 | releaseDateColumn: true 12 | eoasColumn: true 13 | 14 | identifiers: 15 | - repology: zookeeper 16 | - purl: pkg:maven/org.apache.zookeeper/zookeeper 17 | - purl: pkg:github/apache/zookeeper 18 | - purl: pkg:docker/library/zookeeper 19 | - purl: pkg:deb/debian/zookeeper 20 | 21 | auto: 22 | methods: 23 | - maven: org.apache.zookeeper/zookeeper 24 | 25 | # support(X) = releaseDate(X+2) 26 | # eol(X) ~= releaseDate(X+2)+6m, unless declared 27 | releases: 28 | - releaseCycle: "3.9" 29 | releaseDate: 2023-07-19 30 | eol: false 31 | eoas: false 32 | latest: "3.9.2" 33 | latestReleaseDate: 2024-02-12 34 | 35 | - releaseCycle: "3.8" 36 | releaseDate: 2022-02-25 37 | eol: false 38 | eoas: false 39 | latest: "3.8.4" 40 | latestReleaseDate: 2024-02-12 41 | 42 | - releaseCycle: "3.7" 43 | releaseDate: 2021-03-17 44 | eol: 2024-01-19 45 | eoas: 2023-07-19 46 | latest: "3.7.2" 47 | latestReleaseDate: 2023-10-06 48 | 49 | - releaseCycle: "3.6" 50 | releaseDate: 2020-02-25 51 | eol: 2022-12-30 52 | eoas: 2022-03-07 53 | latest: "3.6.4" 54 | latestReleaseDate: 2022-12-18 55 | 56 | - releaseCycle: "3.5" 57 | releaseDate: 2019-05-03 58 | eol: 2022-06-01 59 | eoas: 2021-03-27 60 | latest: "3.5.10" 61 | latestReleaseDate: 2022-05-29 62 | 63 | - releaseCycle: "3.4" 64 | releaseDate: 2011-11-23 65 | eol: 2020-06-01 66 | eoas: 2020-03-27 67 | latest: "3.4.14" 68 | latestReleaseDate: 2019-03-06 69 | 70 | --- 71 | 72 | > [Apache ZooKeeper](https://zookeeper.apache.org/) is an open-source server for highly reliable 73 | > distributed coordination of cloud applications. 74 | 75 | The Apache ZooKeeper community supports two release branches at a time: **stable** and **current**. 76 | Once a new minor version is released, the stable version is expected to be decommissioned soon and 77 | in approximately half a year will be announced as End-of-Life. During the half year grace period 78 | only security and critical fixes are expected to be released for the version. After EoL is 79 | announced no further patches are provided by the community. All ZooKeeper releases will remain 80 | accessible from the official Apache Archives. 81 | 82 | No releases are scheduled in advance. 83 | -------------------------------------------------------------------------------- /products/react.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: React 3 | category: framework 4 | tags: meta javascript-runtime 5 | iconSlug: react 6 | permalink: /react 7 | releasePolicyLink: https://react.dev/community/versioning-policy 8 | changelogTemplate: https://github.com/facebook/react/releases/tag/v__LATEST__ 9 | releaseDateColumn: true 10 | eoasColumn: true 11 | 12 | identifiers: 13 | - purl: pkg:github/facebook/react 14 | - purl: pkg:npm/react 15 | 16 | # NPM dates are more accurate than git tag dates. 17 | auto: 18 | methods: 19 | - npm: react 20 | 21 | releases: 22 | - releaseCycle: "18.3" 23 | releaseDate: 2024-04-25 24 | eoas: false 25 | eol: false 26 | latest: "18.3.1" 27 | latestReleaseDate: 2024-04-26 28 | 29 | - releaseCycle: "18.2" 30 | releaseDate: 2022-06-14 31 | eoas: 2024-04-25 32 | eol: false 33 | latest: "18.2.0" 34 | latestReleaseDate: 2022-06-14 35 | 36 | - releaseCycle: "18.1" 37 | releaseDate: 2022-04-26 38 | eoas: 2022-06-14 39 | eol: false 40 | latest: "18.1.0" 41 | latestReleaseDate: 2022-04-26 42 | 43 | - releaseCycle: "18.0" 44 | releaseDate: 2022-03-29 45 | eoas: 2022-04-26 46 | eol: false 47 | latest: "18.0.0" 48 | latestReleaseDate: 2022-03-29 49 | 50 | - releaseCycle: "17" 51 | releaseDate: 2020-10-20 52 | eoas: 2022-03-29 53 | eol: false 54 | latest: "17.0.2" 55 | latestReleaseDate: 2021-03-22 56 | 57 | - releaseCycle: "16" 58 | releaseDate: 2017-09-26 59 | eoas: 2020-10-20 60 | eol: false 61 | latest: "16.14.0" 62 | latestReleaseDate: 2020-10-14 63 | 64 | - releaseCycle: "15" 65 | releaseDate: 2016-04-07 66 | eoas: 2017-09-26 67 | eol: false 68 | latest: "15.7.0" 69 | latestReleaseDate: 2020-10-14 70 | 71 | --- 72 | 73 | > [React](https://react.dev/) is an open-source JavaScript library for building modern web 74 | > applications. 75 | 76 | ## Versioning 77 | 78 | React follows [Semantic Versioning](https://semver.org/) principles. The only officially supported 79 | release channel for user-facing applications is Latest. New features are released in minor versions. 80 | Patch releases are made only for the most critical bugs and security vulnerabilities. Major 81 | releases can also contain new features, and any release can include bug fixes. 82 | 83 | ## [Support](https://github.com/reactjs/react.dev/issues/1745) 84 | 85 | **Active Support**: Only the latest release cycle gets non-critical bugfixes, and new features. 86 | 87 | **Security Support**: Critical Security fixes are backported to all minor releases of the current 88 | major, as well as to latest minor release of previous major releases. 89 | -------------------------------------------------------------------------------- /products/coldfusion.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Adobe ColdFusion 3 | category: server-app 4 | tags: adobe 5 | permalink: /coldfusion 6 | versionCommand: writeoutput(server.coldfusion.productversion); 7 | releasePolicyLink: https://helpx.adobe.com/x-productkb/policy-pricing/policy_enterprise_lifecycle.html 8 | changelogTemplate: https://helpx.adobe.com/coldfusion/kb/coldfusion-__RELEASE_CYCLE__-updates.html 9 | releaseDateColumn: true 10 | eolColumn: Core Support 11 | eoesColumn: true 12 | 13 | # Anti-scraping measures have been taken, so the script does not work anymore. 14 | # It has been disabled for now as it significantly increase the Update data job duration. 15 | #auto: 16 | # methods: 17 | # - custom: coldfusion 18 | 19 | # When adding a cycle, don't forget to add its release note URL in 20 | # https://github.com/endoflife-date/release-data/blob/main/src/coldfusion.py 21 | # to benefit from auto-updates. 22 | releases: 23 | - releaseCycle: "2023" 24 | releaseDate: 2022-05-16 25 | eol: 2028-05-16 26 | eoes: 2029-05-16 27 | latest: "2023.0.8.330668" 28 | latestReleaseDate: 2024-06-11 29 | 30 | - releaseCycle: "2021" 31 | releaseDate: 2020-11-11 32 | eol: 2025-11-10 33 | eoes: 2026-11-10 34 | latest: "2021.0.14.330296" 35 | latestReleaseDate: 2024-06-11 36 | 37 | - releaseCycle: "2018" 38 | releaseDate: 2018-07-12 39 | eol: 2023-07-13 40 | eoes: 2024-07-13 41 | latest: "2018.0.19.330149" 42 | latestReleaseDate: 2023-07-19 43 | 44 | - releaseCycle: "2016" 45 | releaseDate: 2016-02-16 46 | eol: 2021-02-17 47 | eoes: 2022-02-17 48 | latest: "2016.0.17.325979" 49 | latestReleaseDate: 2021-03-22 50 | 51 | - releaseCycle: "11" 52 | releaseDate: 2014-04-29 53 | eol: 2019-04-30 54 | eoes: 2021-04-30 55 | latest: "11.0.19.314546" 56 | latestReleaseDate: 2019-06-11 57 | 58 | - releaseCycle: "10" 59 | releaseDate: 2012-05-15 60 | eol: 2017-05-16 61 | eoes: 2019-05-16 62 | latest: "10.0.23.302580" 63 | latestReleaseDate: 2017-04-25 64 | 65 | --- 66 | 67 | > [Adobe ColdFusion](https://www.adobe.com/products/coldfusion-family.html) is Java-based commercial 68 | > web application server and development platform from Adobe. 69 | 70 | ColdFusion's lifecycle is typically 5 years after release, with new releases usually about every two 71 | years. A list of all the releases with their dates can be seen on 72 | [Products and technical support periods](https://helpx.adobe.com/support/programs/eol-matrix.html). 73 | 74 | Adobe also commercialize an "Extended maintenance and support" option with extra maintenance and 75 | support services after the end of the Core Support period. 76 | -------------------------------------------------------------------------------- /products/unrealircd.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: UnrealIRCd 3 | category: server-app 4 | permalink: /unrealircd 5 | versionCommand: ./unrealircd version 6 | releasePolicyLink: https://www.unrealircd.org/docs/UnrealIRCd_releases 7 | eoasColumn: true 8 | releaseDateColumn: true 9 | 10 | identifiers: 11 | - repology: unrealircd 12 | - purl: pkg:docker/bbriggs/unrealircd 13 | 14 | auto: 15 | methods: 16 | - custom: unrealircd 17 | - release_table: https://www.unrealircd.org/docs/UnrealIRCd_releases 18 | selector: "table" 19 | header_selector: "tr:nth-of-type(1)" 20 | fields: 21 | releaseCycle: 22 | column: "Series" 23 | regex: '^UnrealIRCd (?P\d+(\.\d+)?)$' 24 | releaseDate: "First stable release" 25 | eoas: "Security fixes only" 26 | eol: "End of life (EOL)" 27 | 28 | # A list of releases, supported or not 29 | # Newer releases go on top of the list, in order 30 | releases: 31 | - releaseCycle: "6" 32 | releaseDate: 2021-12-17 33 | eoas: false 34 | eol: false 35 | link: "https://github.com/unrealircd/unrealircd/blob/unreal60_dev/doc/RELEASE-NOTES.md#unrealircd-{{'__LATEST__'|replace:'.',''}}" 36 | latest: "6.1.7.1" 37 | latestReleaseDate: 2024-07-18 38 | 39 | - releaseCycle: "5" 40 | releaseDate: 2019-12-13 41 | eoas: 2022-07-01 42 | eol: 2023-07-01 43 | link: "https://github.com/unrealircd/unrealircd/blob/unreal52/doc/RELEASE-NOTES.md#unrealircd-{{'__LATEST__'|replace:'.',''}}" 44 | latest: "5.2.4" 45 | latestReleaseDate: 2022-01-28 46 | 47 | - releaseCycle: "4" 48 | releaseDate: 2015-12-24 49 | eoas: 2019-05-20 50 | eol: 2020-12-31 51 | link: https://github.com/unrealircd/unrealircd/blob/unreal42/doc/RELEASE-NOTES 52 | latest: "4.2.4.1" 53 | latestReleaseDate: 2019-07-07 54 | 55 | - releaseCycle: "3.2" 56 | releaseDate: 2004-04-25 57 | eoas: 2015-12-11 58 | eol: 2016-12-31 59 | link: https://forums.unrealircd.org/viewtopic.php?f=1&t=8588 60 | latest: "3.2.10.7" 61 | latestReleaseDate: 2016-09-03 62 | 63 | --- 64 | 65 | > [UnrealIRCd](https://www.unrealircd.org) is an Open Source IRC Server since 1999. It implements 66 | > almost all IRCv3 features. 67 | 68 | UnrealIRCd always has one "stable" version. It does not have a strictly timed release cadence. 69 | When a new major version is released, the EOL dates of the previous major version ("oldstable") is announced. 70 | The previous major version is guaranteed to be supported for at least 12 months. 71 | The final support period starts with a period where bugs are still being fixed (but no new 72 | features are being implemented), followed by a "security fixes only" period. 73 | -------------------------------------------------------------------------------- /products/elasticsearch.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Elasticsearch 3 | category: database 4 | tags: elastic java-runtime 5 | iconSlug: elasticsearch 6 | permalink: /elasticsearch 7 | versionCommand: $ES_HOME/bin/elasticsearch -v 8 | releasePolicyLink: https://www.elastic.co/support_policy 9 | changelogTemplate: "https://www.elastic.co/guide/en/elasticsearch/reference/{{'__LATEST__'|split:'.'|pop|join:'.'}}/release-notes-__LATEST__.html" 10 | eolColumn: Support 11 | releaseDateColumn: true 12 | 13 | identifiers: 14 | - purl: pkg:deb/debian/elasticsearch 15 | - purl: pkg:deb/ubuntu/elasticsearch 16 | - purl: pkg:rpm/amzn/elasticsearch 17 | - purl: pkg:rpm/redhat/elasticsearch 18 | - purl: pkg:rpm/centos/elasticsearch 19 | - repology: elasticsearch 20 | 21 | auto: 22 | methods: 23 | - git: https://github.com/elastic/elasticsearch.git 24 | 25 | releases: 26 | - releaseCycle: "8" 27 | releaseDate: 2022-02-10 28 | eol: false # later of 2024-08-10 or 18 months after the release date of 9.0 29 | latest: "8.14.3" 30 | latestReleaseDate: 2024-07-06 31 | 32 | - releaseCycle: "7" 33 | releaseDate: 2019-04-10 34 | eol: false # later of 2023-08-01 or the release date of 9.0 35 | latest: "7.17.23" 36 | latestReleaseDate: 2024-07-24 37 | 38 | - releaseCycle: "6" 39 | releaseDate: 2017-11-14 40 | eol: 2022-02-10 41 | latest: "6.8.23" 42 | latestReleaseDate: 2022-01-13 43 | 44 | --- 45 | 46 | > Elasticsearch is a search engine that provides a distributed, multi-tenant-capable full-text search 47 | > engine with an HTTP web interface and schema-free JSON documents. 48 | 49 | Elasticsearch is part of the [Elastic Stack](https://www.elastic.co/elastic-stack/), also known as the 50 | [ELK Stack](https://www.elastic.co/what-is/elk-stack). It shares the same support policy as the 51 | other products in the Elastic Stack (Kibana, Logstash, Beats...). 52 | 53 | Elastic Stack product releases follow [Semantic Versioning](https://semver.org/). Elastic provides 54 | maintenance for each major release series for the longest of 30 months after the GA date of the 55 | major release or 18 months after the GA date of the subsequent major release. 56 | 57 | Therefore: 58 | 59 | * **Elasticsearch 8** will receive updates until 18 months after the release date of 9.0 (TBD). 60 | * **Elasticsearch 7** will receive updates until the release date of 9.0 (TDB). 61 | 62 | End of life dates for Elasticsearch can be found on the [Elastic product EOL dates page](https://www.elastic.co/support/eol). 63 | Support for various operating systems can also be found on the [Elastic support matrix page](https://www.elastic.co/support/matrix). 64 | 65 | *[GA]: General Availability 66 | *[EOL]: End Of Life 67 | -------------------------------------------------------------------------------- /products/bootstrap.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Bootstrap 3 | category: framework 4 | tags: css-runtime javascript-runtime 5 | iconSlug: bootstrap 6 | permalink: /bootstrap 7 | releasePolicyLink: https://github.com/twbs/release 8 | changelogTemplate: https://github.com/twbs/bootstrap/releases/tag/v__LATEST__ 9 | releaseDateColumn: true 10 | eoasColumn: true 11 | eoesColumn: Commercial Support 12 | eolColumn: Critical Support 13 | 14 | identifiers: 15 | - repology: bootstrap 16 | - purl: pkg:npm/bootstrap 17 | - purl: pkg:nuget/bootstrap 18 | - purl: pkg:gem/bootstrap 19 | - purl: pkg:composer/twbs/bootstrap 20 | - purl: pkg:github/twbs/bootstrap 21 | 22 | # NPM is also possible, but versions before 3.1.1 are not on NPM, so it's better to use git. 23 | auto: 24 | methods: 25 | - git: https://github.com/twbs/bootstrap.git 26 | 27 | releases: 28 | - releaseCycle: "5" 29 | lts: true 30 | releaseDate: 2021-05-05 31 | eoas: false 32 | eol: false 33 | latest: "5.3.3" 34 | latestReleaseDate: 2024-02-20 35 | 36 | - releaseCycle: "4" 37 | lts: true 38 | releaseDate: 2018-01-18 39 | eoas: true 40 | eol: 2023-01-01 41 | eoes: false 42 | latest: "4.6.2" 43 | latestReleaseDate: 2022-07-19 44 | 45 | - releaseCycle: "3" 46 | releaseDate: 2013-08-19 47 | eoas: true 48 | eol: 2019-07-24 49 | eoes: false 50 | latest: "3.4.1" 51 | latestReleaseDate: 2019-02-13 52 | 53 | - releaseCycle: "2" 54 | releaseDate: 2012-01-31 55 | eoas: true 56 | eol: 2013-08-19 57 | latest: "2.3.2" 58 | latestReleaseDate: 2013-07-26 59 | 60 | --- 61 | 62 | > [Bootstrap](https://getbootstrap.com/) is the most popular HTML, CSS, and JavaScript framework 63 | > for developing responsive, mobile first projects on the web. 64 | 65 | At times to be determined by the release working group, major versions will be frozen and 66 | transitioned to _Long Term Support_ (LTS). After a determined period of time, versions in Long Term 67 | Support will be deep-frozen and transition to _Maintenance_ (Critical Support). 68 | 69 | Versions in _Maintenance_ should not have any changes landed, except for: 70 | 71 | - **Critical** bug fixes 72 | - **Critical** security updates 73 | - **Important** documentation updates 74 | 75 | Unless a change is urgent, _Maintenance_ releases are likely to be made with minimal frequency. 76 | 77 | Bootstrap versions 3 and 4 have reached end of life. Commercial support is available for these versions through the [HeroDevs Never-Ending Support](https://www.herodevs.com/support/nes-bootstrap) initiative. For more information, see Bootstrap [3.4.1](https://getbootstrap.com/docs/3.4/getting-started/#eol) and [4.6.x](https://getbootstrap.com/docs/4.6/end-of-life/) docs. 78 | -------------------------------------------------------------------------------- /products/ruby-on-rails.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Ruby on Rails 3 | category: framework 4 | tags: ruby-runtime 5 | iconSlug: rubyonrails 6 | permalink: /rails 7 | alternate_urls: 8 | - /rubyonrails 9 | - /ruby-on-rails 10 | - /roro 11 | - /ror 12 | releasePolicyLink: https://guides.rubyonrails.org/maintenance_policy.html 13 | changelogTemplate: https://github.com/rails/rails/releases/tag/v__LATEST__ 14 | releaseDateColumn: true 15 | 16 | identifiers: 17 | - repology: ruby:rails 18 | - purl: pkg:gem/rails 19 | - purl: pkg:github/rails/rails 20 | 21 | auto: 22 | methods: 23 | - git: https://github.com/rails/rails.git 24 | 25 | releases: 26 | - releaseCycle: "7.1" 27 | releaseDate: 2023-10-05 28 | eol: false 29 | latest: "7.1.3.4" 30 | latestReleaseDate: 2024-06-04 31 | 32 | - releaseCycle: "7.0" 33 | releaseDate: 2021-12-15 34 | eol: false 35 | latest: "7.0.8.4" 36 | latestReleaseDate: 2024-06-04 37 | 38 | - releaseCycle: "6.1" 39 | releaseDate: 2020-12-09 40 | eol: false 41 | latest: "6.1.7.8" 42 | latestReleaseDate: 2024-06-04 43 | 44 | - releaseCycle: "6.0" 45 | releaseDate: 2019-08-16 46 | eoas: 2021-12-15 47 | eol: 2023-06-01 48 | latest: "6.0.6.1" 49 | latestReleaseDate: 2023-01-17 50 | 51 | - releaseCycle: "5.2" 52 | releaseDate: 2018-04-09 53 | eoas: 2021-12-15 54 | eol: 2022-06-01 55 | latest: "5.2.8.1" 56 | latestReleaseDate: 2022-07-12 57 | 58 | - releaseCycle: "5.1" 59 | releaseDate: 2017-04-27 60 | eoas: 2018-04-09 61 | eol: 2019-08-25 62 | latest: "5.1.7" 63 | latestReleaseDate: 2019-03-27 64 | 65 | - releaseCycle: "5.0" 66 | releaseDate: 2016-06-30 67 | eoas: 2018-04-09 68 | eol: 2018-04-09 69 | latest: "5.0.7.2" 70 | latestReleaseDate: 2019-03-13 71 | 72 | - releaseCycle: "4.2" 73 | releaseDate: 2014-12-19 74 | eoas: 2016-06-30 75 | eol: 2017-04-27 76 | latest: "4.2.11.3" 77 | latestReleaseDate: 2020-05-15 78 | 79 | --- 80 | 81 | >[Ruby on Rails](https://rubyonrails.org/), or Rails, is a server-side web application framework 82 | > written in Ruby. 83 | 84 | Only the latest Rails version gets bug fixes, and the version before that gets security fixes. 85 | Severe security issues (as judged by the core team) are backported further; e.g., v5.2.8.1 is a 86 | [severe security fix](https://rubyonrails.org/2022/7/12/Rails-Versions-7-0-3-1-6-1-6-1-6-0-5-1-and-5-2-8-1-have-been-released) 87 | that was created after v5.2 was no longer receiving (non-severe) security updates. 88 | 89 | A complete list of historic versions is available on [RubyGems](https://rubygems.org/gems/rails/versions). 90 | New releases are published on the [Rails blog](https://rubyonrails.org/category/releases). 91 | -------------------------------------------------------------------------------- /products/watchos.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apple watchOS 3 | category: os 4 | tags: apple smartwatch 5 | iconSlug: apple 6 | permalink: /watchos 7 | releasePolicyLink: https://en.wikipedia.org/wiki/WatchOS#Version_history 8 | # Release notes are not published for all minor or patch versions, so using only the major version. 9 | # Other release notes are easily accessible from that page, if available. 10 | changelogTemplate: "https://developer.apple.com/documentation/watchos-release-notes/watchos-__RELEASE_CYCLE__-release-notes" 11 | eoasColumn: true 12 | releaseDateColumn: true 13 | 14 | auto: 15 | methods: 16 | - apple: watchos 17 | # If you are changing these, please use this as your corpus to validate your changes: 18 | # https://gist.githubusercontent.com/captn3m0/e7cb1f4fc3c07a5da0296ebda2b33e15/raw/5747e42ad611ec9ffdb7a2d1c0e3946bb87ab6d7/apple.txt 19 | regex: 20 | - 'watchOS\s+(?P\d+)' 21 | - 'watchOS\s+(?P\d+(?:\.\d+)+)' 22 | 23 | releases: 24 | - releaseCycle: "10" 25 | releaseDate: 2023-09-18 26 | eoas: false 27 | eol: false 28 | latest: '10.6' 29 | latestReleaseDate: 2024-07-29 30 | 31 | - releaseCycle: "9" 32 | releaseDate: 2022-09-12 33 | eoas: 2023-09-18 34 | eol: false 35 | latestReleaseDate: 2023-09-21 36 | latest: '9.6.3' 37 | 38 | - releaseCycle: "8" 39 | releaseDate: 2021-09-20 40 | eoas: 2022-09-12 41 | eol: 2022-09-22 42 | latestReleaseDate: 2023-06-21 43 | latest: '8.8.1' 44 | 45 | - releaseCycle: "7" 46 | releaseDate: 2020-09-16 47 | eoas: 2021-09-20 48 | eol: 2021-10-11 49 | latestReleaseDate: 2021-09-13 50 | latest: '7.6.2' 51 | 52 | - releaseCycle: "6" 53 | releaseDate: 2019-09-19 54 | eoas: 2020-09-16 55 | eol: 2020-09-16 56 | latestReleaseDate: 2020-12-14 57 | latest: '6.3' 58 | 59 | - releaseCycle: "5" 60 | releaseDate: 2018-09-17 61 | eoas: 2019-09-19 62 | eol: 2019-09-30 63 | latestReleaseDate: 2020-11-05 64 | latest: '5.3.9' 65 | 66 | - releaseCycle: "4" 67 | releaseDate: 2017-09-19 68 | eoas: 2018-09-17 69 | eol: 2018-09-27 70 | latestReleaseDate: 2018-07-09 71 | latest: '4.3.2' 72 | link: https://support.apple.com/HT208071 73 | 74 | - releaseCycle: "3" 75 | releaseDate: 2016-09-13 76 | eoas: 2017-09-19 77 | eol: 2017-10-04 78 | latestReleaseDate: 2017-07-19 79 | latest: '3.2.3' 80 | link: https://support.apple.com/kb/DL1894 81 | 82 | --- 83 | 84 | > [watchOS](https://www.apple.com/watchos/) is Apple's mobile operating system for its Apple 85 | > Watches. It is based on iOS, and introduced in 2015. 86 | 87 | Major versions of watchOS are released annually, with the previous major version losing support. 88 | -------------------------------------------------------------------------------- /products/rockylinux.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Rocky Linux 3 | category: os 4 | tags: linux-distribution 5 | iconSlug: rockylinux 6 | permalink: /rocky-linux 7 | alternate_urls: 8 | - /rocky 9 | - /rockylinux 10 | versionCommand: cat /etc/os-release 11 | releasePolicyLink: https://wiki.rockylinux.org/rocky/version/ 12 | changelogTemplate: "https://rockylinux.org/news/rocky-linux-{{'__LATEST__'|replace:'.','-'}}-ga-release/" 13 | eoasColumn: true 14 | releaseDateColumn: true 15 | 16 | identifiers: 17 | - cpe: cpe:/o:rocky:rocky 18 | - cpe: cpe:2.3:o:rocky:rocky 19 | 20 | # distrowatch misses a few releases 21 | # so we track https://wiki.rockylinux.org/rocky/version/#current-supported-releases 22 | auto: 23 | methods: 24 | - custom: rockylinux 25 | - release_table: https://wiki.rockylinux.org/rocky/version/ 26 | selector: "table" 27 | fields: 28 | releaseCycle: 29 | column: "Release" 30 | regex: '^Rocky Linux (?P\d+)$' 31 | releaseDate: "Release Date" 32 | eoas: "Active Support Ends" 33 | eol: "End of Life" 34 | 35 | releases: 36 | - releaseCycle: "9" 37 | releaseDate: 2022-07-14 38 | eoas: 2027-05-31 39 | eol: 2032-05-31 40 | latest: "9.4" 41 | latestReleaseDate: 2024-05-09 42 | 43 | - releaseCycle: "8" 44 | releaseDate: 2021-05-01 45 | eoas: 2024-05-31 46 | eol: 2029-05-31 47 | latest: "8.10" 48 | latestReleaseDate: 2024-05-31 49 | 50 | --- 51 | 52 | > [Rocky Linux](https://rockylinux.org/) is a Linux distribution that is intended to be a 53 | > downstream, complete binary-compatible release using the Red Hat Enterprise Linux (RHEL) 54 | > operating system source code. The project is led by Gregory Kurtzer, founder of the CentOS 55 | > project. 56 | 57 | ## Differences with Upstream RHEL: 58 | 59 | - Unlike RHEL, [Rocky Linux does not support point releases once a newer one is available.](https://forums.rockylinux.org/t/what-is-eol-of-rl8/3316/10) 60 | Once a new minor point release is available, the older one is immediately considered end of life 61 | and users must upgrade to continue receiving security updates. For example once 8.5 gets a general 62 | release, 8.4 is immediately end of life. Whereas on RHEL [this is not the case.](https://access.redhat.com/articles/rhel-eus) 63 | - Rocky Linux doesn't support [live kernel patching](https://access.redhat.com/solutions/2206511), 64 | instead users who need this depend on third party paid services. 65 | - Rocky Linux doesn't support [Extended Life Cycle](https://www.redhat.com/en/resources/els-datasheet), 66 | resulting in a shorter support cycle compared to upstream RHEL. 67 | 68 | Extended support for Rocky Linux is available from a variety of [commercial support providers](https://rockylinux.org/support/). 69 | -------------------------------------------------------------------------------- /products/lua.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Lua 3 | category: lang 4 | iconSlug: lua 5 | permalink: /lua 6 | versionCommand: lua -v 7 | releaseImage: https://www.lua.org/images/timeline.png 8 | releasePolicyLink: https://www.lua.org/versions.html 9 | changelogTemplate: "https://www.lua.org/versions.html#{{'__RELEASE_CYCLE__'|split:' '|first}}/" 10 | releaseDateColumn: true 11 | eolColumn: Support 12 | 13 | identifiers: 14 | - repology: lua 15 | - cpe: cpe:/a:lua:lua 16 | - cpe: cpe:2.3:a:lua:lua 17 | 18 | # EOL date is the date of the last release of the version. 19 | # The last releases are documented on https://www.lua.org/versions.html with a sentence similar to 20 | # "There will be no further releases of Lua x.y". 21 | releases: 22 | - releaseCycle: "5.4" 23 | releaseDate: 2020-06-29 24 | eol: false 25 | latest: "5.4.6" 26 | latestReleaseDate: 2023-05-14 27 | 28 | - releaseCycle: "5.3" 29 | releaseDate: 2015-01-12 30 | eol: 2020-09-25 31 | latest: "5.3.6" 32 | latestReleaseDate: 2020-09-25 33 | 34 | - releaseCycle: "5.2" 35 | releaseDate: 2011-12-16 36 | eol: 2015-03-07 37 | latest: "5.2.4" 38 | latestReleaseDate: 2015-03-07 39 | 40 | - releaseCycle: "5.1" 41 | releaseDate: 2006-02-21 42 | eol: 2012-02-17 43 | latest: "5.1.5" 44 | latestReleaseDate: 2012-02-17 45 | 46 | - releaseCycle: "5.0" 47 | releaseDate: 2003-04-11 48 | eol: 2006-06-26 49 | latest: "5.0.3" 50 | latestReleaseDate: 2006-06-26 51 | 52 | - releaseCycle: "4.0" 53 | releaseDate: 2000-11-06 54 | eol: 2002-07-04 55 | latest: "4.0.1" 56 | latestReleaseDate: 2002-07-04 57 | 58 | - releaseCycle: "3.2" 59 | releaseDate: 1999-07-08 60 | eol: 2000-02-22 61 | latest: "3.2.2" 62 | latestReleaseDate: 2000-02-22 63 | 64 | --- 65 | 66 | > [Lua](https://www.lua.org/) is a powerful, efficient, lightweight and embeddable scripting 67 | > language. 68 | 69 | Lua doesn't have a documented release and support policy, but End Of Life notices are announced on 70 | by a sentence similar to _There will be no further releases of 71 | Lua x.y_. 72 | 73 | The releases of Lua are numbered `x.y.z`, where `x.y` is the version and `z` is the release. 74 | 75 | - Releases of the same version correspond to bug fixes. They have the same reference manual, the same 76 | virtual machine, and are binary compatible (ABI compatible). 77 | - Versions are really different. The API is likely to change (with compatibility switches), and there 78 | is no ABI compatibility: applications that embed Lua and C libraries for Lua must be recompiled. 79 | The virtual machine is also likely to be different in a new version, so Lua programs that have been 80 | precompiled for one version will not load in a different version. 81 | -------------------------------------------------------------------------------- /products/postmarketos.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: postmarketOS 3 | category: os 4 | tags: linux-distribution 5 | permalink: /postmarketos 6 | versionCommand: cat /etc/os-release 7 | releasePolicyLink: https://wiki.postmarketos.org/wiki/Releases 8 | eolWarnThreshold: 60 9 | releaseColumn: false 10 | releaseDateColumn: true 11 | 12 | auto: 13 | methods: 14 | # Cross check with the channels.cfg 15 | # https://gitlab.com/postmarketOS/pmaports/-/blob/master/channels.cfg?ref_type=heads 16 | - distrowatch: postmarketos 17 | regex: 'Distribution Release: postmarketOS (?P\d{2}[.]\d{2})' 18 | template: '{{version}}' 19 | 20 | # eol(x) = releaseDate(x+1) + 1 month 21 | releases: 22 | - releaseCycle: "24.06" 23 | releaseDate: 2024-06-16 24 | eol: 2025-01-18 # estimated, based on expected release date for 24.12 25 | latest: "24.06" 26 | latestReleaseDate: 2024-06-16 27 | link: https://postmarketos.org/blog/2024/06/16/v24.06-release/ 28 | 29 | - releaseCycle: "23.12" 30 | releaseDate: 2023-12-18 31 | eol: 2024-07-16 32 | latest: "23.12" 33 | latestReleaseDate: 2023-12-19 34 | link: https://postmarketos.org/blog/2023/12/18/v23.12-release/ 35 | 36 | - releaseCycle: "23.06" 37 | releaseDate: 2023-06-07 38 | eol: 2024-01-18 39 | latest: "23.06" 40 | latestReleaseDate: 2023-06-07 41 | link: https://postmarketos.org/blog/2023/06/07/v23.06-release/ 42 | 43 | - releaseCycle: "22.12" 44 | releaseDate: 2022-12-18 45 | eol: 2023-07-07 46 | latest: "22.12" 47 | latestReleaseDate: 2022-12-18 48 | link: https://postmarketos.org/blog/2022/12/18/v22.12-release/ 49 | 50 | - releaseCycle: "22.06" 51 | releaseDate: 2022-06-12 52 | eol: 2023-01-18 53 | latest: "22.06" 54 | latestReleaseDate: 2022-06-12 55 | link: https://postmarketos.org/blog/2022/06/12/v22.06-release/ 56 | 57 | - releaseCycle: "21.12" 58 | releaseDate: 2021-12-29 59 | eol: 2022-07-12 60 | latest: "21.12" 61 | latestReleaseDate: 2021-12-29 62 | link: https://postmarketos.org/blog/2021/12/29/v21.12-release/ 63 | 64 | - releaseCycle: "21.06" 65 | releaseDate: 2021-07-04 66 | eol: 2022-01-29 67 | latest: "21.06" 68 | latestReleaseDate: 2021-07-04 69 | link: https://postmarketos.org/blog/2021/07/04/v21.06-release/ 70 | 71 | --- 72 | 73 | > [postmarketOS](https://postmarketos.org/) extends Alpine Linux 74 | > to run on smartphones and other mobile devices. 75 | 76 | Releases are created roughly every six months, following the release cycle of Alpine Linux. 77 | The release branches receive security updates as necessary (from both Alpine and postmarketOS). 78 | postmarketOS, also provides service packs for the latest release to ship fixes and feature updates. 79 | 80 | An old release becomes EOL one month after the next release. 81 | -------------------------------------------------------------------------------- /products/beats.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Elastic Beats 3 | category: server-app 4 | tags: elastic 5 | iconSlug: beats 6 | permalink: /beats 7 | alternate_urls: 8 | - /elastic-beats 9 | - /filebeat 10 | - /metricbeat 11 | - /packetbeat 12 | - /winlogbeat 13 | - /auditbeat 14 | - /heartbeat 15 | - /functionbeat 16 | releasePolicyLink: https://www.elastic.co/support_policy 17 | changelogTemplate: "https://www.elastic.co/guide/en/beats/libbeat/{{'__LATEST__'|split:'.'|pop|join:'.'}}/release-notes-__LATEST__.html" 18 | releaseDateColumn: true 19 | eolColumn: Support 20 | 21 | identifiers: 22 | - repology: filebeat 23 | - cpe: cpe:/a:elastic:filebeat 24 | - cpe: cpe:2.3:a:elastic:filebeat 25 | 26 | auto: 27 | methods: 28 | - git: https://github.com/elastic/beats.git 29 | 30 | releases: 31 | - releaseCycle: "8" 32 | releaseDate: 2022-02-10 33 | eol: 2024-08-10 # later of 2024-08-10 or 6 months after the release date of 9.0 34 | latest: "8.14.3" 35 | latestReleaseDate: 2024-07-08 36 | 37 | - releaseCycle: "7" 38 | releaseDate: 2019-04-05 39 | eol: false # later of 2023-08-01 or the release date of 9.0 40 | latest: "7.17.23" 41 | latestReleaseDate: 2024-07-25 42 | 43 | - releaseCycle: "6" 44 | releaseDate: 2017-11-08 45 | eol: 2022-02-10 46 | latest: "6.8.23" 47 | latestReleaseDate: 2022-01-13 48 | 49 | --- 50 | 51 | > [Beats](https://www.elastic.co/beats/) are a suite of lightweight shippers for Elasticsearch and 52 | > Logstash. As of 2022, the beats family is composed of 53 | > [Filebeat](https://www.elastic.co/beats/filebeat), 54 | > [Metricbeat](https://www.elastic.co/beats/metricbeat), 55 | > [Packetbeat](https://www.elastic.co/beats/packetbeat), 56 | > [Winlogbeat](https://www.elastic.co/beats/winlogbeat), 57 | > [Auditbeat](https://www.elastic.co/beats/auditbeat), 58 | > [Heartbeat](https://www.elastic.co/beats/heartbeat) and 59 | > [Functionbeat](https://www.elastic.co/beats/functionbeat). 60 | 61 | Beats are part of the [Elastic Stack](https://www.elastic.co/elastic-stack/), also known as the 62 | [ELK Stack](https://www.elastic.co/what-is/elk-stack). It shares the same support policy as the 63 | other products in the Elastic Stack (Elasticsearch, Logstash, Kibana...). 64 | 65 | Elastic Stack product releases follow [Semantic Versioning](https://semver.org/). Elastic provides 66 | maintenance for each major release series for the longest of 30 months after the GA date of the 67 | major release or 6 months after the GA date of the subsequent major release. 68 | 69 | End of life dates for Beats can be found on the [Elastic product EOL dates page](https://www.elastic.co/support/eol). 70 | Support for various operating systems can also be found on the [Elastic support matrix page](https://www.elastic.co/support/matrix). 71 | 72 | *[GA]: General Availability 73 | *[EOL]: End Of Life 74 | -------------------------------------------------------------------------------- /products/jekyll.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Jekyll 3 | category: app 4 | tags: ruby-runtime 5 | iconSlug: jekyll 6 | permalink: /jekyll 7 | releasePolicyLink: https://jekyllrb.com/docs/security/ 8 | changelogTemplate: https://github.com/jekyll/jekyll/releases/tag/v__LATEST__ 9 | releaseDateColumn: true 10 | eoasColumn: Active Development 11 | eolColumn: Active Maintenance 12 | 13 | auto: 14 | methods: 15 | - git: https://github.com/jekyll/jekyll.git 16 | 17 | releases: 18 | - releaseCycle: "4" 19 | minRubyVersion: "2.5+" # https://jekyllrb.com/docs/ 20 | releaseDate: 2019-08-20 21 | eoas: false 22 | eol: false 23 | latest: "4.3.3" 24 | latestReleaseDate: 2023-12-27 25 | 26 | - releaseCycle: "3" 27 | minRubyVersion: "2.0+" # https://web.archive.org/web/20160103225823/https://jekyllrb.com/docs/installation/ 28 | releaseDate: 2015-10-26 29 | eoas: true 30 | eol: false 31 | latest: "3.10.0" 32 | latestReleaseDate: 2024-06-24 33 | 34 | - releaseCycle: "2" 35 | minRubyVersion: "1.9.3+" # https://web.archive.org/web/20160103225823/https://jekyllrb.com/docs/installation/ 36 | releaseDate: 2014-05-06 37 | eoas: true 38 | eol: 2015-10-27 39 | latest: "2.5.3" 40 | latestReleaseDate: 2014-12-22 41 | 42 | - releaseCycle: "1" 43 | minRubyVersion: "1.8+" # not sure, should be 1.8 according to https://github.com/jekyll/jekyll/releases/tag/v1.2.0 44 | releaseDate: 2013-05-06 45 | eoas: true 46 | eol: 2014-05-07 47 | latest: "1.5.1" 48 | latestReleaseDate: 2014-03-28 49 | 50 | - releaseCycle: "0" 51 | minRubyVersion: "1.8+" # not sure, should be 1.8 according to https://web.archive.org/web/20091202224411/http://wiki.github.com/mojombo/jekyll/install 52 | releaseDate: 2008-10-19 # See https://jekyllrb.com/docs/history/#v0-0-0 53 | eol: 2014-05-07 54 | eoas: true 55 | latest: "0.9.0" 56 | latestReleaseDate: 2010-12-15 57 | 58 | --- 59 | 60 | > [Jekyll](https://jekyllrb.com/) is a simple, blog-aware, static site generator. It takes text 61 | > written in your favorite markup language and uses layouts to create a static website. You can 62 | > tweak the site’s look and feel, URLs, the data displayed on the page, and more. 63 | 64 | Jekyll follows [Semantic Versioning](https://semver.org/). It does not have a fixed release policy, 65 | nor a clearly defined support policy. Nevertheless, limited bug fixes and security updates are 66 | always applied to [the version used by GitHub Pages](https://pages.github.com/versions/) (Currently 67 | `3.9.x`). 68 | 69 | ## [Ruby Compatibility](https://jekyllrb.com/docs/installation/) 70 | 71 | {%- assign collapsedCycles = page.releases | collapse_cycles:"minRubyVersion"," - " %} 72 | {% include table.html 73 | labels="Release,Ruby" 74 | fields="releaseCycle,minRubyVersion" 75 | types="string,string" 76 | rows=collapsedCycles %} 77 | -------------------------------------------------------------------------------- /products/hashicorp-vault.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Hashicorp Vault 3 | category: server-app 4 | tags: hashicorp 5 | iconSlug: vault 6 | permalink: /hashicorp-vault 7 | alternate_urls: 8 | - /vault 9 | releasePolicyLink: https://support.hashicorp.com/hc/en-us/articles/360021185113-Support-Period-and-End-of-Life-EOL-Policy 10 | changelogTemplate: https://github.com/hashicorp/vault/releases/tag/v__LATEST__ 11 | releaseDateColumn: true 12 | versionCommand: vault --version 13 | 14 | identifiers: 15 | - repology: vault 16 | - cpe: cpe:/a:hashicorp:vault 17 | - cpe: cpe:2.3:a:hashicorp:vault 18 | 19 | auto: 20 | methods: 21 | - git: https://github.com/hashicorp/vault.git 22 | 23 | # eol(x) = release(x+3) 24 | releases: 25 | - releaseCycle: "1.17" 26 | releaseDate: 2024-06-10 27 | eol: false 28 | latest: "1.17.3" 29 | latestReleaseDate: 2024-08-06 30 | 31 | - releaseCycle: "1.16" 32 | releaseDate: 2024-03-25 33 | eol: false 34 | latest: "1.16.3" 35 | latestReleaseDate: 2024-05-29 36 | 37 | - releaseCycle: "1.15" 38 | releaseDate: 2023-09-22 39 | eol: false 40 | latest: "1.15.6" 41 | latestReleaseDate: 2024-02-28 42 | 43 | - releaseCycle: "1.14" 44 | releaseDate: 2023-06-19 45 | eol: 2024-06-10 46 | latest: "1.14.10" 47 | latestReleaseDate: 2024-02-28 48 | 49 | - releaseCycle: "1.13" 50 | releaseDate: 2023-03-01 51 | eol: 2024-03-25 52 | latest: "1.13.13" 53 | latestReleaseDate: 2024-01-29 54 | 55 | - releaseCycle: "1.12" 56 | releaseDate: 2022-10-10 57 | eol: 2023-09-27 58 | latest: "1.12.11" 59 | latestReleaseDate: 2023-09-11 60 | 61 | - releaseCycle: "1.11" 62 | releaseDate: 2022-06-17 63 | eol: 2023-06-21 64 | latest: "1.11.12" 65 | latestReleaseDate: 2023-06-19 66 | 67 | - releaseCycle: "1.10" 68 | releaseDate: 2022-03-21 69 | eol: 2023-03-01 70 | latest: "1.10.11" 71 | latestReleaseDate: 2023-02-24 72 | 73 | - releaseCycle: "1.9" 74 | releaseDate: 2021-11-16 75 | eol: 2022-10-10 76 | latest: "1.9.10" 77 | latestReleaseDate: 2022-09-15 78 | 79 | --- 80 | 81 | > [Hashicorp Vault](https://www.vaultproject.io/) is a tool for securely accessing secrets. It 82 | > provides a unified interface to any secret, while providing tight access control and recording a 83 | > detailed audit log. 84 | 85 | Generally Available (GA) releases of active products are supported for up to two (2) years. Eligible 86 | code-fixes and hot-fixes are provided via a new minor release (Z) on top of the latest "major 87 | release" branch, for up to two (2) releases from the most current major release. 88 | 89 | A major release is identified by a change in the first (X) or second (Y) digit in the following 90 | versioning nomenclature: `Version X.Y.Z.` 91 | 92 | Hashicorp uses the same support period and EoL Policy for all its products. 93 | -------------------------------------------------------------------------------- /pages/help/identifiers-needed.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | nav_exclude: true 4 | title: "Help: Identifiers Needed" 5 | description: Help add more identifiers to the site 6 | permalink: /help/identifiers-needed/ 7 | --- 8 | 9 | endoflife.date maintains machine-readable identififers for various products to help the SBOM 10 | ecosystem and other projects. We need your help to add more identifiers to the site. 11 | 12 | ## What are Identifiers? 13 | 14 | We currently use the following identififers: 15 | 16 | 1. [Repology](https://repology.org) Project Identififers. We use these to link to various package repositories and distributions. 17 | 2. [PURL](https://purl.org) Identififers. We use these to link to packages that are not present in Repology, such as Docker Images, Third-party linux repos, and more. 18 | 3. [NVD CPE](https://nvd.nist.gov/products/cpe) Identififers. Primarily used where repology/purl does not work, such as on devices and operating-systems. 19 | 20 | ## How can you help 21 | 22 | For any of the pages below, click the edit link, and add a new field in the YAML called `identifiers`. Here's some sample identifiers that 23 | we use across our various pages: 24 | 25 | 26 | ```yaml 27 | identifiers: 28 | # links the product to the https://repology.org/project/package-name/information 29 | - repology: package-name 30 | # See the PURL spec https://github.com/package-url/purl-spec 31 | # for details, and avoid packages that are already mentioned on 32 | # the repology page 33 | # Common examples would be to use 34 | # - pkg:os to document operating systems (https://github.com/package-url/purl-spec/pull/161) 35 | # - pkg:github to link to GitHub pages 36 | # - pkg:golang/pypi/gem/maven/npm etc for common package managers 37 | # - pkg:docker for linking to docker images on Docker Hub 38 | - purl: pkg:package-manager/package-name 39 | 40 | # A few sample PURLS from our various products 41 | 42 | - purl: pkg:docker/library/amazonlinux 43 | - purl: pkg:apk/alpine/sqlite 44 | - purl: pkg:oci/csi-node-driver-registrar?repository_url=k8s.gcr.io/sig-storage 45 | - purl: pkg:github/kubernetes-csi/node-driver-registrar 46 | - purl: pkg:golang/github.com/kubernetes-csi/node-driver-registrar 47 | - purl: pkg:generic/firefox 48 | - purl: pkg:maven/org.apache.zookeeper/zookeeper 49 | - purl: pkg:oci/etcd?repository_url=quay.io/repository/coreos 50 | - purl: pkg:brew/liberica-jdk17 51 | - purl: pkg:scoop/liberica17 52 | - purl: pkg:chocolatey/libericajdk 53 | - purl: pkg:winget/BellSoft.LibericaJDK.8 54 | ``` 55 | ## Pages without Identififers 56 | 57 |
    58 | {% for page in site.html_pages %} 59 | 60 | {% if page.layout == 'product' %} 61 | {% if page.identifiers.size == 0 %} 62 |
  • 63 | {{ page.title }} - Edit 64 |
  • 65 | {% endif %} 66 | {% endif %} 67 | {% endfor %} 68 | 69 |
70 | --------------------------------------------------------------------------------