@warlock.js/auth 4.2.9 → 4.2.10

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/CHANGELOG.md +6 -0
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## 4.2.10
10
+
11
+ ### Fixed
12
+
13
+ - `@mongez/copper`, `@mongez/events`, and `@mongez/reinforcements` are now regular `dependencies` instead of `peerDependencies` — matching every other framework package. They're framework-internal utilities your app never imports directly, so declaring them as peers forced consumers to install them and produced `unmet peer dependency` warnings on install. They now resolve transitively and silently.
14
+
9
15
  ## 4.2.0
10
16
 
11
17
  ### Added
package/package.json CHANGED
@@ -16,21 +16,21 @@
16
16
  "url": "https://github.com/warlockjs/auth"
17
17
  },
18
18
  "dependencies": {
19
+ "@mongez/copper": "^2.1.2",
20
+ "@mongez/events": "^2.2.6",
21
+ "@mongez/reinforcements": "^3.2.0",
19
22
  "fast-jwt": "^6.1.0",
20
23
  "ms": "^2.1.3"
21
24
  },
22
25
  "peerDependencies": {
23
- "@mongez/copper": "^2.1.2",
24
- "@mongez/events": "^2.2.6",
25
- "@warlock.js/fs": "4.2.9",
26
- "@mongez/reinforcements": "^3.2.0",
27
- "@warlock.js/cache": "4.2.9",
28
- "@warlock.js/cascade": "4.2.9",
29
- "@warlock.js/core": "4.2.9",
30
- "@warlock.js/logger": "4.2.9",
31
- "@warlock.js/seal": "4.2.9"
26
+ "@warlock.js/fs": "4.2.10",
27
+ "@warlock.js/cache": "4.2.10",
28
+ "@warlock.js/cascade": "4.2.10",
29
+ "@warlock.js/core": "4.2.10",
30
+ "@warlock.js/logger": "4.2.10",
31
+ "@warlock.js/seal": "4.2.10"
32
32
  },
33
- "version": "4.2.9",
33
+ "version": "4.2.10",
34
34
  "type": "module",
35
35
  "main": "./esm/index.mjs",
36
36
  "module": "./esm/index.mjs",