@antelopejs/dms 0.2.1 → 0.3.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/package.json +11 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.3.0
4
+
5
+ [compare changes](https://github.com/AntelopeJS/dms/compare/v0.2.2...v0.3.0)
6
+
7
+ ### 🩹 Fixes
8
+
9
+ - **deps:** ⚠️ Stop shipping AntelopeJS core as a runtime dependency ([#13](https://github.com/AntelopeJS/dms/pull/13))
10
+
11
+ #### ⚠️ Breaking Changes
12
+
13
+ - **deps:** ⚠️ Stop shipping AntelopeJS core as a runtime dependency ([#13](https://github.com/AntelopeJS/dms/pull/13))
14
+
15
+ ### ❤️ Contributors
16
+
17
+ - Antony Rizzitelli <rizzitelli.antony@pm.me>
18
+
19
+ ## v0.2.2
20
+
21
+ [compare changes](https://github.com/AntelopeJS/dms/compare/interface-v0.0.3...v0.2.2)
22
+
3
23
  ## v0.2.1
4
24
 
5
25
  [compare changes](https://github.com/AntelopeJS/dms/compare/v0.2.0...v0.2.1)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antelopejs/dms",
3
- "version": "0.2.1",
3
+ "version": "0.3.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/AntelopeJS/dms.git"
@@ -30,14 +30,13 @@
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",
37
36
  "@antelopejs/interface-data-api": ">=0.1.9 <1.0.0",
38
37
  "@antelopejs/interface-database": ">=0.1.7 <1.0.0",
39
38
  "@antelopejs/interface-database-decorators": ">=0.1.6 <1.0.0",
40
- "@antelopejs/interface-dms": ">=0.0.2 <1.0.0",
39
+ "@antelopejs/interface-dms": ">=0.0.3 <1.0.0",
41
40
  "@antelopejs/interface-email": ">=0.0.5 <1.0.0",
42
41
  "@antelopejs/interface-file-storage": ">=0.1.3 <1.0.0",
43
42
  "archiver": "^7.0.1",
@@ -53,6 +52,7 @@
53
52
  "zod": "~3.24.2"
54
53
  },
55
54
  "devDependencies": {
55
+ "@antelopejs/core": ">=2.0.0 <3",
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": ">=2.0.0 <3"
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",