@atlaskit/media-common 11.5.0 → 11.6.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,13 @@
1
1
  # @atlaskit/media-common
2
2
 
3
+ ## 11.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#151581](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/151581)
8
+ [`f1c0ae301860f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f1c0ae301860f) -
9
+ Cleanup media-picker folderUploads feature flag
10
+
3
11
  ## 11.5.0
4
12
 
5
13
  ### Minor Changes
@@ -56,7 +56,6 @@ var defaultMediaFeatureFlags = exports.defaultMediaFeatureFlags = {
56
56
  mediaInline: false,
57
57
  // We can't yet switch this feature on
58
58
  // TODO https://product-fabric.atlassian.net/browse/MEX-104
59
- folderUploads: false,
60
59
  commentsOnMedia: false
61
60
  };
62
61
 
@@ -10,13 +10,11 @@ var productKeys = {
10
10
  * Note: Confluence Flags must be prefixed with "confluence.frontend" in order to integrate properly with the product
11
11
  */
12
12
  mediaInline: 'confluence.frontend.fabric.editor.media.inline',
13
- folderUploads: 'confluence.frontend.media.picker.folder.uploads',
14
13
  commentsOnMedia: 'confluence.frontend.renderer.comments-on-media'
15
14
  },
16
15
  jira: {
17
16
  // Manged by Linking Platform. No Rollout plan found for Jira
18
17
  mediaInline: '',
19
- folderUploads: 'issue.details.media-picker-folder-upload',
20
18
  commentsOnMedia: ''
21
19
  }
22
20
  };
@@ -35,7 +35,6 @@ export const defaultMediaFeatureFlags = {
35
35
  mediaInline: false,
36
36
  // We can't yet switch this feature on
37
37
  // TODO https://product-fabric.atlassian.net/browse/MEX-104
38
- folderUploads: false,
39
38
  commentsOnMedia: false
40
39
  };
41
40
 
@@ -4,13 +4,11 @@ const productKeys = {
4
4
  * Note: Confluence Flags must be prefixed with "confluence.frontend" in order to integrate properly with the product
5
5
  */
6
6
  mediaInline: 'confluence.frontend.fabric.editor.media.inline',
7
- folderUploads: 'confluence.frontend.media.picker.folder.uploads',
8
7
  commentsOnMedia: 'confluence.frontend.renderer.comments-on-media'
9
8
  },
10
9
  jira: {
11
10
  // Manged by Linking Platform. No Rollout plan found for Jira
12
11
  mediaInline: '',
13
- folderUploads: 'issue.details.media-picker-folder-upload',
14
12
  commentsOnMedia: ''
15
13
  }
16
14
  };
@@ -48,7 +48,6 @@ export var defaultMediaFeatureFlags = {
48
48
  mediaInline: false,
49
49
  // We can't yet switch this feature on
50
50
  // TODO https://product-fabric.atlassian.net/browse/MEX-104
51
- folderUploads: false,
52
51
  commentsOnMedia: false
53
52
  };
54
53
 
@@ -4,13 +4,11 @@ var productKeys = {
4
4
  * Note: Confluence Flags must be prefixed with "confluence.frontend" in order to integrate properly with the product
5
5
  */
6
6
  mediaInline: 'confluence.frontend.fabric.editor.media.inline',
7
- folderUploads: 'confluence.frontend.media.picker.folder.uploads',
8
7
  commentsOnMedia: 'confluence.frontend.renderer.comments-on-media'
9
8
  },
10
9
  jira: {
11
10
  // Manged by Linking Platform. No Rollout plan found for Jira
12
11
  mediaInline: '',
13
- folderUploads: 'issue.details.media-picker-folder-upload',
14
12
  commentsOnMedia: ''
15
13
  }
16
14
  };
@@ -1,6 +1,5 @@
1
1
  export interface MediaFeatureFlags {
2
2
  mediaInline?: boolean;
3
- folderUploads?: boolean;
4
3
  commentsOnMedia?: boolean;
5
4
  }
6
5
  export interface WithMediaFeatureFlags {
@@ -1,6 +1,5 @@
1
1
  export interface MediaFeatureFlags {
2
2
  mediaInline?: boolean;
3
- folderUploads?: boolean;
4
3
  commentsOnMedia?: boolean;
5
4
  }
6
5
  export interface WithMediaFeatureFlags {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/media-common",
3
- "version": "11.5.0",
3
+ "version": "11.6.0",
4
4
  "description": "Includes common utilities used by other media packages",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -38,7 +38,6 @@
38
38
  },
39
39
  "runReact18": true
40
40
  },
41
- "scripts": {},
42
41
  "dependencies": {
43
42
  "@atlaskit/analytics-gas-types": "^5.1.0",
44
43
  "@atlaskit/analytics-namespaced-context": "^6.12.0",