@atlaskit/media-card 77.0.3 → 77.1.1

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 (119) hide show
  1. package/CHANGELOG.md +107 -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 +5 -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 +11 -13
  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/cardSwitcher.js +5 -1
  94. package/dist/es2019/card/media-card-analytics-error-boundary.js +1 -1
  95. package/dist/es2019/card/ui/blanket/blanket.js +2 -1
  96. package/dist/es2019/card/ui/tickBox/styles.js +1 -1
  97. package/dist/es2019/card/v2/cardV2.js +4 -4
  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/cardSwitcher.js +5 -1
  103. package/dist/esm/card/media-card-analytics-error-boundary.js +4 -4
  104. package/dist/esm/card/ui/blanket/blanket.js +2 -1
  105. package/dist/esm/card/ui/tickBox/styles.js +1 -1
  106. package/dist/esm/card/v2/cardV2.js +8 -8
  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/cardSwitcher.d.ts +3 -2
  114. package/dist/types/card/v2/cardViewV2.d.ts +44 -0
  115. package/dist/types-ts4.5/card/cardSwitcher.d.ts +3 -2
  116. package/dist/types-ts4.5/card/v2/cardViewV2.d.ts +44 -0
  117. package/package.json +2 -2
  118. package/report.api.md +1 -2
  119. package/tmp/api-report-tmp.d.ts +1 -2
package/CHANGELOG.md CHANGED
@@ -1,28 +1,40 @@
1
1
  # @atlaskit/media-card
2
2
 
3
+ ## 77.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#41101](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41101) [`eeafdcc5924`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eeafdcc5924) - fix platform FF not working for mediaCardV2 in SSR
8
+
9
+ ## 77.1.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [#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
14
+
3
15
  ## 77.0.3
4
16
 
5
17
  ### Patch Changes
6
18
 
