@atlaskit/tmp-editor-statsig 83.0.0 → 83.1.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
|
+
## 83.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`96b390b511102`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/96b390b511102) -
|
|
8
|
+
Add the `platform_editor_per_plugin_error_boundary` experiment and use it to isolate editor
|
|
9
|
+
PluginSlot failures to the failing plugin.
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
3
15
|
## 83.0.0
|
|
4
16
|
|
|
5
17
|
### Major Changes
|
|
@@ -309,6 +309,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
309
309
|
param: 'isEnabled',
|
|
310
310
|
defaultValue: false
|
|
311
311
|
}),
|
|
312
|
+
// Added 2026-05-15
|
|
313
|
+
platform_editor_per_plugin_error_boundary: (0, _experimentBuilders.createBooleanExperiment)({
|
|
314
|
+
productKeys: {
|
|
315
|
+
confluence: 'platform_editor_per_plugin_error_boundary'
|
|
316
|
+
},
|
|
317
|
+
param: 'isEnabled',
|
|
318
|
+
defaultValue: false
|
|
319
|
+
}),
|
|
312
320
|
// Added 2024-09-07
|
|
313
321
|
platform_editor_exp_lazy_node_views: (0, _experimentBuilders.createBooleanExperiment)({
|
|
314
322
|
productKeys: {
|
|
@@ -303,6 +303,14 @@ export const editorExperimentsConfig = {
|
|
|
303
303
|
param: 'isEnabled',
|
|
304
304
|
defaultValue: false
|
|
305
305
|
}),
|
|
306
|
+
// Added 2026-05-15
|
|
307
|
+
platform_editor_per_plugin_error_boundary: createBooleanExperiment({
|
|
308
|
+
productKeys: {
|
|
309
|
+
confluence: 'platform_editor_per_plugin_error_boundary'
|
|
310
|
+
},
|
|
311
|
+
param: 'isEnabled',
|
|
312
|
+
defaultValue: false
|
|
313
|
+
}),
|
|
306
314
|
// Added 2024-09-07
|
|
307
315
|
platform_editor_exp_lazy_node_views: createBooleanExperiment({
|
|
308
316
|
productKeys: {
|
|
@@ -303,6 +303,14 @@ export var editorExperimentsConfig = {
|
|
|
303
303
|
param: 'isEnabled',
|
|
304
304
|
defaultValue: false
|
|
305
305
|
}),
|
|
306
|
+
// Added 2026-05-15
|
|
307
|
+
platform_editor_per_plugin_error_boundary: createBooleanExperiment({
|
|
308
|
+
productKeys: {
|
|
309
|
+
confluence: 'platform_editor_per_plugin_error_boundary'
|
|
310
|
+
},
|
|
311
|
+
param: 'isEnabled',
|
|
312
|
+
defaultValue: false
|
|
313
|
+
}),
|
|
306
314
|
// Added 2024-09-07
|
|
307
315
|
platform_editor_exp_lazy_node_views: createBooleanExperiment({
|
|
308
316
|
productKeys: {
|
|
@@ -125,6 +125,12 @@ export declare const editorExperimentsConfig: {
|
|
|
125
125
|
productKeys?: ProductKeys;
|
|
126
126
|
typeGuard: IsBooleanType;
|
|
127
127
|
};
|
|
128
|
+
platform_editor_per_plugin_error_boundary: {
|
|
129
|
+
defaultValue: boolean;
|
|
130
|
+
param: string;
|
|
131
|
+
productKeys?: ProductKeys;
|
|
132
|
+
typeGuard: IsBooleanType;
|
|
133
|
+
};
|
|
128
134
|
cc_editor_interactivity_monitoring: {
|
|
129
135
|
defaultValue: boolean;
|
|
130
136
|
param: string;
|
|
@@ -125,6 +125,12 @@ export declare const editorExperimentsConfig: {
|
|
|
125
125
|
productKeys?: ProductKeys;
|
|
126
126
|
typeGuard: IsBooleanType;
|
|
127
127
|
};
|
|
128
|
+
platform_editor_per_plugin_error_boundary: {
|
|
129
|
+
defaultValue: boolean;
|
|
130
|
+
param: string;
|
|
131
|
+
productKeys?: ProductKeys;
|
|
132
|
+
typeGuard: IsBooleanType;
|
|
133
|
+
};
|
|
128
134
|
cc_editor_interactivity_monitoring: {
|
|
129
135
|
defaultValue: boolean;
|
|
130
136
|
param: string;
|
package/package.json
CHANGED