@airdraft/plugin-seo 0.1.1 → 0.1.3

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 +31 -0
  2. package/package.json +5 -4
package/CHANGELOG.md CHANGED
@@ -2,6 +2,37 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.1.3](https://github.com/aevrHQ/airdraft/compare/plugin-seo@v0.1.2...plugin-seo@v0.1.3) (2026-05-23)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **build:** bump react-content peer dependencies ([9c33815](https://github.com/aevrHQ/airdraft/commit/9c338158eca40c418f5ad37e829b0a2f213a2e33))
11
+ * move @airdraft/core to peerDependencies in all consumer-facing packages ([f7653ff](https://github.com/aevrHQ/airdraft/commit/f7653ffd7109cbe76f09df8766a70de1b24afdba))
12
+ * **react-content:** entryCard children injection and sub-component auto-read ([a57cc48](https://github.com/aevrHQ/airdraft/commit/a57cc483b96986d5825e1c6d28a66c400bd57972))
13
+
14
+
15
+ ### Documentation
16
+
17
+ * **ui-core:** add README.md for shared UI-layer constants and utilities ([91fb464](https://github.com/aevrHQ/airdraft/commit/91fb4643eb7340ea16b1db9fd06e33ce0866b4b3))
18
+
19
+ ### [0.1.2](https://github.com/aevrHQ/airdraft/compare/plugin-seo@v0.1.1...plugin-seo@v0.1.2) (2026-05-23)
20
+
21
+
22
+ ### Features
23
+
24
+ * add `story` field type with schema definition and UI support; include media file for demo ([f5d3f88](https://github.com/aevrHQ/airdraft/commit/f5d3f884afda98e613c50ce1a0ebb3c591a84511))
25
+ * enhance media field handling in renderTypes function to include metadata support ([b80245c](https://github.com/aevrHQ/airdraft/commit/b80245caf91e2a436172e875fff89c83a56b5ff3))
26
+ * enhance MIME type handling in FilesSdkMediaAdapter and withMedia plugin ([186d33f](https://github.com/aevrHQ/airdraft/commit/186d33f33d31431c579a821eaa1a7a5ea13be4e7))
27
+ * implement `blocks` field type with schema definition, validation, and UI support ([a3d57d1](https://github.com/aevrHQ/airdraft/commit/a3d57d11d82f38871fe044641bbb5a98cda3cb75))
28
+ * **react-content:** add support for media lists and urls ([2cb0891](https://github.com/aevrHQ/airdraft/commit/2cb089102b0530217f305c782435138592f7754d))
29
+ * **types:** add asCollectionConfig function for casting schema objects ([f5bcaaf](https://github.com/aevrHQ/airdraft/commit/f5bcaafa42fb43d749c89dfe7e7b075adcd18474))
30
+
31
+
32
+ ### Code Refactoring
33
+
34
+ * code structure for improved readability and maintainability ([410de76](https://github.com/aevrHQ/airdraft/commit/410de761725340ea8edbb50b7de122797b58d942))
35
+
5
36
  ### [0.1.1](https://github.com/aevrHQ/airdraft/compare/plugin-seo@v0.1.0...plugin-seo@v0.1.1) (2026-05-23)
6
37
 
7
38
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@airdraft/plugin-seo",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Airdraft SEO plugin — meta fields, OG, sitemap generation",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -38,12 +38,13 @@
38
38
  "standard-version": "^9.5.0",
39
39
  "tsx": "^4.7.0",
40
40
  "typescript": "^5.4.0",
41
- "vitest": "^1.5.0"
42
- },
43
- "dependencies": {
41
+ "vitest": "^1.5.0",
44
42
  "@airdraft/core": "*"
45
43
  },
46
44
  "engines": {
47
45
  "node": ">=18.0.0"
46
+ },
47
+ "peerDependencies": {
48
+ "@airdraft/core": ">=0.1.8"
48
49
  }
49
50
  }