@atlaskit/media-card 77.0.3 → 77.1.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.
Files changed (113) hide show
  1. package/CHANGELOG.md +101 -95
  2. package/dist/cjs/card/card.js +8 -10
  3. package/dist/cjs/card/cardAnalytics.js +6 -11
  4. package/dist/cjs/card/cardConstants.js +1 -2
  5. package/dist/cjs/card/cardLoader.js +1 -2
  6. package/dist/cjs/card/cardState.js +3 -5
  7. package/dist/cjs/card/cardSwitcher.js +1 -2
  8. package/dist/cjs/card/cardView.js +3 -5
  9. package/dist/cjs/card/classnames.js +2 -4
  10. package/dist/cjs/card/getCardPreview/cache.js +3 -6
  11. package/dist/cjs/card/getCardPreview/filePreviewStatus.js +3 -5
  12. package/dist/cjs/card/getCardPreview/helpers.js +4 -7
  13. package/dist/cjs/card/getCardPreview/index.js +13 -25
  14. package/dist/cjs/card/getCardStatus.js +3 -5
  15. package/dist/cjs/card/inlinePlayer.js +3 -6
  16. package/dist/cjs/card/inlinePlayerLazy.js +2 -3
  17. package/dist/cjs/card/inlinePlayerWrapper.js +2 -3
  18. package/dist/cjs/card/inlinePlayerWrapperStyles.js +2 -4
  19. package/dist/cjs/card/media-card-analytics-error-boundary.js +5 -6
  20. package/dist/cjs/card/ui/actionsBar/actionsBar.js +2 -3
  21. package/dist/cjs/card/ui/actionsBar/actionsBarWrapper.js +2 -3
  22. package/dist/cjs/card/ui/actionsBar/cardActions/cardActionButton.js +2 -3
  23. package/dist/cjs/card/ui/actionsBar/cardActions/cardActionIconButton.js +2 -3
  24. package/dist/cjs/card/ui/actionsBar/cardActions/cardActionsDropdownMenu.js +2 -3
  25. package/dist/cjs/card/ui/actionsBar/cardActions/cardActionsView.js +1 -2
  26. package/dist/cjs/card/ui/actionsBar/cardActions/styles.js +4 -7
  27. package/dist/cjs/card/ui/actionsBar/styles.js +3 -6
  28. package/dist/cjs/card/ui/blanket/blanket.js +4 -4
  29. package/dist/cjs/card/ui/blanket/styles.js +3 -6
  30. package/dist/cjs/card/ui/common.js +4 -7
  31. package/dist/cjs/card/ui/iconMessage/iconMessageWrapper.js +2 -3
  32. package/dist/cjs/card/ui/iconMessage/index.js +7 -13
  33. package/dist/cjs/card/ui/iconMessage/styles.js +1 -2
  34. package/dist/cjs/card/ui/iconWrapper/iconWrapper.js +2 -3
  35. package/dist/cjs/card/ui/iconWrapper/styles.js +1 -2
  36. package/dist/cjs/card/ui/imageRenderer/imageRenderer.js +2 -3
  37. package/dist/cjs/card/ui/playButton/playButton.js +2 -3
  38. package/dist/cjs/card/ui/playButton/playButtonBackground.js +2 -3
  39. package/dist/cjs/card/ui/playButton/playButtonWrapper.js +2 -3
  40. package/dist/cjs/card/ui/playButton/styles.js +5 -10
  41. package/dist/cjs/card/ui/progressBar/progressBar.js +3 -5
  42. package/dist/cjs/card/ui/progressBar/styledBar.js +2 -3
  43. package/dist/cjs/card/ui/progressBar/styles.js +1 -2
  44. package/dist/cjs/card/ui/styles.js +11 -21
  45. package/dist/cjs/card/ui/tickBox/styles.js +5 -9
  46. package/dist/cjs/card/ui/tickBox/tickBox.js +2 -3
  47. package/dist/cjs/card/ui/tickBox/tickBoxWrapper.js +2 -3
  48. package/dist/cjs/card/ui/titleBox/failedTitleBox.js +2 -3
  49. package/dist/cjs/card/ui/titleBox/styles.js +5 -10
  50. package/dist/cjs/card/ui/titleBox/titleBox.js +3 -5
  51. package/dist/cjs/card/ui/titleBox/titleBoxComponents.js +6 -11
  52. package/dist/cjs/card/ui/unhandledErrorCard/index.js +2 -3
  53. package/dist/cjs/card/ui/wrapper/styles.js +1 -2
  54. package/dist/cjs/card/ui/wrapper/wrapper.js +2 -3
  55. package/dist/cjs/card/v2/cardV2.js +10 -12
  56. package/dist/cjs/card/v2/cardV2Loader.js +1 -2
  57. package/dist/cjs/card/v2/cardViewV2.js +308 -0
  58. package/dist/cjs/errors.js +13 -25
  59. package/dist/cjs/inline/loader.js +2 -3
  60. package/dist/cjs/inline/mediaInlineAnalyticsErrorBoundary.js +3 -4
  61. package/dist/cjs/inline/mediaInlineCard.js +3 -5
  62. package/dist/cjs/inline/mediaInlineCardAnalytics.js +4 -7
  63. package/dist/cjs/types.js +2 -3
  64. package/dist/cjs/utils/analytics.js +23 -41
  65. package/dist/cjs/utils/cardDimensions.js +5 -9
  66. package/dist/cjs/utils/containsPixelUnit.js +2 -3
  67. package/dist/cjs/utils/dimensionComparer.js +3 -5
  68. package/dist/cjs/utils/document.js +2 -3
  69. package/dist/cjs/utils/generateUniqueId.js +2 -3
  70. package/dist/cjs/utils/getDataURIDimension.js +3 -5
  71. package/dist/cjs/utils/getElementDimension.js +2 -3
  72. package/dist/cjs/utils/getMediaCardCursor.js +2 -3
  73. package/dist/cjs/utils/globalScope/getSSRData.js +2 -3
  74. package/dist/cjs/utils/globalScope/globalScope.js +6 -11
  75. package/dist/cjs/utils/isValidPercentageUnit.js +2 -3
  76. package/dist/cjs/utils/lightCards/cardError.js +1 -2
  77. package/dist/cjs/utils/lightCards/cardLoading.js +2 -3
  78. package/dist/cjs/utils/lightCards/errorIcon/index.js +1 -2
  79. package/dist/cjs/utils/lightCards/errorIcon/styles.js +1 -2
  80. package/dist/cjs/utils/lightCards/getDimensionsWithDefault.js +2 -3
  81. package/dist/cjs/utils/lightCards/lightCardWrappers.js +2 -3
  82. package/dist/cjs/utils/lightCards/styles.js +2 -3
  83. package/dist/cjs/utils/metadata.js +2 -3
  84. package/dist/cjs/utils/mockIntersectionObserver.js +5 -6
  85. package/dist/cjs/utils/objectURLCache.js +4 -7
  86. package/dist/cjs/utils/preventClickThrough.js +2 -3
  87. package/dist/cjs/utils/printScript.js +3 -5
  88. package/dist/cjs/utils/ufoExperiences.js +3 -5
  89. package/dist/cjs/utils/videoIsPlayable.js +2 -3
  90. package/dist/cjs/utils/videoSnapshot.js +2 -3
  91. package/dist/cjs/utils/viewportDetector.js +2 -3
  92. package/dist/es2019/card/card.js +1 -1
  93. package/dist/es2019/card/media-card-analytics-error-boundary.js +1 -1
  94. package/dist/es2019/card/ui/blanket/blanket.js +2 -1
  95. package/dist/es2019/card/ui/tickBox/styles.js +1 -1
  96. package/dist/es2019/card/v2/cardV2.js +3 -3
  97. package/dist/es2019/card/v2/cardViewV2.js +300 -0
  98. package/dist/es2019/inline/loader.js +1 -1
  99. package/dist/es2019/utils/ufoExperiences.js +1 -1
  100. package/dist/esm/card/card.js +5 -5
  101. package/dist/esm/card/media-card-analytics-error-boundary.js +4 -4
  102. package/dist/esm/card/ui/blanket/blanket.js +2 -1
  103. package/dist/esm/card/ui/tickBox/styles.js +1 -1
  104. package/dist/esm/card/v2/cardV2.js +7 -7
  105. package/dist/esm/card/v2/cardViewV2.js +299 -0
  106. package/dist/esm/inline/loader.js +1 -1
  107. package/dist/esm/inline/mediaInlineAnalyticsErrorBoundary.js +2 -2
  108. package/dist/esm/utils/analytics.js +4 -4
  109. package/dist/esm/utils/mockIntersectionObserver.js +3 -3
  110. package/dist/esm/utils/ufoExperiences.js +1 -1
  111. package/dist/types/card/v2/cardViewV2.d.ts +44 -0
  112. package/dist/types-ts4.5/card/v2/cardViewV2.d.ts +44 -0
  113. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,28 +1,34 @@
