@react-keycloak-refork/core 5.0.0 → 6.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +8 -8
  2. package/package.json +55 -55
package/README.md CHANGED
@@ -6,10 +6,10 @@
6
6
 
7
7
  ⚠️ **IMPORTANT NOTICE**: This fork has been updated to support Keycloak 26, but it is **NOT MAINTAINED**. We strongly recommend migrating to [NextAuth.js](https://next-auth.js.org/) for new projects, as it provides better maintenance, security updates, and broader OAuth provider support.
8
8
 
9
- [![NPM (scoped)](https://img.shields.io/npm/v/@react-keycloak-fork/core?label=npm%20%7C%20core)](https://www.npmjs.com/package/@react-keycloak-refork/core)
10
- [![NPM (scoped)](https://img.shields.io/npm/v/@react-keycloak-fork/web?label=npm%20%7C%20web)](https://www.npmjs.com/package/@react-keycloak-refork/web)
11
- [![NPM (scoped)](https://img.shields.io/npm/v/@react-keycloak-fork/ssr?label=npm%20%7C%20ssr)](https://www.npmjs.com/package/@react-keycloak-refork/ssr)
12
- [![NPM (scoped)](https://img.shields.io/npm/v/@react-keycloak-fork/native?label=npm%20%7C%20native)](https://www.npmjs.com/package/@react-keycloak-refork/native)
9
+ [![NPM (scoped)](https://img.shields.io/npm/v/@react-keycloak-refork/core?label=npm%20%7C%20core)](https://www.npmjs.com/package/@react-keycloak-refork/core)
10
+ [![NPM (scoped)](https://img.shields.io/npm/v/@react-keycloak-refork/web?label=npm%20%7C%20web)](https://www.npmjs.com/package/@react-keycloak-refork/web)
11
+ [![NPM (scoped)](https://img.shields.io/npm/v/@react-keycloak-refork/ssr?label=npm%20%7C%20ssr)](https://www.npmjs.com/package/@react-keycloak-refork/ssr)
12
+ [![NPM (scoped)](https://img.shields.io/npm/v/@react-keycloak-refork/native?label=npm%20%7C%20native)](https://www.npmjs.com/package/@react-keycloak-refork/native)
13
13
 
14
14
  [![License](https://img.shields.io/github/license/react-keycloak/react-keycloak.svg)](https://github.com/react-keycloak/react-keycloak-fork/blob/master/LICENSE.md)
15
15
  [![lerna](https://img.shields.io/badge/maintained%20with-lerna-cc00ff.svg)](https://lerna.js.org/)
@@ -40,7 +40,7 @@
40
40
 
41
41
  React Keycloak for Web requires:
42
42
 
43
- - React **18.0** or later
43
+ - React **16.0** or later
44
44
  - `keycloak-js` **26.0.0** or later
45
45
 
46
46
  ```shell
@@ -61,7 +61,7 @@ See `@react-keycloak-refork/web` package [README](https://github.com/react-keycl
61
61
 
62
62
  React Keycloak for SSR frameworks requires:
63
63
 
64
- - React **18.0** or later
64
+ - React **16.0** or later
65
65
  - SSR Framework:
66
66
  - NextJS **9** or later
67
67
  - Razzle **3** or later
@@ -101,7 +101,7 @@ See `@react-keycloak-refork/native` package [README](https://github.com/react-ke
101
101
 
102
102
  | version | keycloak-js version | notes |
103
103
  | ------- | ------------------- | ------ |
104
- | v5.0.0+ | 26.0.0+ | (fork) |
104
+ | v6.0.0+ | 26.0.0+ | (fork) |
105
105
  | v4.0.3+ | 26.0.0+ | (fork) |
106
106
  | v4.0.1+ | 17.0.0+ | (fork) |
107
107
  | v2.0.0+ | 9.0.2+ |
@@ -109,7 +109,7 @@ See `@react-keycloak-refork/native` package [README](https://github.com/react-ke
109
109
 
110
110
  ## Examples
111
111
 
112
- See [`@react-keycloak-fork/react-keycloak-examples`](https://github.com/react-keycloak/react-keycloak-examples) repository for various demo implementing this library main features.
112
+ See [`@react-keycloak-refork/react-keycloak-examples`](https://github.com/react-keycloak/react-keycloak-examples) repository for various demo implementing this library main features.
113
113
 
114
114
  ## Alternatives
115
115
 
package/package.json CHANGED
@@ -1,55 +1,55 @@
1
- {
2
- "name": "@react-keycloak-refork/core",
3
- "version": "5.0.0",
4
- "license": "MIT",
5
- "description": "Fork of https://github.com/react-keycloak/react-keycloak.git with updated packages for Keycloak >=26. React bindings for Keycloak javascript adapter (core)",
6
- "repository": {
7
- "type": "git",
8
- "url": "git+https://github.com/leoluzh/react-keycloak-fork.git"
9
- },
10
- "author": "leoluzh",
11
- "bugs": {
12
- "url": "https://github.com/leoluzh/react-keycloak-fork/issues"
13
- },
14
- "homepage": "https://github.com/leoluzh/react-keycloak-fork#readme",
15
- "keywords": [
16
- "react",
17
- "keycloak",
18
- "fork"
19
- ],
20
- "main": "lib-commonjs/index.js",
21
- "jsnext:main": "lib/index.js",
22
- "module": "lib/index.js",
23
- "typings": "lib/index.d.ts",
24
- "files": [
25
- "lib",
26
- "lib-commonjs"
27
- ],
28
- "publishConfig": {
29
- "access": "public"
30
- },
31
- "scripts": {
32
- "clean": "rimraf lib lib-commonjs",
33
- "prebuild": "npm run clean",
34
- "compile:commonjs": "tsc --module commonjs --outDir lib-commonjs",
35
- "compile:esnext": "tsc --module esnext --outDir lib",
36
- "compile": "run-p compile:*",
37
- "fixmaps:lib": "tweak_sourcemap_paths -a --include 'lib/**/*.js.map' 'lib-commonjs/**/*.js.map'",
38
- "fixmaps": "run-p fixmaps:*",
39
- "build": "run-s compile fixmaps",
40
- "test": "jest",
41
- "test:coverage": "jest --coverage",
42
- "prepublishOnly": "npm run build && cp ../../README.md . && cp ../../LICENSE.md ."
43
- },
44
- "peerDependencies": {
45
- "react": ">=18"
46
- },
47
- "dependencies": {
48
- "react-fast-compare": "^3.2.0"
49
- },
50
- "jest": {
51
- "preset": "ts-jest",
52
- "testEnvironment": "jsdom"
53
- },
54
- "gitHead": "0cd23235e898e822306c4f868c3e8dd10b45e41b"
55
- }
1
+ {
2
+ "name": "@react-keycloak-refork/core",
3
+ "version": "6.0.0",
4
+ "license": "MIT",
5
+ "description": "Fork of https://github.com/react-keycloak/react-keycloak.git with updated packages for Keycloak >=17. React bindings for Keycloak javascript adapter (core)",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/leoluzh/react-keycloak-fork.git"
9
+ },
10
+ "author": "leoluzh",
11
+ "bugs": {
12
+ "url": "https://github.com/leoluzh/react-keycloak-fork/issues"
13
+ },
14
+ "homepage": "https://github.com/leoluzh/react-keycloak-fork#readme",
15
+ "keywords": [
16
+ "react",
17
+ "keycloak",
18
+ "fork"
19
+ ],
20
+ "main": "lib-commonjs/index.js",
21
+ "jsnext:main": "lib/index.js",
22
+ "module": "lib/index.js",
23
+ "typings": "lib/index.d.ts",
24
+ "files": [
25
+ "lib",
26
+ "lib-commonjs"
27
+ ],
28
+ "publishConfig": {
29
+ "access": "public"
30
+ },
31
+ "scripts": {
32
+ "clean": "rimraf lib lib-commonjs",
33
+ "prebuild": "npm run clean",
34
+ "compile:commonjs": "tsc --module commonjs --outDir lib-commonjs",
35
+ "compile:esnext": "tsc --module esnext --outDir lib",
36
+ "compile": "run-p compile:*",
37
+ "fixmaps:lib": "tweak_sourcemap_paths -a --include 'lib/**/*.js.map' 'lib-commonjs/**/*.js.map'",
38
+ "fixmaps": "run-p fixmaps:*",
39
+ "build": "run-s compile fixmaps",
40
+ "test": "jest",
41
+ "test:coverage": "jest --coverage",
42
+ "prepublishOnly": "npm run build && cp ../../README.md . && cp ../../LICENSE.md ."
43
+ },
44
+ "peerDependencies": {
45
+ "react": ">=16"
46
+ },
47
+ "dependencies": {
48
+ "react-fast-compare": "^3.2.0"
49
+ },
50
+ "jest": {
51
+ "preset": "ts-jest",
52
+ "testEnvironment": "jsdom"
53
+ },
54
+ "gitHead": "7ae156f5285095da22ab864cd8ab78f39ad80624"
55
+ }