@airdraft/plugin-seo 0.1.2 → 0.1.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 +23 -0
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,29 @@
|
|
|
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.4](https://github.com/aevrHQ/airdraft/compare/plugin-seo@v0.1.3...plugin-seo@v0.1.4) (2026-05-23)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **auth:** implement server-side silent token refresh and extend refresh token TTL to 30 days ([2418571](https://github.com/aevrHQ/airdraft/commit/2418571ec2aa037995dc9b5eb94fb06f79c949b8))
|
|
11
|
+
* **EntryDetail:** enhance component to support injected props and dynamic field resolution ([a65f19c](https://github.com/aevrHQ/airdraft/commit/a65f19c57c0f85ba6deb5d64b59592a82d614258))
|
|
12
|
+
* **README:** add documentation for @airdraft/content functions and usage examples ([b43ab62](https://github.com/aevrHQ/airdraft/commit/b43ab621da781056a32de816547d2b1ba7421ed3))
|
|
13
|
+
|
|
14
|
+
### [0.1.3](https://github.com/aevrHQ/airdraft/compare/plugin-seo@v0.1.2...plugin-seo@v0.1.3) (2026-05-23)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **build:** bump react-content peer dependencies ([9c33815](https://github.com/aevrHQ/airdraft/commit/9c338158eca40c418f5ad37e829b0a2f213a2e33))
|
|
20
|
+
* move @airdraft/core to peerDependencies in all consumer-facing packages ([f7653ff](https://github.com/aevrHQ/airdraft/commit/f7653ffd7109cbe76f09df8766a70de1b24afdba))
|
|
21
|
+
* **react-content:** entryCard children injection and sub-component auto-read ([a57cc48](https://github.com/aevrHQ/airdraft/commit/a57cc483b96986d5825e1c6d28a66c400bd57972))
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Documentation
|
|
25
|
+
|
|
26
|
+
* **ui-core:** add README.md for shared UI-layer constants and utilities ([91fb464](https://github.com/aevrHQ/airdraft/commit/91fb4643eb7340ea16b1db9fd06e33ce0866b4b3))
|
|
27
|
+
|
|
5
28
|
### [0.1.2](https://github.com/aevrHQ/airdraft/compare/plugin-seo@v0.1.1...plugin-seo@v0.1.2) (2026-05-23)
|
|
6
29
|
|
|
7
30
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@airdraft/plugin-seo",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
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
|
}
|