@intellectif/lk-react 10.0.0 → 11.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.
- package/CHANGELOG.md +15 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @intellectif/lk-react
|
|
2
2
|
|
|
3
|
+
## 11.0.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 722de91: Node 22 is the floor, and the published `engines` says so.
|
|
8
|
+
|
|
9
|
+
Both packages declared `engines: { node: '>=20' }` while CI stopped testing Node 20 in `e17f5fa` (pnpm 11 compatibility) and Node 20 itself reached end of life in April 2026. A support claim nothing verifies is worse than a narrow one: it invites an install onto a runtime no test has touched for months. The floor is now `>=22`, which is what CI has actually been proving all along — Node 22 (the LTS most consumers run) and Node 24 (the Node the Release job builds the published tarball on).
|
|
10
|
+
|
|
11
|
+
If you are still on Node 20, this is the release to stop at; nothing here changes behaviour on a supported runtime.
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [722de91]
|
|
16
|
+
- @intellectif/lk-core@0.11.0
|
|
17
|
+
|
|
3
18
|
## 10.0.0
|
|
4
19
|
|
|
5
20
|
### Major Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intellectif/lk-react",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "11.0.0",
|
|
4
4
|
"description": "Accessible React 19 assessment components — multiple choice, fill-in-the-blanks, written response — with a resumable exam/review pager, theming, and xAPI delivery.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -167,7 +167,7 @@
|
|
|
167
167
|
"peerDependencies": {
|
|
168
168
|
"react": "^19",
|
|
169
169
|
"react-dom": "^19",
|
|
170
|
-
"@intellectif/lk-core": "^0.
|
|
170
|
+
"@intellectif/lk-core": "^0.11.0"
|
|
171
171
|
},
|
|
172
172
|
"devDependencies": {
|
|
173
173
|
"@axe-core/react": "^4.10.0",
|
|
@@ -186,11 +186,11 @@
|
|
|
186
186
|
"tsup": "^8.3.0",
|
|
187
187
|
"vitest": "^4.1.6",
|
|
188
188
|
"vitest-axe": "^0.1.0",
|
|
189
|
-
"@intellectif/lk-core": "0.
|
|
189
|
+
"@intellectif/lk-core": "0.11.0"
|
|
190
190
|
},
|
|
191
191
|
"license": "MIT",
|
|
192
192
|
"engines": {
|
|
193
|
-
"node": ">=
|
|
193
|
+
"node": ">=22"
|
|
194
194
|
},
|
|
195
195
|
"scripts": {
|
|
196
196
|
"build": "tsup",
|