@atlaskit/tmp-editor-statsig 141.1.0 → 143.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/CHANGELOG.md CHANGED
@@ -1,5 +1,40 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 143.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [`8e67cc3c24a39`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8e67cc3c24a39) -
8
+ Remove the concluded Create with Rovo quick-insert experiment and retain its control behavior.
9
+
10
+ This is a breaking API change for `@atlaskit/tmp-editor-statsig` consumers because
11
+ `editorExperimentsConfig.cc_fd_cwr_quick_insert` and the corresponding typed experiment key no
12
+ longer exist.
13
+
14
+ Remove references to `editorExperimentsConfig.cc_fd_cwr_quick_insert` and experiment lookups such
15
+ as:
16
+
17
+ ```ts
18
+ if (expValNoExposure('cc_fd_cwr_quick_insert', 'cohort', 'control') === 'control') {
19
+ return useControlBehavior();
20
+ }
21
+ return useTreatmentBehavior();
22
+ ```
23
+
24
+ There is no replacement experiment. Delete the conditional and use the former control behavior
25
+ directly:
26
+
27
+ ```ts
28
+ return useControlBehavior();
29
+ ```
30
+
31
+ ## 142.0.0
32
+
33
+ ### Major Changes
34
+
35
+ - [`cdeb483dc8d38`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cdeb483dc8d38) -
36
+ Clean up experiment `platform_editor_ai_fix_insert_after_selection`.
37
+
3
38
  ## 141.1.0
4
39
 
5
40
  ### Minor Changes
@@ -14,7 +14,6 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
14
14
  cc_editor_insm_outlier_events: 'test',
15
15
  platform_editor_table_sticky_header_improvements: 'test_with_overflow',
16
16
  cc_fd_db_top_editor_toolbar: 'control',
17
- cc_fd_cwr_quick_insert: 'control',
18
17
  platform_editor_paste_actions_menu_v2: 'control',
19
18
  cc_smarts_should_improve_writing_migration: 'control',
20
19
  confluence_quick_insert_embeds: 'control',
@@ -1192,14 +1192,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1192
1192
  param: 'isEnabled',
1193
1193
  defaultValue: false
1194
1194
  }),
1195
- // Added 2026-02-16
1196
- platform_editor_ai_fix_insert_after_selection: (0, _experimentBuilders.createBooleanExperiment)({
1197
- productKeys: {
1198
- confluence: 'platform_editor_ai_fix_insert_after_selection'
1199
- },
1200
- param: 'isEnabled',
1201
- defaultValue: false
1202
- }),
1203
1195
  // Added 2026-04-07
