@airdraft/plugin-audit-log 0.1.2 → 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 +14 -0
  2. package/package.json +5 -4
package/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
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-audit-log@v0.1.2...plugin-audit-log@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
+
5
19
  ### [0.1.2](https://github.com/aevrHQ/airdraft/compare/plugin-audit-log@v0.1.1...plugin-audit-log@v0.1.2) (2026-05-23)
6
20
 
7
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@airdraft/plugin-audit-log",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Audit logging plugin for Airdraft — emits a wide event per CMS request",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -37,12 +37,13 @@
37
37
  "@types/node": "^20.0.0",
38
38
  "standard-version": "^9.5.0",
39
39
  "typescript": "^5.4.0",
40
- "vitest": "^1.5.0"
41
- },
42
- "dependencies": {
40
+ "vitest": "^1.5.0",
43
41
  "@airdraft/core": "*"
44
42
  },
45
43
  "engines": {
46
44
  "node": ">=18.0.0"
45
+ },
46
+ "peerDependencies": {
47
+ "@airdraft/core": ">=0.1.8"
47
48
  }
48
49
  }