@atlaskit/tmp-editor-statsig 62.7.0 → 62.8.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,15 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 62.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`b6bb07e5d72ac`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b6bb07e5d72ac) -
|
|
8
|
+
[ux] Fix for #hot-301450, add new media option for fallback media name fetcher to allow confluence
|
|
9
|
+
to use the attachment service instead of the media service to get filenames. After DC -> Cloud
|
|
10
|
+
migration filenames were not properly copied across to the media service causing inline media to
|
|
11
|
+
show an error.
|
|
12
|
+
|
|
3
13
|
## 62.7.0
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|
|
@@ -576,6 +576,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
576
576
|
param: 'isEnabled',
|
|
577
577
|
defaultValue: false
|
|
578
578
|
}),
|
|
579
|
+
// Added 2026-17-03
|
|
580
|
+
platform_editor_media_name_fallback: (0, _experimentBuilders.createBooleanExperiment)({
|
|
581
|
+
productKeys: {
|
|
582
|
+
confluence: 'platform_editor_media_name_fallback'
|
|
583
|
+
},
|
|
584
|
+
param: 'isEnabled',
|
|
585
|
+
defaultValue: false
|
|
586
|
+
}),
|
|
579
587
|
// Added 2025-06-05
|
|
580
588
|
platform_editor_block_controls_perf_optimization: (0, _experimentBuilders.createBooleanExperiment)({
|
|
581
589
|
productKeys: {
|
|
@@ -570,6 +570,14 @@ export const editorExperimentsConfig = {
|
|
|
570
570
|
param: 'isEnabled',
|
|
571
571
|
defaultValue: false
|
|
572
572
|
}),
|
|
573
|
+
// Added 2026-17-03
|
|
574
|
+
platform_editor_media_name_fallback: createBooleanExperiment({
|
|
575
|
+
productKeys: {
|
|
576
|
+
confluence: 'platform_editor_media_name_fallback'
|
|
577
|
+
},
|
|
578
|
+
param: 'isEnabled',
|
|
579
|
+
defaultValue: false
|
|
580
|
+
}),
|
|
573
581
|
// Added 2025-06-05
|
|
574
582
|
platform_editor_block_controls_perf_optimization: createBooleanExperiment({
|
|
575
583
|
productKeys: {
|
|
@@ -570,6 +570,14 @@ export var editorExperimentsConfig = {
|
|
|
570
570
|
param: 'isEnabled',
|
|
571
571
|
defaultValue: false
|
|
572
572
|
}),
|
|
573
|
+
// Added 2026-17-03
|
|
574
|
+
platform_editor_media_name_fallback: createBooleanExperiment({
|
|
575
|
+
productKeys: {
|
|
576
|
+
confluence: 'platform_editor_media_name_fallback'
|
|
577
|
+
},
|
|
578
|
+
param: 'isEnabled',
|
|
579
|
+
defaultValue: false
|
|
580
|
+
}),
|
|
573
581
|
// Added 2025-06-05
|
|
574
582
|
platform_editor_block_controls_perf_optimization: createBooleanExperiment({
|
|
575
583
|
productKeys: {
|
|
@@ -330,6 +330,12 @@ export declare const editorExperimentsConfig: {
|
|
|
330
330
|
productKeys?: ProductKeys;
|
|
331
331
|
typeGuard: IsBooleanType;
|
|
332
332
|
};
|
|
333
|
+
platform_editor_media_name_fallback: {
|
|
334
|
+
defaultValue: boolean;
|
|
335
|
+
param: string;
|
|
336
|
+
productKeys?: ProductKeys;
|
|
337
|
+
typeGuard: IsBooleanType;
|
|
338
|
+
};
|
|
333
339
|
platform_editor_block_controls_perf_optimization: {
|
|
334
340
|
defaultValue: boolean;
|
|
335
341
|
param: string;
|
|
@@ -330,6 +330,12 @@ export declare const editorExperimentsConfig: {
|
|
|
330
330
|
productKeys?: ProductKeys;
|
|
331
331
|
typeGuard: IsBooleanType;
|
|
332
332
|
};
|
|
333
|
+
platform_editor_media_name_fallback: {
|
|
334
|
+
defaultValue: boolean;
|
|
335
|
+
param: string;
|
|
336
|
+
productKeys?: ProductKeys;
|
|
337
|
+
typeGuard: IsBooleanType;
|
|
338
|
+
};
|
|
333
339
|
platform_editor_block_controls_perf_optimization: {
|
|
334
340
|
defaultValue: boolean;
|
|
335
341
|
param: string;
|
package/package.json
CHANGED