@warlock.js/access 5.0.2 → 5.1.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 +17 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,23 @@ All notable changes to `@warlock.js/access` are documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). `@warlock.js/*` packages are released in lockstep — every package shares the same version number, so a version below may list only the changes that affected this package.
|
|
6
6
|
|
|
7
|
+
## 5.1.0
|
|
8
|
+
|
|
9
|
+
No changes to `@warlock.js/access`. Released in lockstep with the `@warlock.js/web`
|
|
10
|
+
React-execution fix and the `@warlock.js/core` CLI additions — see those packages'
|
|
11
|
+
changelogs.
|
|
12
|
+
|
|
13
|
+
## 5.0.2 - 2026-08-25
|
|
14
|
+
|
|
15
|
+
No changes to `@warlock.js/access`. Released in lockstep with the `@warlock.js/web` SSR
|
|
16
|
+
fix (`ssr.noExternal`) — see that package's changelog.
|
|
17
|
+
|
|
18
|
+
## 5.0.1 - 2026-08-25
|
|
19
|
+
|
|
20
|
+
No changes to `@warlock.js/access`. Released in lockstep with the `create-warlock` vite
|
|
21
|
+
resolution pin and the `@warlock.js/web` peer narrowing — see those packages'
|
|
22
|
+
changelogs.
|
|
23
|
+
|
|
7
24
|
## 5.0.0 - 2026-08-25
|
|
8
25
|
|
|
9
26
|
### Upgrading
|
package/package.json
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
"name": "@warlock.js/access",
|
|
3
3
|
"description": "Authorization (RBAC + ABAC) for Warlock.js applications",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@warlock.js/auth": "5.0
|
|
6
|
-
"@warlock.js/cache": "5.0
|
|
7
|
-
"@warlock.js/cascade": "5.0
|
|
8
|
-
"@warlock.js/core": "5.0
|
|
9
|
-
"@warlock.js/logger": "5.0
|
|
10
|
-
"@warlock.js/seal": "5.0
|
|
5
|
+
"@warlock.js/auth": "5.1.0",
|
|
6
|
+
"@warlock.js/cache": "5.1.0",
|
|
7
|
+
"@warlock.js/cascade": "5.1.0",
|
|
8
|
+
"@warlock.js/core": "5.1.0",
|
|
9
|
+
"@warlock.js/logger": "5.1.0",
|
|
10
|
+
"@warlock.js/seal": "5.1.0"
|
|
11
11
|
},
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
],
|
|
25
25
|
"author": "hassanzohdy",
|
|
26
26
|
"license": "MIT",
|
|
27
|
-
"version": "5.0
|
|
27
|
+
"version": "5.1.0",
|
|
28
28
|
"main": "./cjs/index.cjs",
|
|
29
29
|
"module": "./esm/index.mjs",
|
|
30
30
|
"types": "./esm/index.d.mts",
|