@atlaskit/tmp-editor-statsig 52.2.0 → 53.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,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 53.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`93ba2d2f0eb22`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/93ba2d2f0eb22) -
|
|
8
|
+
Clean up experiment flag platform_editor_ai_fix_streaming_json_escape and to fix JSON escape on
|
|
9
|
+
the streaming parser for URL and path values
|
|
10
|
+
|
|
3
11
|
## 52.2.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -1244,14 +1244,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1244
1244
|
param: 'isEnabled',
|
|
1245
1245
|
defaultValue: false
|
|
1246
1246
|
}),
|
|
1247
|
-
// Added 2026-01-26
|
|
1248
|
-
platform_editor_ai_fix_streaming_json_escape: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1249
|
-
productKeys: {
|
|
1250
|
-
confluence: 'platform_editor_ai_fix_streaming_json_escape'
|
|
1251
|
-
},
|
|
1252
|
-
param: 'isEnabled',
|
|
1253
|
-
defaultValue: false
|
|
1254
|
-
}),
|
|
1255
1247
|
// Added 2026-02-18
|
|
1256
1248
|
platform_editor_table_a11y_eslint_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1257
1249
|
productKeys: {
|
|
@@ -1238,14 +1238,6 @@ export const editorExperimentsConfig = {
|
|
|
1238
1238
|
param: 'isEnabled',
|
|
1239
1239
|
defaultValue: false
|
|
1240
1240
|
}),
|
|
1241
|
-
// Added 2026-01-26
|
|
1242
|
-
platform_editor_ai_fix_streaming_json_escape: createBooleanExperiment({
|
|
1243
|
-
productKeys: {
|
|
1244
|
-
confluence: 'platform_editor_ai_fix_streaming_json_escape'
|
|
1245
|
-
},
|
|
1246
|
-
param: 'isEnabled',
|
|
1247
|
-
defaultValue: false
|
|
1248
|
-
}),
|
|
1249
1241
|
// Added 2026-02-18
|
|
1250
1242
|
platform_editor_table_a11y_eslint_fix: createBooleanExperiment({
|
|
1251
1243
|
productKeys: {
|
|
@@ -1238,14 +1238,6 @@ export var editorExperimentsConfig = {
|
|
|
1238
1238
|
param: 'isEnabled',
|
|
1239
1239
|
defaultValue: false
|
|
1240
1240
|
}),
|
|
1241
|
-
// Added 2026-01-26
|
|
1242
|
-
platform_editor_ai_fix_streaming_json_escape: createBooleanExperiment({
|
|
1243
|
-
productKeys: {
|
|
1244
|
-
confluence: 'platform_editor_ai_fix_streaming_json_escape'
|
|
1245
|
-
},
|
|
1246
|
-
param: 'isEnabled',
|
|
1247
|
-
defaultValue: false
|
|
1248
|
-
}),
|
|
1249
1241
|
// Added 2026-02-18
|
|
1250
1242
|
platform_editor_table_a11y_eslint_fix: createBooleanExperiment({
|
|
1251
1243
|
productKeys: {
|
|
@@ -917,12 +917,6 @@ export declare const editorExperimentsConfig: {
|
|
|
917
917
|
productKeys?: ProductKeys;
|
|
918
918
|
typeGuard: IsBooleanType;
|
|
919
919
|
};
|
|
920
|
-
platform_editor_ai_fix_streaming_json_escape: {
|
|
921
|
-
defaultValue: boolean;
|
|
922
|
-
param: string;
|
|
923
|
-
productKeys?: ProductKeys;
|
|
924
|
-
typeGuard: IsBooleanType;
|
|
925
|
-
};
|
|
926
920
|
platform_editor_renderer_toolbar_updates: {
|
|
927
921
|
defaultValue: boolean;
|
|
928
922
|
param: string;
|
|
@@ -917,12 +917,6 @@ export declare const editorExperimentsConfig: {
|
|
|
917
917
|
productKeys?: ProductKeys;
|
|
918
918
|
typeGuard: IsBooleanType;
|
|
919
919
|
};
|
|
920
|
-
platform_editor_ai_fix_streaming_json_escape: {
|
|
921
|
-
defaultValue: boolean;
|
|
922
|
-
param: string;
|
|
923
|
-
productKeys?: ProductKeys;
|
|
924
|
-
typeGuard: IsBooleanType;
|
|
925
|
-
};
|
|
926
920
|
platform_editor_renderer_toolbar_updates: {
|
|
927
921
|
defaultValue: boolean;
|
|
928
922
|
param: string;
|
package/package.json
CHANGED