@atlaskit/tmp-editor-statsig 82.5.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,30 @@
|
|
|
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
|
+
|
|
15
|
+
## 83.0.0
|
|
16
|
+
|
|
17
|
+
### Major Changes
|
|
18
|
+
|
|
19
|
+
- [`dbe895a6ef5a2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/dbe895a6ef5a2) -
|
|
20
|
+
Remove platform_editor_paste_actions_menu_v2_boolean, we will instead use
|
|
21
|
+
`['hasAltAiActions', 'hasSpellingAndGrammar'].includes(expValNoExposure('platform_editor_paste_actions_menu_v2', 'variant', 'control'))`
|
|
22
|
+
to check if experiments are not in control
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
|
|
3
28
|
## 82.5.0
|
|
4
29
|
|
|
5
30
|
### Minor 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: {
|
|
@@ -2176,14 +2184,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2176
2184
|
values: ['control', 'hasSpellingAndGrammar', 'hasAltAiActions'],
|
|
2177
2185
|
defaultValue: 'control'
|
|
2178
2186
|
}),
|
|
2179
|
-
platform_editor_paste_actions_menu_v2_boolean: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2180
|
-
productKeys: {
|
|
2181
|
-
confluence: 'platform_editor_paste_actions_menu_v2',
|
|
2182
|
-
jira: 'platform_editor_paste_actions_menu_v2'
|
|
2183
|
-
},
|
|
2184
|
-
param: 'isEnabled',
|
|
2185
|
-
defaultValue: false
|
|
2186
|
-
}),
|
|
2187
2187
|
// Added 2026-05-04
|
|
2188
2188
|
platform_editor_show_diff_fix_missing_attrs: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2189
2189
|
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: {
|
|
@@ -2170,14 +2178,6 @@ export const editorExperimentsConfig = {
|
|
|
2170
2178
|
values: ['control', 'hasSpellingAndGrammar', 'hasAltAiActions'],
|
|
2171
2179
|
defaultValue: 'control'
|
|
2172
2180
|
}),
|
|
2173
|
-
platform_editor_paste_actions_menu_v2_boolean: createBooleanExperiment({
|
|
2174
|
-
productKeys: {
|
|
2175
|
-
confluence: 'platform_editor_paste_actions_menu_v2',
|
|
2176
|
-
jira: 'platform_editor_paste_actions_menu_v2'
|
|
2177
|
-
},
|
|
2178
|
-
param: 'isEnabled',
|
|
2179
|
-
defaultValue: false
|
|
2180
|
-
}),
|
|
2181
2181
|
// Added 2026-05-04
|
|
2182
2182
|
platform_editor_show_diff_fix_missing_attrs: createBooleanExperiment({
|
|
2183
2183
|
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: {
|
|
@@ -2170,14 +2178,6 @@ export var editorExperimentsConfig = {
|
|
|
2170
2178
|
values: ['control', 'hasSpellingAndGrammar', 'hasAltAiActions'],
|
|
2171
2179
|
defaultValue: 'control'
|
|
2172
2180
|
}),
|
|
2173
|
-
platform_editor_paste_actions_menu_v2_boolean: createBooleanExperiment({
|
|
2174
|
-
productKeys: {
|
|
2175
|
-
confluence: 'platform_editor_paste_actions_menu_v2',
|
|
2176
|
-
jira: 'platform_editor_paste_actions_menu_v2'
|
|
2177
|
-
},
|
|
2178
|
-
param: 'isEnabled',
|
|
2179
|
-
defaultValue: false
|
|
2180
|
-
}),
|
|
2181
2181
|
// Added 2026-05-04
|
|
2182
2182
|
platform_editor_show_diff_fix_missing_attrs: createBooleanExperiment({
|
|
2183
2183
|
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;
|
|
@@ -1622,12 +1628,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1622
1628
|
typeGuard: (value: unknown) => value is 'control' | 'hasSpellingAndGrammar' | 'hasAltAiActions';
|
|
1623
1629
|
values: ('control' | 'hasSpellingAndGrammar' | 'hasAltAiActions')[];
|
|
1624
1630
|
};
|
|
1625
|
-
platform_editor_paste_actions_menu_v2_boolean: {
|
|
1626
|
-
defaultValue: boolean;
|
|
1627
|
-
param: string;
|
|
1628
|
-
productKeys?: ProductKeys;
|
|
1629
|
-
typeGuard: IsBooleanType;
|
|
1630
|
-
};
|
|
1631
1631
|
'jira-smart-replies-v2': {
|
|
1632
1632
|
defaultValue: boolean;
|
|
1633
1633
|
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;
|
|
@@ -1622,12 +1628,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1622
1628
|
typeGuard: (value: unknown) => value is 'control' | 'hasSpellingAndGrammar' | 'hasAltAiActions';
|
|
1623
1629
|
values: ('control' | 'hasSpellingAndGrammar' | 'hasAltAiActions')[];
|
|
1624
1630
|
};
|
|
1625
|
-
platform_editor_paste_actions_menu_v2_boolean: {
|
|
1626
|
-
defaultValue: boolean;
|
|
1627
|
-
param: string;
|
|
1628
|
-
productKeys?: ProductKeys;
|
|
1629
|
-
typeGuard: IsBooleanType;
|
|
1630
|
-
};
|
|
1631
1631
|
'jira-smart-replies-v2': {
|
|
1632
1632
|
defaultValue: boolean;
|
|
1633
1633
|
param: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tmp-editor-statsig",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "83.1.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",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@atlaskit/feature-gate-js-client": "^5.7.0",
|
|
37
37
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
38
|
-
"@atlaskit/react-ufo": "^6.
|
|
38
|
+
"@atlaskit/react-ufo": "^6.1.0",
|
|
39
39
|
"@babel/runtime": "^7.0.0"
|
|
40
40
|
},
|
|
41
41
|
"platform-feature-flags": {
|