@atlaskit/tmp-editor-statsig 16.31.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,14 @@
|
|
|
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
|
+
|
|
3
12
|
## 16.31.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
|
@@ -1231,5 +1231,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1231
1231
|
},
|
|
1232
1232
|
param: 'isEnabled',
|
|
1233
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
|
|
1234
1242
|
})
|
|
1235
1243
|
};
|
|
@@ -1225,5 +1225,13 @@ export const editorExperimentsConfig = {
|
|
|
1225
1225
|
},
|
|
1226
1226
|
param: 'isEnabled',
|
|
1227
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
|
|
1228
1236
|
})
|
|
1229
1237
|
};
|
|
@@ -1225,5 +1225,13 @@ export var editorExperimentsConfig = {
|
|
|
1225
1225
|
},
|
|
1226
1226
|
param: 'isEnabled',
|
|
1227
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
|
|
1228
1236
|
})
|
|
1229
1237
|
};
|
|
@@ -908,5 +908,11 @@ export declare const editorExperimentsConfig: {
|
|
|
908
908
|
productKeys?: ProductKeys;
|
|
909
909
|
typeGuard: IsBooleanType;
|
|
910
910
|
};
|
|
911
|
+
platform_editor_ai_fix_streaming_json_escape: {
|
|
912
|
+
defaultValue: boolean;
|
|
913
|
+
param: string;
|
|
914
|
+
productKeys?: ProductKeys;
|
|
915
|
+
typeGuard: IsBooleanType;
|
|
916
|
+
};
|
|
911
917
|
};
|
|
912
918
|
export {};
|
|
@@ -908,5 +908,11 @@ export declare const editorExperimentsConfig: {
|
|
|
908
908
|
productKeys?: ProductKeys;
|
|
909
909
|
typeGuard: IsBooleanType;
|
|
910
910
|
};
|
|
911
|
+
platform_editor_ai_fix_streaming_json_escape: {
|
|
912
|
+
defaultValue: boolean;
|
|
913
|
+
param: string;
|
|
914
|
+
productKeys?: ProductKeys;
|
|
915
|
+
typeGuard: IsBooleanType;
|
|
916
|
+
};
|
|
911
917
|
};
|
|
912
918
|
export {};
|
package/package.json
CHANGED