@plasius/storage 1.0.3 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -1
  2. package/package.json +6 -4
package/CHANGELOG.md CHANGED
@@ -8,6 +8,20 @@ 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
+
11
25
  - **Added**
12
26
  - (placeholder)
13
27
 
@@ -90,7 +104,7 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
90
104
 
91
105
  ---
92
106
 
93
- [Unreleased]: https://github.com/Plasius-LTD/storage/compare/v1.0.3...HEAD
107
+ [Unreleased]: https://github.com/Plasius-LTD/storage/compare/v1.0.4...HEAD
94
108
 
95
109
  ## [1.0.0] - 2026-02-11
96
110
 
@@ -109,3 +123,4 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
109
123
  [1.0.1]: https://github.com/Plasius-LTD/storage/releases/tag/v1.0.1
110
124
  [1.0.2]: https://github.com/Plasius-LTD/storage/releases/tag/v1.0.2
111
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",
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.5",
35
- "@plasius/schema": "^1.2.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",