@momentumcms/storage 0.1.0 → 0.1.2

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 -0
  2. package/package.json +44 -44
package/CHANGELOG.md CHANGED
@@ -1,3 +1,19 @@
1
+ ## 0.1.2 (2026-02-16)
2
+
3
+ ### 🩹 Fixes
4
+
5
+ - **release:** centralize manifestRootsToUpdate to update both source and dist ([2b8f832](https://github.com/DonaldMurillo/momentum-cms/commit/2b8f832))
6
+ - **create-app:** fix Angular SSR, Analog builds, and CJS/ESM compatibility ([28d4d0a](https://github.com/DonaldMurillo/momentum-cms/commit/28d4d0a))
7
+
8
+ ### ❤️ Thank You
9
+
10
+ - Claude Opus 4.6
11
+ - Donald Murillo @DonaldMurillo
12
+
13
+ ## 0.1.1 (2026-02-16)
14
+
15
+ This was a version bump only for storage to align it with other projects, there were no code changes.
16
+
1
17
  ## 0.1.0 (2026-02-16)
2
18
 
3
19
  ### 🩹 Fixes
package/package.json CHANGED
@@ -1,45 +1,45 @@
1
1
  {
2
- "name": "@momentumcms/storage",
3
- "version": "0.1.0",
4
- "description": "File storage adapters (local filesystem, S3) for Momentum CMS",
5
- "license": "MIT",
6
- "author": "Momentum CMS Contributors",
7
- "repository": {
8
- "type": "git",
9
- "url": "https://github.com/momentum-cms/momentum-cms.git",
10
- "directory": "libs/storage"
11
- },
12
- "homepage": "https://github.com/momentum-cms/momentum-cms#readme",
13
- "bugs": {
14
- "url": "https://github.com/momentum-cms/momentum-cms/issues"
15
- },
16
- "keywords": [
17
- "cms",
18
- "momentum-cms",
19
- "storage",
20
- "file-upload",
21
- "s3"
22
- ],
23
- "engines": {
24
- "node": ">=18"
25
- },
26
- "type": "commonjs",
27
- "main": "./src/index.js",
28
- "types": "./src/index.d.ts",
29
- "dependencies": {
30
- "tslib": "^2.3.0"
31
- },
32
- "peerDependencies": {
33
- "@momentumcms/core": ">=0.0.1",
34
- "@aws-sdk/client-s3": "^3.0.0",
35
- "@aws-sdk/s3-request-presigner": "^3.0.0"
36
- },
37
- "peerDependenciesMeta": {
38
- "@aws-sdk/client-s3": {
39
- "optional": true
40
- },
41
- "@aws-sdk/s3-request-presigner": {
42
- "optional": true
43
- }
44
- }
45
- }
2
+ "name": "@momentumcms/storage",
3
+ "version": "0.1.2",
4
+ "description": "File storage adapters (local filesystem, S3) for Momentum CMS",
5
+ "license": "MIT",
6
+ "author": "Momentum CMS Contributors",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/momentum-cms/momentum-cms.git",
10
+ "directory": "libs/storage"
11
+ },
12
+ "homepage": "https://github.com/momentum-cms/momentum-cms#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/momentum-cms/momentum-cms/issues"
15
+ },
16
+ "keywords": [
17
+ "cms",
18
+ "momentum-cms",
19
+ "storage",
20
+ "file-upload",
21
+ "s3"
22
+ ],
23
+ "engines": {
24
+ "node": ">=18"
25
+ },
26
+ "main": "./src/index.js",
27
+ "types": "./src/index.d.ts",
28
+ "dependencies": {
29
+ "tslib": "^2.3.0"
30
+ },
31
+ "peerDependencies": {
32
+ "@momentumcms/core": ">=0.0.1",
33
+ "@aws-sdk/client-s3": "^3.0.0",
34
+ "@aws-sdk/s3-request-presigner": "^3.0.0"
35
+ },
36
+ "peerDependenciesMeta": {
37
+ "@aws-sdk/client-s3": {
38
+ "optional": true
39
+ },
40
+ "@aws-sdk/s3-request-presigner": {
41
+ "optional": true
42
+ }
43
+ },
44
+ "type": "commonjs"
45
+ }