@atlaskit/tmp-editor-statsig 84.3.2 → 84.4.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
|
+
## 84.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`0ded3f82666cb`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0ded3f82666cb) -
|
|
8
|
+
Remove platform_editor_ai_disable_bridge_without_ai experiment gate. The bridge now always
|
|
9
|
+
requires aiExperience and aiStreamingOrchestrator to be present before initializing.
|
|
10
|
+
|
|
3
11
|
## 84.3.2
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -1167,14 +1167,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1167
1167
|
param: 'isEnabled',
|
|
1168
1168
|
defaultValue: false
|
|
1169
1169
|
}),
|
|
1170
|
-
// Added 2026-02-02
|
|
1171
|
-
platform_editor_ai_disable_bridge_without_ai: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1172
|
-
productKeys: {
|
|
1173
|
-
confluence: 'platform_editor_ai_disable_bridge_without_ai'
|
|
1174
|
-
},
|
|
1175
|
-
param: 'isEnabled',
|
|
1176
|
-
defaultValue: false
|
|
1177
|
-
}),
|
|
1178
1170
|
// Added 2026-01-27 - AI create-page expand collapse fix
|
|
1179
1171
|
platform_editor_aifc_expand_collapses_oncreate_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1180
1172
|
productKeys: {
|
|
@@ -1161,14 +1161,6 @@ export const editorExperimentsConfig = {
|
|
|
1161
1161
|
param: 'isEnabled',
|
|
1162
1162
|
defaultValue: false
|
|
1163
1163
|
}),
|
|
1164
|
-
// Added 2026-02-02
|
|
1165
|
-
platform_editor_ai_disable_bridge_without_ai: createBooleanExperiment({
|
|
1166
|
-
productKeys: {
|
|
1167
|
-
confluence: 'platform_editor_ai_disable_bridge_without_ai'
|
|
1168
|
-
},
|
|
1169
|
-
param: 'isEnabled',
|
|
1170
|
-
defaultValue: false
|
|
1171
|
-
}),
|
|
1172
1164
|
// Added 2026-01-27 - AI create-page expand collapse fix
|
|
1173
1165
|
platform_editor_aifc_expand_collapses_oncreate_fix: createBooleanExperiment({
|
|
1174
1166
|
productKeys: {
|
|
@@ -1161,14 +1161,6 @@ export var editorExperimentsConfig = {
|
|
|
1161
1161
|
param: 'isEnabled',
|
|
1162
1162
|
defaultValue: false
|
|
1163
1163
|
}),
|
|
1164
|
-
// Added 2026-02-02
|
|
1165
|
-
platform_editor_ai_disable_bridge_without_ai: createBooleanExperiment({
|
|
1166
|
-
productKeys: {
|
|
1167
|
-
confluence: 'platform_editor_ai_disable_bridge_without_ai'
|
|
1168
|
-
},
|
|
1169
|
-
param: 'isEnabled',
|
|
1170
|
-
defaultValue: false
|
|
1171
|
-
}),
|
|
1172
1164
|
// Added 2026-01-27 - AI create-page expand collapse fix
|
|
1173
1165
|
platform_editor_aifc_expand_collapses_oncreate_fix: createBooleanExperiment({
|
|
1174
1166
|
productKeys: {
|
|
@@ -833,12 +833,6 @@ export declare const editorExperimentsConfig: {
|
|
|
833
833
|
productKeys?: ProductKeys;
|
|
834
834
|
typeGuard: IsBooleanType;
|
|
835
835
|
};
|
|
836
|
-
platform_editor_ai_disable_bridge_without_ai: {
|
|
837
|
-
defaultValue: boolean;
|
|
838
|
-
param: string;
|
|
839
|
-
productKeys?: ProductKeys;
|
|
840
|
-
typeGuard: IsBooleanType;
|
|
841
|
-
};
|
|
842
836
|
platform_editor_aifc_sync_block_stream_fix: {
|
|
843
837
|
defaultValue: boolean;
|
|
844
838
|
param: string;
|
|
@@ -833,12 +833,6 @@ export declare const editorExperimentsConfig: {
|
|
|
833
833
|
productKeys?: ProductKeys;
|
|
834
834
|
typeGuard: IsBooleanType;
|
|
835
835
|
};
|
|
836
|
-
platform_editor_ai_disable_bridge_without_ai: {
|
|
837
|
-
defaultValue: boolean;
|
|
838
|
-
param: string;
|
|
839
|
-
productKeys?: ProductKeys;
|
|
840
|
-
typeGuard: IsBooleanType;
|
|
841
|
-
};
|
|
842
836
|
platform_editor_aifc_sync_block_stream_fix: {
|
|
843
837
|
defaultValue: boolean;
|
|
844
838
|
param: string;
|
package/package.json
CHANGED