@antelopejs/dms 0.2.2 → 0.3.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/package.json +10 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.3.1
4
+
5
+ [compare changes](https://github.com/AntelopeJS/dms/compare/v0.3.0...v0.3.1)
6
+
7
+ ### 🏡 Chore
8
+
9
+ - Require @antelopejs/core 1.7 ([#14](https://github.com/AntelopeJS/dms/pull/14))
10
+
11
+ ### ❤️ Contributors
12
+
13
+ - Antony Rizzitelli <rizzitelli.antony@pm.me>
14
+
15
+ ## v0.3.0
16
+
17
+ [compare changes](https://github.com/AntelopeJS/dms/compare/v0.2.2...v0.3.0)
18
+
19
+ ### 🩹 Fixes
20
+
21
+ - **deps:** ⚠️ Stop shipping AntelopeJS core as a runtime dependency ([#13](https://github.com/AntelopeJS/dms/pull/13))
22
+
23
+ #### ⚠️ Breaking Changes
24
+
25
+ - **deps:** ⚠️ Stop shipping AntelopeJS core as a runtime dependency ([#13](https://github.com/AntelopeJS/dms/pull/13))
26
+
27
+ ### ❤️ Contributors
28
+
29
+ - Antony Rizzitelli <rizzitelli.antony@pm.me>
30
+
3
31
  ## v0.2.2
4
32
 
5
33
  [compare changes](https://github.com/AntelopeJS/dms/compare/interface-v0.0.3...v0.2.2)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antelopejs/dms",
3
- "version": "0.2.2",
3
+ "version": "0.3.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/AntelopeJS/dms.git"
@@ -30,7 +30,6 @@
30
30
  },
31
31
  "dependencies": {
32
32
  "2fa": "^0.1.2",
33
- "@antelopejs/core": "^1.4.11",
34
33
  "@antelopejs/interface-api": ">=0.0.13 <1.0.0",
35
34
  "@antelopejs/interface-api-util": ">=0.1.2 <1.0.0",
36
35
  "@antelopejs/interface-core": ">=0.0.13 <1.0.0",
@@ -53,6 +52,7 @@
53
52
  "zod": "~3.24.2"
54
53
  },
55
54
  "devDependencies": {
55
+ "@antelopejs/core": ">=1.7.0 <2",
56
56
  "@antelopejs/tooling-configs": ">=0.0.6 <1.0.0",
57
57
  "@types/archiver": "^6.0.4",
58
58
  "@types/chai": "^4.3.20",
@@ -104,6 +104,14 @@
104
104
  "@antelopejs/interface-dms-automation": ">=0.0.1 <1.0.0",
105
105
  "@antelopejs/interface-redis": ">=0.0.8 <1.0.0"
106
106
  },
107
+ "peerDependencies": {
108
+ "@antelopejs/core": ">=1.7.0 <2"
109
+ },
110
+ "peerDependenciesMeta": {
111
+ "@antelopejs/core": {
112
+ "optional": true
113
+ }
114
+ },
107
115
  "scripts": {
108
116
  "build": "pnpm --filter @antelopejs/interface-dms build && rimraf dist && tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
109
117
  "format": "oxfmt . && pnpm --dir frontend-vue format",