@atlaskit/tmp-editor-statsig 16.30.0 → 16.32.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,22 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 16.32.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`64f281a2f3086`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/64f281a2f3086) -
8
+ Introduces a new fix to adf streaming sanitizer, before it could be too aggressive with the
9
+ patterns of fixing some cases of streaming by escaping characters that it would break key/value
10
+ pairs.
11
+
12
+ ## 16.31.0
13
+
14
+ ### Minor Changes
15
+
16
+ - [`d4d2a325144b8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d4d2a325144b8) -
17
+ [EDITOR-4646](https://hello.jira.atlassian.cloud/browse/EDITOR-4646) - clean up
18
+ platform_editor_stop_width_reflows
19
+
3
20
  ## 16.30.0
4
21
 
5
22
  ### Minor Changes
@@ -48,7 +48,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
48
48
  platform_editor_tables_drag_and_drop: false,
49
49
  platform_editor_tables_table_selector: false,
50
50
  platform_renderer_fix_analytics_memo_callback: false,
51
- platform_editor_stop_width_reflows: false,
52
51
  platform_editor_no_cursor_on_edit_page_init: false,
53
52
  'jira-work-sync-desc-comment-summary': false,
54
53
  platform_editor_breakout_resizing: false,
@@ -420,14 +420,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
420
420
  param: 'isEnabled',
421
421
  defaultValue: false
422
422
  }),
423
- // Added 2025-05-26
424
- platform_editor_stop_width_reflows: (0, _experimentBuilders.createBooleanExperiment)({
425
- productKeys: {
426
- confluence: 'platform_editor_stop_width_reflows'
427
- },
428
- param: 'isEnabled',
429
- defaultValue: false
430
- }),
431
423
  // Added 2025-12-01
432
424
  platform_editor_no_state_plugin_injection_api: (0, _experimentBuilders.createBooleanExperiment)({
433
425
  productKeys: {
@@ -1239,5 +1231,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1239
1231
  },
1240
1232
  param: 'isEnabled',
1241
1233
  defaultValue: false
1234
+ }),
1235
+ // Added 2026-01-26
1236
+ platform_editor_ai_fix_streaming_json_escape: (0, _experimentBuilders.createBooleanExperiment)({
1237
+ productKeys: {
1238
+ confluence: 'platform_editor_ai_fix_streaming_json_escape'
1239
+ },
1240
+ param: 'isEnabled',
1241
+ defaultValue: false
1242
1242
  })
1243
1243
  };
@@ -42,7 +42,6 @@ export const testBooleanOverrides = {
42
42
  platform_editor_tables_drag_and_drop: false,
43
43
  platform_editor_tables_table_selector: false,
44
44
  platform_renderer_fix_analytics_memo_callback: false,
45
- platform_editor_stop_width_reflows: false,
46
45
  platform_editor_no_cursor_on_edit_page_init: false,
47
46
  'jira-work-sync-desc-comment-summary': false,
48
47
  platform_editor_breakout_resizing: false,
@@ -414,14 +414,6 @@ export const editorExperimentsConfig = {
414
414
  param: 'isEnabled',
415
415
  defaultValue: false
416
416
  }),
417
- // Added 2025-05-26
418
- platform_editor_stop_width_reflows: createBooleanExperiment({
419
- productKeys: {
420
- confluence: 'platform_editor_stop_width_reflows'
421
- },
422
- param: 'isEnabled',
423
- defaultValue: false
424
- }),
425
417
  // Added 2025-12-01
426
418
  platform_editor_no_state_plugin_injection_api: createBooleanExperiment({
427
419
  productKeys: {
@@ -1233,5 +1225,13 @@ export const editorExperimentsConfig = {
1233
1225
  },
1234
1226
  param: 'isEnabled',
1235
1227
  defaultValue: false
1228
+ }),
1229
+ // Added 2026-01-26
1230
+ platform_editor_ai_fix_streaming_json_escape: createBooleanExperiment({
1231
+ productKeys: {
1232
+ confluence: 'platform_editor_ai_fix_streaming_json_escape'
1233
+ },
1234
+ param: 'isEnabled',
1235
+ defaultValue: false
1236
1236
  })
1237
1237
  };
@@ -42,7 +42,6 @@ export var testBooleanOverrides = {
42
42
  platform_editor_tables_drag_and_drop: false,
43
43
  platform_editor_tables_table_selector: false,
44
44
  platform_renderer_fix_analytics_memo_callback: false,
45
- platform_editor_stop_width_reflows: false,
46
45
  platform_editor_no_cursor_on_edit_page_init: false,
47
46
  'jira-work-sync-desc-comment-summary': false,
48
47
  platform_editor_breakout_resizing: false,
@@ -414,14 +414,6 @@ export var editorExperimentsConfig = {
414
414
  param: 'isEnabled',
415
415
  defaultValue: false
416
416
  }),
417
- // Added 2025-05-26
418
- platform_editor_stop_width_reflows: createBooleanExperiment({
419
- productKeys: {
420
- confluence: 'platform_editor_stop_width_reflows'
421
- },
422
- param: 'isEnabled',
423
- defaultValue: false
424
- }),
425
417
  // Added 2025-12-01
426
418
  platform_editor_no_state_plugin_injection_api: createBooleanExperiment({
427
419
  productKeys: {
@@ -1233,5 +1225,13 @@ export var editorExperimentsConfig = {
1233
1225
  },
1234
1226
  param: 'isEnabled',
1235
1227
  defaultValue: false
1228
+ }),
1229
+ // Added 2026-01-26
1230
+ platform_editor_ai_fix_streaming_json_escape: createBooleanExperiment({
1231
+ productKeys: {
1232
+ confluence: 'platform_editor_ai_fix_streaming_json_escape'
1233
+ },
1234
+ param: 'isEnabled',
1235
+ defaultValue: false
1236
1236
  })
1237
1237
  };
@@ -614,12 +614,6 @@ export declare const editorExperimentsConfig: {
614
614
  productKeys?: ProductKeys;
615
615
  typeGuard: IsBooleanType;
616
616
  };
617
- platform_editor_stop_width_reflows: {
618
- defaultValue: boolean;
619
- param: string;
620
- productKeys?: ProductKeys;
621
- typeGuard: IsBooleanType;
622
- };
623
617
  platform_editor_table_sticky_header_improvements: {
624
618
  defaultValue: 'control' | 'test_with_overflow' | 'test_without_overflow';
625
619
  param: string;
@@ -914,5 +908,11 @@ export declare const editorExperimentsConfig: {
914
908
  productKeys?: ProductKeys;
915
909
  typeGuard: IsBooleanType;
916
910
  };
911
+ platform_editor_ai_fix_streaming_json_escape: {
912
+ defaultValue: boolean;
913
+ param: string;
914
+ productKeys?: ProductKeys;
915
+ typeGuard: IsBooleanType;
916
+ };
917
917
  };
918
918
  export {};
@@ -614,12 +614,6 @@ export declare const editorExperimentsConfig: {
614
614
  productKeys?: ProductKeys;
615
615
  typeGuard: IsBooleanType;
616
616
  };
617
- platform_editor_stop_width_reflows: {
618
- defaultValue: boolean;
619
- param: string;
620
- productKeys?: ProductKeys;
621
- typeGuard: IsBooleanType;
622
- };
623
617
  platform_editor_table_sticky_header_improvements: {
624
618
  defaultValue: 'control' | 'test_with_overflow' | 'test_without_overflow';
625
619
  param: string;
@@ -914,5 +908,11 @@ export declare const editorExperimentsConfig: {
914
908
  productKeys?: ProductKeys;
915
909
  typeGuard: IsBooleanType;
916
910
  };
911
+ platform_editor_ai_fix_streaming_json_escape: {
912
+ defaultValue: boolean;
913
+ param: string;
914
+ productKeys?: ProductKeys;
915
+ typeGuard: IsBooleanType;
916
+ };
917
917
  };
918
918
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "16.30.0",
3
+ "version": "16.32.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",