@atlaskit/tmp-editor-statsig 142.0.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,33 @@
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
+
3
31
  ## 142.0.0
4
32
 
5
33
  ### Major 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',
@@ -1273,15 +1273,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1273
1273
  values: ['control', 'new-description', 'orig-description'],
1274
1274
  defaultValue: 'control'
1275
1275
  }),
1276
- // Added 2026-04-02
1277
- cc_fd_cwr_quick_insert: (0, _experimentBuilders.createMultivariateExperiment)({
1278
- productKeys: {
1279
- confluence: 'cc_fd_cwr_quick_insert'
1280
- },
1281
- param: 'cohort',
1282
- values: ['control', 'slot-four', 'slot-two'],
1283
- defaultValue: 'control'
1284
- }),
1285
1276
  // Added 2026-02-05 - A11Y-10416
1286
1277
  editor_a11y_role_textbox: (0, _experimentBuilders.createBooleanExperiment)({
1287
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',
@@ -1267,15 +1267,6 @@ export const editorExperimentsConfig = {
1267
1267
  values: ['control', 'new-description', 'orig-description'],
1268
1268
  defaultValue: 'control'
1269
1269
  }),
1270
- // Added 2026-04-02
1271
- cc_fd_cwr_quick_insert: createMultivariateExperiment({
1272
- productKeys: {
1273
- confluence: 'cc_fd_cwr_quick_insert'
1274
- },
1275
- param: 'cohort',
1276
- values: ['control', 'slot-four', 'slot-two'],
1277
- defaultValue: 'control'
1278
- }),
1279
1270
  // Added 2026-02-05 - A11Y-10416
1280
1271
  editor_a11y_role_textbox: createBooleanExperiment({
1281
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',
@@ -1267,15 +1267,6 @@ export var editorExperimentsConfig = {
1267
1267
  values: ['control', 'new-description', 'orig-description'],
1268
1268
  defaultValue: 'control'
1269
1269
  }),
1270
- // Added 2026-04-02
1271
- cc_fd_cwr_quick_insert: createMultivariateExperiment({
1272
- productKeys: {
1273
- confluence: 'cc_fd_cwr_quick_insert'
1274
- },
1275
- param: 'cohort',
1276
- values: ['control', 'slot-four', 'slot-two'],
1277
- defaultValue: 'control'
1278
- }),
1279
1270
  // Added 2026-02-05 - A11Y-10416
1280
1271
  editor_a11y_role_textbox: createBooleanExperiment({
1281
1272
  productKeys: {
@@ -925,13 +925,6 @@ export declare const editorExperimentsConfig: {
925
925
  typeGuard: (value: unknown) => value is 'control' | 'new-description' | 'orig-description';
926
926
  values: ('control' | 'new-description' | 'orig-description')[];
927
927
  };
928
- cc_fd_cwr_quick_insert: {
929
- defaultValue: 'control' | 'slot-four' | 'slot-two';
930
- param: string;
931
- productKeys?: ProductKeys;
932
- typeGuard: (value: unknown) => value is 'control' | 'slot-four' | 'slot-two';
933
- values: ('control' | 'slot-four' | 'slot-two')[];
934
- };
935
928
  cc_fix_editor_context_on_cwr_followups: {
936
929
  defaultValue: boolean;
937
930
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "142.0.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",