@atlaskit/media-card 77.0.2 → 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 (115) hide show
  1. package/CHANGELOG.md +106 -94
  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 +4 -4
  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/progressBar/styledBar.js +2 -1
  96. package/dist/es2019/card/ui/tickBox/styles.js +1 -1
  97. package/dist/es2019/card/v2/cardV2.js +3 -3
  98. package/dist/es2019/card/v2/cardViewV2.js +300 -0
  99. package/dist/es2019/inline/loader.js +1 -1
  100. package/dist/es2019/utils/ufoExperiences.js +1 -1
  101. package/dist/esm/card/card.js +5 -5
  102. package/dist/esm/card/media-card-analytics-error-boundary.js +4 -4
  103. package/dist/esm/card/ui/blanket/blanket.js +2 -1
  104. package/dist/esm/card/ui/progressBar/styledBar.js +2 -1
  105. package/dist/esm/card/ui/tickBox/styles.js +1 -1
  106. package/dist/esm/card/v2/cardV2.js +7 -7
  107. package/dist/esm/card/v2/cardViewV2.js +299 -0
  108. package/dist/esm/inline/loader.js +1 -1
  109. package/dist/esm/inline/mediaInlineAnalyticsErrorBoundary.js +2 -2
  110. package/dist/esm/utils/analytics.js +4 -4
  111. package/dist/esm/utils/mockIntersectionObserver.js +3 -3
  112. package/dist/esm/utils/ufoExperiences.js +1 -1
  113. package/dist/types/card/v2/cardViewV2.d.ts +44 -0
  114. package/dist/types-ts4.5/card/v2/cardViewV2.d.ts +44 -0
  115. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,22 +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
+
9
+ ## 77.0.3
10
+
11
+ ### Patch Changes
12
+
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.
14
+
3
15
  ## 77.0.2
4
16
 
5
17
  ### Patch Changes
6
18
 