7
- - [`25252788c18`](https://bitbucket.org/atlassian/atlassian-frontend/commits/25252788c18) - Give the progress bar in media card a "progressbar" role.
19
+ - [#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
20
 
9
21
  ## 77.0.2
10
22
 
11
23
  ### Patch Changes
12
24
 
13
- - [`78b51d6134c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/78b51d6134c) - Fixed issue with media card lazy loading not working during SSR hydration
25
+ - [#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
26
 
15
27
  ## 77.0.1
16
28
 
17
29
  ### Patch Changes
18
30
 
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.
31
+ - [#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
32
 
21
33
  ## 77.0.0
22
34
 
23
35
  ### Major Changes
24
36
 
25
- - [`e6122bf1c9a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6122bf1c9a) - MEX-2481 revert and re-introduce a new fix for media border gap issue
37
+ - [#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
38
 
27
39
  ### Patch Changes
28
40
 
@@ -32,13 +44,13 @@
32
44
 
33
45
  ### Patch Changes
34
46
 
35
- - [`6900f89eb0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6900f89eb0e) - Internal changes to use space tokens. There is no expected visual or behaviour change.
47
+ - [#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
48
 
37
49
  ## 76.2.0
38
50
 
39
51
  ### Minor Changes
40
52
 
41
- - [`7b6a2c6671b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7b6a2c6671b) - Introducing 'media-state' for handling media internal file state.
53
+ - [#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
54
  Introducing 'media-client-react' to provide hooks for seamless media-client integration with React.
43
55
  Introducing 'MediaCardV2' with a feature flag to replace rxjs based fileState subscription with 'useFileState' hook.
44
56
  Removed unused feature flags APIs from 'media-client' and its helper functions from 'media-common'.
@@ -57,14 +69,14 @@
57
69
 
58
70
  ### Patch Changes
59
71
 
60
- - [`ed81e630547`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ed81e630547) - MEX-2089 Remove timestamp feature flag on AFP
72
+ - [#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
73
  - Updated dependencies
62
74
 
63
75
  ## 76.1.0
64
76
 
65
77
  ### Minor Changes
66
78
 
67
- - [`f486dbd535c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f486dbd535c) - MEX-2481 Fix minor gap between image and border
79
+ - [#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
80
 
69
81
  ### Patch Changes
70
82
 
@@ -74,45 +86,45 @@
74
86
 
75
87
  ### Patch Changes
76
88
 
77
- - [`4807883cf8e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4807883cf8e) - [MEX-2468] Disable Tooltip in Media Card in Hybrid Renderer
89
+ - [#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
90
 
79
91
  ## 76.0.5
80
92
 
81
93
  ### Patch Changes
82
94
 
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.
95
+ - [#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
96
 
85
97
  ## 76.0.4
86
98
 
87
99
  ### Patch Changes
88
100
 
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
101
+ - [#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
102
 
91
103
  ## 76.0.3
92
104
 
93
105
  ### Patch Changes
94
106
 
95
- - [`5dcaf51b269`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5dcaf51b269) - removed unused memory cache logs
107
+ - [#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
108
  - Updated dependencies
97
109
 
98
110
  ## 76.0.2
99
111
 
100
112
  ### Patch Changes
101
113
 
102
- - [`bb442ced942`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bb442ced942) - Remove newCardExperience feature flag
114
+ - [#34887](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34887) [`bb442ced942`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bb442ced942) - Remove newCardExperience feature flag
103
115
  - Updated dependencies
104
116
 
105
117
  ## 76.0.1
106
118
 
107
119
  ### Patch Changes
108
120
 
109
- - [`501218d4044`](https://bitbucket.org/atlassian/atlassian-frontend/commits/501218d4044) - MEX-2393 fix error setting in subscribe method in media-inline
121
+ - [#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
122
 
111
123
  ## 76.0.0
112
124
 
113
125
  ### Major Changes
114
126
 
115
- - [`9fe30b8ca24`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9fe30b8ca24) - Removed classic experience
127
+ - [#34192](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34192) [`9fe30b8ca24`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9fe30b8ca24) - Removed classic experience
116
128
  - [`3247424b653`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3247424b653) - Removed the classname 'fileCardImageViewSelectedSelector' since it is no longer being used
117
129
 
118
130
  ### Minor Changes
@@ -128,13 +140,13 @@
128
140
 
129
141
  ### Patch Changes
130
142
 
131
- - [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
143
+ - [#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
144
 
133
145
  ## 75.0.0
134
146
 
135
147
  ### Major Changes
136
148
 
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
149
+ - [#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
150
 
139
151
  ### Patch Changes
140
152
 
@@ -146,13 +158,13 @@
146
158
 
147
159
  ### Patch Changes
148
160
 
149
- - [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
161
+ - [#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
162
 
151
163
  ## 74.8.0
152
164
 
153
165
  ### Minor Changes
154
166
 
155
- - [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
167
+ - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258) [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
156
168
 
157
169
  ### Patch Changes
158
170
 
@@ -162,7 +174,7 @@
162
174
 
163
175
  ### Patch Changes
164
176
 
165
- - [`5c6e8f7b846`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5c6e8f7b846) - - refactored card file states example
177
+ - [#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
178
  - added inline card file states example
167
179
  - [`e8bb5592bf8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e8bb5592bf8) - MEX-2140 Refactor error boundary of media inline card
168
180
  - Updated dependencies
@@ -171,7 +183,7 @@
171
183
 
172
184
  ### Patch Changes
173
185
 
174
- - [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY remove before merging to master; dupe adf-schema via adf-utils
186
+ - [#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
187
  - [`0f99ed9df35`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0f99ed9df35) - Updated example
176
188
  - Updated dependencies
177
189
 
@@ -179,20 +191,20 @@
179
191
 
180
192
  ### Patch Changes
181
193
 
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.
194
+ - [#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
195
 
184
196
  ## 74.7.1
185
197
 
186
198
  ### Patch Changes
187
199
 
188
- - [`b37723f2cfa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b37723f2cfa) - The component now logs the full provided feature flags object
200
+ - [#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
201
  - Updated dependencies
190
202
 
191
203
  ## 74.7.0
192
204
 
193
205
  ### Minor Changes
194
206
 
195
- - [`8a0a92b2885`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8a0a92b2885) - MEX-2210 improve inconsistent behaviour on timestampOnVideo playback
207
+ - [#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
208
  - [`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
209
 
198
210
  ### Patch Changes
@@ -203,13 +215,13 @@
203
215
 
204
216
  ### Patch Changes
205
217
 
206
- - [`489f7b32ff6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/489f7b32ff6) - Fixed broken SSR error handling logic when the preview url fails to load
218
+ - [#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
219
 
208
220
  ## 74.6.0
209
221
 
210
222
  ### Minor Changes
211
223
 
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
224
+ - [#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
225
 
214
226
  ### Patch Changes
215
227
 
@@ -226,13 +238,13 @@
226
238
 
227
239
  ### Patch Changes
228
240
 
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.
241
+ - [#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
242
 
231
243
  ## 74.5.0
232
244
 
233
245
  ### Minor Changes
234
246
 
235
- - [`2b3859896cc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2b3859896cc) - Added new Feature Flag to control internal Media Client behaviour
247
+ - [#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
248
 
237
249
  ### Patch Changes
238
250
 
@@ -244,14 +256,14 @@
244
256
 
245
257
  ### Patch Changes
246
258
 
247
- - [`6adc56f320d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6adc56f320d) - [MEX-2003] Fix dark mode regression in new card experience
259
+ - [#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
260
  - Updated dependencies
249
261
 
250
262
  ## 74.4.0
251
263
 
252
264
  ### Minor Changes
253
265
 
254
- - [`81573c1dfa7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/81573c1dfa7) - Media Card logs metadata trace Id
266
+ - [#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
267
  - [`0bccac57db6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0bccac57db6) - remove mediaUploadApiV2 Feature flag
256
268
 
257
269
  ### Patch Changes
@@ -279,7 +291,7 @@
279
291
 
280
292
  ### Minor Changes
281
293
 
282
- - [`6de3a9494a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6de3a9494a8) - [ux] Instrumented `@atlaskit/media-card` with the new theming package, `@atlaskit/tokens`.
294
+ - [#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
295
 
284
296
  New tokens will be visible only in applications configured to use the new Tokens API (currently in alpha).
285
297
  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 +305,7 @@
293
305
 
294
306
  ### Minor Changes
295
307
 
296
- - [`2c402e87213`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2c402e87213) - [Experimental] Add traceId in media card get image request.
308
+ - [#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
309
 
298
310
  ### Patch Changes
299
311
 
@@ -304,13 +316,13 @@
304
316
 
305
317
  ### Patch Changes
306
318
 
307
- - [`d2cde0ebdfd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d2cde0ebdfd) - fix editor cypress tests and delete media cypress tests
319
+ - [#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
320
 
309
321
  ## 74.1.8
310
322
 
311
323
  ### Patch Changes
312
324
 
313
- - [`153829bfcb3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/153829bfcb3) - Upgrade caching algorithm library lru-fast to lru_map.
325
+ - [#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
326
  - [`09464edc105`](https://bitbucket.org/atlassian/atlassian-frontend/commits/09464edc105) - ⚠️ Big Folder Structure Refactor
315
327
  - [`60fb320493e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/60fb320493e) - Fixed circular imports
316
328
  - [`9f23fe7478e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9f23fe7478e) - Fixed Card Actions Dropdown Menu positioning
@@ -321,25 +333,25 @@
321
333
 
322
334
  ### Patch Changes
323
335
 
324
- - [`ca22e26cd7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ca22e26cd7c) - Fix image refetch logic when image dimensions change.
336
+ - [#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
337
 
326
338
  ## 74.1.5
327
339
 
328
340
  ### Patch Changes
329
341
 
330
- - [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade Typescript from `4.3.5` to `4.5.5`
342
+ - [#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
343
 
332
344
  ## 74.1.4
333
345
 
334
346
  ### Patch Changes
335
347
 
336
- - [`80a1ca7b589`](https://bitbucket.org/atlassian/atlassian-frontend/commits/80a1ca7b589) - Fix compatility issue of Intersection Observer API in old browser versions
348
+ - [#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
349
 
338
350
  ## 74.1.3
339
351
 
340
352
  ### Patch Changes
341
353
 
342
- - [`46059beebbf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/46059beebbf) - - include **tests_external** in build
354
+ - [#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
355
  - replace usage of @local-cypress package with @cypress
344
356
  - bump @cypress from ^6.4.0 to ^7.7.0
345
357
  - import cypress types into @atlaskit/in-product-testing tsconfig
@@ -348,20 +360,20 @@
348
360
 
349
361
  ### Patch Changes
350
362
 
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
363
+ - [#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
364
  - Updated dependencies
353
365
 
354
366
  ## 74.1.1
355
367
 
356
368
  ### Patch Changes
357
369
 
358
- - [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`.
370
+ - [#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
371
 
360
372
  ## 74.1.0
361
373
 
362
374
  ### Minor Changes
363
375
 
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.
376
+ - [#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
377
 
366
378
  ### Patch Changes
367
379
 
@@ -374,7 +386,7 @@
374
386
 
375
387
  ### Major Changes
376
388
 
377
- - [`13d807ed06f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/13d807ed06f) - [MEX-1027] Migrate to @emotion/react in Media-card
389
+ - [#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
390
 
379
391
  ### Minor Changes
380
392
 
@@ -390,7 +402,7 @@
390
402
 
391
403
  ### Minor Changes
392
404
 
393
- - [`01203d58916`](https://bitbucket.org/atlassian/atlassian-frontend/commits/01203d58916) - Removed Unnecessary semicolon found in media-card
405
+ - [#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
406
  - [`1a76e2839e6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1a76e2839e6) - Default value for mediaUploadApiV2 Media feature flag set to true.
395
407
 
396
408
  ### Patch Changes
@@ -402,7 +414,7 @@
402
414
 
403
415
  ### Minor Changes
404
416
 
405
- - [`bfde909c9b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bfde909c9b4) - Add new feature flag mediaUploadApiV2
417
+ - [#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
418
  - [`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
419
 
408
420
  ### Patch Changes
@@ -418,7 +430,7 @@
418
430
 
419
431
  ### Minor Changes
420
432
 
421
- - [`b4fd2a59367`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b4fd2a59367) - Attach media environment and region to the media-card UFO events
433
+ - [#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
434
  - [`7e767393469`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e767393469) - Add ufo feature flag logging to `media-card`
423
435
  - [`ade1a5c3e23`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ade1a5c3e23) - Flagged events with file states processing and uploading for UFO payload
424
436
 
@@ -433,14 +445,14 @@
433
445
 
434
446
  ### Patch Changes
435
447
 
436
- - [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade to TypeScript 4.2.4
448
+ - [#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
449
  - Updated dependencies
438
450
 
439
451
  ## 73.5.0
440
452
 
441
453
  ### Minor Changes
442
454
 
443
- - [`02fb8e78fb9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/02fb8e78fb9) - Implement media card render UFO experience
455
+ - [#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
456
 
445
457
  ### Patch Changes
446
458
 
@@ -453,19 +465,19 @@
453
465
 
454
466
  ### Patch Changes
455
467
 
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.
468
+ - [#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
469
 
458
470
  ## 73.4.1
459
471
 
460
472
  ### Patch Changes
461
473
 
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
474
+ - [#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
475
 
464
476
  ## 73.4.0
465
477
 
466
478
  ### Minor Changes
467
479
 
468
- - [`e7581c27aff`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e7581c27aff) - Removed unused dev dependencies
480
+ - [#19618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19618) [`e7581c27aff`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e7581c27aff) - Removed unused dev dependencies
469
481
  - [`f862d5ae7aa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f862d5ae7aa) - remove RxJs peer dependency
470
482
  - [`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
483
  It exposes subscribe method that is called with MediaObserver as an argument and returns MediaSubscription.
@@ -551,20 +563,20 @@
551
563
 
552
564
  ### Patch Changes
553
565
 
554
- - [`4f97dd898fc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4f97dd898fc) - EDM-2995: fix media inline icon, use mimeType to render a better icon type
566
+ - [#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
567
  - Updated dependencies
556
568
 
557
569
  ## 73.3.1
558
570
 
559
571
  ### Patch Changes
560
572
 
561
- - [`9671dfa12b1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9671dfa12b1) - Revert [MEX-1276] fix vertical scroll for firefox when media link is wrapped
573
+ - [#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
574
 
563
575
  ## 73.3.0
564
576
 
565
577
  ### Minor Changes
566
578
 
567
- - [`7d8e24c4dcd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7d8e24c4dcd) - Log reliability of Media Card SSR
579
+ - [#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
580
 
569
581
  ### Patch Changes
570
582
 
@@ -574,8 +586,8 @@
574
586
 
575
587
  ### Minor Changes
576
588
 
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
589
+ - [#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.
590
+ - [#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
591
  - [`a5cabf7f670`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a5cabf7f670) - Made InlinePlayer compatible with SSR
580
592
 
581
593
  ### Patch Changes
@@ -593,7 +605,7 @@
593
605
 
594
606
  ### Patch Changes
595
607
 
596
- - [`9ca8f7e9d74`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9ca8f7e9d74) - Revert extra image visibility style for media card
608
+ - [#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
609
 
598
610
  ## 73.1.0
599
611
 
@@ -617,7 +629,7 @@
617
629
 
618
630
  ### Major Changes
619
631
 
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
632
+ - [#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
633
 
622
634
  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
635
  Why change was made: As part of a coordinated upgrade effort across AF packages, as react-intl v2 is quite dated.
@@ -663,7 +675,7 @@
663
675
 
664
676
  ### Minor Changes
665
677
 
666
- - [`1724e1b8277`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1724e1b8277) - Added SSR capabilities to Media Card
678
+ - [#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
679
  - [`ca519a86b1d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ca519a86b1d) - Add new prop forceSyncDisplay in MediaImage to provide an option of always showing images.
668
680
  Enable MediaCard to turn on forceSyncDisplay when server side rendering is enabled.
669
681
  - [`ac4846d0f3f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac4846d0f3f) - Added native lazy load support
@@ -685,7 +697,7 @@
685
697
 
686
698
  ### Major Changes
687
699
 
688
- - [`b3606652fa1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b3606652fa1) - [ux] Editor integration for Media Inline component
700
+ - [#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
701
 
690
702
  ### Minor Changes
691
703
 
@@ -703,7 +715,7 @@
703
715
 
704
716
  ### Major Changes
705
717
 
706
- - [`cf853e39278`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf853e39278) - [ux] Updated and refreshed media inline component
718
+ - [#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
719
 
708
720
  ### Minor Changes
709
721
 
@@ -721,7 +733,7 @@
721
733
 
722
734
  ### Minor Changes
723
735
 
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.
736
+ - [#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
737
  - [`9ecd471f124`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9ecd471f124) - Adding a dedicated server side media card
726
738
  - [`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
739
  - [`46d9d2872b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/46d9d2872b4) - Video Analytics - Add UI events for CustomMediaPlayer
@@ -742,7 +754,7 @@
742
754
 
743
755
  ### Minor Changes
744
756
 
745
- - [`710e03c4b58`](https://bitbucket.org/atlassian/atlassian-frontend/commits/710e03c4b58) - Revert Image Render Analytics Refactoring
757
+ - [#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
758
  - [`8e6a1034cfd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8e6a1034cfd) - EDM-1730: added in-product Cypress tests for Smart Links
747
759
 
748
760
  ### Patch Changes
@@ -754,7 +766,7 @@
754
766
 
755
767
  ### Minor Changes
756
768
 
757
- - [`fb1ca71dd2c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fb1ca71dd2c) - Render a spinner in the background of CardView component when card status is loading
769
+ - [#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
770
 
759
771
  ### Patch Changes
760
772
 
@@ -766,7 +778,7 @@
766
778
 
767
779
  ### Patch Changes
768
780
 
769
- - [`99d444aac1b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/99d444aac1b) - Replaced metadata object for fileState in Card internal state.
781
+ - [#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
782
  - [`99411613963`](https://bitbucket.org/atlassian/atlassian-frontend/commits/99411613963) - Render spinner while waiting for card component to mount
771
783
  - Updated dependencies
772
784
 
@@ -774,7 +786,7 @@
774
786
 
775
787
  ### Minor Changes
776
788
 
777
- - [`42c7f13ac31`](https://bitbucket.org/atlassian/atlassian-frontend/commits/42c7f13ac31) - export inlinePlayerClassName
789
+ - [#11649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11649) [`42c7f13ac31`](https://bitbucket.org/atlassian/atlassian-frontend/commits/42c7f13ac31) - export inlinePlayerClassName
778
790
  export newFileExperienceClassName
779
791
 
780
792
  ### Patch Changes
@@ -786,20 +798,20 @@
786
798
 
787
799
  ### Patch Changes
788
800
 
789
- - [`9e09b407b43`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e09b407b43) - Exclude `__tests_external__` from the `build/tsconfig.json`.
801
+ - [#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
802
  Add `local-cypress` and remove types export.
791
803
 
792
804
  ## 70.7.2
793
805
 
794
806
  ### Patch Changes
795
807
 
796
- - [`070261ec304`](https://bitbucket.org/atlassian/atlassian-frontend/commits/070261ec304) - Fix Cypress types for packages
808
+ - [#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
809
 
798
810
  ## 70.7.1
799
811
 
800
812
  ### Patch Changes
801
813
 
802
- - [`3cd9ee2d15b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3cd9ee2d15b) - Added RxJS compatiblity notice in Media docs
814
+ - [#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
815
  - [`6be6879ef6d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6be6879ef6d) - Added Media Feature Flags control in examples
804
816
  - [`47ebd02a8d1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47ebd02a8d1) - Removed lazy load logic from root component
805
817
  - Updated dependencies
@@ -808,7 +820,7 @@
808
820
 
809
821
  ### Minor Changes
810
822
 
811
- - [`edafe75c2c0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/edafe75c2c0) - Expose new InlineMediaCard component
823
+ - [#10569](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10569) [`edafe75c2c0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/edafe75c2c0) - Expose new InlineMediaCard component
812
824
  - [`6acd8953267`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6acd8953267) - [ux] Removed Retry Button from Classic Experience
813
825
  - [`219ec9b60d9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/219ec9b60d9) - Disable tooltip for images and videos without overlay
814
826
 
@@ -820,7 +832,7 @@
820
832
 
821
833
  ### Minor Changes
822
834
 
823
- - [`d575abf3498`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d575abf3498) - EDM-1640: Introduce Cypress in-product tests in Atlassian Frontend
835
+ - [#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
836
 
825
837
  Example test:
826
838
 
@@ -842,7 +854,7 @@
842
854
 
843
855
  ### Patch Changes
844
856
 
845
- - [`859f4e95fb7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/859f4e95fb7) - Fires analytics events from an internal module
857
+ - [#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
858
  - [`a8c69bc44f9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a8c69bc44f9) - Log analytics events for errors thrown from preview fetch
847
859
  - [`abc38bc9990`](https://bitbucket.org/atlassian/atlassian-frontend/commits/abc38bc9990) - Added request metadata to failed frontend SLIs
848
860
  - Updated dependencies
@@ -851,7 +863,7 @@
851
863
 
852
864
  ### Minor Changes
853
865
 
854
- - [`56104b9cc12`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56104b9cc12) - add data-testid="media-card-play-button" for video files on preview mode
866
+ - [#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
867
 
856
868
  ### Patch Changes
857
869
 
@@ -862,7 +874,7 @@
862
874
 
863
875
  ### Minor Changes
864
876
 
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.
877
+ - [#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
878
  - [`ceb8a18d7dd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ceb8a18d7dd) - Filtering Feature Flags when attaching them to Analytics Context through the HOC
867
879
  - [`e66ffd11ac6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e66ffd11ac6) - Refactored Analytics Events. Slight differences in payloads and contexts
868
880
 
@@ -881,14 +893,14 @@
881
893
 
882
894
  ### Patch Changes
883
895
 
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
896
+ - [#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
897
  - Updated dependencies
886
898
 
887
899
  ## 70.3.2
888
900
 
889
901
  ### Patch Changes
890
902
 
891
- - [`1f4d55e86a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f4d55e86a) - Minor syntax fix
903
+ - [#7425](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7425) [`1f4d55e86a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f4d55e86a) - Minor syntax fix
892
904
  - [`7e990a036d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e990a036d) - Removed Feature Flag Control from Card View Matrix example
893
905
  - [`63bff65641`](https://bitbucket.org/atlassian/atlassian-frontend/commits/63bff65641) - [ux] Making the VidPlayButton bigger
894
906
  - Updated dependencies
@@ -897,7 +909,7 @@
897
909
 
898
910
  ### Patch Changes
899
911
 
900
- - [`758aa08653`](https://bitbucket.org/atlassian/atlassian-frontend/commits/758aa08653) - Polling Fuction throws the inner error instead of wrapping it
912
+ - [#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
913
  - [`0553f6db92`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0553f6db92) - Styled components code refactor
902
914
  - [`b37190888c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b37190888c) - ensure polling errors trigger more graceful UX
903
915
  - [`bacab2338b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bacab2338b) - Updated error message displayed when a Polling Error has been thrown
@@ -913,7 +925,7 @@
913
925
 
914
926
  ### Minor Changes
915
927
 
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
928
+ - [#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
929
 
918
930
  ### Patch Changes
919
931
 
@@ -925,7 +937,7 @@
925
937
 
926
938
  ### Minor Changes
927
939
 
928
- - [`11d6640e9c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/11d6640e9c) - [ux] New UI states for when a card is rate limited
940
+ - [#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
941
  - [`48995f73b2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/48995f73b2) - Create entry points to export internal API isolated from UI changes.
930
942
 
931
943
  ### Patch Changes
@@ -938,13 +950,13 @@
938
950
 
939
951
  ### Patch Changes
940
952
 
941
- - [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile packages using babel rather than tsc
953
+ - [#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
954
 
943
955
  ## 70.1.0
944
956
 
945
957
  ### Minor Changes
946
958
 
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
959
+ - [#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
960
 
949
961
  ### Patch Changes
950
962
 
@@ -956,7 +968,7 @@
956
968
 
957
969
  ### Major Changes
958
970
 
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
971
+ - [#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
972
  - [`f4a2c533f4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f4a2c533f4) - Fix wrong dependency
961
973
 
962
974
  ### Patch Changes
@@ -967,7 +979,7 @@
967
979
 
968
980
  ### Minor Changes
969
981
 
970
- - [`669b5e4240`](https://bitbucket.org/atlassian/atlassian-frontend/commits/669b5e4240) - Add support for specifying background colour and icon for the title box
982
+ - [#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
983
 
972
984
  ### Patch Changes
973
985
 
@@ -979,7 +991,7 @@
979
991
 
980
992
  ### Patch Changes
981
993
 
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.
994
+ - [#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
995
  This requires version 3.8 of Typescript, read more about how we handle Typescript versions here: https://atlaskit.atlassian.com/get-started
984
996
  Also add `typescript` to `devDependencies` to denote version that the package was built with.
985
997
 
@@ -993,7 +1005,7 @@
993
1005
 
994
1006
  ### Minor Changes
995
1007
 
996
- - [`ae50a98f18`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ae50a98f18) - ED-9125 ED-8837 Update styles for selected media cards
1008
+ - [#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
1009
 
998
1010
  - Use editor selection styles from @atlaskit/editor-shared-styles
999
1011
  - Update UI for selected items in media group to no longer set blue background and tick in corner
@@ -1009,13 +1021,13 @@
1009
1021
 
1010
1022
  ### Patch Changes
1011
1023
 
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)
1024
+ - [#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
1025
 
1014
1026
  ## 69.3.2
1015
1027
 
1016
1028
  ### Patch Changes
1017
1029
 
1018
- - [`631412a7f6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/631412a7f6) - Revert usage of flex for media card UI
1030
+ - [#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
1031
 
1020
1032
  ## 69.3.1
1021
1033
 
@@ -1027,7 +1039,7 @@
1027
1039
 
1028
1040
  ### Minor Changes
1029
1041
 
1030
- - [`a106c17833`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a106c17833) - Adds support for Intl in Media Card Date
1042
+ - [#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
1043
  - [`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
1044
 
1033
1045
  ### Patch Changes
@@ -1042,7 +1054,7 @@
1042
1054
 
1043
1055
  ### Patch Changes
1044
1056
 
1045
- - [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded to TypeScript 3.9.6 and tslib to 2.0.0
1057
+ - [#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
1058
 
1047
1059
  Since tslib is a dependency for all our packages we recommend that products also follow this tslib upgrade
1048
1060
  to prevent duplicates of tslib being bundled.
@@ -1051,7 +1063,7 @@
1051
1063
 
1052
1064
  ### Minor Changes
1053
1065
 
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
1066
+ - [#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
1067
  - [`48f416a9d9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/48f416a9d9) - Exporting new css class name for cardImageView: fileCardImageViewSelector
1056
1068
  - [`6faafb144c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6faafb144c) - Introduce MediaFeatureFlags. Refactor components to use.
1057
1069
  - [`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 +1094,7 @@
1082
1094
 
1083
1095
  ### Minor Changes
1084
1096
 
1085
- - [`50d947cdae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/50d947cdae) - Added Media Card New Experience behind a feature flag
1097
+ - [#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
1098
  - [`8502dcbdaa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8502dcbdaa) - Adding icons for media-card new experiences
1087
1099
  - [`f98a7a056b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f98a7a056b) - Add action buttons to the new media card experience
1088
1100
  - [`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 +1126,7 @@
1114
1126
 
1115
1127
  ### Major Changes
1116
1128
 
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.
1129
+ - [#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
1130
  For more information see: https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
1119
1131
 
1120
1132
  ### Patch Changes
@@ -1125,7 +1137,7 @@
1125
1137
 
1126
1138
  ### Patch Changes
1127
1139
 
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
1140
+ - [#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
1141
  - [`5989238f54`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5989238f54) - Reuse existing preview in InlineVideoPlayer to prevent re renders when video is uploading
1130
1142
  - [`3879663f8b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3879663f8b) - Replace use of findDOMNode with React.Ref
1131
1143
  - Updated dependencies
@@ -1134,14 +1146,14 @@
1134
1146
 
1135
1147
  ### Patch Changes
1136
1148
 
1137
- - [`eaade3e0e3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eaade3e0e3) - Added Feature Flag placeholder: Media Card New Experience
1149
+ - [#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
1150
  - Updated dependencies
1139
1151
 
1140
1152
  ## 68.0.0
1141
1153
 
1142
1154
  ### Major Changes
1143
1155
 
1144
- - [`4ffbda40ca`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ffbda40ca) - Rename OriginalCardDimensions TS interface to NumericalCardDimensions
1156
+ - [#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
1157
 
1146
1158
  ### Minor Changes
1147
1159
 
@@ -1167,7 +1179,7 @@
1167
1179
 
1168
1180
  ### Patch Changes
1169
1181
 
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
1182
+ - [#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
1183
 
1172
1184
  ## 67.2.1
1173
1185