@atlaskit/tmp-editor-statsig 16.34.0 → 16.36.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,20 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 16.36.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`7726e6522167d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7726e6522167d) -
8
+ Implemented a bypass for the grace period to allow reconnection when the catchup call is skipped
9
+ following a socket disconnect in the collab-provider.
10
+
11
+ ## 16.35.0
12
+
13
+ ### Minor Changes
14
+
15
+ - [`e4a01f3fe5601`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e4a01f3fe5601) -
16
+ Uses the new parser only on creation in the bridge to fix some issues caused by the old parser.
17
+
3
18
  ## 16.34.0
4
19
 
5
20
  ### Minor Changes
@@ -142,6 +142,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
142
142
  param: 'isEnabled',
143
143
  defaultValue: false
144
144
  }),
145
+ // Added 2026-01-26
146
+ platform_editor_ai_create_use_new_parser: (0, _experimentBuilders.createBooleanExperiment)({
147
+ productKeys: {
148
+ confluence: 'platform_editor_ai_create_use_new_parser'
149
+ },
150
+ param: 'isEnabled',
151
+ defaultValue: false
152
+ }),
145
153
  // Added 2025-05-27
146
154
  platform_editor_reduce_noisy_steps_ncs: (0, _experimentBuilders.createBooleanExperiment)({
147
155
  productKeys: {
@@ -1220,5 +1228,12 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1220
1228
  },
1221
1229
  param: 'isEnabled',
1222
1230
  defaultValue: false
1231
+ }),
1232
+ confluence_inline_insert_excerpt_width_bugfix: (0, _experimentBuilders.createBooleanExperiment)({
1233
+ productKeys: {
1234
+ confluence: 'confluence_inline_insert_excerpt_width_bugfix'
1235
+ },
1236
+ param: 'isEnabled',
1237
+ defaultValue: false
1223
1238
  })
1224
1239
  };
@@ -136,6 +136,14 @@ export const editorExperimentsConfig = {
136
136
  param: 'isEnabled',
137
137
  defaultValue: false
138
138
  }),
139
+ // Added 2026-01-26
140
+ platform_editor_ai_create_use_new_parser: createBooleanExperiment({
141
+ productKeys: {
142
+ confluence: 'platform_editor_ai_create_use_new_parser'
143
+ },
144
+ param: 'isEnabled',
145
+ defaultValue: false
146
+ }),
139
147
  // Added 2025-05-27
140
148
  platform_editor_reduce_noisy_steps_ncs: createBooleanExperiment({
141
149
  productKeys: {
@@ -1214,5 +1222,12 @@ export const editorExperimentsConfig = {
1214
1222
  },
1215
1223
  param: 'isEnabled',
1216
1224
  defaultValue: false
1225
+ }),
1226
+ confluence_inline_insert_excerpt_width_bugfix: createBooleanExperiment({
1227
+ productKeys: {
1228
+ confluence: 'confluence_inline_insert_excerpt_width_bugfix'
1229
+ },
1230
+ param: 'isEnabled',
1231
+ defaultValue: false
1217
1232
  })
1218
1233
  };
@@ -136,6 +136,14 @@ export var editorExperimentsConfig = {
136
136
  param: 'isEnabled',
137
137
  defaultValue: false
138
138
  }),
139
+ // Added 2026-01-26
140
+ platform_editor_ai_create_use_new_parser: createBooleanExperiment({
141
+ productKeys: {
142
+ confluence: 'platform_editor_ai_create_use_new_parser'
143
+ },
144
+ param: 'isEnabled',
145
+ defaultValue: false
146
+ }),
139
147
  // Added 2025-05-27
140
148
  platform_editor_reduce_noisy_steps_ncs: createBooleanExperiment({
141
149
  productKeys: {
@@ -1214,5 +1222,12 @@ export var editorExperimentsConfig = {
1214
1222
  },
1215
1223
  param: 'isEnabled',
1216
1224
  defaultValue: false
1225
+ }),
1226
+ confluence_inline_insert_excerpt_width_bugfix: createBooleanExperiment({
1227
+ productKeys: {
1228
+ confluence: 'confluence_inline_insert_excerpt_width_bugfix'
1229
+ },
1230
+ param: 'isEnabled',
1231
+ defaultValue: false
1217
1232
  })
1218
1233
  };
@@ -250,6 +250,12 @@ export declare const editorExperimentsConfig: {
250
250
  productKeys?: ProductKeys;
251
251
  typeGuard: IsBooleanType;
252
252
  };
253
+ platform_editor_ai_create_use_new_parser: {
254
+ defaultValue: boolean;
255
+ param: string;
256
+ productKeys?: ProductKeys;
257
+ typeGuard: IsBooleanType;
258
+ };
253
259
  platform_editor_august_a11y: {
254
260
  defaultValue: boolean;
255
261
  param: string;
@@ -900,5 +906,11 @@ export declare const editorExperimentsConfig: {
900
906
  productKeys?: ProductKeys;
901
907
  typeGuard: IsBooleanType;
902
908
  };
909
+ confluence_inline_insert_excerpt_width_bugfix: {
910
+ defaultValue: boolean;
911
+ param: string;
912
+ productKeys?: ProductKeys;
913
+ typeGuard: IsBooleanType;
914
+ };
903
915
  };
904
916
  export {};
@@ -250,6 +250,12 @@ export declare const editorExperimentsConfig: {
250
250
  productKeys?: ProductKeys;
251
251
  typeGuard: IsBooleanType;
252
252
  };
253
+ platform_editor_ai_create_use_new_parser: {
254
+ defaultValue: boolean;
255
+ param: string;
256
+ productKeys?: ProductKeys;
257
+ typeGuard: IsBooleanType;
258
+ };
253
259
  platform_editor_august_a11y: {
254
260
  defaultValue: boolean;
255
261
  param: string;
@@ -900,5 +906,11 @@ export declare const editorExperimentsConfig: {
900
906
  productKeys?: ProductKeys;
901
907
  typeGuard: IsBooleanType;
902
908
  };
909
+ confluence_inline_insert_excerpt_width_bugfix: {
910
+ defaultValue: boolean;
911
+ param: string;
912
+ productKeys?: ProductKeys;
913
+ typeGuard: IsBooleanType;
914
+ };
903
915
  };
904
916
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "16.34.0",
3
+ "version": "16.36.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",
@@ -14,7 +14,7 @@
14
14
  "category": "Components"
15
15
  },
16
16
  "prTasks": [
17
- "New experiments added to tmp-editor-statsig configuration have been marked as a MINOR change",
17
+ "New experiments added to the tmp-editor-statsig configuration have been marked as a MINOR change OR any cleanup/removal of experiments has been marked as a MAJOR change",
18
18
  "I updated the table on https://hello.atlassian.net/wiki/spaces/EDITOR/pages/5257593537/Libra+testing+FG+override+expectations, tested my changes, and confirm that adding/removing the override is safe"
19
19
  ]
20
20
  },