Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for end-of-life versions of Node.js #526

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading