@plasius/storage 1.0.2 → 1.0.4
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 +31 -1
- package/package.json +6 -4
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,34 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
- **Added**
|
|
12
|
+
- (placeholder)
|
|
13
|
+
|
|
14
|
+
- **Changed**
|
|
15
|
+
- (placeholder)
|
|
16
|
+
|
|
17
|
+
- **Fixed**
|
|
18
|
+
- (placeholder)
|
|
19
|
+
|
|
20
|
+
- **Security**
|
|
21
|
+
- (placeholder)
|
|
22
|
+
|
|
23
|
+
## [1.0.4] - 2026-02-28
|
|
24
|
+
|
|
25
|
+
- **Added**
|
|
26
|
+
- (placeholder)
|
|
27
|
+
|
|
28
|
+
- **Changed**
|
|
29
|
+
- (placeholder)
|
|
30
|
+
|
|
31
|
+
- **Fixed**
|
|
32
|
+
- (placeholder)
|
|
33
|
+
|
|
34
|
+
- **Security**
|
|
35
|
+
- (placeholder)
|
|
36
|
+
|
|
37
|
+
## [1.0.3] - 2026-02-22
|
|
38
|
+
|
|
11
39
|
- **Added**
|
|
12
40
|
- (placeholder)
|
|
13
41
|
|
|
@@ -76,7 +104,7 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
|
|
|
76
104
|
|
|
77
105
|
---
|
|
78
106
|
|
|
79
|
-
[Unreleased]: https://github.com/Plasius-LTD/storage/compare/v1.0.
|
|
107
|
+
[Unreleased]: https://github.com/Plasius-LTD/storage/compare/v1.0.4...HEAD
|
|
80
108
|
|
|
81
109
|
## [1.0.0] - 2026-02-11
|
|
82
110
|
|
|
@@ -94,3 +122,5 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
|
|
|
94
122
|
[1.0.0]: https://github.com/Plasius-LTD/storage/releases/tag/v1.0.0
|
|
95
123
|
[1.0.1]: https://github.com/Plasius-LTD/storage/releases/tag/v1.0.1
|
|
96
124
|
[1.0.2]: https://github.com/Plasius-LTD/storage/releases/tag/v1.0.2
|
|
125
|
+
[1.0.3]: https://github.com/Plasius-LTD/storage/releases/tag/v1.0.3
|
|
126
|
+
[1.0.4]: https://github.com/Plasius-LTD/storage/releases/tag/v1.0.4
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasius/storage",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"main": "./dist/index.cjs",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"private": false,
|
|
@@ -21,7 +21,9 @@
|
|
|
21
21
|
"audit:test": "vitest run --coverage",
|
|
22
22
|
"audit:all": "npm-run-all -l audit:ts audit:eslint audit:deps audit:npm audit:test",
|
|
23
23
|
"lint": "eslint .",
|
|
24
|
-
"prepare": "npm run build"
|
|
24
|
+
"prepare": "npm run build",
|
|
25
|
+
"pack:check": "node scripts/verify-public-package.cjs",
|
|
26
|
+
"prepublishOnly": "npm run build && npm run pack:check"
|
|
25
27
|
},
|
|
26
28
|
"author": "Plasius LTD <development@plasius.co.uk>",
|
|
27
29
|
"license": "MIT",
|
|
@@ -31,8 +33,8 @@
|
|
|
31
33
|
},
|
|
32
34
|
"dependencies": {
|
|
33
35
|
"@azure/storage-file-share": "^12.27.0",
|
|
34
|
-
"@plasius/entity-manager": "^1.0.
|
|
35
|
-
"@plasius/schema": "^1.
|
|
36
|
+
"@plasius/entity-manager": "^1.0.6",
|
|
37
|
+
"@plasius/schema": "^1.2.2"
|
|
36
38
|
},
|
|
37
39
|
"devDependencies": {
|
|
38
40
|
"@azure/cosmos": "^4.4.1",
|