@atlaskit/tmp-editor-statsig 14.1.0 → 14.1.1
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,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 14.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`41a91a916c125`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/41a91a916c125) -
|
|
8
|
+
EDITOR-2846 Change platform_synced_block to use editorExperiment and add Jira experiment
|
|
9
|
+
|
|
3
10
|
## 14.1.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -810,7 +810,8 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
810
810
|
// Added 2025-08-10
|
|
811
811
|
platform_synced_block: (0, _experimentBuilders.createBooleanExperiment)({
|
|
812
812
|
productKeys: {
|
|
813
|
-
confluence: 'platform_synced_block'
|
|
813
|
+
confluence: 'platform_synced_block',
|
|
814
|
+
jira: 'platform_synced_block_jira'
|
|
814
815
|
},
|
|
815
816
|
param: 'isEnabled',
|
|
816
817
|
defaultValue: false
|
|
@@ -804,7 +804,8 @@ export const editorExperimentsConfig = {
|
|
|
804
804
|
// Added 2025-08-10
|
|
805
805
|
platform_synced_block: createBooleanExperiment({
|
|
806
806
|
productKeys: {
|
|
807
|
-
confluence: 'platform_synced_block'
|
|
807
|
+
confluence: 'platform_synced_block',
|
|
808
|
+
jira: 'platform_synced_block_jira'
|
|
808
809
|
},
|
|
809
810
|
param: 'isEnabled',
|
|
810
811
|
defaultValue: false
|
|
@@ -804,7 +804,8 @@ export var editorExperimentsConfig = {
|
|
|
804
804
|
// Added 2025-08-10
|
|
805
805
|
platform_synced_block: createBooleanExperiment({
|
|
806
806
|
productKeys: {
|
|
807
|
-
confluence: 'platform_synced_block'
|
|
807
|
+
confluence: 'platform_synced_block',
|
|
808
|
+
jira: 'platform_synced_block_jira'
|
|
808
809
|
},
|
|
809
810
|
param: 'isEnabled',
|
|
810
811
|
defaultValue: false
|
package/package.json
CHANGED