@atlaskit/tmp-editor-statsig 108.4.0 → 109.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,24 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 109.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [`49f682f5edc7b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/49f682f5edc7b) -
8
+ Clean up experiment `cc_editor_ttvc_media_hold_fix`
9
+
10
+ ### Minor Changes
11
+
12
+ - [`c3f49a97737db`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c3f49a97737db) -
13
+ Generate localIds for nodes inserted when a template replaces the whole document (e.g. applying a
14
+ template to a blank page), gated behind the experiment `platform_editor_ai_template_localids`.
15
+
16
+ Such replacements are delivered by NCS as a remote `OverrideDocumentStep`, which has no `slice`
17
+ and so was skipped by the localId plugin's slice-based scan. When the experiment is enabled,
18
+ remote transactions containing an `OverrideDocumentStep` are now processed so the freshly inserted
19
+ template nodes receive localIds. Ordinary remote collaborator edits remain skipped, and nodes that
20
+ already have a localId are never overwritten.
21
+
3
22
  ## 108.4.0
4
23
 
5
24
  ### Minor Changes
@@ -1600,13 +1600,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1600
1600
  param: 'isEnabled',
1601
1601
  defaultValue: false
1602
1602
  }),
1603
- cc_editor_ttvc_media_hold_fix: (0, _experimentBuilders.createBooleanExperiment)({
1604
- productKeys: {
1605
- confluence: 'cc_editor_ttvc_media_hold_fix'
1606
- },
1607
- param: 'isEnabled',
1608
- defaultValue: false
1609
- }),
1610
1603
  // Added 2026-03-06
1611
1604
  platform_editor_single_player_expand: (0, _experimentBuilders.createBooleanExperiment)({
1612
1605
  productKeys: {
@@ -2052,6 +2045,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
2052
2045
  param: 'isEnabled',
2053
2046
  defaultValue: false
2054
2047
  }),
2048
+ // Added 2026-06-17
2049
+ platform_editor_ai_template_localids: (0, _experimentBuilders.createBooleanExperiment)({
2050
+ productKeys: {
2051
+ confluence: 'platform_editor_ai_template_localids'
2052
+ },
2053
+ param: 'isEnabled',
2054
+ defaultValue: false
2055
+ }),
2055
2056
  // Added 2026-05-20
2056
2057
  platform_editor_ai_tablecell_localids: (0, _experimentBuilders.createBooleanExperiment)({
2057
2058
  productKeys: {
@@ -1594,13 +1594,6 @@ export const editorExperimentsConfig = {
1594
1594
  param: 'isEnabled',
1595
1595
  defaultValue: false
1596
1596
  }),
1597
- cc_editor_ttvc_media_hold_fix: createBooleanExperiment({
1598
- productKeys: {
1599
- confluence: 'cc_editor_ttvc_media_hold_fix'
1600
- },
1601
- param: 'isEnabled',
1602
- defaultValue: false
1603
- }),
1604
1597
  // Added 2026-03-06
1605
1598
  platform_editor_single_player_expand: createBooleanExperiment({
1606
1599
  productKeys: {
@@ -2046,6 +2039,14 @@ export const editorExperimentsConfig = {
2046
2039
  param: 'isEnabled',
2047
2040
  defaultValue: false
2048
2041
  }),
2042
+ // Added 2026-06-17
2043
+ platform_editor_ai_template_localids: createBooleanExperiment({
2044
+ productKeys: {
2045
+ confluence: 'platform_editor_ai_template_localids'
2046
+ },
2047
+ param: 'isEnabled',
2048
+ defaultValue: false
2049
+ }),
2049
2050
  // Added 2026-05-20
2050
2051
  platform_editor_ai_tablecell_localids: createBooleanExperiment({
2051
2052
  productKeys: {
@@ -1594,13 +1594,6 @@ export var editorExperimentsConfig = {
1594
1594
  param: 'isEnabled',
1595
1595
  defaultValue: false
1596
1596
  }),
1597
- cc_editor_ttvc_media_hold_fix: createBooleanExperiment({
1598
- productKeys: {
1599
- confluence: 'cc_editor_ttvc_media_hold_fix'
1600
- },
1601
- param: 'isEnabled',
1602
- defaultValue: false
1603
- }),
1604
1597
  // Added 2026-03-06
1605
1598
  platform_editor_single_player_expand: createBooleanExperiment({
1606
1599
  productKeys: {
@@ -2046,6 +2039,14 @@ export var editorExperimentsConfig = {
2046
2039
  param: 'isEnabled',
2047
2040
  defaultValue: false
2048
2041
  }),
2042
+ // Added 2026-06-17
2043
+ platform_editor_ai_template_localids: createBooleanExperiment({
2044
+ productKeys: {
2045
+ confluence: 'platform_editor_ai_template_localids'
2046
+ },
2047
+ param: 'isEnabled',
2048
+ defaultValue: false
2049
+ }),
2049
2050
  // Added 2026-05-20
2050
2051
  platform_editor_ai_tablecell_localids: createBooleanExperiment({
2051
2052
  productKeys: {
@@ -1238,12 +1238,6 @@ export declare const editorExperimentsConfig: {
1238
1238
  productKeys?: ProductKeys;
1239
1239
  typeGuard: IsBooleanType;
1240
1240
  };
1241
- cc_editor_ttvc_media_hold_fix: {
1242
- defaultValue: boolean;
1243
- param: string;
1244
- productKeys?: ProductKeys;
1245
- typeGuard: IsBooleanType;
1246
- };
1247
1241
  platform_editor_single_player_expand: {
1248
1242
  defaultValue: boolean;
1249
1243
  param: string;
@@ -1484,6 +1478,12 @@ export declare const editorExperimentsConfig: {
1484
1478
  productKeys?: ProductKeys;
1485
1479
  typeGuard: IsBooleanType;
1486
1480
  };
1481
+ platform_editor_ai_template_localids: {
1482
+ defaultValue: boolean;
1483
+ param: string;
1484
+ productKeys?: ProductKeys;
1485
+ typeGuard: IsBooleanType;
1486
+ };
1487
1487
  platform_editor_ai_tablecell_localids: {
1488
1488
  defaultValue: boolean;
1489
1489
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "108.4.0",
3
+ "version": "109.0.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",