@objectstack/plugin-approvals 11.9.0 → 12.0.0
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/.turbo/turbo-build.log +9 -9
- package/CHANGELOG.md +41 -0
- package/dist/index.d.mts +335 -428
- package/dist/index.d.ts +335 -428
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -7
- package/src/sys-approval-action.object.ts +1 -1
- package/src/sys-approval-approver.object.ts +1 -1
- package/src/sys-approval-request.object.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @objectstack/plugin-approvals@
|
|
2
|
+
> @objectstack/plugin-approvals@12.0.0 build /home/runner/work/framework/framework/packages/plugins/plugin-approvals
|
|
3
3
|
> tsup --config ../../../tsup.config.ts
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
[34mCLI[39m Cleaning output folder
|
|
11
11
|
[34mESM[39m Build start
|
|
12
12
|
[34mCJS[39m Build start
|
|
13
|
-
[32mCJS[39m [1mdist/index.js [22m[32m121.96 KB[39m
|
|
14
|
-
[32mCJS[39m [1mdist/index.js.map [22m[32m217.11 KB[39m
|
|
15
|
-
[32mCJS[39m ⚡️ Build success in 191ms
|
|
16
13
|
[32mESM[39m [1mdist/index.mjs [22m[32m120.29 KB[39m
|
|
17
|
-
[32mESM[39m [1mdist/index.mjs.map [22m[32m215.
|
|
18
|
-
[32mESM[39m ⚡️ Build success in
|
|
14
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m215.92 KB[39m
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 160ms
|
|
16
|
+
[32mCJS[39m [1mdist/index.js [22m[32m121.96 KB[39m
|
|
17
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m217.12 KB[39m
|
|
18
|
+
[32mCJS[39m ⚡️ Build success in 193ms
|
|
19
19
|
[34mDTS[39m Build start
|
|
20
|
-
[32mDTS[39m ⚡️ Build success in
|
|
21
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[
|
|
22
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[
|
|
20
|
+
[32mDTS[39m ⚡️ Build success in 24891ms
|
|
21
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m364.91 KB[39m
|
|
22
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m364.91 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,46 @@
|
|
|
1
1
|
# @objectstack/plugin-approvals
|
|
2
2
|
|
|
3
|
+
## 12.0.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [a8df396]
|
|
8
|
+
- Updated dependencies [e695fe0]
|
|
9
|
+
- Updated dependencies [07f055c]
|
|
10
|
+
- Updated dependencies [7c09621]
|
|
11
|
+
- Updated dependencies [7709db4]
|
|
12
|
+
- Updated dependencies [2082109]
|
|
13
|
+
- Updated dependencies [7c09621]
|
|
14
|
+
- Updated dependencies [9860de4]
|
|
15
|
+
- Updated dependencies [069c205]
|
|
16
|
+
- @objectstack/spec@12.0.0
|
|
17
|
+
- @objectstack/platform-objects@12.0.0
|
|
18
|
+
- @objectstack/core@12.0.0
|
|
19
|
+
- @objectstack/formula@12.0.0
|
|
20
|
+
- @objectstack/metadata-core@12.0.0
|
|
21
|
+
|
|
22
|
+
## 11.10.0
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- 6a9397e: Retire the deprecated `compactLayout` alias for `highlightFields` (framework#2536, closes the ADR-0085 deprecation window).
|
|
27
|
+
|
|
28
|
+
- `ObjectSchema` no longer declares `compactLayout`: `create()` rejects it like any unknown key; lenient `parse()` strips it (no silent aliasing).
|
|
29
|
+
- The parse-time alias AND the `highlightFields → compactLayout` back-fill transition mirror are removed from `normalizeSemanticRoleAliases`. Served metadata now carries the canonical key only.
|
|
30
|
+
- All remaining first-party authors (27 system objects across plugin-audit / approvals / security / sharing / webhooks / service-storage / automation / messaging / realtime — missed by the #2521 sweep, caught by the type gate) renamed to `highlightFields`.
|
|
31
|
+
- The downstream smoke pin moves to hotcrm v1.2.2 (hotcrm#424: same rename + deps ^11.7.0).
|
|
32
|
+
- Consumers were switched in objectui#2168 and shipped via the console pin bump (#2526); this closes the window scheduled there. The dogfood mirror assertion (#2528) flips to `compactLayout: undefined` in this same change, per the plan it carried.
|
|
33
|
+
|
|
34
|
+
Version note: minor, not major — the key was deprecated-with-alias for a full release window, all first-party consumers/authors are migrated, and the spec api-surface gate reports no export changes (same documented-exception path as the ADR-0085 removals in 11.7.0). External metadata still authoring `compactLayout` will now fail `create()` loudly with the standard unknown-key error naming the key.
|
|
35
|
+
|
|
36
|
+
- Updated dependencies [6a9397e]
|
|
37
|
+
- Updated dependencies [c0efe5d]
|
|
38
|
+
- @objectstack/spec@11.10.0
|
|
39
|
+
- @objectstack/core@11.10.0
|
|
40
|
+
- @objectstack/formula@11.10.0
|
|
41
|
+
- @objectstack/metadata-core@11.10.0
|
|
42
|
+
- @objectstack/platform-objects@11.10.0
|
|
43
|
+
|
|
3
44
|
## 11.9.0
|
|
4
45
|
|
|
5
46
|
### Patch Changes
|