@atlaskit/tmp-editor-statsig 108.2.0 → 108.4.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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 108.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`298f9a506cb5f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/298f9a506cb5f) -
|
|
8
|
+
[EDITOR-6790] Allow inserting a column to the left of the first column, behind the
|
|
9
|
+
platform_editor_table_col_insert experiment
|
|
10
|
+
|
|
11
|
+
## 108.3.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [`ccf2e0f0ba838`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ccf2e0f0ba838) -
|
|
16
|
+
[CCI-17112] Route Heading Autocomplete via cc-smarts behind SPRT.
|
|
17
|
+
|
|
18
|
+
`callHeadingAutocompleteApi` now branches on the editor experiment
|
|
19
|
+
`cc_smarts_heading_autocomplete_migration` (param `useCcSmarts`):
|
|
20
|
+
- **Control arm (default):** `/gateway/api/assist/api/ai/v2/ai-feature/heading-autocomplete`
|
|
21
|
+
(conversational-ai-platform — current source of truth, unchanged behaviour).
|
|
22
|
+
- **Test arm:** `/gateway/api/ai/v2/ai-feature/heading-autocomplete` (cc-smarts — new home,
|
|
23
|
+
reached via the `cc-smarts-ai-feature` stargate wildcard route).
|
|
24
|
+
|
|
25
|
+
Wire shape is byte-for-byte identical between the two backends; only the URL path changes. Mirrors
|
|
26
|
+
the `cc_smarts_comment_summary_followups_migration` pattern (AFM PR-388153). With the experiment
|
|
27
|
+
at 0%, this is a no-op behaviour change in production.
|
|
28
|
+
|
|
29
|
+
Adds a `try`/`catch` around `expValEquals` so the API fails closed to the convo-ai control arm on
|
|
30
|
+
Statsig read errors (per the convo-ai → cc-smarts migration skill guardrail).
|
|
31
|
+
|
|
32
|
+
Registers the new boolean experiment in `@atlaskit/tmp-editor-statsig/experiments-config`.
|
|
33
|
+
|
|
34
|
+
Tests live in the sibling `@af/editor-plugin-ai-autocomplete-tests` package per AFM ratcheting
|
|
35
|
+
rule "No tests in Editor plugin packages"; `heading-autocomplete-api-mock.ts` globs both the
|
|
36
|
+
convo-ai (`/gateway/api/assist/...`) and cc-smarts URLs.
|
|
37
|
+
|
|
38
|
+
- [`19773530cd51c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/19773530cd51c) -
|
|
39
|
+
Add fallbackMediaNameFetcher support to MediaCard (FileCard) and MediaViewer (header display),
|
|
40
|
+
gated behind the platform_editor_media_name_fallback_viewer_card experiment
|
|
41
|
+
|
|
3
42
|
## 108.2.0
|
|
4
43
|
|
|
5
44
|
### Minor Changes
|
|
@@ -233,6 +233,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
233
233
|
param: 'isEnabled',
|
|
234
234
|
defaultValue: false
|
|
235
235
|
}),
|
|
236
|
+
// Added 2026-06-16
|
|
237
|
+
platform_editor_table_col_insert: (0, _experimentBuilders.createBooleanExperiment)({
|
|
238
|
+
productKeys: {
|
|
239
|
+
confluence: 'platform_editor_table_col_insert'
|
|
240
|
+
},
|
|
241
|
+
param: 'isEnabled',
|
|
242
|
+
defaultValue: false
|
|
243
|
+
}),
|
|
236
244
|
// Added 2026-03-06
|
|
237
245
|
platform_editor_media_reliability_observability: (0, _experimentBuilders.createBooleanExperiment)({
|
|
238
246
|
productKeys: {
|
|
@@ -606,6 +614,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
606
614
|
param: 'isEnabled',
|
|
607
615
|
defaultValue: false
|
|
608
616
|
}),
|
|
617
|
+
// Added 2026-06-12
|
|
618
|
+
platform_editor_media_name_fallback_viewer_card: (0, _experimentBuilders.createBooleanExperiment)({
|
|
619
|
+
productKeys: {
|
|
620
|
+
confluence: 'platform_editor_media_name_fallback_viewer_card'
|
|
621
|
+
},
|
|
622
|
+
param: 'isEnabled',
|
|
623
|
+
defaultValue: false
|
|
624
|
+
}),
|
|
609
625
|
// Added 2025-06-05
|
|
610
626
|
platform_editor_block_controls_perf_optimization: (0, _experimentBuilders.createBooleanExperiment)({
|
|
611
627
|
productKeys: {
|
|
@@ -2254,5 +2270,12 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2254
2270
|
},
|
|
2255
2271
|
param: 'isEnabled',
|
|
2256
2272
|
defaultValue: false
|
|
2273
|
+
}),
|
|
2274
|
+
cc_smarts_heading_autocomplete_migration: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2275
|
+
productKeys: {
|
|
2276
|
+
confluence: 'cc_smarts_heading_autocomplete_migration'
|
|
2277
|
+
},
|
|
2278
|
+
param: 'useCcSmarts',
|
|
2279
|
+
defaultValue: false
|
|
2257
2280
|
})
|
|
2258
2281
|
};
|
|
@@ -227,6 +227,14 @@ export const editorExperimentsConfig = {
|
|
|
227
227
|
param: 'isEnabled',
|
|
228
228
|
defaultValue: false
|
|
229
229
|
}),
|
|
230
|
+
// Added 2026-06-16
|
|
231
|
+
platform_editor_table_col_insert: createBooleanExperiment({
|
|
232
|
+
productKeys: {
|
|
233
|
+
confluence: 'platform_editor_table_col_insert'
|
|
234
|
+
},
|
|
235
|
+
param: 'isEnabled',
|
|
236
|
+
defaultValue: false
|
|
237
|
+
}),
|
|
230
238
|
// Added 2026-03-06
|
|
231
239
|
platform_editor_media_reliability_observability: createBooleanExperiment({
|
|
232
240
|
productKeys: {
|
|
@@ -600,6 +608,14 @@ export const editorExperimentsConfig = {
|
|
|
600
608
|
param: 'isEnabled',
|
|
601
609
|
defaultValue: false
|
|
602
610
|
}),
|
|
611
|
+
// Added 2026-06-12
|
|
612
|
+
platform_editor_media_name_fallback_viewer_card: createBooleanExperiment({
|
|
613
|
+
productKeys: {
|
|
614
|
+
confluence: 'platform_editor_media_name_fallback_viewer_card'
|
|
615
|
+
},
|
|
616
|
+
param: 'isEnabled',
|
|
617
|
+
defaultValue: false
|
|
618
|
+
}),
|
|
603
619
|
// Added 2025-06-05
|
|
604
620
|
platform_editor_block_controls_perf_optimization: createBooleanExperiment({
|
|
605
621
|
productKeys: {
|
|
@@ -2248,5 +2264,12 @@ export const editorExperimentsConfig = {
|
|
|
2248
2264
|
},
|
|
2249
2265
|
param: 'isEnabled',
|
|
2250
2266
|
defaultValue: false
|
|
2267
|
+
}),
|
|
2268
|
+
cc_smarts_heading_autocomplete_migration: createBooleanExperiment({
|
|
2269
|
+
productKeys: {
|
|
2270
|
+
confluence: 'cc_smarts_heading_autocomplete_migration'
|
|
2271
|
+
},
|
|
2272
|
+
param: 'useCcSmarts',
|
|
2273
|
+
defaultValue: false
|
|
2251
2274
|
})
|
|
2252
2275
|
};
|
|
@@ -227,6 +227,14 @@ export var editorExperimentsConfig = {
|
|
|
227
227
|
param: 'isEnabled',
|
|
228
228
|
defaultValue: false
|
|
229
229
|
}),
|
|
230
|
+
// Added 2026-06-16
|
|
231
|
+
platform_editor_table_col_insert: createBooleanExperiment({
|
|
232
|
+
productKeys: {
|
|
233
|
+
confluence: 'platform_editor_table_col_insert'
|
|
234
|
+
},
|
|
235
|
+
param: 'isEnabled',
|
|
236
|
+
defaultValue: false
|
|
237
|
+
}),
|
|
230
238
|
// Added 2026-03-06
|
|
231
239
|
platform_editor_media_reliability_observability: createBooleanExperiment({
|
|
232
240
|
productKeys: {
|
|
@@ -600,6 +608,14 @@ export var editorExperimentsConfig = {
|
|
|
600
608
|
param: 'isEnabled',
|
|
601
609
|
defaultValue: false
|
|
602
610
|
}),
|
|
611
|
+
// Added 2026-06-12
|
|
612
|
+
platform_editor_media_name_fallback_viewer_card: createBooleanExperiment({
|
|
613
|
+
productKeys: {
|
|
614
|
+
confluence: 'platform_editor_media_name_fallback_viewer_card'
|
|
615
|
+
},
|
|
616
|
+
param: 'isEnabled',
|
|
617
|
+
defaultValue: false
|
|
618
|
+
}),
|
|
603
619
|
// Added 2025-06-05
|
|
604
620
|
platform_editor_block_controls_perf_optimization: createBooleanExperiment({
|
|
605
621
|
productKeys: {
|
|
@@ -2248,5 +2264,12 @@ export var editorExperimentsConfig = {
|
|
|
2248
2264
|
},
|
|
2249
2265
|
param: 'isEnabled',
|
|
2250
2266
|
defaultValue: false
|
|
2267
|
+
}),
|
|
2268
|
+
cc_smarts_heading_autocomplete_migration: createBooleanExperiment({
|
|
2269
|
+
productKeys: {
|
|
2270
|
+
confluence: 'cc_smarts_heading_autocomplete_migration'
|
|
2271
|
+
},
|
|
2272
|
+
param: 'useCcSmarts',
|
|
2273
|
+
defaultValue: false
|
|
2251
2274
|
})
|
|
2252
2275
|
};
|
|
@@ -332,6 +332,12 @@ export declare const editorExperimentsConfig: {
|
|
|
332
332
|
productKeys?: ProductKeys;
|
|
333
333
|
typeGuard: IsBooleanType;
|
|
334
334
|
};
|
|
335
|
+
platform_editor_media_name_fallback_viewer_card: {
|
|
336
|
+
defaultValue: boolean;
|
|
337
|
+
param: string;
|
|
338
|
+
productKeys?: ProductKeys;
|
|
339
|
+
typeGuard: IsBooleanType;
|
|
340
|
+
};
|
|
335
341
|
platform_editor_block_controls_perf_optimization: {
|
|
336
342
|
defaultValue: boolean;
|
|
337
343
|
param: string;
|
|
@@ -610,6 +616,12 @@ export declare const editorExperimentsConfig: {
|
|
|
610
616
|
productKeys?: ProductKeys;
|
|
611
617
|
typeGuard: IsBooleanType;
|
|
612
618
|
};
|
|
619
|
+
platform_editor_table_col_insert: {
|
|
620
|
+
defaultValue: boolean;
|
|
621
|
+
param: string;
|
|
622
|
+
productKeys?: ProductKeys;
|
|
623
|
+
typeGuard: IsBooleanType;
|
|
624
|
+
};
|
|
613
625
|
platform_editor_tables_table_selector: {
|
|
614
626
|
defaultValue: boolean;
|
|
615
627
|
param: string;
|
|
@@ -1647,5 +1659,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1647
1659
|
productKeys?: ProductKeys;
|
|
1648
1660
|
typeGuard: IsBooleanType;
|
|
1649
1661
|
};
|
|
1662
|
+
cc_smarts_heading_autocomplete_migration: {
|
|
1663
|
+
defaultValue: boolean;
|
|
1664
|
+
param: string;
|
|
1665
|
+
productKeys?: ProductKeys;
|
|
1666
|
+
typeGuard: IsBooleanType;
|
|
1667
|
+
};
|
|
1650
1668
|
};
|
|
1651
1669
|
export {};
|
package/package.json
CHANGED