@nestm/storage 0.1.0-alpha.4 → 0.1.0-alpha.6

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 +30 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # @nestm/storage
2
2
 
3
+ ## 0.1.0-alpha.6
4
+
5
+ ### Minor Changes
6
+
7
+ - 5bb646e: Remove the product-specific artifact protocol, encryption codec, and Nest composition entry
8
+ points. `@nestm/storage` remains a generic storage library; applications should compose domain
9
+ protocols over its clients and provider drivers in their own packages.
10
+
11
+ ## 0.1.0-alpha.5
12
+
13
+ ### Minor Changes
14
+
15
+ - 227df5b: Add byte-compatible encrypted artifact storage through the
16
+ `@nestm/storage/artifacts` and `@nestm/storage/artifacts/nest` entry points.
17
+
18
+ The framework-neutral facade stores self-contained CAE1 AES-256-GCM envelopes,
19
+ binds ciphertext to its tenant, artifact, version, and path context, supports
20
+ local and AWS KMS key providers, and preserves authenticated content types,
21
+ bounded reads, versioned bundles, legacy migration reads, and encrypted generic
22
+ objects. The Nest entry point composes artifact and object adapters over two
23
+ named storage clients and clears cached data keys on shutdown.
24
+
25
+ The public protocol keeps the deployed filesystem and object-provider layouts,
26
+ reserves configurable ObjectStore namespaces from artifact ids, validates all
27
+ artifact/version paths, and bounds ZIP entry count and expansion before any
28
+ write. CAE1 now rejects unauthenticated empty content types and writer-side
29
+ oversized headers, KMS verifies the stored key id, DEK cache lifetimes are
30
+ capped at five minutes, filesystem `.ct` collisions are rejected, and sweepers
31
+ skip objects without trustworthy timestamps.
32
+
3
33
  ## 0.1.0-alpha.4
4
34
 
5
35
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestm/storage",
3
- "version": "0.1.0-alpha.4",
3
+ "version": "0.1.0-alpha.6",
4
4
  "description": "Framework-neutral storage clients with NestJS 12 integration, named stores, streaming I/O, and an optional guarded HTTP gateway.",
5
5
  "license": "MIT",
6
6
  "author": "Kauan Guesser",