@atlaskit/tmp-editor-statsig 29.7.0 → 30.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,17 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 30.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [`bd1a52462d558`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bd1a52462d558) -
8
+ Remove `platform_editor_ai_create_use_new_parser` experiment a it is fully rolled out.
9
+
10
+ ### Minor Changes
11
+
12
+ - [`3ce77a10a8e99`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3ce77a10a8e99) -
13
+ EDITOR-5521 - escape early for unhealthy editor AIFC streaming fragment
14
+
3
15
  ## 29.7.0
4
16
 
5
17
  ### Minor Changes
@@ -165,14 +165,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
165
165
  param: 'isEnabled',
166
166
  defaultValue: false
167
167
  }),
168
- // Added 2026-01-26
169
- platform_editor_ai_create_use_new_parser: (0, _experimentBuilders.createBooleanExperiment)({
170
- productKeys: {
171
- confluence: 'platform_editor_ai_create_use_new_parser'
172
- },
173
- param: 'isEnabled',
174
- defaultValue: false
175
- }),
176
168
  // Added 2025-05-27
177
169
  platform_editor_reduce_noisy_steps_ncs: (0, _experimentBuilders.createBooleanExperiment)({
178
170
  productKeys: {
@@ -841,6 +833,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
841
833
  param: 'isEnabled',
842
834
  defaultValue: false
843
835
  }),
836
+ // Added 2026-02-25
837
+ platform_editor_ai_escape_early_for_unhealthy_node: (0, _experimentBuilders.createBooleanExperiment)({
838
+ productKeys: {
839
+ confluence: 'platform_editor_ai_escape_early_for_unhealthy_node'
840
+ },
841
+ param: 'isEnabled',
842
+ defaultValue: false
843
+ }),
844
844
  // Added 2025-12-04
845
845
  confluence_compact_text_format: (0, _experimentBuilders.createBooleanExperiment)({
846
846
  productKeys: {
@@ -159,14 +159,6 @@ export const editorExperimentsConfig = {
159
159
  param: 'isEnabled',
160
160
  defaultValue: false
161
161
  }),
162
- // Added 2026-01-26
163
- platform_editor_ai_create_use_new_parser: createBooleanExperiment({
164
- productKeys: {
165
- confluence: 'platform_editor_ai_create_use_new_parser'
166
- },
167
- param: 'isEnabled',
168
- defaultValue: false
169
- }),
170
162
  // Added 2025-05-27
171
163
  platform_editor_reduce_noisy_steps_ncs: createBooleanExperiment({
172
164
  productKeys: {
@@ -835,6 +827,14 @@ export const editorExperimentsConfig = {
835
827
  param: 'isEnabled',
836
828
  defaultValue: false
837
829
  }),
830
+ // Added 2026-02-25
831
+ platform_editor_ai_escape_early_for_unhealthy_node: createBooleanExperiment({
832
+ productKeys: {
833
+ confluence: 'platform_editor_ai_escape_early_for_unhealthy_node'
834
+ },
835
+ param: 'isEnabled',
836
+ defaultValue: false
837
+ }),
838
838
  // Added 2025-12-04
839
839
  confluence_compact_text_format: createBooleanExperiment({
840
840
  productKeys: {
@@ -159,14 +159,6 @@ export var editorExperimentsConfig = {
159
159
  param: 'isEnabled',
160
160
  defaultValue: false
161
161
  }),
162
- // Added 2026-01-26
163
- platform_editor_ai_create_use_new_parser: createBooleanExperiment({
164
- productKeys: {
165
- confluence: 'platform_editor_ai_create_use_new_parser'
166
- },
167
- param: 'isEnabled',
168
- defaultValue: false
169
- }),
170
162
  // Added 2025-05-27
171
163
  platform_editor_reduce_noisy_steps_ncs: createBooleanExperiment({
172
164
  productKeys: {
@@ -835,6 +827,14 @@ export var editorExperimentsConfig = {
835
827
  param: 'isEnabled',
836
828
  defaultValue: false
837
829
  }),
830
+ // Added 2026-02-25
831
+ platform_editor_ai_escape_early_for_unhealthy_node: createBooleanExperiment({
832
+ productKeys: {
833
+ confluence: 'platform_editor_ai_escape_early_for_unhealthy_node'
834
+ },
835
+ param: 'isEnabled',
836
+ defaultValue: false
837
+ }),
838
838
  // Added 2025-12-04
839
839
  confluence_compact_text_format: createBooleanExperiment({
840
840
  productKeys: {
@@ -124,6 +124,12 @@ export declare const editorExperimentsConfig: {
124
124
  productKeys?: ProductKeys;
125
125
  typeGuard: IsBooleanType;
126
126
  };
127
+ platform_editor_ai_escape_early_for_unhealthy_node: {
128
+ defaultValue: boolean;
129
+ param: string;
130
+ productKeys?: ProductKeys;
131
+ typeGuard: IsBooleanType;
132
+ };
127
133
  platform_editor_prosemirror_rendered_data: {
128
134
  defaultValue: boolean;
129
135
  param: string;
@@ -294,12 +300,6 @@ export declare const editorExperimentsConfig: {
294
300
  productKeys?: ProductKeys;
295
301
  typeGuard: IsBooleanType;
296
302
  };
297
- platform_editor_ai_create_use_new_parser: {
298
- defaultValue: boolean;
299
- param: string;
300
- productKeys?: ProductKeys;
301
- typeGuard: IsBooleanType;
302
- };
303
303
  platform_editor_august_a11y: {
304
304
  defaultValue: boolean;
305
305
  param: string;
@@ -124,6 +124,12 @@ export declare const editorExperimentsConfig: {
124
124
  productKeys?: ProductKeys;
125
125
  typeGuard: IsBooleanType;
126
126
  };
127
+ platform_editor_ai_escape_early_for_unhealthy_node: {
128
+ defaultValue: boolean;
129
+ param: string;
130
+ productKeys?: ProductKeys;
131
+ typeGuard: IsBooleanType;
132
+ };
127
133
  platform_editor_prosemirror_rendered_data: {
128
134
  defaultValue: boolean;
129
135
  param: string;
@@ -294,12 +300,6 @@ export declare const editorExperimentsConfig: {
294
300
  productKeys?: ProductKeys;
295
301
  typeGuard: IsBooleanType;
296
302
  };
297
- platform_editor_ai_create_use_new_parser: {
298
- defaultValue: boolean;
299
- param: string;
300
- productKeys?: ProductKeys;
301
- typeGuard: IsBooleanType;
302
- };
303
303
  platform_editor_august_a11y: {
304
304
  defaultValue: boolean;
305
305
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "29.7.0",
3
+ "version": "30.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",