1204
1196
  platform_editor_ai_move_node: (0, _experimentBuilders.createBooleanExperiment)({
1205
1197
  productKeys: {
@@ -1281,15 +1273,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1281
1273
  values: ['control', 'new-description', 'orig-description'],
1282
1274
  defaultValue: 'control'
1283
1275
  }),
1284
- // Added 2026-04-02
1285
- cc_fd_cwr_quick_insert: (0, _experimentBuilders.createMultivariateExperiment)({
1286
- productKeys: {
1287
- confluence: 'cc_fd_cwr_quick_insert'
1288
- },
1289
- param: 'cohort',
1290
- values: ['control', 'slot-four', 'slot-two'],
1291
- defaultValue: 'control'
1292
- }),
1293
1276
  // Added 2026-02-05 - A11Y-10416
1294
1277
  editor_a11y_role_textbox: (0, _experimentBuilders.createBooleanExperiment)({
1295
1278
  productKeys: {
@@ -8,7 +8,6 @@ export const testMultivariateOverrides = {
8
8
  cc_editor_insm_outlier_events: 'test',
9
9
  platform_editor_table_sticky_header_improvements: 'test_with_overflow',
10
10
  cc_fd_db_top_editor_toolbar: 'control',
11
- cc_fd_cwr_quick_insert: 'control',
12
11
  platform_editor_paste_actions_menu_v2: 'control',
13
12
  cc_smarts_should_improve_writing_migration: 'control',
14
13
  confluence_quick_insert_embeds: 'control',
@@ -1186,14 +1186,6 @@ export const editorExperimentsConfig = {
1186
1186
  param: 'isEnabled',
1187
1187
  defaultValue: false
1188
1188
  }),
1189
- // Added 2026-02-16
1190
- platform_editor_ai_fix_insert_after_selection: createBooleanExperiment({
1191
- productKeys: {
1192
- confluence: 'platform_editor_ai_fix_insert_after_selection'
1193
- },
1194
- param: 'isEnabled',
1195
- defaultValue: false
1196
- }),
1197
1189
  // Added 2026-04-07
1198
1190
  platform_editor_ai_move_node: createBooleanExperiment({
1199
1191
  productKeys: {
@@ -1275,15 +1267,6 @@ export const editorExperimentsConfig = {
1275
1267
  values: ['control', 'new-description', 'orig-description'],
1276
1268
  defaultValue: 'control'
1277
1269
  }),
1278
- // Added 2026-04-02
1279
- cc_fd_cwr_quick_insert: createMultivariateExperiment({
1280
- productKeys: {
1281
- confluence: 'cc_fd_cwr_quick_insert'
1282
- },
1283
- param: 'cohort',
1284
- values: ['control', 'slot-four', 'slot-two'],
1285
- defaultValue: 'control'
1286
- }),
1287
1270
  // Added 2026-02-05 - A11Y-10416
1288
1271
  editor_a11y_role_textbox: createBooleanExperiment({
1289
1272
  productKeys: {
@@ -8,7 +8,6 @@ export var testMultivariateOverrides = {
8
8
  cc_editor_insm_outlier_events: 'test',
9
9
  platform_editor_table_sticky_header_improvements: 'test_with_overflow',
10
10
  cc_fd_db_top_editor_toolbar: 'control',
11
- cc_fd_cwr_quick_insert: 'control',
12
11
  platform_editor_paste_actions_menu_v2: 'control',
13
12
  cc_smarts_should_improve_writing_migration: 'control',
14
13
  confluence_quick_insert_embeds: 'control',
@@ -1186,14 +1186,6 @@ export var editorExperimentsConfig = {
1186
1186
  param: 'isEnabled',
1187
1187
  defaultValue: false
1188
1188
  }),
1189
- // Added 2026-02-16
1190
- platform_editor_ai_fix_insert_after_selection: createBooleanExperiment({
1191
- productKeys: {
1192
- confluence: 'platform_editor_ai_fix_insert_after_selection'
1193
- },
1194
- param: 'isEnabled',
1195
- defaultValue: false
1196
- }),
1197
1189
  // Added 2026-04-07
1198
1190
  platform_editor_ai_move_node: createBooleanExperiment({
1199
1191
  productKeys: {
@@ -1275,15 +1267,6 @@ export var editorExperimentsConfig = {
1275
1267
  values: ['control', 'new-description', 'orig-description'],
1276
1268
  defaultValue: 'control'
1277
1269
  }),
1278
- // Added 2026-04-02
1279
- cc_fd_cwr_quick_insert: createMultivariateExperiment({
1280
- productKeys: {
1281
- confluence: 'cc_fd_cwr_quick_insert'
1282
- },
1283
- param: 'cohort',
1284
- values: ['control', 'slot-four', 'slot-two'],
1285
- defaultValue: 'control'
1286
- }),
1287
1270
  // Added 2026-02-05 - A11Y-10416
1288
1271
  editor_a11y_role_textbox: createBooleanExperiment({
1289
1272
  productKeys: {
@@ -900,12 +900,6 @@ export declare const editorExperimentsConfig: {
900
900
  productKeys?: ProductKeys;
901
901
  typeGuard: IsBooleanType;
902
902
  };
903
- platform_editor_ai_fix_insert_after_selection: {
904
- defaultValue: boolean;
905
- param: string;
906
- productKeys?: ProductKeys;
907
- typeGuard: IsBooleanType;
908
- };
909
903
  platform_editor_ai_move_node: {
910
904
  defaultValue: boolean;
911
905
  param: string;
@@ -931,13 +925,6 @@ export declare const editorExperimentsConfig: {
931
925
  typeGuard: (value: unknown) => value is 'control' | 'new-description' | 'orig-description';
932
926
  values: ('control' | 'new-description' | 'orig-description')[];
933
927
  };
934
- cc_fd_cwr_quick_insert: {
935
- defaultValue: 'control' | 'slot-four' | 'slot-two';
936
- param: string;
937
- productKeys?: ProductKeys;
938
- typeGuard: (value: unknown) => value is 'control' | 'slot-four' | 'slot-two';
939
- values: ('control' | 'slot-four' | 'slot-two')[];
940
- };
941
928
  cc_fix_editor_context_on_cwr_followups: {
942
929
  defaultValue: boolean;
943
930
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "141.1.0",
3
+ "version": "143.0.0",
4
4
  "description": "Temp plugin to ease use of statsig feature flags until platform feature flags are available",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",