1
1
  # @atlaskit/media-card
2
2
 
3
+ ## 77.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#41033](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41033) [`812baef40e8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/812baef40e8) - MEX-2574 convert CardView to functional component
8
+
3
9
  ## 77.0.3
4
10
 
5
11
  ### Patch Changes
6
12
 
7
- - [`25252788c18`](https://bitbucket.org/atlassian/atlassian-frontend/commits/25252788c18) - Give the progress bar in media card a "progressbar" role.
13
+ - [#40560](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40560) [`25252788c18`](https://bitbucket.org/atlassian/atlassian-frontend/commits/25252788c18) - Give the progress bar in media card a "progressbar" role.
8
14
 
9
15
  ## 77.0.2
10
16
 
11
17
  ### Patch Changes
12
18
 
13
- - [`78b51d6134c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/78b51d6134c) - Fixed issue with media card lazy loading not working during SSR hydration
19
+ - [#40353](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40353) [`78b51d6134c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/78b51d6134c) - Fixed issue with media card lazy loading not working during SSR hydration
14
20
 
15
21
  ## 77.0.1
16
22
 
17
23
  ### Patch Changes
18
24
 
19
- - [`ec4867e1376`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ec4867e1376) - Removed captions flag and replaced with a new media prop `allowCaptions`. `allowCaptions` is set to `false` by default and products will need to opt in to be able to use captions from now on.
25
+ - [#39320](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39320) [`ec4867e1376`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ec4867e1376) - Removed captions flag and replaced with a new media prop `allowCaptions`. `allowCaptions` is set to `false` by default and products will need to opt in to be able to use captions from now on.
20
26
 
21
27
  ## 77.0.0
22
28
 
23
29
  ### Major Changes
24
30
 
25
- - [`e6122bf1c9a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6122bf1c9a) - MEX-2481 revert and re-introduce a new fix for media border gap issue
31
+ - [#39427](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39427) [`e6122bf1c9a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6122bf1c9a) - MEX-2481 revert and re-introduce a new fix for media border gap issue
26
32
 
27
33
  ### Patch Changes
28
34
 
@@ -32,13 +38,13 @@
32
38
 
33
39
  ### Patch Changes
34
40
 
35
- - [`6900f89eb0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6900f89eb0e) - Internal changes to use space tokens. There is no expected visual or behaviour change.
41
+ - [#39787](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39787) [`6900f89eb0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6900f89eb0e) - Internal changes to use space tokens. There is no expected visual or behaviour change.
36
42
 
37
43
  ## 76.2.0
38
44
 
39
45
  ### Minor Changes
40
46
 
41
- - [`7b6a2c6671b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7b6a2c6671b) - Introducing 'media-state' for handling media internal file state.
47
+ - [#38532](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38532) [`7b6a2c6671b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7b6a2c6671b) - Introducing 'media-state' for handling media internal file state.
42
48
  Introducing 'media-client-react' to provide hooks for seamless media-client integration with React.
43
49
  Introducing 'MediaCardV2' with a feature flag to replace rxjs based fileState subscription with 'useFileState' hook.
44
50
  Removed unused feature flags APIs from 'media-client' and its helper functions from 'media-common'.
@@ -57,14 +63,14 @@
57
63
 
58
64
  ### Patch Changes
59
65
 
60
- - [`ed81e630547`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ed81e630547) - MEX-2089 Remove timestamp feature flag on AFP
66
+ - [#37897](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37897) [`ed81e630547`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ed81e630547) - MEX-2089 Remove timestamp feature flag on AFP
61
67
  - Updated dependencies
62
68
 
63
69
  ## 76.1.0
64
70
 
65
71
  ### Minor Changes
66
72
 
67
- - [`f486dbd535c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f486dbd535c) - MEX-2481 Fix minor gap between image and border
73
+ - [#36498](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36498) [`f486dbd535c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f486dbd535c) - MEX-2481 Fix minor gap between image and border
68
74
 
69
75
  ### Patch Changes
70
76
 
@@ -74,45 +80,45 @@
74
80
 
75
81
  ### Patch Changes
76
82
 
77
- - [`4807883cf8e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4807883cf8e) - [MEX-2468] Disable Tooltip in Media Card in Hybrid Renderer
83
+ - [#35798](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35798) [`4807883cf8e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4807883cf8e) - [MEX-2468] Disable Tooltip in Media Card in Hybrid Renderer
78
84
 
79
85
  ## 76.0.5
80
86
 
81
87
  ### Patch Changes
82
88
 
83
- - [`48e4a655534`](https://bitbucket.org/atlassian/atlassian-frontend/commits/48e4a655534) - Internal change to enforce token usage for spacing properties. There is no expected visual or behaviour change.
89
+ - [#33728](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33728) [`48e4a655534`](https://bitbucket.org/atlassian/atlassian-frontend/commits/48e4a655534) - Internal change to enforce token usage for spacing properties. There is no expected visual or behaviour change.
84
90
 
85
91
  ## 76.0.4
86
92
 
87
93
  ### Patch Changes
88
94
 
89
- - [`8b83c75ef6d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8b83c75ef6d) - MEX-2382 Fixed a bug in media card so that the card preview updates when the provided file identifier is different
95
+ - [#34914](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34914) [`8b83c75ef6d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8b83c75ef6d) - MEX-2382 Fixed a bug in media card so that the card preview updates when the provided file identifier is different
90
96
 
91
97
  ## 76.0.3
92
98
 
93
99
  ### Patch Changes
94
100
 
95
- - [`5dcaf51b269`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5dcaf51b269) - removed unused memory cache logs
101
+ - [#34912](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34912) [`5dcaf51b269`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5dcaf51b269) - removed unused memory cache logs
96
102
  - Updated dependencies
97
103
 
98
104
  ## 76.0.2
99
105
 
100
106
  ### Patch Changes
101
107
 
102
- - [`bb442ced942`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bb442ced942) - Remove newCardExperience feature flag
108
+ - [#34887](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34887) [`bb442ced942`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bb442ced942) - Remove newCardExperience feature flag
103
109
  - Updated dependencies
104
110
 
105
111
  ## 76.0.1
106
112
 
107
113
  ### Patch Changes
108
114
 
109
- - [`501218d4044`](https://bitbucket.org/atlassian/atlassian-frontend/commits/501218d4044) - MEX-2393 fix error setting in subscribe method in media-inline
115
+ - [#34644](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34644) [`501218d4044`](https://bitbucket.org/atlassian/atlassian-frontend/commits/501218d4044) - MEX-2393 fix error setting in subscribe method in media-inline
110
116
 
111
117
  ## 76.0.0
112
118
 
113
119
  ### Major Changes
114
120
 
115
- - [`9fe30b8ca24`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9fe30b8ca24) - Removed classic experience
121
+ - [#34192](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34192) [`9fe30b8ca24`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9fe30b8ca24) - Removed classic experience
116
122
  - [`3247424b653`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3247424b653) - Removed the classname 'fileCardImageViewSelectedSelector' since it is no longer being used
117
123
 
118
124
  ### Minor Changes
@@ -128,13 +134,13 @@
128
134
 
129
135
  ### Patch Changes
130
136
 
131
- - [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
137
+ - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793) [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
132
138
 
133
139
  ## 75.0.0
134
140
 
135
141
  ### Major Changes
136
142
 
137
- - [`8c6a6cf4bc4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8c6a6cf4bc4) - Media Card now only accepts a list of items for Media Viewer, no longer collection name
143
+ - [#33771](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33771) [`8c6a6cf4bc4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8c6a6cf4bc4) - Media Card now only accepts a list of items for Media Viewer, no longer collection name
138
144
 
139
145
  ### Patch Changes
140
146
 
@@ -146,13 +152,13 @@
146
152
 
147
153
  ### Patch Changes
148
154
 
149
- - [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
155
+ - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649) [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
150
156
 
151
157
  ## 74.8.0
152
158
 
153
159
  ### Minor Changes
154
160
 
155
- - [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
161
+ - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258) [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
156
162
 
157
163
  ### Patch Changes
158
164
 
@@ -162,7 +168,7 @@
162
168
 
163
169
  ### Patch Changes
164
170
 
165
- - [`5c6e8f7b846`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5c6e8f7b846) - - refactored card file states example
171
+ - [#33004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33004) [`5c6e8f7b846`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5c6e8f7b846) - - refactored card file states example
166
172
  - added inline card file states example
167
173
  - [`e8bb5592bf8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e8bb5592bf8) - MEX-2140 Refactor error boundary of media inline card
168
174
  - Updated dependencies
@@ -171,7 +177,7 @@
171
177
 
172
178
  ### Patch Changes
173
179
 
174
- - [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY remove before merging to master; dupe adf-schema via adf-utils
180
+ - [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424) [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY remove before merging to master; dupe adf-schema via adf-utils
175
181
  - [`0f99ed9df35`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0f99ed9df35) - Updated example
176
182
  - Updated dependencies
177
183
 
@@ -179,20 +185,20 @@
179
185
 
180
186
  ### Patch Changes
181
187
 
182
- - [`31717a1fe63`](https://bitbucket.org/atlassian/atlassian-frontend/commits/31717a1fe63) - Fix the bug when clicking on media inline files in Hybrid Renderer, viewer is not opening.
188
+ - [#31891](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31891) [`31717a1fe63`](https://bitbucket.org/atlassian/atlassian-frontend/commits/31717a1fe63) - Fix the bug when clicking on media inline files in Hybrid Renderer, viewer is not opening.
183
189
 
184
190
  ## 74.7.1
185
191
 
186
192
  ### Patch Changes
187
193
 
188
- - [`b37723f2cfa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b37723f2cfa) - The component now logs the full provided feature flags object
194
+ - [#31299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31299) [`b37723f2cfa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b37723f2cfa) - The component now logs the full provided feature flags object
189
195
  - Updated dependencies
190
196
 
191
197
  ## 74.7.0
192
198
 
193
199
  ### Minor Changes
194
200
 
195
- - [`8a0a92b2885`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8a0a92b2885) - MEX-2210 improve inconsistent behaviour on timestampOnVideo playback
201
+ - [#30248](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30248) [`8a0a92b2885`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8a0a92b2885) - MEX-2210 improve inconsistent behaviour on timestampOnVideo playback
196
202
  - [`c3eba8c788d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c3eba8c788d) - Deprecation notice: Media Card and Inline Card no longer accept a collection name as a data source for Media Viewer. Integrators should pass the full list of files to browse through the new "mediaViewerItems" property.
197
203
 
198
204
  ### Patch Changes
@@ -203,13 +209,13 @@
203
209
 
204
210
  ### Patch Changes
205
211
 
206
- - [`489f7b32ff6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/489f7b32ff6) - Fixed broken SSR error handling logic when the preview url fails to load
212
+ - [#30963](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30963) [`489f7b32ff6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/489f7b32ff6) - Fixed broken SSR error handling logic when the preview url fails to load
207
213
 
208
214
  ## 74.6.0
209
215
 
210
216
  ### Minor Changes
211
217
 
212
- - [`dbd7cd19fe6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dbd7cd19fe6) - Media Card now fetch the preview immediately after mounting, without waiting for file state to be ready
218
+ - [#29470](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29470) [`dbd7cd19fe6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dbd7cd19fe6) - Media Card now fetch the preview immediately after mounting, without waiting for file state to be ready
213
219
 
214
220
  ### Patch Changes
215
221
 
@@ -226,13 +232,13 @@
226
232
 
227
233
  ### Patch Changes
228
234
 
229
- - [`4ee60bafc6d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ee60bafc6d) - ED-16603: Remove tooltips from VR tests and make them opt in. To opt-in, add `allowedSideEffects` when loading the page.
235
+ - [#29227](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29227) [`4ee60bafc6d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ee60bafc6d) - ED-16603: Remove tooltips from VR tests and make them opt in. To opt-in, add `allowedSideEffects` when loading the page.
230
236
 
231
237
  ## 74.5.0
232
238
 
233
239
  ### Minor Changes
234
240
 
235
- - [`2b3859896cc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2b3859896cc) - Added new Feature Flag to control internal Media Client behaviour
241
+ - [#28932](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28932) [`2b3859896cc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2b3859896cc) - Added new Feature Flag to control internal Media Client behaviour
236
242
 
237
243
  ### Patch Changes
238
244
 
@@ -244,14 +250,14 @@
244
250
 
245
251
  ### Patch Changes
246
252
 
247
- - [`6adc56f320d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6adc56f320d) - [MEX-2003] Fix dark mode regression in new card experience
253
+ - [#28374](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28374) [`6adc56f320d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6adc56f320d) - [MEX-2003] Fix dark mode regression in new card experience
248
254
  - Updated dependencies
249
255
 
250
256
  ## 74.4.0
251
257
 
252
258
  ### Minor Changes
253
259
 
254
- - [`81573c1dfa7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/81573c1dfa7) - Media Card logs metadata trace Id
260
+ - [#28090](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28090) [`81573c1dfa7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/81573c1dfa7) - Media Card logs metadata trace Id
255
261
  - [`0bccac57db6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0bccac57db6) - remove mediaUploadApiV2 Feature flag
256
262
 
257
263
  ### Patch Changes
@@ -279,7 +285,7 @@
279
285
 
280
286
  ### Minor Changes
281
287
 
282
- - [`6de3a9494a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6de3a9494a8) - [ux] Instrumented `@atlaskit/media-card` with the new theming package, `@atlaskit/tokens`.
288
+ - [#26712](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26712) [`6de3a9494a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6de3a9494a8) - [ux] Instrumented `@atlaskit/media-card` with the new theming package, `@atlaskit/tokens`.
283
289
 
284
290
  New tokens will be visible only in applications configured to use the new Tokens API (currently in alpha).
285
291
  These changes are intended to be interoperable with the legacy theme implementation. Legacy dark mode users should expect no visual or breaking changes.
@@ -293,7 +299,7 @@
293
299
 
294
300
  ### Minor Changes
295
301
 
296
- - [`2c402e87213`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2c402e87213) - [Experimental] Add traceId in media card get image request.
302
+ - [#25860](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25860) [`2c402e87213`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2c402e87213) - [Experimental] Add traceId in media card get image request.
297
303
 
298
304
  ### Patch Changes
299
305
 
@@ -304,13 +310,13 @@
304
310
 
305
311
  ### Patch Changes
306
312
 
307
- - [`d2cde0ebdfd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d2cde0ebdfd) - fix editor cypress tests and delete media cypress tests
313
+ - [#26241](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26241) [`d2cde0ebdfd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d2cde0ebdfd) - fix editor cypress tests and delete media cypress tests
308
314
 
309
315
  ## 74.1.8
310
316
 
311
317
  ### Patch Changes
312
318
 
313
- - [`153829bfcb3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/153829bfcb3) - Upgrade caching algorithm library lru-fast to lru_map.
319
+ - [#24710](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24710) [`153829bfcb3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/153829bfcb3) - Upgrade caching algorithm library lru-fast to lru_map.
314
320
  - [`09464edc105`](https://bitbucket.org/atlassian/atlassian-frontend/commits/09464edc105) - ⚠️ Big Folder Structure Refactor
315
321
  - [`60fb320493e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/60fb320493e) - Fixed circular imports
316
322
  - [`9f23fe7478e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9f23fe7478e) - Fixed Card Actions Dropdown Menu positioning
@@ -321,25 +327,25 @@
321
327
 
322
328
  ### Patch Changes
323
329
 
324
- - [`ca22e26cd7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ca22e26cd7c) - Fix image refetch logic when image dimensions change.
330
+ - [#25642](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25642) [`ca22e26cd7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ca22e26cd7c) - Fix image refetch logic when image dimensions change.
325
331
 
326
332
  ## 74.1.5
327
333
 
328
334
  ### Patch Changes
329
335
 
330
- - [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade Typescript from `4.3.5` to `4.5.5`
336
+ - [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874) [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade Typescript from `4.3.5` to `4.5.5`
331
337
 
332
338
  ## 74.1.4
333
339
 
334
340
  ### Patch Changes
335
341
 
336
- - [`80a1ca7b589`](https://bitbucket.org/atlassian/atlassian-frontend/commits/80a1ca7b589) - Fix compatility issue of Intersection Observer API in old browser versions
342
+ - [#25450](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25450) [`80a1ca7b589`](https://bitbucket.org/atlassian/atlassian-frontend/commits/80a1ca7b589) - Fix compatility issue of Intersection Observer API in old browser versions
337
343
 
338
344
  ## 74.1.3
339
345
 
340
346
  ### Patch Changes
341
347
 
342
- - [`46059beebbf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/46059beebbf) - - include **tests_external** in build
348
+ - [#24818](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24818) [`46059beebbf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/46059beebbf) - - include **tests_external** in build
343
349
  - replace usage of @local-cypress package with @cypress
344
350
  - bump @cypress from ^6.4.0 to ^7.7.0
345
351
  - import cypress types into @atlaskit/in-product-testing tsconfig
@@ -348,20 +354,20 @@
348
354
 
349
355
  ### Patch Changes
350
356
 
351
- - [`f9fee1fbf49`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f9fee1fbf49) - Use react lazy to avoid pulling InlinePlayer component code if it is not being used on a page
357
+ - [#24004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24004) [`f9fee1fbf49`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f9fee1fbf49) - Use react lazy to avoid pulling InlinePlayer component code if it is not being used on a page
352
358
  - Updated dependencies
353
359
 
354
360
  ## 74.1.1
355
361
 
356
362
  ### Patch Changes
357
363
 
358
- - [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`.
364
+ - [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492) [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`.
359
365
 
360
366
  ## 74.1.0
361
367
 
362
368
  ### Minor Changes
363
369
 
364
- - [`a332288b5ea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a332288b5ea) - Added analytics for media-card memoryCacheLogging and added relevant featureFlag keys for media-common package.
370
+ - [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381) [`a332288b5ea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a332288b5ea) - Added analytics for media-card memoryCacheLogging and added relevant featureFlag keys for media-common package.
365
371
 
366
372
  ### Patch Changes
367
373
 
@@ -374,7 +380,7 @@
374
380
 
375
381
  ### Major Changes
376
382
 
377
- - [`13d807ed06f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/13d807ed06f) - [MEX-1027] Migrate to @emotion/react in Media-card
383
+ - [#22642](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22642) [`13d807ed06f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/13d807ed06f) - [MEX-1027] Migrate to @emotion/react in Media-card
378
384
 
379
385
  ### Minor Changes
380
386
 
@@ -390,7 +396,7 @@
390
396
 
391
397
  ### Minor Changes
392
398
 
393
- - [`01203d58916`](https://bitbucket.org/atlassian/atlassian-frontend/commits/01203d58916) - Removed Unnecessary semicolon found in media-card
399
+ - [#22029](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22029) [`01203d58916`](https://bitbucket.org/atlassian/atlassian-frontend/commits/01203d58916) - Removed Unnecessary semicolon found in media-card
394
400
  - [`1a76e2839e6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1a76e2839e6) - Default value for mediaUploadApiV2 Media feature flag set to true.
395
401
 
396
402
  ### Patch Changes
@@ -402,7 +408,7 @@
402
408
 
403
409
  ### Minor Changes
404
410
 
405
- - [`bfde909c9b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bfde909c9b4) - Add new feature flag mediaUploadApiV2
411
+ - [#21570](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21570) [`bfde909c9b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bfde909c9b4) - Add new feature flag mediaUploadApiV2
406
412
  - [`ed6cdd2d397`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ed6cdd2d397) - added onfullscreenchange property to media to avoid triggering table resizing when media is in full screen mode
407
413
 
408
414
  ### Patch Changes
@@ -418,7 +424,7 @@
418
424
 
419
425
  ### Minor Changes
420
426
 
421
- - [`b4fd2a59367`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b4fd2a59367) - Attach media environment and region to the media-card UFO events
427
+ - [#20721](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20721) [`b4fd2a59367`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b4fd2a59367) - Attach media environment and region to the media-card UFO events
422
428
  - [`7e767393469`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e767393469) - Add ufo feature flag logging to `media-card`
423
429
  - [`ade1a5c3e23`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ade1a5c3e23) - Flagged events with file states processing and uploading for UFO payload
424
430
 
@@ -433,14 +439,14 @@
433
439
 
434
440
  ### Patch Changes
435
441
 
436
- - [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade to TypeScript 4.2.4
442
+ - [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650) [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade to TypeScript 4.2.4
437
443
  - Updated dependencies
438
444
 
439
445
  ## 73.5.0
440
446
 
441
447
  ### Minor Changes
442
448
 
443
- - [`02fb8e78fb9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/02fb8e78fb9) - Implement media card render UFO experience
449
+ - [#20033](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20033) [`02fb8e78fb9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/02fb8e78fb9) - Implement media card render UFO experience
444
450
 
445
451
  ### Patch Changes
446
452
 
@@ -453,19 +459,19 @@
453
459
 
454
460
  ### Patch Changes
455
461
 
456
- - [`c102bb59f41`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c102bb59f41) - Viewport detector needs to have absolute positioning so that it does not cause scroll bars in firefox when rendered in a table with a link.
462
+ - [#20471](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20471) [`c102bb59f41`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c102bb59f41) - Viewport detector needs to have absolute positioning so that it does not cause scroll bars in firefox when rendered in a table with a link.
457
463
 
458
464
  ## 73.4.1
459
465
 
460
466
  ### Patch Changes
461
467
 
462
- - [`de7e2ff674e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/de7e2ff674e) - Applies a fix to ensure that the media card viewport detector is never a click target
468
+ - [#20369](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20369) [`de7e2ff674e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/de7e2ff674e) - Applies a fix to ensure that the media card viewport detector is never a click target
463
469
 
464
470
  ## 73.4.0
465
471
 
466
472
  ### Minor Changes
467
473
 
468
- - [`e7581c27aff`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e7581c27aff) - Removed unused dev dependencies
474
+ - [#19618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19618) [`e7581c27aff`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e7581c27aff) - Removed unused dev dependencies
469
475
  - [`f862d5ae7aa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f862d5ae7aa) - remove RxJs peer dependency
470
476
  - [`118f3af101f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/118f3af101f) - Media Client APIs has been updated to use MediaSubscribable which provides subscription functionality (similar to RxJs observables).
471
477
  It exposes subscribe method that is called with MediaObserver as an argument and returns MediaSubscription.
@@ -551,20 +557,20 @@
551
557
 
552
558
  ### Patch Changes
553
559
 
554
- - [`4f97dd898fc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4f97dd898fc) - EDM-2995: fix media inline icon, use mimeType to render a better icon type
560
+ - [#19796](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19796) [`4f97dd898fc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4f97dd898fc) - EDM-2995: fix media inline icon, use mimeType to render a better icon type
555
561
  - Updated dependencies
556
562
 
557
563
  ## 73.3.1
558
564
 
559
565
  ### Patch Changes
560
566
 
561
- - [`9671dfa12b1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9671dfa12b1) - Revert [MEX-1276] fix vertical scroll for firefox when media link is wrapped
567
+ - [#19569](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19569) [`9671dfa12b1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9671dfa12b1) - Revert [MEX-1276] fix vertical scroll for firefox when media link is wrapped
562
568
 
563
569
  ## 73.3.0
564
570
 
565
571
  ### Minor Changes
566
572
 
567
- - [`7d8e24c4dcd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7d8e24c4dcd) - Log reliability of Media Card SSR
573
+ - [#19019](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19019) [`7d8e24c4dcd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7d8e24c4dcd) - Log reliability of Media Card SSR
568
574
 
569
575
  ### Patch Changes
570
576
 
@@ -574,8 +580,8 @@
574
580
 
575
581
  ### Minor Changes
576
582
 
577
- - [`3ad0bbf0f93`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3ad0bbf0f93) - Log media ssr getImageURLSync error in global variable ssr data.
578
- - [`1dcf16cb69e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1dcf16cb69e) - Reuse image url from server when hydrates and refetch if dimensions in client are bigger
583
+ - [#18526](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18526) [`3ad0bbf0f93`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3ad0bbf0f93) - Log media ssr getImageURLSync error in global variable ssr data.
584
+ - [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752) [`1dcf16cb69e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1dcf16cb69e) - Reuse image url from server when hydrates and refetch if dimensions in client are bigger
579
585
  - [`a5cabf7f670`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a5cabf7f670) - Made InlinePlayer compatible with SSR
580
586
 
581
587
  ### Patch Changes
@@ -593,7 +599,7 @@
593
599
 
594
600
  ### Patch Changes
595
601
 
596
- - [`9ca8f7e9d74`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9ca8f7e9d74) - Revert extra image visibility style for media card
602
+ - [#18528](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18528) [`9ca8f7e9d74`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9ca8f7e9d74) - Revert extra image visibility style for media card
597
603
 
598
604
  ## 73.1.0
599
605
 
@@ -617,7 +623,7 @@
617
623
 
618
624
  ### Major Changes
619
625
 
620
- - [`47f58da5946`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47f58da5946) - ED-13322, ED-13324, ED-13326, ED-13323, ED-13204: Upgrade and support react-intl@^5.18.1 including breaking API changes, types and tests in atlassian-frontend packages
626
+ - [#14810](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14810) [`47f58da5946`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47f58da5946) - ED-13322, ED-13324, ED-13326, ED-13323, ED-13204: Upgrade and support react-intl@^5.18.1 including breaking API changes, types and tests in atlassian-frontend packages
621
627
 
622
628
  What changed: Upgraded our react-intl support from ^2.6.0 to ^5.18.1. This means editor packages now rely on consumers installing ^5.18.1, otherwise editor usage of react-intl will mismatch with actual installed react-intl APIs.
623
629
  Why change was made: As part of a coordinated upgrade effort across AF packages, as react-intl v2 is quite dated.
@@ -663,7 +669,7 @@
663
669
 
664
670
  ### Minor Changes
665
671
 
666
- - [`1724e1b8277`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1724e1b8277) - Added SSR capabilities to Media Card
672
+ - [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998) [`1724e1b8277`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1724e1b8277) - Added SSR capabilities to Media Card
667
673
  - [`ca519a86b1d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ca519a86b1d) - Add new prop forceSyncDisplay in MediaImage to provide an option of always showing images.
668
674
  Enable MediaCard to turn on forceSyncDisplay when server side rendering is enabled.
669
675
  - [`ac4846d0f3f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac4846d0f3f) - Added native lazy load support
@@ -685,7 +691,7 @@
685
691
 
686
692
  ### Major Changes
687
693
 
688
- - [`b3606652fa1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b3606652fa1) - [ux] Editor integration for Media Inline component
694
+ - [#14777](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14777) [`b3606652fa1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b3606652fa1) - [ux] Editor integration for Media Inline component
689
695
 
690
696
  ### Minor Changes
691
697
 
@@ -703,7 +709,7 @@
703
709
 
704
710
  ### Major Changes
705
711
 
706
- - [`cf853e39278`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf853e39278) - [ux] Updated and refreshed media inline component
712
+ - [#14319](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14319) [`cf853e39278`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf853e39278) - [ux] Updated and refreshed media inline component
707
713
 
708
714
  ### Minor Changes
709
715
 
@@ -721,7 +727,7 @@
721
727
 
722
728
  ### Minor Changes
723
729
 
724
- - [`5559b9ca1b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5559b9ca1b4) - Media CardView component renders consistent views in error and failed-processing status regardless of thumbnail image.
730
+ - [#13864](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13864) [`5559b9ca1b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5559b9ca1b4) - Media CardView component renders consistent views in error and failed-processing status regardless of thumbnail image.
725
731
  - [`9ecd471f124`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9ecd471f124) - Adding a dedicated server side media card
726
732
  - [`ab905c0e924`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ab905c0e924) - [ux] EDM-1641: add floating toolbar to media card and view switcher for inline view
727
733
  - [`46d9d2872b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/46d9d2872b4) - Video Analytics - Add UI events for CustomMediaPlayer
@@ -742,7 +748,7 @@
742
748
 
743
749
  ### Minor Changes
744
750
 
745
- - [`710e03c4b58`](https://bitbucket.org/atlassian/atlassian-frontend/commits/710e03c4b58) - Revert Image Render Analytics Refactoring
751
+ - [#13302](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13302) [`710e03c4b58`](https://bitbucket.org/atlassian/atlassian-frontend/commits/710e03c4b58) - Revert Image Render Analytics Refactoring
746
752
  - [`8e6a1034cfd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8e6a1034cfd) - EDM-1730: added in-product Cypress tests for Smart Links
747
753
 
748
754
  ### Patch Changes
@@ -754,7 +760,7 @@
754
760
 
755
761
  ### Minor Changes
756
762
 
757
- - [`fb1ca71dd2c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fb1ca71dd2c) - Render a spinner in the background of CardView component when card status is loading
763
+ - [#12837](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12837) [`fb1ca71dd2c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fb1ca71dd2c) - Render a spinner in the background of CardView component when card status is loading
758
764
 
759
765
  ### Patch Changes
760
766
 
@@ -766,7 +772,7 @@
766
772
 
767
773
  ### Patch Changes
768
774
 
769
- - [`99d444aac1b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/99d444aac1b) - Replaced metadata object for fileState in Card internal state.
775
+ - [#12328](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12328) [`99d444aac1b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/99d444aac1b) - Replaced metadata object for fileState in Card internal state.
770
776
  - [`99411613963`](https://bitbucket.org/atlassian/atlassian-frontend/commits/99411613963) - Render spinner while waiting for card component to mount
771
777
  - Updated dependencies
772
778
 
@@ -774,7 +780,7 @@
774
780
 
775
781
  ### Minor Changes
776
782
 
777
- - [`42c7f13ac31`](https://bitbucket.org/atlassian/atlassian-frontend/commits/42c7f13ac31) - export inlinePlayerClassName
783
+ - [#11649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11649) [`42c7f13ac31`](https://bitbucket.org/atlassian/atlassian-frontend/commits/42c7f13ac31) - export inlinePlayerClassName
778
784
  export newFileExperienceClassName
779
785
 
780
786
  ### Patch Changes
@@ -786,20 +792,20 @@
786
792
 
787
793
  ### Patch Changes
788
794
 
789
- - [`9e09b407b43`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e09b407b43) - Exclude `__tests_external__` from the `build/tsconfig.json`.
795
+ - [#11778](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11778) [`9e09b407b43`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e09b407b43) - Exclude `__tests_external__` from the `build/tsconfig.json`.
790
796
  Add `local-cypress` and remove types export.
791
797
 
792
798
  ## 70.7.2
793
799
 
794
800
  ### Patch Changes
795
801
 
796
- - [`070261ec304`](https://bitbucket.org/atlassian/atlassian-frontend/commits/070261ec304) - Fix Cypress types for packages
802
+ - [#11723](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11723) [`070261ec304`](https://bitbucket.org/atlassian/atlassian-frontend/commits/070261ec304) - Fix Cypress types for packages
797
803
 
798
804
  ## 70.7.1
799
805
 
800
806
  ### Patch Changes
801
807
 
802
- - [`3cd9ee2d15b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3cd9ee2d15b) - Added RxJS compatiblity notice in Media docs
808
+ - [#11113](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11113) [`3cd9ee2d15b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3cd9ee2d15b) - Added RxJS compatiblity notice in Media docs
803
809
  - [`6be6879ef6d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6be6879ef6d) - Added Media Feature Flags control in examples
804
810
  - [`47ebd02a8d1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47ebd02a8d1) - Removed lazy load logic from root component
805
811
  - Updated dependencies
@@ -808,7 +814,7 @@
808
814
 
809
815
  ### Minor Changes
810
816
 
811
- - [`edafe75c2c0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/edafe75c2c0) - Expose new InlineMediaCard component
817
+ - [#10569](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10569) [`edafe75c2c0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/edafe75c2c0) - Expose new InlineMediaCard component
812
818
  - [`6acd8953267`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6acd8953267) - [ux] Removed Retry Button from Classic Experience
813
819
  - [`219ec9b60d9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/219ec9b60d9) - Disable tooltip for images and videos without overlay
814
820
 
@@ -820,7 +826,7 @@
820
826
 
821
827
  ### Minor Changes
822
828
 
823
- - [`d575abf3498`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d575abf3498) - EDM-1640: Introduce Cypress in-product tests in Atlassian Frontend
829
+ - [#10230](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10230) [`d575abf3498`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d575abf3498) - EDM-1640: Introduce Cypress in-product tests in Atlassian Frontend
824
830
 
825
831
  Example test:
826
832
 
@@ -842,7 +848,7 @@
842
848
 
843
849
  ### Patch Changes
844
850
 
845
- - [`859f4e95fb7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/859f4e95fb7) - Fires analytics events from an internal module
851
+ - [#9510](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9510) [`859f4e95fb7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/859f4e95fb7) - Fires analytics events from an internal module
846
852
  - [`a8c69bc44f9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a8c69bc44f9) - Log analytics events for errors thrown from preview fetch
847
853
  - [`abc38bc9990`](https://bitbucket.org/atlassian/atlassian-frontend/commits/abc38bc9990) - Added request metadata to failed frontend SLIs
848
854
  - Updated dependencies
@@ -851,7 +857,7 @@
851
857
 
852
858
  ### Minor Changes
853
859
 
854
- - [`56104b9cc12`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56104b9cc12) - add data-testid="media-card-play-button" for video files on preview mode
860
+ - [#9083](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9083) [`56104b9cc12`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56104b9cc12) - add data-testid="media-card-play-button" for video files on preview mode
855
861
 
856
862
  ### Patch Changes
857
863
 
@@ -862,7 +868,7 @@
862
868
 
863
869
  ### Minor Changes
864
870
 
865
- - [`f0a900eb563`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f0a900eb563) - [ux] Added option for products to enable download button MediaCard when a user hovers over a card.
871
+ - [#8644](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8644) [`f0a900eb563`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f0a900eb563) - [ux] Added option for products to enable download button MediaCard when a user hovers over a card.
866
872
  - [`ceb8a18d7dd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ceb8a18d7dd) - Filtering Feature Flags when attaching them to Analytics Context through the HOC
867
873
  - [`e66ffd11ac6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e66ffd11ac6) - Refactored Analytics Events. Slight differences in payloads and contexts
868
874
 
@@ -881,14 +887,14 @@
881
887
 
882
888
  ### Patch Changes
883
889
 
884
- - [`5380459f37b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5380459f37b) - [ux] Play icon on media video player has been adjusted in size to better match ADG
890
+ - [#8178](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8178) [`5380459f37b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5380459f37b) - [ux] Play icon on media video player has been adjusted in size to better match ADG
885
891
  - Updated dependencies
886
892
 
887
893
  ## 70.3.2
888
894
 
889
895
  ### Patch Changes
890
896
 
891
- - [`1f4d55e86a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f4d55e86a) - Minor syntax fix
897
+ - [#7425](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7425) [`1f4d55e86a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f4d55e86a) - Minor syntax fix
892
898
  - [`7e990a036d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e990a036d) - Removed Feature Flag Control from Card View Matrix example
893
899
  - [`63bff65641`](https://bitbucket.org/atlassian/atlassian-frontend/commits/63bff65641) - [ux] Making the VidPlayButton bigger
894
900
  - Updated dependencies
@@ -897,7 +903,7 @@
897
903
 
898
904
  ### Patch Changes
899
905
 
900
- - [`758aa08653`](https://bitbucket.org/atlassian/atlassian-frontend/commits/758aa08653) - Polling Fuction throws the inner error instead of wrapping it
906
+ - [#7170](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7170) [`758aa08653`](https://bitbucket.org/atlassian/atlassian-frontend/commits/758aa08653) - Polling Fuction throws the inner error instead of wrapping it
901
907
  - [`0553f6db92`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0553f6db92) - Styled components code refactor
902
908
  - [`b37190888c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b37190888c) - ensure polling errors trigger more graceful UX
903
909
  - [`bacab2338b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bacab2338b) - Updated error message displayed when a Polling Error has been thrown
@@ -913,7 +919,7 @@
913
919
 
914
920
  ### Minor Changes
915
921
 
916
- - [`56693486a3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56693486a3) - [ux] Rate Limited UI for the MediaViewer. Also moved a MediaCard function into MediaClient so that that functionality can be used across multiple packages
922
+ - [#6930](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/6930) [`56693486a3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56693486a3) - [ux] Rate Limited UI for the MediaViewer. Also moved a MediaCard function into MediaClient so that that functionality can be used across multiple packages
917
923
 
918
924
  ### Patch Changes
919
925
 
@@ -925,7 +931,7 @@
925
931
 
926
932
  ### Minor Changes
927
933
 
928
- - [`11d6640e9c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/11d6640e9c) - [ux] New UI states for when a card is rate limited
934
+ - [#6571](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/6571) [`11d6640e9c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/11d6640e9c) - [ux] New UI states for when a card is rate limited
929
935
  - [`48995f73b2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/48995f73b2) - Create entry points to export internal API isolated from UI changes.
930
936
 
931
937
  ### Patch Changes
@@ -938,13 +944,13 @@
938
944
 
939
945
  ### Patch Changes
940
946
 
941
- - [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile packages using babel rather than tsc
947
+ - [#5857](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5857) [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile packages using babel rather than tsc
942
948
 
943
949
  ## 70.1.0
944
950
 
945
951
  ### Minor Changes
946
952
 
947
- - [`aac7ffcb97`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aac7ffcb97) - [ux] While a file has a 'processing' filestate, we now alert the user that we are creating the preview. This signifies to the user that they can download & view a file while the preview is being generated (i.e they don't have to wait). Also added a 'Failed Processing' UI state, for when a preview cannot be generated and is thus unavailable
953
+ - [#6228](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/6228) [`aac7ffcb97`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aac7ffcb97) - [ux] While a file has a 'processing' filestate, we now alert the user that we are creating the preview. This signifies to the user that they can download & view a file while the preview is being generated (i.e they don't have to wait). Also added a 'Failed Processing' UI state, for when a preview cannot be generated and is thus unavailable
948
954
 
949
955
  ### Patch Changes
950
956
 
@@ -956,7 +962,7 @@
956
962
 
957
963
  ### Major Changes
958
964
 
959
- - [`dc8f998c1c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dc8f998c1c) - Added visual regression tests for media-cards. Also created a new examples page specifically for these VR tests
965
+ - [#5860](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5860) [`dc8f998c1c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dc8f998c1c) - Added visual regression tests for media-cards. Also created a new examples page specifically for these VR tests
960
966
  - [`f4a2c533f4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f4a2c533f4) - Fix wrong dependency
961
967
 
962
968
  ### Patch Changes
@@ -967,7 +973,7 @@
967
973
 
968
974
  ### Minor Changes
969
975
 
970
- - [`669b5e4240`](https://bitbucket.org/atlassian/atlassian-frontend/commits/669b5e4240) - Add support for specifying background colour and icon for the title box
976
+ - [#5516](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5516) [`669b5e4240`](https://bitbucket.org/atlassian/atlassian-frontend/commits/669b5e4240) - Add support for specifying background colour and icon for the title box
971
977
 
972
978
  ### Patch Changes
973
979
 
@@ -979,7 +985,7 @@
979
985
 
980
986
  ### Patch Changes
981
987
 
982
- - [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules compiler option.
988
+ - [#5497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5497) [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules compiler option.
983
989
  This requires version 3.8 of Typescript, read more about how we handle Typescript versions here: https://atlaskit.atlassian.com/get-started
984
990
  Also add `typescript` to `devDependencies` to denote version that the package was built with.
985
991
 
@@ -993,7 +999,7 @@
993
999
 
994
1000
  ### Minor Changes
995
1001
 
996
- - [`ae50a98f18`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ae50a98f18) - ED-9125 ED-8837 Update styles for selected media cards
1002
+ - [#4749](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4749) [`ae50a98f18`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ae50a98f18) - ED-9125 ED-8837 Update styles for selected media cards
997
1003
 
998
1004
  - Use editor selection styles from @atlaskit/editor-shared-styles
999
1005
  - Update UI for selected items in media group to no longer set blue background and tick in corner
@@ -1009,13 +1015,13 @@
1009
1015
 
1010
1016
  ### Patch Changes
1011
1017
 
1012
- - [`56eff9f60d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56eff9f60d) - Fixed card previews failing in new Jira attachments experience (affects @atlaskit/media-card@69.2.2 onwards)
1018
+ - [#5076](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5076) [`56eff9f60d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56eff9f60d) - Fixed card previews failing in new Jira attachments experience (affects @atlaskit/media-card@69.2.2 onwards)
1013
1019
 
1014
1020
  ## 69.3.2
1015
1021
 
1016
1022
  ### Patch Changes
1017
1023
 
1018
- - [`631412a7f6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/631412a7f6) - Revert usage of flex for media card UI
1024
+ - [#4647](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4647) [`631412a7f6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/631412a7f6) - Revert usage of flex for media card UI
1019
1025
 
1020
1026
  ## 69.3.1
1021
1027
 
@@ -1027,7 +1033,7 @@
1027
1033
 
1028
1034
  ### Minor Changes
1029
1035
 
1030
- - [`a106c17833`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a106c17833) - Adds support for Intl in Media Card Date
1036
+ - [#4424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4424) [`a106c17833`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a106c17833) - Adds support for Intl in Media Card Date
1031
1037
  - [`8fc5fe20df`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8fc5fe20df) - Inline video player as part of the card and video player in media-viewer will now store last viewed position between sessions for given media id
1032
1038
 
1033
1039
  ### Patch Changes
@@ -1042,7 +1048,7 @@
1042
1048
 
1043
1049
  ### Patch Changes
1044
1050
 
1045
- - [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded to TypeScript 3.9.6 and tslib to 2.0.0
1051
+ - [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885) [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded to TypeScript 3.9.6 and tslib to 2.0.0
1046
1052
 
1047
1053
  Since tslib is a dependency for all our packages we recommend that products also follow this tslib upgrade
1048
1054
  to prevent duplicates of tslib being bundled.
@@ -1051,7 +1057,7 @@
1051
1057
 
1052
1058
  ### Minor Changes
1053
1059
 
1054
- - [`65652ba165`](https://bitbucket.org/atlassian/atlassian-frontend/commits/65652ba165) - Added 15 new icons based on the mimetype (.sketch, .gif, ect). Previously, we only had 6 icons based on the mediaType (doc/audio/unknown/image/video). Also created a dedicated examples page for icons
1060
+ - [#3823](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3823) [`65652ba165`](https://bitbucket.org/atlassian/atlassian-frontend/commits/65652ba165) - Added 15 new icons based on the mimetype (.sketch, .gif, ect). Previously, we only had 6 icons based on the mediaType (doc/audio/unknown/image/video). Also created a dedicated examples page for icons
1055
1061
  - [`48f416a9d9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/48f416a9d9) - Exporting new css class name for cardImageView: fileCardImageViewSelector
1056
1062
  - [`6faafb144c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6faafb144c) - Introduce MediaFeatureFlags. Refactor components to use.
1057
1063
  - [`861d585ba8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/861d585ba8) - Changed mediaSingle to now render it's child adf nodes using nodeviews rather than directly with react
@@ -1082,7 +1088,7 @@
1082
1088
 
1083
1089
  ### Minor Changes
1084
1090
 
1085
- - [`50d947cdae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/50d947cdae) - Added Media Card New Experience behind a feature flag
1091
+ - [#3428](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3428) [`50d947cdae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/50d947cdae) - Added Media Card New Experience behind a feature flag
1086
1092
  - [`8502dcbdaa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8502dcbdaa) - Adding icons for media-card new experiences
1087
1093
  - [`f98a7a056b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f98a7a056b) - Add action buttons to the new media card experience
1088
1094
  - [`34be68ad22`](https://bitbucket.org/atlassian/atlassian-frontend/commits/34be68ad22) - Ellipsifying the titlebox name if the length of the name overflows the mediacard width
@@ -1114,7 +1120,7 @@
1114
1120
 
1115
1121
  ### Major Changes
1116
1122
 
1117
- - [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially dropping IE11 support, from this version onwards there are no warranties of the package working in IE11.
1123
+ - [#3335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3335) [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially dropping IE11 support, from this version onwards there are no warranties of the package working in IE11.
1118
1124
  For more information see: https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
1119
1125
 
1120
1126
  ### Patch Changes
@@ -1125,7 +1131,7 @@
1125
1131
 
1126
1132
  ### Patch Changes
1127
1133
 
1128
- - [`e04c837864`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e04c837864) - File-state-errors should only be fired when the filestate is Error OR failed-processing
1134
+ - [#2763](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2763) [`e04c837864`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e04c837864) - File-state-errors should only be fired when the filestate is Error OR failed-processing
1129
1135
  - [`5989238f54`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5989238f54) - Reuse existing preview in InlineVideoPlayer to prevent re renders when video is uploading
1130
1136
  - [`3879663f8b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3879663f8b) - Replace use of findDOMNode with React.Ref
1131
1137
  - Updated dependencies
@@ -1134,14 +1140,14 @@
1134
1140
 
1135
1141
  ### Patch Changes
1136
1142
 
1137
- - [`eaade3e0e3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eaade3e0e3) - Added Feature Flag placeholder: Media Card New Experience
1143
+ - [#2443](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2443) [`eaade3e0e3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eaade3e0e3) - Added Feature Flag placeholder: Media Card New Experience
1138
1144
  - Updated dependencies
1139
1145
 
1140
1146
  ## 68.0.0
1141
1147
 
1142
1148
  ### Major Changes
1143
1149
 
1144
- - [`4ffbda40ca`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ffbda40ca) - Rename OriginalCardDimensions TS interface to NumericalCardDimensions
1150
+ - [#2137](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2137) [`4ffbda40ca`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ffbda40ca) - Rename OriginalCardDimensions TS interface to NumericalCardDimensions
1145
1151
 
1146
1152
  ### Minor Changes
1147
1153
 
@@ -1167,7 +1173,7 @@
1167
1173
 
1168
1174
  ### Patch Changes
1169
1175
 
1170
- - [`128b80c4ba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/128b80c4ba) - Changing the way error analytics are fired for unpreviewable files, as an undefined mediatype is classified as 'unpreviewable'- Updated dependencies
1176
+ - [#1868](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/1868) [`128b80c4ba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/128b80c4ba) - Changing the way error analytics are fired for unpreviewable files, as an undefined mediatype is classified as 'unpreviewable'- Updated dependencies
1171
1177
 
1172
1178
  ## 67.2.1
1173
1179