@gotgenes/pi-permission-system 4.4.0 → 4.4.1
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 +13 -0
- package/package.json +1 -1
- package/src/defaults.ts +0 -10
- package/tests/defaults.test.ts +0 -12
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [4.4.1](https://github.com/gotgenes/pi-permission-system/compare/v4.4.0...v4.4.1) (2026-05-05)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Documentation
|
|
12
|
+
|
|
13
|
+
* plan delete deprecated defaults.ts stub ([#82](https://github.com/gotgenes/pi-permission-system/issues/82)) ([36fcace](https://github.com/gotgenes/pi-permission-system/commit/36fcaceab824b4334315767ba1cfd3fe24cff1b7))
|
|
14
|
+
* **retro:** add retro notes for issue [#80](https://github.com/gotgenes/pi-permission-system/issues/80) ([bfa11d5](https://github.com/gotgenes/pi-permission-system/commit/bfa11d539920dc24efbcab33329595da4e93e152))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Miscellaneous Chores
|
|
18
|
+
|
|
19
|
+
* delete deprecated defaults.ts stub ([#82](https://github.com/gotgenes/pi-permission-system/issues/82)) ([40ae42a](https://github.com/gotgenes/pi-permission-system/commit/40ae42ad710bc502f19d8a27e409cc22a6bca4f8))
|
|
20
|
+
|
|
8
21
|
## [4.4.0](https://github.com/gotgenes/pi-permission-system/compare/v4.3.0...v4.4.0) (2026-05-05)
|
|
9
22
|
|
|
10
23
|
|
package/package.json
CHANGED
package/src/defaults.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @deprecated This module has been removed as part of #66 (flat permission
|
|
3
|
-
* config format). It is kept as an empty stub to avoid breaking any lingering
|
|
4
|
-
* references during the migration; delete it in a follow-up cleanup.
|
|
5
|
-
*
|
|
6
|
-
* The universal default is now expressed as permission["*"] in the flat config.
|
|
7
|
-
* mergeDefaults() and getSurfaceDefault() have no replacement.
|
|
8
|
-
*/
|
|
9
|
-
|
|
10
|
-
export {};
|
package/tests/defaults.test.ts
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
// defaults.ts has been removed as part of #66 (flat permission config format).
|
|
2
|
-
// The PermissionDefaultPolicy type and mergeDefaults() / getSurfaceDefault()
|
|
3
|
-
// helpers are no longer needed — the universal default is expressed as
|
|
4
|
-
// permission["*"] in the flat config, and per-surface catch-alls are regular
|
|
5
|
-
// config rules produced by normalizeFlatConfig().
|
|
6
|
-
import { describe, expect, test } from "vitest";
|
|
7
|
-
|
|
8
|
-
describe("defaults (removed)", () => {
|
|
9
|
-
test("placeholder — defaults.ts was removed in #66", () => {
|
|
10
|
-
expect(true).toBe(true);
|
|
11
|
-
});
|
|
12
|
-
});
|