7
- - [`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
8
20
 
9
21
  ## 77.0.1
10
22
 
11
23
  ### Patch Changes
12
24
 
13
- - [`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.
14
26
 
15
27
  ## 77.0.0
16
28
 
17
29
  ### Major Changes
18
30
 
19
- - [`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
20
32
 
21
33
  ### Patch Changes
22
34
 
@@ -26,13 +38,13 @@
26
38
 
27
39
  ### Patch Changes
28
40
 
29
- - [`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.
30
42
 
31
43
  ## 76.2.0
32
44
 
33
45
  ### Minor Changes
34
46
 
35
- - [`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.
36
48
  Introducing 'media-client-react' to provide hooks for seamless media-client integration with React.
37
49
  Introducing 'MediaCardV2' with a feature flag to replace rxjs based fileState subscription with 'useFileState' hook.
38
50
  Removed unused feature flags APIs from 'media-client' and its helper functions from 'media-common'.
@@ -51,14 +63,14 @@
51
63
 
52
64
  ### Patch Changes
53
65
 
54
- - [`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
55
67
  - Updated dependencies
56
68
 
57
69
  ## 76.1.0
58
70
 
59
71
  ### Minor Changes
60
72
 
61
- - [`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
62
74
 
63
75
  ### Patch Changes
64
76
 
@@ -68,45 +80,45 @@
68
80
 
69
81
  ### Patch Changes
70
82
 
71
- - [`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
72
84
 
73
85
  ## 76.0.5
74
86
 
75
87
  ### Patch Changes
76
88
 
77
- - [`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.
78
90
 
79
91
  ## 76.0.4
80
92
 
81
93
  ### Patch Changes
82
94
 
83
- - [`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
84
96
 
85
97
  ## 76.0.3
86
98
 
87
99
  ### Patch Changes
88
100
 
89
- - [`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
90
102
  - Updated dependencies
91
103
 
92
104
  ## 76.0.2
93
105
 
94
106
  ### Patch Changes
95
107
 
96
- - [`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
97
109
  - Updated dependencies
98
110
 
99
111
  ## 76.0.1
100
112
 
101
113
  ### Patch Changes
102
114
 
103
- - [`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
104
116
 
105
117
  ## 76.0.0
106
118
 
107
119
  ### Major Changes
108
120
 
109
- - [`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
110
122
  - [`3247424b653`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3247424b653) - Removed the classname 'fileCardImageViewSelectedSelector' since it is no longer being used
111
123
 
112
124
  ### Minor Changes
@@ -122,13 +134,13 @@
122
134
 
123
135
  ### Patch Changes
124
136
 
125
- - [`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
126
138
 
127
139
  ## 75.0.0
128
140
 
129
141
  ### Major Changes
130
142
 
131
- - [`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
132
144
 
133
145
  ### Patch Changes
134
146
 
@@ -140,13 +152,13 @@
140
152
 
141
153
  ### Patch Changes
142
154
 
143
- - [`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`
144
156
 
145
157
  ## 74.8.0
146
158
 
147
159
  ### Minor Changes
148
160
 
149
- - [`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
150
162
 
151
163
  ### Patch Changes
152
164
 
@@ -156,7 +168,7 @@
156
168
 
157
169
  ### Patch Changes
158
170
 
159
- - [`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
160
172
  - added inline card file states example
161
173
  - [`e8bb5592bf8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e8bb5592bf8) - MEX-2140 Refactor error boundary of media inline card
162
174
  - Updated dependencies
@@ -165,7 +177,7 @@
165
177
 
166
178
  ### Patch Changes
167
179
 
168
- - [`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
169
181
  - [`0f99ed9df35`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0f99ed9df35) - Updated example
170
182
  - Updated dependencies
171
183
 
@@ -173,20 +185,20 @@
173
185
 
174
186
  ### Patch Changes
175
187
 
176
- - [`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.
177
189
 
178
190
  ## 74.7.1
179
191
 
180
192
  ### Patch Changes
181
193
 
182
- - [`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
183
195
  - Updated dependencies
184
196
 
185
197
  ## 74.7.0
186
198
 
187
199
  ### Minor Changes
188
200
 
189
- - [`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
190
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.
191
203
 
192
204
  ### Patch Changes
@@ -197,13 +209,13 @@
197
209
 
198
210
  ### Patch Changes
199
211
 
200
- - [`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
201
213
 
202
214
  ## 74.6.0
203
215
 
204
216
  ### Minor Changes
205
217
 
206
- - [`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
207
219
 
208
220
  ### Patch Changes
209
221
 
@@ -220,13 +232,13 @@
220
232
 
221
233
  ### Patch Changes
222
234
 
223
- - [`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.
224
236
 
225
237
  ## 74.5.0
226
238
 
227
239
  ### Minor Changes
228
240
 
229
- - [`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
230
242
 
231
243
  ### Patch Changes
232
244
 
@@ -238,14 +250,14 @@
238
250
 
239
251
  ### Patch Changes
240
252
 
241
- - [`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
242
254
  - Updated dependencies
243
255
 
244
256
  ## 74.4.0
245
257
 
246
258
  ### Minor Changes
247
259
 
248
- - [`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
249
261
  - [`0bccac57db6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0bccac57db6) - remove mediaUploadApiV2 Feature flag
250
262
 
251
263
  ### Patch Changes
@@ -273,7 +285,7 @@
273
285
 
274
286
  ### Minor Changes
275
287
 
276
- - [`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`.
277
289
 
278
290
  New tokens will be visible only in applications configured to use the new Tokens API (currently in alpha).
279
291
  These changes are intended to be interoperable with the legacy theme implementation. Legacy dark mode users should expect no visual or breaking changes.
@@ -287,7 +299,7 @@
287
299
 
288
300
  ### Minor Changes
289
301
 
290
- - [`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.
291
303
 
292
304
  ### Patch Changes
293
305
 
@@ -298,13 +310,13 @@
298
310
 
299
311
  ### Patch Changes
300
312
 
301
- - [`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
302
314
 
303
315
  ## 74.1.8
304
316
 
305
317
  ### Patch Changes
306
318
 
307
- - [`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.
308
320
  - [`09464edc105`](https://bitbucket.org/atlassian/atlassian-frontend/commits/09464edc105) - ⚠️ Big Folder Structure Refactor
309
321
  - [`60fb320493e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/60fb320493e) - Fixed circular imports
310
322
  - [`9f23fe7478e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9f23fe7478e) - Fixed Card Actions Dropdown Menu positioning
@@ -315,25 +327,25 @@
315
327
 
316
328
  ### Patch Changes
317
329
 
318
- - [`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.
319
331
 
320
332
  ## 74.1.5
321
333
 
322
334
  ### Patch Changes
323
335
 
324
- - [`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`
325
337
 
326
338
  ## 74.1.4
327
339
 
328
340
  ### Patch Changes
329
341
 
330
- - [`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
331
343
 
332
344
  ## 74.1.3
333
345
 
334
346
  ### Patch Changes
335
347
 
336
- - [`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
337
349
  - replace usage of @local-cypress package with @cypress
338
350
  - bump @cypress from ^6.4.0 to ^7.7.0
339
351
  - import cypress types into @atlaskit/in-product-testing tsconfig
@@ -342,20 +354,20 @@
342
354
 
343
355
  ### Patch Changes
344
356
 
345
- - [`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
346
358
  - Updated dependencies
347
359
 
348
360
  ## 74.1.1
349
361
 
350
362
  ### Patch Changes
351
363
 
352
- - [`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`.
353
365
 
354
366
  ## 74.1.0
355
367
 
356
368
  ### Minor Changes
357
369
 
358
- - [`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.
359
371
 
360
372
  ### Patch Changes
361
373
 
@@ -368,7 +380,7 @@
368
380
 
369
381
  ### Major Changes
370
382
 
371
- - [`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
372
384
 
373
385
  ### Minor Changes
374
386
 
@@ -384,7 +396,7 @@
384
396
 
385
397
  ### Minor Changes
386
398
 
387
- - [`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
388
400
  - [`1a76e2839e6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1a76e2839e6) - Default value for mediaUploadApiV2 Media feature flag set to true.
389
401
 
390
402
  ### Patch Changes
@@ -396,7 +408,7 @@
396
408
 
397
409
  ### Minor Changes
398
410
 
399
- - [`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
400
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
401
413
 
402
414
  ### Patch Changes
@@ -412,7 +424,7 @@
412
424
 
413
425
  ### Minor Changes
414
426
 
415
- - [`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
416
428
  - [`7e767393469`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e767393469) - Add ufo feature flag logging to `media-card`
417
429
  - [`ade1a5c3e23`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ade1a5c3e23) - Flagged events with file states processing and uploading for UFO payload
418
430
 
@@ -427,14 +439,14 @@
427
439
 
428
440
  ### Patch Changes
429
441
 
430
- - [`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
431
443
  - Updated dependencies
432
444
 
433
445
  ## 73.5.0
434
446
 
435
447
  ### Minor Changes
436
448
 
437
- - [`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
438
450
 
439
451
  ### Patch Changes
440
452
 
@@ -447,19 +459,19 @@
447
459
 
448
460
  ### Patch Changes
449
461
 
450
- - [`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.
451
463
 
452
464
  ## 73.4.1
453
465
 
454
466
  ### Patch Changes
455
467
 
456
- - [`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
457
469
 
458
470
  ## 73.4.0
459
471
 
460
472
  ### Minor Changes
461
473
 
462
- - [`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
463
475
  - [`f862d5ae7aa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f862d5ae7aa) - remove RxJs peer dependency
464
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).
465
477
  It exposes subscribe method that is called with MediaObserver as an argument and returns MediaSubscription.
@@ -545,20 +557,20 @@
545
557
 
546
558
  ### Patch Changes
547
559
 
548
- - [`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
549
561
  - Updated dependencies
550
562
 
551
563
  ## 73.3.1
552
564
 
553
565
  ### Patch Changes
554
566
 
555
- - [`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
556
568
 
557
569
  ## 73.3.0
558
570
 
559
571
  ### Minor Changes
560
572
 
561
- - [`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
562
574
 
563
575
  ### Patch Changes
564
576
 
@@ -568,8 +580,8 @@
568
580
 
569
581
  ### Minor Changes
570
582
 
571
- - [`3ad0bbf0f93`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3ad0bbf0f93) - Log media ssr getImageURLSync error in global variable ssr data.
572
- - [`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
573
585
  - [`a5cabf7f670`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a5cabf7f670) - Made InlinePlayer compatible with SSR
574
586
 
575
587
  ### Patch Changes
@@ -587,7 +599,7 @@
587
599
 
588
600
  ### Patch Changes
589
601
 
590
- - [`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
591
603
 
592
604
  ## 73.1.0
593
605
 
@@ -611,7 +623,7 @@
611
623
 
612
624
  ### Major Changes
613
625
 
614
- - [`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
615
627
 
616
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.
617
629
  Why change was made: As part of a coordinated upgrade effort across AF packages, as react-intl v2 is quite dated.
@@ -657,7 +669,7 @@
657
669
 
658
670
  ### Minor Changes
659
671
 
660
- - [`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
661
673
  - [`ca519a86b1d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ca519a86b1d) - Add new prop forceSyncDisplay in MediaImage to provide an option of always showing images.
662
674
  Enable MediaCard to turn on forceSyncDisplay when server side rendering is enabled.
663
675
  - [`ac4846d0f3f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac4846d0f3f) - Added native lazy load support
@@ -679,7 +691,7 @@
679
691
 
680
692
  ### Major Changes
681
693
 
682
- - [`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
683
695
 
684
696
  ### Minor Changes
685
697
 
@@ -697,7 +709,7 @@
697
709
 
698
710
  ### Major Changes
699
711
 
700
- - [`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
701
713
 
702
714
  ### Minor Changes
703
715
 
@@ -715,7 +727,7 @@
715
727
 
716
728
  ### Minor Changes
717
729
 
718
- - [`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.
719
731
  - [`9ecd471f124`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9ecd471f124) - Adding a dedicated server side media card
720
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
721
733
  - [`46d9d2872b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/46d9d2872b4) - Video Analytics - Add UI events for CustomMediaPlayer
@@ -736,7 +748,7 @@
736
748
 
737
749
  ### Minor Changes
738
750
 
739
- - [`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
740
752
  - [`8e6a1034cfd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8e6a1034cfd) - EDM-1730: added in-product Cypress tests for Smart Links
741
753
 
742
754
  ### Patch Changes
@@ -748,7 +760,7 @@
748
760
 
749
761
  ### Minor Changes
750
762
 
751
- - [`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
752
764
 
753
765
  ### Patch Changes
754
766
 
@@ -760,7 +772,7 @@
760
772
 
761
773
  ### Patch Changes
762
774
 
763
- - [`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.
764
776
  - [`99411613963`](https://bitbucket.org/atlassian/atlassian-frontend/commits/99411613963) - Render spinner while waiting for card component to mount
765
777
  - Updated dependencies
766
778
 
@@ -768,7 +780,7 @@
768
780
 
769
781
  ### Minor Changes
770
782
 
771
- - [`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
772
784
  export newFileExperienceClassName
773
785
 
774
786
  ### Patch Changes
@@ -780,20 +792,20 @@
780
792
 
781
793
  ### Patch Changes
782
794
 
783
- - [`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`.
784
796
  Add `local-cypress` and remove types export.
785
797
 
786
798
  ## 70.7.2
787
799
 
788
800
  ### Patch Changes
789
801
 
790
- - [`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
791
803
 
792
804
  ## 70.7.1
793
805
 
794
806
  ### Patch Changes
795
807
 
796
- - [`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
797
809
  - [`6be6879ef6d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6be6879ef6d) - Added Media Feature Flags control in examples
798
810
  - [`47ebd02a8d1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47ebd02a8d1) - Removed lazy load logic from root component
799
811
  - Updated dependencies
@@ -802,7 +814,7 @@
802
814
 
803
815
  ### Minor Changes
804
816
 
805
- - [`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
806
818
  - [`6acd8953267`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6acd8953267) - [ux] Removed Retry Button from Classic Experience
807
819
  - [`219ec9b60d9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/219ec9b60d9) - Disable tooltip for images and videos without overlay
808
820
 
@@ -814,7 +826,7 @@
814
826
 
815
827
  ### Minor Changes
816
828
 
817
- - [`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
818
830
 
819
831
  Example test:
820
832
 
@@ -836,7 +848,7 @@
836
848
 
837
849
  ### Patch Changes
838
850
 
839
- - [`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
840
852
  - [`a8c69bc44f9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a8c69bc44f9) - Log analytics events for errors thrown from preview fetch
841
853
  - [`abc38bc9990`](https://bitbucket.org/atlassian/atlassian-frontend/commits/abc38bc9990) - Added request metadata to failed frontend SLIs
842
854
  - Updated dependencies
@@ -845,7 +857,7 @@
845
857
 
846
858
  ### Minor Changes
847
859
 
848
- - [`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
849
861
 
850
862
  ### Patch Changes
851
863
 
@@ -856,7 +868,7 @@
856
868
 
857
869
  ### Minor Changes
858
870
 
859
- - [`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.
860
872
  - [`ceb8a18d7dd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ceb8a18d7dd) - Filtering Feature Flags when attaching them to Analytics Context through the HOC
861
873
  - [`e66ffd11ac6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e66ffd11ac6) - Refactored Analytics Events. Slight differences in payloads and contexts
862
874
 
@@ -875,14 +887,14 @@
875
887
 
876
888
  ### Patch Changes
877
889
 
878
- - [`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
879
891
  - Updated dependencies
880
892
 
881
893
  ## 70.3.2
882
894
 
883
895
  ### Patch Changes
884
896
 
885
- - [`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
886
898
  - [`7e990a036d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e990a036d) - Removed Feature Flag Control from Card View Matrix example
887
899
  - [`63bff65641`](https://bitbucket.org/atlassian/atlassian-frontend/commits/63bff65641) - [ux] Making the VidPlayButton bigger
888
900
  - Updated dependencies
@@ -891,7 +903,7 @@
891
903
 
892
904
  ### Patch Changes
893
905
 
894
- - [`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
895
907
  - [`0553f6db92`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0553f6db92) - Styled components code refactor
896
908
  - [`b37190888c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b37190888c) - ensure polling errors trigger more graceful UX
897
909
  - [`bacab2338b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bacab2338b) - Updated error message displayed when a Polling Error has been thrown
@@ -907,7 +919,7 @@
907
919
 
908
920
  ### Minor Changes
909
921
 
910
- - [`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
911
923
 
912
924
  ### Patch Changes
913
925
 
@@ -919,7 +931,7 @@
919
931
 
920
932
  ### Minor Changes
921
933
 
922
- - [`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
923
935
  - [`48995f73b2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/48995f73b2) - Create entry points to export internal API isolated from UI changes.
924
936
 
925
937
  ### Patch Changes
@@ -932,13 +944,13 @@
932
944
 
933
945
  ### Patch Changes
934
946
 
935
- - [`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
936
948
 
937
949
  ## 70.1.0
938
950
 
939
951
  ### Minor Changes
940
952
 
941
- - [`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
942
954
 
943
955
  ### Patch Changes
944
956
 
@@ -950,7 +962,7 @@
950
962
 
951
963
  ### Major Changes
952
964
 
953
- - [`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
954
966
  - [`f4a2c533f4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f4a2c533f4) - Fix wrong dependency
955
967
 
956
968
  ### Patch Changes
@@ -961,7 +973,7 @@
961
973
 
962
974
  ### Minor Changes
963
975
 
964
- - [`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
965
977
 
966
978
  ### Patch Changes
967
979
 
@@ -973,7 +985,7 @@
973
985
 
974
986
  ### Patch Changes
975
987
 
976
- - [`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.
977
989
  This requires version 3.8 of Typescript, read more about how we handle Typescript versions here: https://atlaskit.atlassian.com/get-started
978
990
  Also add `typescript` to `devDependencies` to denote version that the package was built with.
979
991
 
@@ -987,7 +999,7 @@
987
999
 
988
1000
  ### Minor Changes
989
1001
 
990
- - [`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
991
1003
 
992
1004
  - Use editor selection styles from @atlaskit/editor-shared-styles
993
1005
  - Update UI for selected items in media group to no longer set blue background and tick in corner
@@ -1003,13 +1015,13 @@
1003
1015
 
1004
1016
  ### Patch Changes
1005
1017
 
1006
- - [`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)
1007
1019
 
1008
1020
  ## 69.3.2
1009
1021
 
1010
1022
  ### Patch Changes
1011
1023
 
1012
- - [`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
1013
1025
 
1014
1026
  ## 69.3.1
1015
1027
 
@@ -1021,7 +1033,7 @@
1021
1033
 
1022
1034
  ### Minor Changes
1023
1035
 
1024
- - [`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
1025
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
1026
1038
 
1027
1039
  ### Patch Changes
@@ -1036,7 +1048,7 @@
1036
1048
 
1037
1049
  ### Patch Changes
1038
1050
 
1039
- - [`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
1040
1052
 
1041
1053
  Since tslib is a dependency for all our packages we recommend that products also follow this tslib upgrade
1042
1054
  to prevent duplicates of tslib being bundled.
@@ -1045,7 +1057,7 @@
1045
1057
 
1046
1058
  ### Minor Changes
1047
1059
 
1048
- - [`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
1049
1061
  - [`48f416a9d9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/48f416a9d9) - Exporting new css class name for cardImageView: fileCardImageViewSelector
1050
1062
  - [`6faafb144c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6faafb144c) - Introduce MediaFeatureFlags. Refactor components to use.
1051
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
@@ -1076,7 +1088,7 @@
1076
1088
 
1077
1089
  ### Minor Changes
1078
1090
 
1079
- - [`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
1080
1092
  - [`8502dcbdaa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8502dcbdaa) - Adding icons for media-card new experiences
1081
1093
  - [`f98a7a056b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f98a7a056b) - Add action buttons to the new media card experience
1082
1094
  - [`34be68ad22`](https://bitbucket.org/atlassian/atlassian-frontend/commits/34be68ad22) - Ellipsifying the titlebox name if the length of the name overflows the mediacard width
@@ -1108,7 +1120,7 @@
1108
1120
 
1109
1121
  ### Major Changes
1110
1122
 
1111
- - [`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.
1112
1124
  For more information see: https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
1113
1125
 
1114
1126
  ### Patch Changes
@@ -1119,7 +1131,7 @@
1119
1131
 
1120
1132
  ### Patch Changes
1121
1133
 
1122
- - [`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
1123
1135
  - [`5989238f54`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5989238f54) - Reuse existing preview in InlineVideoPlayer to prevent re renders when video is uploading
1124
1136
  - [`3879663f8b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3879663f8b) - Replace use of findDOMNode with React.Ref
1125
1137
  - Updated dependencies
@@ -1128,14 +1140,14 @@
1128
1140
 
1129
1141
  ### Patch Changes
1130
1142
 
1131
- - [`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
1132
1144
  - Updated dependencies
1133
1145
 
1134
1146
  ## 68.0.0
1135
1147
 
1136
1148
  ### Major Changes
1137
1149
 
1138
- - [`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
1139
1151
 
1140
1152
  ### Minor Changes
1141
1153
 
@@ -1161,7 +1173,7 @@
1161
1173
 
1162
1174
  ### Patch Changes
1163
1175
 
1164
- - [`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
1165
1177
 
1166
1178
  ## 67.2.1
1167
1179