Skip to content

Commit

Permalink
Drop support for end-of-life versions of Node.js
Browse files Browse the repository at this point in the history
Closes #525

Signed-off-by: Jon Koops <[email protected]>
  • Loading branch information
jonkoops committed Dec 13, 2024
1 parent 63dc614 commit e11a612
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ on:
pull_request:
branches: [main]
env:
DEFAULT_NODE_VERSION: "18"
DEFAULT_NODE_VERSION: "23"
jobs:
setup:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["14", "18"]
node-version: ["18", "20", "22", "23"]
steps:
- name: Check out repository
uses: actions/checkout@v4
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ Keycloak is an Open Source Identity and Access Management solution for modern Ap
This repository contains the source code for the Keycloak Node.js adapter. This module makes it simple to implement a Node.js Connect-friendly
application that uses Keycloak for its authentication and authorization needs.

## Supported Node.js versions

The Keycloak Node.js adapter strives to be compatible with the versions that are [actively supported](https://github.com/nodejs/release#release-schedule) by the Node.js project. Support for versions of Node.js that are [considered end-of-life](https://github.com/nodejs/release?tab=readme-ov-file#end-of-life-releases) can be dropped in future releases, and will not be considered a breaking change that requires a major version bump.

## Help and Documentation

* [Documentation](https://www.keycloak.org/documentation.html)
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
]
},
"engines": {
"node": ">=14"
"node": "^18 || ^20 || ^22 || >=23"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit e11a612

Please sign in to comment.