@atlaskit/tmp-editor-statsig 142.0.0 → 144.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
+ ## 144.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [`42931028bd815`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/42931028bd815) -
8
+ [FFCLEANUP-138148] clean up experiment `platform_editor_find_and_replace_improvements`
9
+
10
+ ## 143.0.0
11
+
12
+ ### Major Changes
13
+
14
+ - [`8e67cc3c24a39`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8e67cc3c24a39) -
15
+ Remove the concluded Create with Rovo quick-insert experiment and retain its control behavior.
16
+
17
+ This is a breaking API change for `@atlaskit/tmp-editor-statsig` consumers because
18
+ `editorExperimentsConfig.cc_fd_cwr_quick_insert` and the corresponding typed experiment key no
19
+ longer exist.
20
+
21
+ Remove references to `editorExperimentsConfig.cc_fd_cwr_quick_insert` and experiment lookups such
22
+ as:
23
+
24
+ ```ts
25
+ if (expValNoExposure('cc_fd_cwr_quick_insert', 'cohort', 'control') === 'control') {
26
+ return useControlBehavior();
27
+ }
28
+ return useTreatmentBehavior();
29
+ ```
30
+
31
+ There is no replacement experiment. Delete the conditional and use the former control behavior
32
+ directly:
33
+
34
+ ```ts
35
+ return useControlBehavior();
36
+ ```
37
+
3
38
  ## 142.0.0
4
39
 
5
40
  ### 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',
@@ -53,7 +52,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
53
52
  platform_editor_breakout_resizing: false,
54
53
  platform_editor_block_controls_perf_optimization: false,
55
54
  platform_editor_enable_single_player_step_merging: false,
56
- platform_editor_find_and_replace_improvements: false,
57
55
  platform_editor_reduce_noisy_steps_ncs: false,
58
56
  platform_editor_paste_actions_menu: false,
59
57
  platform_editor_table_fit_to_content_on_demand: false,
@@ -751,14 +751,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
751
751
  param: 'isEnabled',
752
752
  defaultValue: false
753
753
  }),
754
- // Added 2025-06-24
755
- platform_editor_find_and_replace_improvements: (0, _experimentBuilders.createBooleanExperiment)({
756
- productKeys: {
757
- confluence: 'platform_editor_find_and_replace_improvements'
758
- },
759
- param: 'isEnabled',
760
- defaultValue: false
761
- }),
762
754
  // Added 2025-06-26
763
755
  platform_editor_feedback_mandatory_rating: (0, _experimentBuilders.createBooleanExperiment)({
764
756
  productKeys: {
@@ -1273,15 +1265,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1273
1265
  values: ['control', 'new-description', 'orig-description'],
1274
1266
  defaultValue: 'control'
1275
1267
  }),
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
1268
  // Added 2026-02-05 - A11Y-10416
1286
1269
  editor_a11y_role_textbox: (0, _experimentBuilders.createBooleanExperiment)({
1287
1270
  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',
@@ -47,7 +46,6 @@ export const testBooleanOverrides = {
47
46
  platform_editor_breakout_resizing: false,
48
47
  platform_editor_block_controls_perf_optimization: false,
49
48
  platform_editor_enable_single_player_step_merging: false,
50
- platform_editor_find_and_replace_improvements: false,
51
49
  platform_editor_reduce_noisy_steps_ncs: false,
52
50
  platform_editor_paste_actions_menu: false,
53
51
  platform_editor_table_fit_to_content_on_demand: false,
@@ -745,14 +745,6 @@ export const editorExperimentsConfig = {
745
745
  param: 'isEnabled',
746
746
  defaultValue: false
747
747
  }),
748
- // Added 2025-06-24
749
- platform_editor_find_and_replace_improvements: createBooleanExperiment({
750
- productKeys: {
751
- confluence: 'platform_editor_find_and_replace_improvements'
752
- },
753
- param: 'isEnabled',
754
- defaultValue: false
755
- }),
756
748
  // Added 2025-06-26
757
749
  platform_editor_feedback_mandatory_rating: createBooleanExperiment({
758
750
  productKeys: {
@@ -1267,15 +1259,6 @@ export const editorExperimentsConfig = {
1267
1259
  values: ['control', 'new-description', 'orig-description'],
1268
1260
  defaultValue: 'control'
1269
1261
  }),
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
1262
  // Added 2026-02-05 - A11Y-10416
1280
1263
  editor_a11y_role_textbox: createBooleanExperiment({
1281
1264
  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',
@@ -47,7 +46,6 @@ export var testBooleanOverrides = {
47
46
  platform_editor_breakout_resizing: false,
48
47
  platform_editor_block_controls_perf_optimization: false,
49
48
  platform_editor_enable_single_player_step_merging: false,
50
- platform_editor_find_and_replace_improvements: false,
51
49
  platform_editor_reduce_noisy_steps_ncs: false,
52
50
  platform_editor_paste_actions_menu: false,
53
51
  platform_editor_table_fit_to_content_on_demand: false,
@@ -745,14 +745,6 @@ export var editorExperimentsConfig = {
745
745
  param: 'isEnabled',
746
746
  defaultValue: false
747
747
  }),
748
- // Added 2025-06-24
749
- platform_editor_find_and_replace_improvements: createBooleanExperiment({
750
- productKeys: {
751
- confluence: 'platform_editor_find_and_replace_improvements'
752
- },
753
- param: 'isEnabled',
754
- defaultValue: false
755
- }),
756
748
  // Added 2025-06-26
757
749
  platform_editor_feedback_mandatory_rating: createBooleanExperiment({
758
750
  productKeys: {
@@ -1267,15 +1259,6 @@ export var editorExperimentsConfig = {
1267
1259
  values: ['control', 'new-description', 'orig-description'],
1268
1260
  defaultValue: 'control'
1269
1261
  }),
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
1262
  // Added 2026-02-05 - A11Y-10416
1280
1263
  editor_a11y_role_textbox: createBooleanExperiment({
1281
1264
  productKeys: {
@@ -538,12 +538,6 @@ export declare const editorExperimentsConfig: {
538
538
  productKeys?: ProductKeys;
539
539
  typeGuard: IsBooleanType;
540
540
  };
541
- platform_editor_find_and_replace_improvements: {
542
- defaultValue: boolean;
543
- param: string;
544
- productKeys?: ProductKeys;
545
- typeGuard: IsBooleanType;
546
- };
547
541
  platform_editor_inline_card_dispatch_guard: {
548
542
  defaultValue: boolean;
549
543
  param: string;
@@ -925,13 +919,6 @@ export declare const editorExperimentsConfig: {
925
919
  typeGuard: (value: unknown) => value is 'control' | 'new-description' | 'orig-description';
926
920
  values: ('control' | 'new-description' | 'orig-description')[];
927
921
  };
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
922
  cc_fix_editor_context_on_cwr_followups: {
936
923
  defaultValue: boolean;
937
924
  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": "144.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",