@atlaskit/tmp-editor-statsig 148.1.0 → 149.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,27 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 149.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`76e9f6152bf16`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/76e9f6152bf16) -
|
|
8
|
+
Enable launched synced block integrations and remove obsolete experiment scaffolding.
|
|
9
|
+
|
|
10
|
+
BREAKING: `@atlaskit/tmp-editor-statsig` no longer defines the `platform_synced_block` editor
|
|
11
|
+
experiment. Consumers that use `editorExperiment('platform_synced_block', ...)` to conditionally
|
|
12
|
+
enable synced-block integrations will no longer be able to look up that experiment; synced-block
|
|
13
|
+
integrations are now enabled by default. Remove each lookup and its conditional branch:
|
|
14
|
+
|
|
15
|
+
```ts
|
|
16
|
+
// Before
|
|
17
|
+
if (editorExperiment('platform_synced_block', true)) {
|
|
18
|
+
enableSyncedBlocks();
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
// After
|
|
22
|
+
enableSyncedBlocks();
|
|
23
|
+
```
|
|
24
|
+
|
|
3
25
|
## 148.1.0
|
|
4
26
|
|
|
5
27
|
### Minor Changes
|
|
@@ -14,7 +14,7 @@ var _createMultivariateExperiment = require("./create-multivariate-experiment");
|
|
|
14
14
|
|
|
15
15
|
// These experiments have a jira-specific key that differs from the experiment name,
|
|
16
16
|
// so they must opt out of product-key routing to avoid sending the wrong key on jira.
|
|
17
|
-
var disallowsProductKeys = exports.disallowsProductKeys = ['platform_editor_block_menu', 'platform_editor_blocks', 'platform_editor_controls', 'platform_editor_preview_panel_linking_exp', '
|
|
17
|
+
var disallowsProductKeys = exports.disallowsProductKeys = ['platform_editor_block_menu', 'platform_editor_blocks', 'platform_editor_controls', 'platform_editor_preview_panel_linking_exp', 'platform_editor_static_css', 'advanced_layouts', 'single_column_layouts', 'platform_editor_preview_panel_responsiveness', 'platform_editor_toolbar_aifc', 'comment_on_bodied_extensions'];
|
|
18
18
|
|
|
19
19
|
/**
|
|
20
20
|
* Extract valid expected values.
|
|
@@ -873,15 +873,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
873
873
|
param: 'isEnabled',
|
|
874
874
|
defaultValue: false
|
|
875
875
|
}),
|
|
876
|
-
// Added 2025-08-10
|
|
877
|
-
platform_synced_block: (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
878
|
-
productKeys: {
|
|
879
|
-
confluence: 'platform_synced_block',
|
|
880
|
-
jira: 'platform_synced_block_jira'
|
|
881
|
-
},
|
|
882
|
-
param: 'isEnabled',
|
|
883
|
-
defaultValue: false
|
|
884
|
-
}),
|
|
885
876
|
// Added 2025-08-18
|
|
886
877
|
platform_editor_locale_datepicker: (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
887
878
|
productKeys: {
|
|
@@ -8,7 +8,7 @@ import { createMultivariateExperiment } from './create-multivariate-experiment';
|
|
|
8
8
|
|
|
9
9
|
// These experiments have a jira-specific key that differs from the experiment name,
|
|
10
10
|
// so they must opt out of product-key routing to avoid sending the wrong key on jira.
|
|
11
|
-
export const disallowsProductKeys = ['platform_editor_block_menu', 'platform_editor_blocks', 'platform_editor_controls', 'platform_editor_preview_panel_linking_exp', '
|
|
11
|
+
export const disallowsProductKeys = ['platform_editor_block_menu', 'platform_editor_blocks', 'platform_editor_controls', 'platform_editor_preview_panel_linking_exp', 'platform_editor_static_css', 'advanced_layouts', 'single_column_layouts', 'platform_editor_preview_panel_responsiveness', 'platform_editor_toolbar_aifc', 'comment_on_bodied_extensions'];
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* Extract valid expected values.
|
|
@@ -867,15 +867,6 @@ export const editorExperimentsConfig = {
|
|
|
867
867
|
param: 'isEnabled',
|
|
868
868
|
defaultValue: false
|
|
869
869
|
}),
|
|
870
|
-
// Added 2025-08-10
|
|
871
|
-
platform_synced_block: createBooleanExperiment({
|
|
872
|
-
productKeys: {
|
|
873
|
-
confluence: 'platform_synced_block',
|
|
874
|
-
jira: 'platform_synced_block_jira'
|
|
875
|
-
},
|
|
876
|
-
param: 'isEnabled',
|
|
877
|
-
defaultValue: false
|
|
878
|
-
}),
|
|
879
870
|
// Added 2025-08-18
|
|
880
871
|
platform_editor_locale_datepicker: createBooleanExperiment({
|
|
881
872
|
productKeys: {
|
|
@@ -8,7 +8,7 @@ import { createMultivariateExperiment } from './create-multivariate-experiment';
|
|
|
8
8
|
|
|
9
9
|
// These experiments have a jira-specific key that differs from the experiment name,
|
|
10
10
|
// so they must opt out of product-key routing to avoid sending the wrong key on jira.
|
|
11
|
-
export var disallowsProductKeys = ['platform_editor_block_menu', 'platform_editor_blocks', 'platform_editor_controls', 'platform_editor_preview_panel_linking_exp', '
|
|
11
|
+
export var disallowsProductKeys = ['platform_editor_block_menu', 'platform_editor_blocks', 'platform_editor_controls', 'platform_editor_preview_panel_linking_exp', 'platform_editor_static_css', 'advanced_layouts', 'single_column_layouts', 'platform_editor_preview_panel_responsiveness', 'platform_editor_toolbar_aifc', 'comment_on_bodied_extensions'];
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* Extract valid expected values.
|
|
@@ -867,15 +867,6 @@ export var editorExperimentsConfig = {
|
|
|
867
867
|
param: 'isEnabled',
|
|
868
868
|
defaultValue: false
|
|
869
869
|
}),
|
|
870
|
-
// Added 2025-08-10
|
|
871
|
-
platform_synced_block: createBooleanExperiment({
|
|
872
|
-
productKeys: {
|
|
873
|
-
confluence: 'platform_synced_block',
|
|
874
|
-
jira: 'platform_synced_block_jira'
|
|
875
|
-
},
|
|
876
|
-
param: 'isEnabled',
|
|
877
|
-
defaultValue: false
|
|
878
|
-
}),
|
|
879
870
|
// Added 2025-08-18
|
|
880
871
|
platform_editor_locale_datepicker: createBooleanExperiment({
|
|
881
872
|
productKeys: {
|
|
@@ -792,12 +792,6 @@ export declare const editorExperimentsConfig: {
|
|
|
792
792
|
productKeys?: ProductKeys;
|
|
793
793
|
typeGuard: IsBooleanType;
|
|
794
794
|
};
|
|
795
|
-
platform_synced_block: {
|
|
796
|
-
defaultValue: boolean;
|
|
797
|
-
param: string;
|
|
798
|
-
productKeys?: ProductKeys;
|
|
799
|
-
typeGuard: IsBooleanType;
|
|
800
|
-
};
|
|
801
795
|
platform_editor_sync_block_activation: {
|
|
802
796
|
defaultValue: boolean;
|
|
803
797
|
param: string;
|
package/package.json
CHANGED