@atlaskit/tmp-editor-statsig 111.0.0 → 112.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,23 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 112.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [`8465eeaf9cc9f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8465eeaf9cc9f) -
8
+ Clean up experiment `platform_editor_user_preference_override`
9
+ - [`9c64d42d5b44e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9c64d42d5b44e) -
10
+ NAVX-5237 Cleaning up and shipping the block card post-auth 3P experiment for Confluence in
11
+ platform
12
+
13
+ ## 111.1.0
14
+
15
+ ### Minor Changes
16
+
17
+ - [`b48ea9bf2eb3b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b48ea9bf2eb3b) -
18
+ [ux] Add the advanced header image generation experiment and send its enabled value with header
19
+ image generation requests.
20
+
3
21
  ## 111.0.0
4
22
 
5
23
  ### Major Changes
@@ -72,6 +72,7 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
72
72
  // it does not gate this feature.
73
73
  platform_editor_ai_new_aifc_editor_experience: false,
74
74
  cc_page_experiences_editor_image_generation: false,
75
+ confluence_advanced_header_image_generation_exp: false,
75
76
  platform_use_unicode_emojis: false,
76
77
  platform_editor_emoji_hover_show_tooltip: false,
77
78
  'aifc-confluence-editor-csp-fix': false
@@ -1035,14 +1035,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1035
1035
  param: 'isEnabled',
1036
1036
  defaultValue: false
1037
1037
  }),
1038
- // Added 2026-05-01 — Block card rovo action on resolved block card smart links in confluence
1039
- platform_sl_3p_auth_rovo_block_card_confluence: (0, _experimentBuilders.createBooleanExperiment)({
1040
- productKeys: {
1041
- confluence: 'platform_sl_3p_auth_rovo_block_card_confluence'
1042
- },
1043
- param: 'isEnabled',
1044
- defaultValue: false
1045
- }),
1046
1038
  // Added 2025-01-23
1047
1039
  platform_editor_to_use_pmr_for_collab_edit_none_ic: (0, _experimentBuilders.createBooleanExperiment)({
1048
1040
  productKeys: {
@@ -1284,6 +1276,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1284
1276
  param: 'isEnabled',
1285
1277
  defaultValue: false
1286
1278
  }),
1279
+ // Added 2026-06-23
1280
+ confluence_advanced_header_image_generation_exp: (0, _experimentBuilders.createBooleanExperiment)({
1281
+ productKeys: {
1282
+ confluence: 'confluence_advanced_header_image_generation_exp'
1283
+ },
1284
+ param: 'isEnabled',
1285
+ defaultValue: false
1286
+ }),
1287
1287
  // Added 2026-04-17
1288
1288
  cc_page_experiences_premium_macros_img_generation: (0, _experimentBuilders.createBooleanExperiment)({
1289
1289
  productKeys: {
@@ -1723,14 +1723,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1723
1723
  param: 'isEnabled',
1724
1724
  defaultValue: false
1725
1725
  }),
1726
- // Added 2026-04-15
1727
- platform_editor_user_preference_override: (0, _experimentBuilders.createBooleanExperiment)({
1728
- productKeys: {
1729
- confluence: 'platform_editor_user_preference_override'
1730
- },
1731
- param: 'isEnabled',
1732
- defaultValue: false
1733
- }),
1734
1726
  // Added 2026-04-23
1735
1727
  'cc-markdown-mode': (0, _experimentBuilders.createBooleanExperiment)({
1736
1728
  productKeys: {
@@ -66,6 +66,7 @@ export const testBooleanOverrides = {
66
66
  // it does not gate this feature.
67
67
  platform_editor_ai_new_aifc_editor_experience: false,
68
68
  cc_page_experiences_editor_image_generation: false,
69
+ confluence_advanced_header_image_generation_exp: false,
69
70
  platform_use_unicode_emojis: false,
70
71
  platform_editor_emoji_hover_show_tooltip: false,
71
72
  'aifc-confluence-editor-csp-fix': false
@@ -1029,14 +1029,6 @@ export const editorExperimentsConfig = {
1029
1029
  param: 'isEnabled',
1030
1030
  defaultValue: false
1031
1031
  }),
1032
- // Added 2026-05-01 — Block card rovo action on resolved block card smart links in confluence
1033
- platform_sl_3p_auth_rovo_block_card_confluence: createBooleanExperiment({
1034
- productKeys: {
1035
- confluence: 'platform_sl_3p_auth_rovo_block_card_confluence'
1036
- },
1037
- param: 'isEnabled',
1038
- defaultValue: false
1039
- }),
1040
1032
  // Added 2025-01-23
1041
1033
  platform_editor_to_use_pmr_for_collab_edit_none_ic: createBooleanExperiment({
1042
1034
  productKeys: {
@@ -1278,6 +1270,14 @@ export const editorExperimentsConfig = {
1278
1270
  param: 'isEnabled',
1279
1271
  defaultValue: false
1280
1272
  }),
1273
+ // Added 2026-06-23
1274
+ confluence_advanced_header_image_generation_exp: createBooleanExperiment({
1275
+ productKeys: {
1276
+ confluence: 'confluence_advanced_header_image_generation_exp'
1277
+ },
1278
+ param: 'isEnabled',
1279
+ defaultValue: false
1280
+ }),
1281
1281
  // Added 2026-04-17
1282
1282
  cc_page_experiences_premium_macros_img_generation: createBooleanExperiment({
1283
1283
  productKeys: {
@@ -1717,14 +1717,6 @@ export const editorExperimentsConfig = {
1717
1717
  param: 'isEnabled',
1718
1718
  defaultValue: false
1719
1719
  }),
1720
- // Added 2026-04-15
1721
- platform_editor_user_preference_override: createBooleanExperiment({
1722
- productKeys: {
1723
- confluence: 'platform_editor_user_preference_override'
1724
- },
1725
- param: 'isEnabled',
1726
- defaultValue: false
1727
- }),
1728
1720
  // Added 2026-04-23
1729
1721
  'cc-markdown-mode': createBooleanExperiment({
1730
1722
  productKeys: {
@@ -66,6 +66,7 @@ export var testBooleanOverrides = {
66
66
  // it does not gate this feature.
67
67
  platform_editor_ai_new_aifc_editor_experience: false,
68
68
  cc_page_experiences_editor_image_generation: false,
69
+ confluence_advanced_header_image_generation_exp: false,
69
70
  platform_use_unicode_emojis: false,
70
71
  platform_editor_emoji_hover_show_tooltip: false,
71
72
  'aifc-confluence-editor-csp-fix': false
@@ -1029,14 +1029,6 @@ export var editorExperimentsConfig = {
1029
1029
  param: 'isEnabled',
1030
1030
  defaultValue: false
1031
1031
  }),
1032
- // Added 2026-05-01 — Block card rovo action on resolved block card smart links in confluence
1033
- platform_sl_3p_auth_rovo_block_card_confluence: createBooleanExperiment({
1034
- productKeys: {
1035
- confluence: 'platform_sl_3p_auth_rovo_block_card_confluence'
1036
- },
1037
- param: 'isEnabled',
1038
- defaultValue: false
1039
- }),
1040
1032
  // Added 2025-01-23
1041
1033
  platform_editor_to_use_pmr_for_collab_edit_none_ic: createBooleanExperiment({
1042
1034
  productKeys: {
@@ -1278,6 +1270,14 @@ export var editorExperimentsConfig = {
1278
1270
  param: 'isEnabled',
1279
1271
  defaultValue: false
1280
1272
  }),
1273
+ // Added 2026-06-23
1274
+ confluence_advanced_header_image_generation_exp: createBooleanExperiment({
1275
+ productKeys: {
1276
+ confluence: 'confluence_advanced_header_image_generation_exp'
1277
+ },
1278
+ param: 'isEnabled',
1279
+ defaultValue: false
1280
+ }),
1281
1281
  // Added 2026-04-17
1282
1282
  cc_page_experiences_premium_macros_img_generation: createBooleanExperiment({
1283
1283
  productKeys: {
@@ -1717,14 +1717,6 @@ export var editorExperimentsConfig = {
1717
1717
  param: 'isEnabled',
1718
1718
  defaultValue: false
1719
1719
  }),
1720
- // Added 2026-04-15
1721
- platform_editor_user_preference_override: createBooleanExperiment({
1722
- productKeys: {
1723
- confluence: 'platform_editor_user_preference_override'
1724
- },
1725
- param: 'isEnabled',
1726
- defaultValue: false
1727
- }),
1728
1720
  // Added 2026-04-23
1729
1721
  'cc-markdown-mode': createBooleanExperiment({
1730
1722
  productKeys: {
@@ -707,12 +707,6 @@ export declare const editorExperimentsConfig: {
707
707
  productKeys?: ProductKeys;
708
708
  typeGuard: IsBooleanType;
709
709
  };
710
- platform_sl_3p_auth_rovo_block_card_confluence: {
711
- defaultValue: boolean;
712
- param: string;
713
- productKeys?: ProductKeys;
714
- typeGuard: IsBooleanType;
715
- };
716
710
  social_proof_3p_unauth_block_exp: {
717
711
  defaultValue: boolean;
718
712
  param: string;
@@ -992,6 +986,12 @@ export declare const editorExperimentsConfig: {
992
986
  productKeys?: ProductKeys;
993
987
  typeGuard: IsBooleanType;
994
988
  };
989
+ confluence_advanced_header_image_generation_exp: {
990
+ defaultValue: boolean;
991
+ param: string;
992
+ productKeys?: ProductKeys;
993
+ typeGuard: IsBooleanType;
994
+ };
995
995
  cc_page_experiences_premium_macros_img_generation: {
996
996
  defaultValue: boolean;
997
997
  param: string;
@@ -1322,12 +1322,6 @@ export declare const editorExperimentsConfig: {
1322
1322
  productKeys?: ProductKeys;
1323
1323
  typeGuard: IsBooleanType;
1324
1324
  };
1325
- platform_editor_user_preference_override: {
1326
- defaultValue: boolean;
1327
- param: string;
1328
- productKeys?: ProductKeys;
1329
- typeGuard: IsBooleanType;
1330
- };
1331
1325
  confluence_toc_nav_a11y: {
1332
1326
  defaultValue: boolean;
1333
1327
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "111.0.0",
3
+ "version": "112.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",
@@ -27,7 +27,7 @@
27
27
  "dependencies": {
28
28
  "@atlaskit/feature-gate-js-client": "^6.0.0",
29
29
  "@atlaskit/platform-feature-flags": "^2.0.0",
30
- "@atlaskit/react-ufo": "^7.1.0",
30
+ "@atlaskit/react-ufo": "^7.2.0",
31
31
  "@babel/runtime": "^7.0.0"
32
32
  },
33
33
  "platform-feature-flags": {