@atlaskit/profilecard 19.13.0 → 19.14.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 (95) hide show
  1. package/CHANGELOG.md +1134 -1121
  2. package/afm-cc/tsconfig.json +3 -0
  3. package/dist/cjs/client/ProfileCardClient.js +7 -0
  4. package/dist/cjs/client/getTeamFromAGG.js +1 -1
  5. package/dist/cjs/components/Team/TeamProfileCardTrigger.js +9 -3
  6. package/dist/cjs/components/User/ProfileCardDetails.js +1 -1
  7. package/dist/cjs/components/User/ProfileCardTrigger.js +6 -2
  8. package/dist/cjs/styled/Card.js +69 -24
  9. package/dist/cjs/styled/Error.js +13 -0
  10. package/dist/cjs/styled/ReportingLines.js +12 -0
  11. package/dist/cjs/styled/TeamCard.js +34 -2
  12. package/dist/cjs/util/analytics.js +1 -1
  13. package/dist/es2019/client/ProfileCardClient.js +7 -0
  14. package/dist/es2019/client/getTeamFromAGG.js +1 -1
  15. package/dist/es2019/components/Team/TeamProfileCardTrigger.js +9 -3
  16. package/dist/es2019/components/User/ProfileCardDetails.js +1 -1
  17. package/dist/es2019/components/User/ProfileCardTrigger.js +6 -2
  18. package/dist/es2019/styled/Card.js +229 -186
  19. package/dist/es2019/styled/Error.js +14 -0
  20. package/dist/es2019/styled/ReportingLines.js +13 -0
  21. package/dist/es2019/styled/TeamCard.js +41 -8
  22. package/dist/es2019/util/analytics.js +1 -1
  23. package/dist/esm/client/ProfileCardClient.js +7 -0
  24. package/dist/esm/client/getTeamFromAGG.js +1 -1
  25. package/dist/esm/components/Team/TeamProfileCardTrigger.js +9 -3
  26. package/dist/esm/components/User/ProfileCardDetails.js +1 -1
  27. package/dist/esm/components/User/ProfileCardTrigger.js +6 -2
  28. package/dist/esm/styled/Card.js +69 -24
  29. package/dist/esm/styled/Error.js +14 -0
  30. package/dist/esm/styled/ReportingLines.js +13 -0
  31. package/dist/esm/styled/TeamCard.js +35 -2
  32. package/dist/esm/util/analytics.js +1 -1
  33. package/dist/types/client/ProfileCardClient.d.ts +2 -2
  34. package/dist/types/client/TeamCentralCardClient.d.ts +1 -1
  35. package/dist/types/client/TeamProfileCardClient.d.ts +1 -1
  36. package/dist/types/client/UserProfileCardClient.d.ts +2 -2
  37. package/dist/types/client/errorUtils.d.ts +1 -1
  38. package/dist/types/components/Error/ErrorMessage.d.ts +2 -2
  39. package/dist/types/components/Team/TeamForbiddenErrorState.d.ts +1 -1
  40. package/dist/types/components/Team/TeamLoadingState.d.ts +1 -1
  41. package/dist/types/components/Team/TeamProfileCardTrigger.d.ts +2 -2
  42. package/dist/types/components/User/OverflowProfileCardButtons.d.ts +1 -1
  43. package/dist/types/components/User/ProfileCard.d.ts +1 -1
  44. package/dist/types/components/User/ProfileCardDetails.d.ts +1 -1
  45. package/dist/types/components/User/ProfileCardResourced.d.ts +2 -2
  46. package/dist/types/components/User/ProfileCardTrigger.d.ts +1 -1
  47. package/dist/types/components/User/ProfileCardTriggerNext.d.ts +1 -1
  48. package/dist/types/components/User/ReportingLinesDetails.d.ts +1 -1
  49. package/dist/types/components/User/UserLoadingState.d.ts +1 -1
  50. package/dist/types/index.d.ts +1 -1
  51. package/dist/types/internal/filterActions.d.ts +1 -1
  52. package/dist/types/internal/getLabelMessage.d.ts +1 -1
  53. package/dist/types/internal/relative-date.d.ts +1 -1
  54. package/dist/types/mocks/mock-team-client.d.ts +1 -1
  55. package/dist/types/mocks/reporting-lines-data.d.ts +1 -1
  56. package/dist/types/mocks/simple-mock-clients.d.ts +1 -1
  57. package/dist/types/mocks/team-data.d.ts +1 -1
  58. package/dist/types/types.d.ts +95 -89
  59. package/dist/types/util/analytics.d.ts +2 -2
  60. package/dist/types/util/click.d.ts +1 -1
  61. package/dist/types/util/withOuterListeners.d.ts +1 -1
  62. package/dist/types-ts4.5/client/ProfileCardClient.d.ts +2 -2
  63. package/dist/types-ts4.5/client/TeamCentralCardClient.d.ts +1 -1
  64. package/dist/types-ts4.5/client/TeamProfileCardClient.d.ts +1 -1
  65. package/dist/types-ts4.5/client/UserProfileCardClient.d.ts +2 -2
  66. package/dist/types-ts4.5/client/errorUtils.d.ts +1 -1
  67. package/dist/types-ts4.5/components/Error/ErrorMessage.d.ts +2 -2
  68. package/dist/types-ts4.5/components/Team/TeamForbiddenErrorState.d.ts +1 -1
  69. package/dist/types-ts4.5/components/Team/TeamLoadingState.d.ts +1 -1
  70. package/dist/types-ts4.5/components/Team/TeamProfileCardTrigger.d.ts +2 -2
  71. package/dist/types-ts4.5/components/User/OverflowProfileCardButtons.d.ts +1 -1
  72. package/dist/types-ts4.5/components/User/ProfileCard.d.ts +1 -1
  73. package/dist/types-ts4.5/components/User/ProfileCardDetails.d.ts +1 -1
  74. package/dist/types-ts4.5/components/User/ProfileCardResourced.d.ts +2 -2
  75. package/dist/types-ts4.5/components/User/ProfileCardTrigger.d.ts +1 -1
  76. package/dist/types-ts4.5/components/User/ProfileCardTriggerNext.d.ts +1 -1
  77. package/dist/types-ts4.5/components/User/ReportingLinesDetails.d.ts +1 -1
  78. package/dist/types-ts4.5/components/User/UserLoadingState.d.ts +1 -1
  79. package/dist/types-ts4.5/index.d.ts +1 -1
  80. package/dist/types-ts4.5/internal/filterActions.d.ts +1 -1
  81. package/dist/types-ts4.5/internal/getLabelMessage.d.ts +1 -1
  82. package/dist/types-ts4.5/internal/relative-date.d.ts +1 -1
  83. package/dist/types-ts4.5/mocks/mock-team-client.d.ts +1 -1
  84. package/dist/types-ts4.5/mocks/reporting-lines-data.d.ts +1 -1
  85. package/dist/types-ts4.5/mocks/simple-mock-clients.d.ts +1 -1
  86. package/dist/types-ts4.5/mocks/team-data.d.ts +1 -1
  87. package/dist/types-ts4.5/types.d.ts +95 -89
  88. package/dist/types-ts4.5/util/analytics.d.ts +2 -2
  89. package/dist/types-ts4.5/util/click.d.ts +1 -1
  90. package/dist/types-ts4.5/util/withOuterListeners.d.ts +1 -1
  91. package/docs/0-intro.tsx +13 -18
  92. package/docs/1-profilecard-trigger.tsx +13 -19
  93. package/docs/2-team-profilecard.tsx +26 -32
  94. package/package.json +14 -12
  95. package/report.api.md +457 -496
package/CHANGELOG.md CHANGED
@@ -1,2312 +1,2325 @@
1
1
  # @atlaskit/profilecard
2
2
 
3
+ ## 19.14.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#110767](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/110767)
8
+ [`c61ae33311e2e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c61ae33311e2e) -
9
+ PTC-9295 adopt isFedramp, and disable tc client if fedramp
10
+
11
+ ## 19.14.0
12
+
13
+ ### Minor Changes
14
+
15
+ - [#102379](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/102379)
16
+ [`d8643ec13c0c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d8643ec13c0c) -
17
+ Added displayConfig prop, it has showKudos to control whether to show kudos.
18
+
3
19
  ## 19.13.0
4
20
 
5
21
  ### Minor Changes
6
22
 
7
- - [#99727](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/99727)
8
- [`80b09c8a9a96`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/80b09c8a9a96) -
9
- hot-109153 Revert the changes PR#98596
23
+ - [#99727](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/99727)
24
+ [`80b09c8a9a96`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/80b09c8a9a96) -
25
+ hot-109153 Revert the changes PR#98596
10
26
 
11
27
  ## 19.12.0
12
28
 
13
29
  ### Minor Changes
14
30
 
15
- - [#98596](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/98596)
16
- [`73481a25ddad`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/73481a25ddad) -
17
- ECA11Y-189 Fix profile card reading order
31
+ - [#98596](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/98596)
32
+ [`73481a25ddad`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/73481a25ddad) -
33
+ ECA11Y-189 Fix profile card reading order
18
34
 
19
35
  ### Patch Changes
20
36
 
21
- - Updated dependencies
37
+ - Updated dependencies
22
38
 
23
39
  ## 19.11.8
24
40
 
25
41
  ### Patch Changes
26
42
 
27
- - [#90449](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/90449)
28
- [`16cfcaa2c2dd`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/16cfcaa2c2dd) -
29
- Clean up trigger FF
43
+ - [#90449](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/90449)
44
+ [`16cfcaa2c2dd`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/16cfcaa2c2dd) -
45
+ Clean up trigger FF
30
46
 
31
47
  ## 19.11.7
32
48
 
33
49
  ### Patch Changes
34
50
 
35
- - [#94338](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/94338)
36
- [`4da2886fcb36`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4da2886fcb36) -
37
- JCA11Y-1390 Fix Non-modal dialog programmatically identified issue, add role and aria-labelledby
38
- to profilecard wrapper
51
+ - [#94338](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/94338)
52
+ [`4da2886fcb36`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4da2886fcb36) -
53
+ JCA11Y-1390 Fix Non-modal dialog programmatically identified issue, add role and aria-labelledby
54
+ to profilecard wrapper
39
55
 
40
56
  ## 19.11.6
41
57
 
42
58
  ### Patch Changes
43
59
 
44
- - [#92007](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92007)
45
- [`85525725cb0d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/85525725cb0d) -
46
- Migrated to the new button component
60
+ - [#92007](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92007)
61
+ [`85525725cb0d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/85525725cb0d) -
62
+ Migrated to the new button component
47
63
 
48
64
  ## 19.11.5
49
65
 
50
66
  ### Patch Changes
51
67
 
52
- - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116)
53
- [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) -
54
- Upgrade Typescript from `4.9.5` to `5.4.2`
68
+ - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116)
69
+ [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) -
70
+ Upgrade Typescript from `4.9.5` to `5.4.2`
55
71
 
56
72
  ## 19.11.4
57
73
 
58
74
  ### Patch Changes
59
75
 
60
- - [#77847](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/77847)
61
- [`7caee7ccfcc8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7caee7ccfcc8) -
62
- updating these packages with the latest team-central dependencies
76
+ - [#77847](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/77847)
77
+ [`7caee7ccfcc8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7caee7ccfcc8) -
78
+ updating these packages with the latest team-central dependencies
63
79
 
64
80
  ## 19.11.3
65
81
 
66
82
  ### Patch Changes
67
83
 
68
- - [#74684](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/74684)
69
- [`077c9034fc89`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/077c9034fc89) -
70
- Pass fullName as ariaLabel to ProfileCardTrigger props'
84
+ - [#74684](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/74684)
85
+ [`077c9034fc89`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/077c9034fc89) -
86
+ Pass fullName as ariaLabel to ProfileCardTrigger props'
71
87
 
72
88
  ## 19.11.2
73
89
 
74
90
  ### Patch Changes
75
91
 
76
- - [#74811](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/74811)
77
- [`c30aee2e855c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c30aee2e855c) -
78
- PTC-8751 enforce space token usage in profilecard
79
- - Updated dependencies
92
+ - [#74811](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/74811)
93
+ [`c30aee2e855c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c30aee2e855c) -
94
+ PTC-8751 enforce space token usage in profilecard
95
+ - Updated dependencies
80
96
 
81
97
  ## 19.11.1
82
98
 
83
99
  ### Patch Changes
84
100
 
85
- - [#73706](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/73706)
86
- [`3a5408573683`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3a5408573683) -
87
- Fix bug causing profilecard to disappear early in some circumstances
101
+ - [#73706](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/73706)
102
+ [`3a5408573683`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3a5408573683) -
103
+ Fix bug causing profilecard to disappear early in some circumstances
88
104
 
89
105
  ## 19.11.0
90
106
 
91
107
  ### Minor Changes
92
108
 
93
- - [#72021](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/72021)
94
- [`bfb147303ac8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bfb147303ac8) -
95
- Pass fullName props to ProfileCardTrigger, and update aria-label message
109
+ - [#72021](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/72021)
110
+ [`bfb147303ac8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bfb147303ac8) -
111
+ Pass fullName props to ProfileCardTrigger, and update aria-label message
96
112
 
97
113
  ### Patch Changes
98
114
 
99
- - Updated dependencies
115
+ - Updated dependencies
100
116
 
101
117
  ## 19.10.0
102
118
 
103
119
  ### Minor Changes
104
120
 
105
- - [#71508](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/71508)
106
- [`e6125d2215ef`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e6125d2215ef) -
107
- Added accountType prop
121
+ - [#71508](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/71508)
122
+ [`e6125d2215ef`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e6125d2215ef) -
123
+ Added accountType prop
108
124
 
109
125
  ## 19.9.0
110
126
 
111
127
  ### Minor Changes
112
128
 
113
- - [#70817](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70817)
114
- [`bc59c17947b6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bc59c17947b6) -
115
- Add focus to view profile button when Profile card display
129
+ - [#70817](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70817)
130
+ [`bc59c17947b6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bc59c17947b6) -
131
+ Add focus to view profile button when Profile card display
116
132
 
117
133
  ### Patch Changes
118
134
 
119
- - Updated dependencies
135
+ - Updated dependencies
120
136
 
121
137
  ## 19.8.0
122
138
 
123
139
  ### Minor Changes
124
140
 
125
- - [#68345](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68345)
126
- [`c769c4488d20`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c769c4488d20) -
127
- Add aria label to trigger & add ProfilecardTriggerNext
141
+ - [#68345](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68345)
142
+ [`c769c4488d20`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c769c4488d20) -
143
+ Add aria label to trigger & add ProfilecardTriggerNext
128
144
 
129
145
  ### Patch Changes
130
146
 
131
- - Updated dependencies
147
+ - Updated dependencies
132
148
 
133
149
  ## 19.7.15
134
150
 
135
151
  ### Patch Changes
136
152
 
137
- - [#67206](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67206)
138
- [`277421c217ae`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/277421c217ae) -
139
- PTC-8511 ENGHEALTH-5595 fix deprecated token
153
+ - [#67206](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67206)
154
+ [`277421c217ae`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/277421c217ae) -
155
+ PTC-8511 ENGHEALTH-5595 fix deprecated token
140
156
 
141
157
  ## 19.7.14
142
158
 
143
159
  ### Patch Changes
144
160
 
145
- - [#66217](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66217)
146
- [`60bb0cdab810`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/60bb0cdab810) -
147
- Without providing button attribute in the hover state, it won't trigger by keyboard. That's why,
148
- we are providing button behavior as default to profilecard component.
149
- - Updated dependencies
161
+ - [#66217](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66217)
162
+ [`60bb0cdab810`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/60bb0cdab810) -
163
+ Without providing button attribute in the hover state, it won't trigger by keyboard. That's why,
164
+ we are providing button behavior as default to profilecard component.
165
+ - Updated dependencies
150
166
 
151
167
  ## 19.7.13
152
168
 
153
169
  ### Patch Changes
154
170
 
155
- - [#64872](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/64872)
156
- [`146b7db2c017`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/146b7db2c017) -
157
- No changes, as far as I know
171
+ - [#64872](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/64872)
172
+ [`146b7db2c017`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/146b7db2c017) -
173
+ No changes, as far as I know
158
174
 
159
175
  ## 19.7.12
160
176
 
161
177
  ### Patch Changes
162
178
 
163
- - [#65031](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/65031)
164
- [`a00094111b5a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a00094111b5a) -
165
- ED-21609 Update adf-schema to 35.3.0
179
+ - [#65031](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/65031)
180
+ [`a00094111b5a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a00094111b5a) -
181
+ ED-21609 Update adf-schema to 35.3.0
166
182
 
167
183
  ## 19.7.11
168
184
 
169
185
  ### Patch Changes
170
186
 
171
- - [#64821](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/64821)
172
- [`64e3db3a22e4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/64e3db3a22e4) -
173
- Remove SST feature flag
174
- - Updated dependencies
187
+ - [#64821](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/64821)
188
+ [`64e3db3a22e4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/64e3db3a22e4) -
189
+ Remove SST feature flag
190
+ - Updated dependencies
175
191
 
176
192
  ## 19.7.10
177
193
 
178
194
  ### Patch Changes
179
195
 
180
- - [#63681](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63681)
181
- [`0a62538b713e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0a62538b713e) -
182
- role attribute updated for profile card. Previously we are not providing any role attribute for
183
- hover state. Now, we are providing dialog as role since it will open popup and show user's
184
- detail in popup. Also atlaskit component that we used for openning popup is providing popup aria
185
- attributes so just providing dialog is enough to pass a11y checks.
196
+ - [#63681](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63681)
197
+ [`0a62538b713e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0a62538b713e) -
198
+ role attribute updated for profile card. Previously we are not providing any role attribute for
199
+ hover state. Now, we are providing dialog as role since it will open popup and show user's detail
200
+ in popup. Also atlaskit component that we used for openning popup is providing popup aria
201
+ attributes so just providing dialog is enough to pass a11y checks.
186
202
 
187
203
  ## 19.7.9
188
204
 
189
205
  ### Patch Changes
190
206
 
191
- - [#62980](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/62980)
192
- [`d85be9b35a7b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d85be9b35a7b) -
193
- [ux] PTC-8115 add tooltip to the team name in team profile card
207
+ - [#62980](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/62980)
208
+ [`d85be9b35a7b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d85be9b35a7b) -
209
+ [ux] PTC-8115 add tooltip to the team name in team profile card
194
210
 
195
211
  ## 19.7.8
196
212
 
197
213
  ### Patch Changes
198
214
 
199
- - Updated dependencies
215
+ - Updated dependencies
200
216
 
201
217
  ## 19.7.7
202
218
 
203
219
  ### Patch Changes
204
220
 
205
- - [#57499](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/57499)
206
- [`d66fad636c89`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d66fad636c89) -
207
- Remove legacy theming logic (e.g. themed(), AtlaskitThemeProvider, etc) from platform packages.
208
- Theming is available via the new design token-based system.
221
+ - [#57499](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/57499)
222
+ [`d66fad636c89`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d66fad636c89) -
223
+ Remove legacy theming logic (e.g. themed(), AtlaskitThemeProvider, etc) from platform packages.
224
+ Theming is available via the new design token-based system.
209
225
 
210
226
  ## 19.7.6
211
227
 
212
228
  ### Patch Changes
213
229
 
214
- - [#43874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43874)
215
- [`71d228970ef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/71d228970ef) - Enrol
216
- packages to push model in JFE
230
+ - [#43874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43874)
231
+ [`71d228970ef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/71d228970ef) - Enrol
232
+ packages to push model in JFE
217
233
 
218
234
  ## 19.7.5
219
235
 
220
236
  ### Patch Changes
221
237
 
222
- - Updated dependencies
238
+ - Updated dependencies
223
239
 
224
240
  ## 19.7.4
225
241
 
226
242
  ### Patch Changes
227
243
 
228
- - Updated dependencies
244
+ - Updated dependencies
229
245
 
230
246
  ## 19.7.3
231
247
 
232
248
  ### Patch Changes
233
249
 
234
- - [#42285](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42285)
235
- [`e9af0f05581`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e9af0f05581) - [ux]
236
- PTC-8007 remove on focus handler to fix a11y issue for screen reader users
250
+ - [#42285](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42285)
251
+ [`e9af0f05581`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e9af0f05581) - [ux]
252
+ PTC-8007 remove on focus handler to fix a11y issue for screen reader users
237
253
 
238
254
  ## 19.7.2
239
255
 
240
256
  ### Patch Changes
241
257
 
242
- - [#41882](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41882)
243
- [`54e68dcc7da`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54e68dcc7da) - Pass
244
- en-US as default locale
258
+ - [#41882](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41882)
259
+ [`54e68dcc7da`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54e68dcc7da) - Pass
260
+ en-US as default locale
245
261
 
246
262
  ## 19.7.1
247
263
 
248
264
  ### Patch Changes
249
265
 
250
- - [#41768](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41768)
251
- [`fe2e31821db`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe2e31821db) - Dont
252
- fail SLO on IdentityUserNotFoundError
266
+ - [#41768](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41768)
267
+ [`fe2e31821db`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe2e31821db) - Dont
268
+ fail SLO on IdentityUserNotFoundError
253
269
 
254
270
  ## 19.7.0
255
271
 
256
272
  ### Minor Changes
257
273
 
258
- - [#41507](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41507)
259
- [`211ff35c18f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/211ff35c18f) -
260
- Handling of Jira custom client wrapping profile errors
274
+ - [#41507](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41507)
275
+ [`211ff35c18f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/211ff35c18f) - Handling
276
+ of Jira custom client wrapping profile errors
261
277
 
262
278
  ## 19.6.1
263
279
 
264
280
  ### Patch Changes
265
281
 
266
- - Updated dependencies
282
+ - Updated dependencies
267
283
 
268
284
  ## 19.6.0
269
285
 
270
286
  ### Minor Changes
271
287
 
272
- - [#41158](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41158)
273
- [`573b0c53f09`](https://bitbucket.org/atlassian/atlassian-frontend/commits/573b0c53f09) - [ux]
274
- Replaced h5 to h3
288
+ - [#41158](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41158)
289
+ [`573b0c53f09`](https://bitbucket.org/atlassian/atlassian-frontend/commits/573b0c53f09) - [ux]
290
+ Replaced h5 to h3
275
291
 
276
292
  ## 19.5.14
277
293
 
278
294
  ### Patch Changes
279
295
 
280
- - [#41283](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41283)
281
- [`4eb4f881efa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4eb4f881efa) - fix
282
- strict typescript errors
296
+ - [#41283](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41283)
297
+ [`4eb4f881efa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4eb4f881efa) - fix
298
+ strict typescript errors
283
299
 
284
300
  ## 19.5.13
285
301
 
286
302
  ### Patch Changes
287
303
 
288
- - [#41140](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41140)
289
- [`e54969bc4d1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e54969bc4d1) -
290
- PTC-7540 as a PIR, add unit tests for graphql queries
304
+ - [#41140](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41140)
305
+ [`e54969bc4d1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e54969bc4d1) - PTC-7540
306
+ as a PIR, add unit tests for graphql queries
291
307
 
292
308
  ## 19.5.12
293
309
 
294
310
  ### Patch Changes
295
311
 
296
- - [#41012](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41012)
297
- [`99707f3ab56`](https://bitbucket.org/atlassian/atlassian-frontend/commits/99707f3ab56) - Fix
298
- destructing Directory error
312
+ - [#41012](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41012)
313
+ [`99707f3ab56`](https://bitbucket.org/atlassian/atlassian-frontend/commits/99707f3ab56) - Fix
314
+ destructing Directory error
299
315
 
300
316
  ## 19.5.11
301
317
 
302
318
  ### Patch Changes
303
319
 
304
- - [#40822](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40822)
305
- [`179ee5ba573`](https://bitbucket.org/atlassian/atlassian-frontend/commits/179ee5ba573) - Better
306
- handling of errors
320
+ - [#40822](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40822)
321
+ [`179ee5ba573`](https://bitbucket.org/atlassian/atlassian-frontend/commits/179ee5ba573) - Better
322
+ handling of errors
307
323
 
308
324
  ## 19.5.10
309
325
 
310
326
  ### Patch Changes
311
327
 
312
- - [#39787](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39787)
313
- [`6900f89eb0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6900f89eb0e) -
314
- Internal changes to use space tokens. There is no expected visual or behaviour change.
328
+ - [#39787](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39787)
329
+ [`6900f89eb0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6900f89eb0e) - Internal
330
+ changes to use space tokens. There is no expected visual or behaviour change.
315
331
 
316
332
  ## 19.5.9
317
333
 
318
334
  ### Patch Changes
319
335
 
320
- - [#39562](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39562)
321
- [`c18f1580f12`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c18f1580f12) - [ux]
322
- [ECA11Y-33] Remove unncessary prefix from mention icons aria-label attribute
323
- - [#39559](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39559)
324
- [`e9c9a4ea79f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e9c9a4ea79f) - [ux]
325
- [ECA11Y-34] Replaced profile name span element with h2 tag
336
+ - [#39562](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39562)
337
+ [`c18f1580f12`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c18f1580f12) - [ux]
338
+ [ECA11Y-33] Remove unncessary prefix from mention icons aria-label attribute
339
+ - [#39559](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39559)
340
+ [`e9c9a4ea79f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e9c9a4ea79f) - [ux]
341
+ [ECA11Y-34] Replaced profile name span element with h2 tag
326
342
 
327
343
  ## 19.5.8
328
344
 
329
345
  ### Patch Changes
330
346
 
331
- - [#38162](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38162)
332
- [`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete
333
- version.json
334
- - Updated dependencies
347
+ - [#38162](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38162)
348
+ [`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete
349
+ version.json
350
+ - Updated dependencies
335
351
 
336
352
  ## 19.5.7
337
353
 
338
354
  ### Patch Changes
339
355
 
340
- - [#37372](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37372)
341
- [`834a98bdc7b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/834a98bdc7b) -
342
- [ECA11Y-13] Make focus ring visible for 'Give kudos' button
343
- - Updated dependencies
356
+ - [#37372](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37372)
357
+ [`834a98bdc7b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/834a98bdc7b) -
358
+ [ECA11Y-13] Make focus ring visible for 'Give kudos' button
359
+ - Updated dependencies
344
360
 
345
361
  ## 19.5.6
346
362
 
347
363
  ### Patch Changes
348
364
 
349
- - [#38551](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38551)
350
- [`3ef90d5fc2f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3ef90d5fc2f) -
351
- Cleanup the references to version.json
365
+ - [#38551](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38551)
366
+ [`3ef90d5fc2f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3ef90d5fc2f) - Cleanup
367
+ the references to version.json
352
368
 
353
369
  ## 19.5.5
354
370
 
355
371
  ### Patch Changes
356
372
 
357
- - [#37925](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37925)
358
- [`f01deb5e6ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f01deb5e6ab) - Use
359
- injected env vars instead of version.json
373
+ - [#37925](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37925)
374
+ [`f01deb5e6ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f01deb5e6ab) - Use
375
+ injected env vars instead of version.json
360
376
 
361
377
  ## 19.5.4
362
378
 
363
379
  ### Patch Changes
364
380
 
365
- - [#38237](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38237)
366
- [`cc13658d9b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cc13658d9b4) - Fix
367
- for incorrect GraphQL query variable in team card
381
+ - [#38237](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38237)
382
+ [`cc13658d9b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cc13658d9b4) - Fix for
383
+ incorrect GraphQL query variable in team card
368
384
 
369
385
  ## 19.5.3
370
386
 
371
387
  ### Patch Changes
372
388
 
373
- - Updated dependencies
389
+ - Updated dependencies
374
390
 
375
391
  ## 19.5.2
376
392
 
377
393
  ### Patch Changes
378
394
 
379
- - [#36576](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36576)
380
- [`0c6a7acba8d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0c6a7acba8d) -
381
- Resolved an issue with the team profile card query having invalid formatting
395
+ - [#36576](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36576)
396
+ [`0c6a7acba8d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0c6a7acba8d) - Resolved
397
+ an issue with the team profile card query having invalid formatting
382
398
 
383
399
  ## 19.5.1
384
400
 
385
401
  ### Patch Changes
386
402
 
387
- - [#35908](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35908)
388
- [`5259a126fa1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5259a126fa1) -
389
- Replace calls to pf-directory `Team` and `TeamMembership` with AGG `teamV2` in Directory app.
403
+ - [#35908](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35908)
404
+ [`5259a126fa1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5259a126fa1) - Replace
405
+ calls to pf-directory `Team` and `TeamMembership` with AGG `teamV2` in Directory app.
390
406
 
391
407
  ## 19.5.0
392
408
 
393
409
  ### Minor Changes
394
410
 
395
- - [#35776](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35776)
396
- [`5a5c412a944`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5a5c412a944) - Site
397
- scoped changes for TeamProfileCard - behind FF platform.teams.site-scoped.m1
411
+ - [#35776](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35776)
412
+ [`5a5c412a944`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5a5c412a944) - Site
413
+ scoped changes for TeamProfileCard - behind FF platform.teams.site-scoped.m1
398
414
 
399
415
  ## 19.4.2
400
416
 
401
417
  ### Patch Changes
402
418
 
403
- - [#34443](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34443)
404
- [`61cb5313358`](https://bitbucket.org/atlassian/atlassian-frontend/commits/61cb5313358) -
405
- Removing unused dependencies and dev dependencies
419
+ - [#34443](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34443)
420
+ [`61cb5313358`](https://bitbucket.org/atlassian/atlassian-frontend/commits/61cb5313358) - Removing
421
+ unused dependencies and dev dependencies
406
422
 
407
423
  ## 19.4.1
408
424
 
409
425
  ### Patch Changes
410
426
 
411
- - [#34118](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34118)
412
- [`2eb438477ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2eb438477ab) -
413
- Internal change to enforce token usage for spacing properties. There is no expected visual or
414
- behaviour change.
427
+ - [#34118](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34118)
428
+ [`2eb438477ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2eb438477ab) - Internal
429
+ change to enforce token usage for spacing properties. There is no expected visual or behaviour
430
+ change.
415
431
 
416
432
  ## 19.4.0
417
433
 
418
434
  ### Minor Changes
419
435
 
420
- - [#34206](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34206)
421
- [`17fe8f92030`](https://bitbucket.org/atlassian/atlassian-frontend/commits/17fe8f92030) -
422
- Correctly export i18n messages from profilecard!
436
+ - [#34206](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34206)
437
+ [`17fe8f92030`](https://bitbucket.org/atlassian/atlassian-frontend/commits/17fe8f92030) -
438
+ Correctly export i18n messages from profilecard!
423
439
 
424
440
  ## 19.3.2
425
441
 
426
442
  ### Patch Changes
427
443
 
428
- - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793)
429
- [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
430
- legacy types are published for TS 4.5-4.8
444
+ - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793)
445
+ [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
446
+ legacy types are published for TS 4.5-4.8
431
447
 
432
448
  ## 19.3.1
433
449
 
434
450
  ### Patch Changes
435
451
 
436
- - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649)
437
- [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) -
438
- Upgrade Typescript from `4.5.5` to `4.9.5`
452
+ - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649)
453
+ [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade
454
+ Typescript from `4.5.5` to `4.9.5`
439
455
 
440
456
  ## 19.3.0
441
457
 
442
458
  ### Minor Changes
443
459
 
444
- - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258)
445
- [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
446
- minor dependency bump
460
+ - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258)
461
+ [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
462
+ minor dependency bump
447
463
 
448
464
  ### Patch Changes
449
465
 
450
- - Updated dependencies
466
+ - Updated dependencies
451
467
 
452
468
  ## 19.2.2
453
469
 
454
470
  ### Patch Changes
455
471
 
456
- - [#32030](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32030)
457
- [`c3d16d3164f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c3d16d3164f) -
458
- Migrated use of `gridSize` to space tokens where possible. There is no expected visual or
459
- behaviour change.
472
+ - [#32030](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32030)
473
+ [`c3d16d3164f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c3d16d3164f) - Migrated
474
+ use of `gridSize` to space tokens where possible. There is no expected visual or behaviour change.
460
475
 
461
476
  ## 19.2.1
462
477
 
463
478
  ### Patch Changes
464
479
 
465
- - [#31560](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31560)
466
- [`052672d7eca`](https://bitbucket.org/atlassian/atlassian-frontend/commits/052672d7eca) - Added
467
- errorSource to analytics events, added tests for fail events
480
+ - [#31560](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31560)
481
+ [`052672d7eca`](https://bitbucket.org/atlassian/atlassian-frontend/commits/052672d7eca) - Added
482
+ errorSource to analytics events, added tests for fail events
468
483
 
469
484
  ## 19.2.0
470
485
 
471
486
  ### Minor Changes
472
487
 
473
- - [#31233](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31233)
474
- [`2af6359970f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2af6359970f) - [ux]
475
- This change (related to TSLA-521) adds an onFocus handler for the profile card trigger that
476
- performs the same behavior as onHover. The change also adds an onBlur handler.
488
+ - [#31233](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31233)
489
+ [`2af6359970f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2af6359970f) - [ux]
490
+ This change (related to TSLA-521) adds an onFocus handler for the profile card trigger that
491
+ performs the same behavior as onHover. The change also adds an onBlur handler.
477
492
 
478
493
  ## 19.1.1
479
494
 
480
495
  ### Patch Changes
481
496
 
482
- - [#31423](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31423)
483
- [`f80d2e43a41`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f80d2e43a41) - Added
484
- traceId, errorSource and errorMessage to analytic events
497
+ - [#31423](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31423)
498
+ [`f80d2e43a41`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f80d2e43a41) - Added
499
+ traceId, errorSource and errorMessage to analytic events
485
500
 
486
501
  ## 19.1.0
487
502
 
488
503
  ### Minor Changes
489
504
 
490
- - [#31160](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31160)
491
- [`13af6ca0e48`](https://bitbucket.org/atlassian/atlassian-frontend/commits/13af6ca0e48) - [ux]
492
- TSLA-521 docs(changeset): [ux] This change (TSLA-521) adds keyboard support for the profile card
493
- component by adding tabindex, an onKeyPress handler, and setting role="button" when the card is
494
- trigged by click. This change also adds unit tests for the profile card trigger as well as
495
- notifcations.
505
+ - [#31160](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31160)
506
+ [`13af6ca0e48`](https://bitbucket.org/atlassian/atlassian-frontend/commits/13af6ca0e48) - [ux]
507
+ TSLA-521 docs(changeset): [ux] This change (TSLA-521) adds keyboard support for the profile card
508
+ component by adding tabindex, an onKeyPress handler, and setting role="button" when the card is
509
+ trigged by click. This change also adds unit tests for the profile card trigger as well as
510
+ notifcations.
496
511
 
497
512
  ## 19.0.0
498
513
 
499
514
  ### Major Changes
500
515
 
501
- - [#31230](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31230)
502
- [`6e57454a13a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6e57454a13a) -
503
- makeRequestViaGateway removed from TeamProfileClient, instead use makeRequest. teamsUseV2
504
- removed from ProfileCardClient, it will now always use V3.
516
+ - [#31230](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31230)
517
+ [`6e57454a13a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6e57454a13a) -
518
+ makeRequestViaGateway removed from TeamProfileClient, instead use makeRequest. teamsUseV2 removed
519
+ from ProfileCardClient, it will now always use V3.
505
520
 
506
521
  ## 18.4.0
507
522
 
508
523
  ### Minor Changes
509
524
 
510
- - [#30903](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30903)
511
- [`312e4be46d2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/312e4be46d2) - Always
512
- call AGG for team data'
525
+ - [#30903](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30903)
526
+ [`312e4be46d2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/312e4be46d2) - Always
527
+ call AGG for team data'
513
528
 
514
529
  ## 18.3.0
515
530
 
516
531
  ### Minor Changes
517
532
 
518
- - [#30439](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30439)
519
- [`9cbd4a1766b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9cbd4a1766b) - [ux]
520
- Added an error state for team profile card that is displayed when the user lack of access to the
521
- team
533
+ - [#30439](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30439)
534
+ [`9cbd4a1766b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9cbd4a1766b) - [ux]
535
+ Added an error state for team profile card that is displayed when the user lack of access to the
536
+ team
522
537
 
523
538
  ## 18.2.4
524
539
 
525
540
  ### Patch Changes
526
541
 
527
- - Updated dependencies
542
+ - Updated dependencies
528
543
 
529
544
  ## 18.2.3
530
545
 
531
546
  ### Patch Changes
532
547
 
533
- - Updated dependencies
548
+ - Updated dependencies
534
549
 
535
550
  ## 18.2.2
536
551
 
537
552
  ### Patch Changes
538
553
 
539
- - [#29080](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29080)
540
- [`7d2488dcbcf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7d2488dcbcf) -
541
- Upgrade lru-fast@0.2.2 to lru_map
554
+ - [#29080](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29080)
555
+ [`7d2488dcbcf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7d2488dcbcf) - Upgrade
556
+ lru-fast@0.2.2 to lru_map
542
557
 
543
558
  ## 18.2.1
544
559
 
545
560
  ### Patch Changes
546
561
 
547
- - [#29094](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29094)
548
- [`20f162117fb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/20f162117fb) - Remove
549
- usaged of themed for light and dark theme
562
+ - [#29094](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29094)
563
+ [`20f162117fb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/20f162117fb) - Remove
564
+ usaged of themed for light and dark theme
550
565
 
551
566
  ## 18.2.0
552
567
 
553
568
  ### Minor Changes
554
569
 
555
- - [#28622](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28622)
556
- [`da891855ee9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/da891855ee9) - Remove
557
- Atlas give kudos M2 feature flag check
570
+ - [#28622](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28622)
571
+ [`da891855ee9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/da891855ee9) - Remove
572
+ Atlas give kudos M2 feature flag check
558
573
 
559
574
  ## 18.1.3
560
575
 
561
576
  ### Patch Changes
562
577
 
563
- - [#28723](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28723)
564
- [`5e697be0410`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5e697be0410) - [ux]
565
- Fix team header image bug
578
+ - [#28723](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28723)
579
+ [`5e697be0410`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5e697be0410) - [ux] Fix
580
+ team header image bug
566
581
 
567
582
  ## 18.1.2
568
583
 
569
584
  ### Patch Changes
570
585
 
571
- - [#28324](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28324)
572
- [`6455cf006b3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6455cf006b3) - Builds
573
- for this package now pass through a tokens babel plugin, removing runtime invocations of the
574
- tokens() function and improving performance.
586
+ - [#28324](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28324)
587
+ [`6455cf006b3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6455cf006b3) - Builds
588
+ for this package now pass through a tokens babel plugin, removing runtime invocations of the
589
+ tokens() function and improving performance.
575
590
 
576
591
  ## 18.1.1
577
592
 
578
593
  ### Patch Changes
579
594
 
580
- - [#28352](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28352)
581
- [`60b1c9b0f05`](https://bitbucket.org/atlassian/atlassian-frontend/commits/60b1c9b0f05) -
582
- Upgrade profilecard to the latest major version of emotion
595
+ - [#28352](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28352)
596
+ [`60b1c9b0f05`](https://bitbucket.org/atlassian/atlassian-frontend/commits/60b1c9b0f05) - Upgrade
597
+ profilecard to the latest major version of emotion
583
598
 
584
599
  ## 18.1.0
585
600
 
586
601
  ### Minor Changes
587
602
 
588
- - [#28343](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28343)
589
- [`227230d34f2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/227230d34f2) - Allow
590
- option to force team profilecard to use pf-directory
603
+ - [#28343](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28343)
604
+ [`227230d34f2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/227230d34f2) - Allow
605
+ option to force team profilecard to use pf-directory
591
606
 
592
607
  ## 18.0.2
593
608
 
594
609
  ### Patch Changes
595
610
 
596
- - Updated dependencies
611
+ - Updated dependencies
597
612
 
598
613
  ## 18.0.1
599
614
 
600
615
  ### Patch Changes
601
616
 
602
- - Updated dependencies
617
+ - Updated dependencies
603
618
 
604
619
  ## 18.0.0
605
620
 
606
621
  ### Major Changes
607
622
 
608
- - [#27453](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27453)
609
- [`d1789629297`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d1789629297) - Switch
610
- from styled-components to emotion for CSS
623
+ - [#27453](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27453)
624
+ [`d1789629297`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d1789629297) - Switch
625
+ from styled-components to emotion for CSS
611
626
 
612
627
  ## 17.3.1
613
628
 
614
629
  ### Patch Changes
615
630
 
616
- - Updated dependencies
631
+ - Updated dependencies
617
632
 
618
633
  ## 17.3.0
619
634
 
620
635
  ### Minor Changes
621
636
 
622
- - [#27395](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27395)
623
- [`b2ef0c20138`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b2ef0c20138) - [ux]
624
- Don't shift focus when triggering user or team profilecard via hover
637
+ - [#27395](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27395)
638
+ [`b2ef0c20138`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b2ef0c20138) - [ux]
639
+ Don't shift focus when triggering user or team profilecard via hover
625
640
 
626
641
  ## 17.2.7
627
642
 
628
643
  ### Patch Changes
629
644
 
630
- - [#27626](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27626)
631
- [`7bb86e9484c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7bb86e9484c) -
632
- Transform errors from AGG and ignore 403(TEAMS_FORBIDDEN) and 410(TEAMS_TEAM_DELETED) errors for
633
- SLO failure
645
+ - [#27626](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27626)
646
+ [`7bb86e9484c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7bb86e9484c) -
647
+ Transform errors from AGG and ignore 403(TEAMS_FORBIDDEN) and 410(TEAMS_TEAM_DELETED) errors for
648
+ SLO failure
634
649
 
635
650
  ## 17.2.6
636
651
 
637
652
  ### Patch Changes
638
653
 
639
- - Updated dependencies
654
+ - Updated dependencies
640
655
 
641
656
  ## 17.2.5
642
657
 
643
658
  ### Patch Changes
644
659
 
645
- - [#26483](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26483)
646
- [`dbd0fa0aa5e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dbd0fa0aa5e) - Handle
647
- both new and legacy Team ARIs
660
+ - [#26483](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26483)
661
+ [`dbd0fa0aa5e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dbd0fa0aa5e) - Handle
662
+ both new and legacy Team ARIs
648
663
 
649
664
  ## 17.2.4
650
665
 
651
666
  ### Patch Changes
652
667
 
653
- - [#26481](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26481)
654
- [`250ad85dd78`](https://bitbucket.org/atlassian/atlassian-frontend/commits/250ad85dd78) - [ux]
655
- Removed ButtonGroup from team profile card to fix the layout of action buttons
668
+ - [#26481](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26481)
669
+ [`250ad85dd78`](https://bitbucket.org/atlassian/atlassian-frontend/commits/250ad85dd78) - [ux]
670
+ Removed ButtonGroup from team profile card to fix the layout of action buttons
656
671
 
657
672
  ## 17.2.3
658
673
 
659
674
  ### Patch Changes
660
675
 
661
- - Updated dependencies
676
+ - Updated dependencies
662
677
 
663
678
  ## 17.2.2
664
679
 
665
680
  ### Patch Changes
666
681
 
667
- - [#23053](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23053)
668
- [`285ad326001`](https://bitbucket.org/atlassian/atlassian-frontend/commits/285ad326001) -
669
- no-issue: Translations update
682
+ - [#23053](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23053)
683
+ [`285ad326001`](https://bitbucket.org/atlassian/atlassian-frontend/commits/285ad326001) -
684
+ no-issue: Translations update
670
685
 
671
686
  ## 17.2.1
672
687
 
673
688
  ### Patch Changes
674
689
 
675
- - [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874)
676
- [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) -
677
- Upgrade Typescript from `4.3.5` to `4.5.5`
690
+ - [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874)
691
+ [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade
692
+ Typescript from `4.3.5` to `4.5.5`
678
693
 
679
694
  ## 17.2.0
680
695
 
681
696
  ### Minor Changes
682
697
 
683
- - [#25271](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25271)
684
- [`7f54d783d6e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f54d783d6e) - Add
685
- mock for team central client workspace check
698
+ - [#25271](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25271)
699
+ [`7f54d783d6e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f54d783d6e) - Add mock
700
+ for team central client workspace check
686
701
 
687
702
  ## 17.1.1
688
703
 
689
704
  ### Patch Changes
690
705
 
691
- - Updated dependencies
706
+ - Updated dependencies
692
707
 
693
708
  ## 17.1.0
694
709
 
695
710
  ### Minor Changes
696
711
 
697
- - [#24175](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24175)
698
- [`aa321e66c2a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aa321e66c2a) - Add
699
- cloudid as optional client prop and add workspace check for Atlas functionality
712
+ - [#24175](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24175)
713
+ [`aa321e66c2a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aa321e66c2a) - Add
714
+ cloudid as optional client prop and add workspace check for Atlas functionality
700
715
 
701
716
  ## 17.0.0
702
717
 
703
718
  ### Major Changes
704
719
 
705
- - [#23125](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23125)
706
- [`fae495c5956`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fae495c5956) -
707
- Deprecated the analytics prop and start emitting GASv3 analytics
720
+ - [#23125](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23125)
721
+ [`fae495c5956`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fae495c5956) -
722
+ Deprecated the analytics prop and start emitting GASv3 analytics
708
723
 
709
724
  ## 16.12.1
710
725
 
711
726
  ### Patch Changes
712
727
 
713
- - [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492)
714
- [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) -
715
- Upgrade Typescript from `4.2.4` to `4.3.5`.
728
+ - [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492)
729
+ [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade
730
+ Typescript from `4.2.4` to `4.3.5`.
716
731
 
717
732
  ## 16.12.0
718
733
 
719
734
  ### Minor Changes
720
735
 
721
- - [#23898](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23898)
722
- [`12835d685b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/12835d685b4) - [ux]
723
- Only show give kudos button on active profiles
736
+ - [#23898](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23898)
737
+ [`12835d685b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/12835d685b4) - [ux]
738
+ Only show give kudos button on active profiles
724
739
 
725
740
  ## 16.11.0
726
741
 
727
742
  ### Minor Changes
728
743
 
729
- - [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381)
730
- [`01d80d395bc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/01d80d395bc) - pass
731
- event to onOpenChange consistently
744
+ - [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381)
745
+ [`01d80d395bc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/01d80d395bc) - pass
746
+ event to onOpenChange consistently
732
747
 
733
748
  ### Patch Changes
734
749
 
735
- - Updated dependencies
750
+ - Updated dependencies
736
751
 
737
752
  ## 16.10.1
738
753
 
739
754
  ### Patch Changes
740
755
 
741
- - Updated dependencies
756
+ - Updated dependencies
742
757
 
743
758
  ## 16.10.0
744
759
 
745
760
  ### Minor Changes
746
761
 
747
- - [#23074](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23074)
748
- [`e5fbc101e73`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e5fbc101e73) - Remove
749
- analytics prop from give kudos component
762
+ - [#23074](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23074)
763
+ [`e5fbc101e73`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e5fbc101e73) - Remove
764
+ analytics prop from give kudos component
750
765
 
751
766
  ### Patch Changes
752
767
 
753
- - Updated dependencies
768
+ - Updated dependencies
754
769
 
755
770
  ## 16.9.1
756
771
 
757
772
  ### Patch Changes
758
773
 
759
- - Updated dependencies
774
+ - Updated dependencies
760
775
 
761
776
  ## 16.9.0
762
777
 
763
778
  ### Minor Changes
764
779
 
765
- - [#22749](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22749)
766
- [`1f16cd80413`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f16cd80413) - [ux]
767
- Add give kudos to Team profile card.
780
+ - [#22749](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22749)
781
+ [`1f16cd80413`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f16cd80413) - [ux] Add
782
+ give kudos to Team profile card.
768
783
 
769
784
  ## 16.8.0
770
785
 
771
786
  ### Minor Changes
772
787
 
773
- - [#22618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22618)
774
- [`319c46e77de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/319c46e77de) - [ux]
775
- Adding a button background animation when the give kudos button on the profile card is hovered
776
- over
788
+ - [#22618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22618)
789
+ [`319c46e77de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/319c46e77de) - [ux]
790
+ Adding a button background animation when the give kudos button on the profile card is hovered
791
+ over
777
792
 
778
793
  ## 16.7.0
779
794
 
780
795
  ### Minor Changes
781
796
 
782
- - [#22588](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22588)
783
- [`4e9fbfb9e85`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4e9fbfb9e85) - [ux]
784
- Adding meatballs overflow menu when the profile card has more than two action buttons
797
+ - [#22588](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22588)
798
+ [`4e9fbfb9e85`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4e9fbfb9e85) - [ux]
799
+ Adding meatballs overflow menu when the profile card has more than two action buttons
785
800
 
786
801
  ## 16.6.1
787
802
 
788
803
  ### Patch Changes
789
804
 
790
- - [#22624](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22624)
791
- [`cf03bdf6b7e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf03bdf6b7e) - Made
792
- feature flag check extra context optional.
805
+ - [#22624](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22624)
806
+ [`cf03bdf6b7e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf03bdf6b7e) - Made
807
+ feature flag check extra context optional.
793
808
 
794
809
  ## 16.6.0
795
810
 
796
811
  ### Minor Changes
797
812
 
798
- - [#22152](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22152)
799
- [`7c691c8e8a9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7c691c8e8a9) - [ux]
800
- Launch the give kudos flow via a drawer from the profile-card.
813
+ - [#22152](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22152)
814
+ [`7c691c8e8a9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7c691c8e8a9) - [ux]
815
+ Launch the give kudos flow via a drawer from the profile-card.
801
816
 
802
817
  ## 16.5.0
803
818
 
804
819
  ### Minor Changes
805
820
 
806
- - [#21848](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21848)
807
- [`31ca93c69a3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/31ca93c69a3) - [ux]
808
- Adding give kudos button to the profile card
821
+ - [#21848](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21848)
822
+ [`31ca93c69a3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/31ca93c69a3) - [ux]
823
+ Adding give kudos button to the profile card
809
824
 
810
825
  ## 16.4.8
811
826
 
812
827
  ### Patch Changes
813
828
 
814
- - Updated dependencies
829
+ - Updated dependencies
815
830
 
816
831
  ## 16.4.7
817
832
 
818
833
  ### Patch Changes
819
834
 
820
- - Updated dependencies
835
+ - Updated dependencies
821
836
 
822
837
  ## 16.4.6
823
838
 
824
839
  ### Patch Changes
825
840
 
826
- - [#21462](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21462)
827
- [`386249e4be4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/386249e4be4) - [ux]
828
- Fix hide handler when the profile card is triggered via click
841
+ - [#21462](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21462)
842
+ [`386249e4be4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/386249e4be4) - [ux] Fix
843
+ hide handler when the profile card is triggered via click
829
844
 
830
845
  ## 16.4.5
831
846
 
832
847
  ### Patch Changes
833
848
 
834
- - [#20787](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20787)
835
- [`18ab5ef3325`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18ab5ef3325) - Filter
836
- out certain types of failures for team profilecard data fetch
849
+ - [#20787](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20787)
850
+ [`18ab5ef3325`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18ab5ef3325) - Filter
851
+ out certain types of failures for team profilecard data fetch
837
852
 
838
853
  ## 16.4.4
839
854
 
840
855
  ### Patch Changes
841
856
 
842
- - [#21005](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21005)
843
- [`b876346271a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b876346271a) - Ensure
844
- that component wrapping a ProfileCardTrigger is not clicked when clicking the trigger
857
+ - [#21005](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21005)
858
+ [`b876346271a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b876346271a) - Ensure
859
+ that component wrapping a ProfileCardTrigger is not clicked when clicking the trigger
845
860
 
846
861
  ## 16.4.3
847
862
 
848
863
  ### Patch Changes
849
864
 
850
- - [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650)
851
- [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) -
852
- Upgrade to TypeScript 4.2.4
853
- - Updated dependencies
865
+ - [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650)
866
+ [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade
867
+ to TypeScript 4.2.4
868
+ - Updated dependencies
854
869
 
855
870
  ## 16.4.2
856
871
 
857
872
  ### Patch Changes
858
873
 
859
- - Updated dependencies
874
+ - Updated dependencies
860
875
 
861
876
  ## 16.4.1
862
877
 
863
878
  ### Patch Changes
864
879
 
865
- - [#19618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19618)
866
- [`ac9343c3ed4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac9343c3ed4) -
867
- Replaces usage of deprecated design tokens. No visual or functional changes
868
- - Updated dependencies
880
+ - [#19618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19618)
881
+ [`ac9343c3ed4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac9343c3ed4) - Replaces
882
+ usage of deprecated design tokens. No visual or functional changes
883
+ - Updated dependencies
869
884
 
870
885
  ## 16.4.0
871
886
 
872
887
  ### Minor Changes
873
888
 
874
- - [#19693](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19693)
875
- [`4c94bc2d6c4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4c94bc2d6c4) - Update
876
- profilecard to use analytics from teams common
889
+ - [#19693](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19693)
890
+ [`4c94bc2d6c4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4c94bc2d6c4) - Update
891
+ profilecard to use analytics from teams common
877
892
 
878
893
  ## 16.3.1
879
894
 
880
895
  ### Patch Changes
881
896
 
882
- - Updated dependencies
897
+ - Updated dependencies
883
898
 
884
899
  ## 16.3.0
885
900
 
886
901
  ### Minor Changes
887
902
 
888
- - [#17604](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17604)
889
- [`ce207d8ea47`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ce207d8ea47) - Add
890
- option to query teams with AGG
903
+ - [#17604](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17604)
904
+ [`ce207d8ea47`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ce207d8ea47) - Add
905
+ option to query teams with AGG
891
906
 
892
907
  ## 16.2.3
893
908
 
894
909
  ### Patch Changes
895
910
 
896
- - [#18109](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18109)
897
- [`4d4d5d66cb8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4d4d5d66cb8) - Use
898
- entrypoints to import profilecard components
911
+ - [#18109](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18109)
912
+ [`4d4d5d66cb8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4d4d5d66cb8) - Use
913
+ entrypoints to import profilecard components
899
914
 
900
915
  ## 16.2.2
901
916
 
902
917
  ### Patch Changes
903
918
 
904
- - [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752)
905
- [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - The
906
- no-unsafe-design-token-usage eslint rule now respects the new token naming conventions when
907
- auto-fixing by correctly formatting token ids.
908
- - Updated dependencies
919
+ - [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752)
920
+ [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - The
921
+ no-unsafe-design-token-usage eslint rule now respects the new token naming conventions when
922
+ auto-fixing by correctly formatting token ids.
923
+ - Updated dependencies
909
924
 
910
925
  ## 16.2.1
911
926
 
912
927
  ### Patch Changes
913
928
 
914
- - Updated dependencies
929
+ - Updated dependencies
915
930
 
916
931
  ## 16.2.0
917
932
 
918
933
  ### Minor Changes
919
934
 
920
- - [#17840](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17840)
921
- [`4039320b130`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4039320b130) -
922
- Support lazy loading in the ProfileCardTrigger component
935
+ - [#17840](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17840)
936
+ [`4039320b130`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4039320b130) - Support
937
+ lazy loading in the ProfileCardTrigger component
923
938
 
924
939
  ## 16.1.0
925
940
 
926
941
  ### Minor Changes
927
942
 
928
- - [#17298](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17298)
929
- [`a5c73ccaa58`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a5c73ccaa58) - Added
930
- manager and direct reports section to profile hover card"
943
+ - [#17298](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17298)
944
+ [`a5c73ccaa58`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a5c73ccaa58) - Added
945
+ manager and direct reports section to profile hover card"
931
946
 
932
947
  ## 16.0.2
933
948
 
934
949
  ### Patch Changes
935
950
 
936
- - [#17475](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17475)
937
- [`c55c736ecea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c55c736ecea) - Patch
938
- VULN AFP-3486 AFP-3487 AFP-3488 AFP-3489
951
+ - [#17475](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17475)
952
+ [`c55c736ecea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c55c736ecea) - Patch
953
+ VULN AFP-3486 AFP-3487 AFP-3488 AFP-3489
939
954
 
940
955
  ## 16.0.1
941
956
 
942
957
  ### Patch Changes
943
958
 
944
- - [#16812](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16812)
945
- [`82099b76445`](https://bitbucket.org/atlassian/atlassian-frontend/commits/82099b76445) - Add
946
- optional `testId` prop to `ProfileCardTrigger` to ease testing
959
+ - [#16812](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16812)
960
+ [`82099b76445`](https://bitbucket.org/atlassian/atlassian-frontend/commits/82099b76445) - Add
961
+ optional `testId` prop to `ProfileCardTrigger` to ease testing
947
962
 
948
963
  ## 16.0.0
949
964
 
950
965
  ### Major Changes
951
966
 
952
- - [#14810](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14810)
953
- [`47f58da5946`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47f58da5946) -
954
- ED-13322, ED-13324, ED-13326, ED-13323, ED-13204: Upgrade and support react-intl@^5.18.1
955
- including breaking API changes, types and tests in atlassian-frontend packages
956
-
957
- What changed: Upgraded our react-intl support from ^2.6.0 to ^5.18.1. This means editor packages
958
- now rely on consumers installing ^5.18.1, otherwise editor usage of react-intl will mismatch
959
- with actual installed react-intl APIs. Why change was made: As part of a coordinated upgrade
960
- effort across AF packages, as react-intl v2 is quite dated. How consumer should update their
961
- code: Ensure react-intl ^5.18.1 is installed in consuming applications.
962
-
963
- Upgrade guide: To consume atlassian-frontend packages that use react-intl5 setup a second
964
- provider for the new version, using an npm alias
965
-
966
- ```js
967
- "react-intl": "^2.6.0",
968
- "react-intl-next": "npm:react-intl@^5.18.1",
969
- ```
970
-
971
- ```js
972
- import { IntlProvider } from 'react-intl';
973
- import { IntlProvider as IntlNextProvider } from 'react-intl-next';
974
-
975
- return (
976
- <IntlProvider
977
- key={locale}
978
- data-test-language={locale}
979
- locale={locale}
980
- defaultLocale={DEFAULT_LOCALE}
981
- messages={messages}
982
- >
983
- <IntlNextProvider
984
- key={locale}
985
- data-test-language={locale}
986
- locale={locale}
987
- defaultLocale={DEFAULT_LOCALE}
988
- messages={messages}
989
- >
990
- {children}
991
- </IntlNextProvider>
992
- </IntlProvider>
993
- );
994
- ```
967
+ - [#14810](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14810)
968
+ [`47f58da5946`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47f58da5946) -
969
+ ED-13322, ED-13324, ED-13326, ED-13323, ED-13204: Upgrade and support react-intl@^5.18.1 including
970
+ breaking API changes, types and tests in atlassian-frontend packages
971
+
972
+ What changed: Upgraded our react-intl support from ^2.6.0 to ^5.18.1. This means editor packages
973
+ now rely on consumers installing ^5.18.1, otherwise editor usage of react-intl will mismatch with
974
+ actual installed react-intl APIs. Why change was made: As part of a coordinated upgrade effort
975
+ across AF packages, as react-intl v2 is quite dated. How consumer should update their code: Ensure
976
+ react-intl ^5.18.1 is installed in consuming applications.
977
+
978
+ Upgrade guide: To consume atlassian-frontend packages that use react-intl5 setup a second provider
979
+ for the new version, using an npm alias
980
+
981
+ ```js
982
+ "react-intl": "^2.6.0",
983
+ "react-intl-next": "npm:react-intl@^5.18.1",
984
+ ```
985
+
986
+ ```js
987
+ import { IntlProvider } from 'react-intl';
988
+ import { IntlProvider as IntlNextProvider } from 'react-intl-next';
989
+
990
+ return (
991
+ <IntlProvider
992
+ key={locale}
993
+ data-test-language={locale}
994
+ locale={locale}
995
+ defaultLocale={DEFAULT_LOCALE}
996
+ messages={messages}
997
+ >
998
+ <IntlNextProvider
999
+ key={locale}
1000
+ data-test-language={locale}
1001
+ locale={locale}
1002
+ defaultLocale={DEFAULT_LOCALE}
1003
+ messages={messages}
1004
+ >
1005
+ {children}
1006
+ </IntlNextProvider>
1007
+ </IntlProvider>
1008
+ );
1009
+ ```
995
1010
 
996
1011
  ## 15.8.2
997
1012
 
998
1013
  ### Patch Changes
999
1014
 
1000
- - Updated dependencies
1015
+ - Updated dependencies
1001
1016
 
1002
1017
  ## 15.8.1
1003
1018
 
1004
1019
  ### Patch Changes
1005
1020
 
1006
- - Updated dependencies
1021
+ - Updated dependencies
1007
1022
 
1008
1023
  ## 15.8.0
1009
1024
 
1010
1025
  ### Minor Changes
1011
1026
 
1012
- - [#15859](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15859)
1013
- [`1b9bc1e4b9a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1b9bc1e4b9a) - [ux]
1014
- Instrumented profilecard with the new theming package, `@atlaskit/tokens`.
1027
+ - [#15859](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15859)
1028
+ [`1b9bc1e4b9a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1b9bc1e4b9a) - [ux]
1029
+ Instrumented profilecard with the new theming package, `@atlaskit/tokens`.
1015
1030
 
1016
- New tokens will be visible only in applications configured to use the new Tokens API (currently
1017
- in alpha). These changes are intended to be interoperable with the legacy theme implementation.
1018
- Legacy dark mode users should expect no visual or breaking changes.
1031
+ New tokens will be visible only in applications configured to use the new Tokens API (currently in
1032
+ alpha). These changes are intended to be interoperable with the legacy theme implementation.
1033
+ Legacy dark mode users should expect no visual or breaking changes.
1019
1034
 
1020
1035
  ## 15.7.1
1021
1036
 
1022
1037
  ### Patch Changes
1023
1038
 
1024
- - [#15267](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15267)
1025
- [`d04cae5d45c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d04cae5d45c) - Expose
1026
- some mock helpers
1039
+ - [#15267](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15267)
1040
+ [`d04cae5d45c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d04cae5d45c) - Expose
1041
+ some mock helpers
1027
1042
 
1028
1043
  ## 15.7.0
1029
1044
 
1030
1045
  ### Minor Changes
1031
1046
 
1032
- - [#15165](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15165)
1033
- [`322786b0386`](https://bitbucket.org/atlassian/atlassian-frontend/commits/322786b0386) - Export
1034
- team profile card content to outside so we can use it to build legacy profile card in Jira FE
1047
+ - [#15165](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15165)
1048
+ [`322786b0386`](https://bitbucket.org/atlassian/atlassian-frontend/commits/322786b0386) - Export
1049
+ team profile card content to outside so we can use it to build legacy profile card in Jira FE
1035
1050
 
1036
1051
  ## 15.6.2
1037
1052
 
1038
1053
  ### Patch Changes
1039
1054
 
1040
- - [#14319](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14319)
1041
- [`cf853e39278`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf853e39278) -
1042
- Internal changes to remove `@atlaskit/theme/math` usage.
1043
- - Updated dependencies
1055
+ - [#14319](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14319)
1056
+ [`cf853e39278`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf853e39278) - Internal
1057
+ changes to remove `@atlaskit/theme/math` usage.
1058
+ - Updated dependencies
1044
1059
 
1045
1060
  ## 15.6.1
1046
1061
 
1047
1062
  ### Patch Changes
1048
1063
 
1049
- - [#14411](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14411)
1050
- [`301bf1b9e08`](https://bitbucket.org/atlassian/atlassian-frontend/commits/301bf1b9e08) - Bring
1051
- `withOuterListeners` HOC back so that Jira can continue use it
1064
+ - [#14411](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14411)
1065
+ [`301bf1b9e08`](https://bitbucket.org/atlassian/atlassian-frontend/commits/301bf1b9e08) - Bring
1066
+ `withOuterListeners` HOC back so that Jira can continue use it
1052
1067
 
1053
1068
  ## 15.6.0
1054
1069
 
1055
1070
  ### Minor Changes
1056
1071
 
1057
- - [#13464](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13464)
1058
- [`d07a1ced0bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d07a1ced0bd) - Pass
1059
- orgId on to service when querying team
1072
+ - [#13464](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13464)
1073
+ [`d07a1ced0bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d07a1ced0bd) - Pass
1074
+ orgId on to service when querying team
1060
1075
 
1061
1076
  ## 15.5.12
1062
1077
 
1063
1078
  ### Patch Changes
1064
1079
 
1065
- - [#13136](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13136)
1066
- [`524b20aff9a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/524b20aff9a) - Update
1067
- package.jsons to remove unused dependencies. Also excludes tests from some build tsconfigs
1068
- - [`3c0349f272a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3c0349f272a) - Update
1069
- package.jsons to remove unused dependencies. Also excludes tests from some build tsconfigs
1070
- - [`591d34f966f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/591d34f966f) - Update
1071
- package.jsons to remove unused dependencies. Also excludes tests from some build tsconfigs
1080
+ - [#13136](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13136)
1081
+ [`524b20aff9a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/524b20aff9a) - Update
1082
+ package.jsons to remove unused dependencies. Also excludes tests from some build tsconfigs
1083
+ - [`3c0349f272a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3c0349f272a) - Update
1084
+ package.jsons to remove unused dependencies. Also excludes tests from some build tsconfigs
1085
+ - [`591d34f966f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/591d34f966f) - Update
1086
+ package.jsons to remove unused dependencies. Also excludes tests from some build tsconfigs
1072
1087
 
1073
1088
  ## 15.5.11
1074
1089
 
1075
1090
  ### Patch Changes
1076
1091
 
1077
- - Updated dependencies
1092
+ - Updated dependencies
1078
1093
 
1079
1094
  ## 15.5.10
1080
1095
 
1081
1096
  ### Patch Changes
1082
1097
 
1083
- - [#9328](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9328)
1084
- [`414b6216adf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/414b6216adf) -
1085
- Upgrade date-fns to ^2.17
1098
+ - [#9328](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9328)
1099
+ [`414b6216adf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/414b6216adf) - Upgrade
1100
+ date-fns to ^2.17
1086
1101
 
1087
1102
  ## 15.5.9
1088
1103
 
1089
1104
  ### Patch Changes
1090
1105
 
1091
- - [#11951](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11951)
1092
- [`d57d071183e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d57d071183e) - Fix a
1093
- bug - should re-render ProfileCard when "resourceClient" prop is changed
1106
+ - [#11951](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11951)
1107
+ [`d57d071183e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d57d071183e) - Fix a
1108
+ bug - should re-render ProfileCard when "resourceClient" prop is changed
1094
1109
 
1095
1110
  ## 15.5.8
1096
1111
 
1097
1112
  ### Patch Changes
1098
1113
 
1099
- - Updated dependencies
1114
+ - Updated dependencies
1100
1115
 
1101
1116
  ## 15.5.7
1102
1117
 
1103
1118
  ### Patch Changes
1104
1119
 
1105
- - [#10514](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10514)
1106
- [`8b87ba0c18c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8b87ba0c18c) - Fix
1107
- the behavior of command click and shift click on links
1120
+ - [#10514](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10514)
1121
+ [`8b87ba0c18c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8b87ba0c18c) - Fix the
1122
+ behavior of command click and shift click on links
1108
1123
 
1109
1124
  ## 15.5.6
1110
1125
 
1111
1126
  ### Patch Changes
1112
1127
 
1113
- - [#10136](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10136)
1114
- [`f8cf7c90c94`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f8cf7c90c94) - Added
1115
- error attributes to analytics after failures so we can track issue causes
1128
+ - [#10136](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10136)
1129
+ [`f8cf7c90c94`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f8cf7c90c94) - Added
1130
+ error attributes to analytics after failures so we can track issue causes
1116
1131
 
1117
1132
  ## 15.5.5
1118
1133
 
1119
1134
  ### Patch Changes
1120
1135
 
1121
- - [#9558](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9558)
1122
- [`f5c41936feb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f5c41936feb) - Fix
1123
- the props to allow better customization of links on avatars in team profilecards.
1136
+ - [#9558](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9558)
1137
+ [`f5c41936feb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f5c41936feb) - Fix the
1138
+ props to allow better customization of links on avatars in team profilecards.
1124
1139
 
1125
1140
  ## 15.5.4
1126
1141
 
1127
1142
  ### Patch Changes
1128
1143
 
1129
- - [#9460](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9460)
1130
- [`9f19d3e89fe`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9f19d3e89fe) -
1131
- CONFDEV-73945: Added optional customLozenges property to ProfileCardClientData so Typescript
1132
- will allow custom UserProfileClients to add custom lozenges to the ProfileCard
1144
+ - [#9460](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9460)
1145
+ [`9f19d3e89fe`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9f19d3e89fe) -
1146
+ CONFDEV-73945: Added optional customLozenges property to ProfileCardClientData so Typescript will
1147
+ allow custom UserProfileClients to add custom lozenges to the ProfileCard
1133
1148
 
1134
1149
  ## 15.5.3
1135
1150
 
1136
1151
  ### Patch Changes
1137
1152
 
1138
- - [#9307](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9307)
1139
- [`e7d0d61bfc0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e7d0d61bfc0) - Fixed
1140
- analytics issues in Team Profilecard avatars and added key to User Profilecard lozenges
1153
+ - [#9307](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9307)
1154
+ [`e7d0d61bfc0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e7d0d61bfc0) - Fixed
1155
+ analytics issues in Team Profilecard avatars and added key to User Profilecard lozenges
1141
1156
 
1142
1157
  ## 15.5.2
1143
1158
 
1144
1159
  ### Patch Changes
1145
1160
 
1146
- - [#9299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9299)
1147
- [`471e2431a7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/471e2431a7c) -
1148
- Downgrade back to date-fns 1.30.1 We discovered big bundle size increases associated with the
1149
- date-fns upgrade. We're reverting the upgarde to investigate
1161
+ - [#9299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9299)
1162
+ [`471e2431a7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/471e2431a7c) -
1163
+ Downgrade back to date-fns 1.30.1 We discovered big bundle size increases associated with the
1164
+ date-fns upgrade. We're reverting the upgarde to investigate
1150
1165
 
1151
1166
  ## 15.5.1
1152
1167
 
1153
1168
  ### Patch Changes
1154
1169
 
1155
- - [#8291](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8291)
1156
- [`70f0701c2e6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/70f0701c2e6) -
1157
- Upgrade date-fns to 2.17
1170
+ - [#8291](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8291)
1171
+ [`70f0701c2e6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/70f0701c2e6) - Upgrade
1172
+ date-fns to 2.17
1158
1173
 
1159
1174
  ## 15.5.0
1160
1175
 
1161
1176
  ### Minor Changes
1162
1177
 
1163
- - [#9165](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9165)
1164
- [`54f4ce55485`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54f4ce55485) -
1165
- Changed ProfileCard's customLozenges' 'text' prop type to accept a ReactNode to allow
1166
- internationalized <FormattedMessage> elements in addition to string
1178
+ - [#9165](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9165)
1179
+ [`54f4ce55485`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54f4ce55485) - Changed
1180
+ ProfileCard's customLozenges' 'text' prop type to accept a ReactNode to allow internationalized
1181
+ <FormattedMessage> elements in addition to string
1167
1182
 
1168
1183
  ## 15.4.0
1169
1184
 
1170
1185
  ### Minor Changes
1171
1186
 
1172
- - [#8973](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8973)
1173
- [`e76cdc56e39`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e76cdc56e39) - Made
1174
- cloudId optional, to increase usability in site-less contexts like new products.
1187
+ - [#8973](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8973)
1188
+ [`e76cdc56e39`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e76cdc56e39) - Made
1189
+ cloudId optional, to increase usability in site-less contexts like new products.
1175
1190
 
1176
1191
  ## 15.3.1
1177
1192
 
1178
1193
  ### Patch Changes
1179
1194
 
1180
- - [#9010](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9010)
1181
- [`620ddc14690`](https://bitbucket.org/atlassian/atlassian-frontend/commits/620ddc14690) - [ux]
1182
- Correct styling on Profile Card triggers
1195
+ - [#9010](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9010)
1196
+ [`620ddc14690`](https://bitbucket.org/atlassian/atlassian-frontend/commits/620ddc14690) - [ux]
1197
+ Correct styling on Profile Card triggers
1183
1198
 
1184
1199
  ## 15.3.0
1185
1200
 
1186
1201
  ### Minor Changes
1187
1202
 
1188
- - [#8759](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8759)
1189
- [`5e7fbaa154f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5e7fbaa154f) - [ux]
1190
- Added an optional prop to the Profilecard component for displaying custom lozenges
1203
+ - [#8759](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8759)
1204
+ [`5e7fbaa154f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5e7fbaa154f) - [ux]
1205
+ Added an optional prop to the Profilecard component for displaying custom lozenges
1191
1206
 
1192
1207
  ## 15.2.0
1193
1208
 
1194
1209
  ### Minor Changes
1195
1210
 
1196
- - [#8844](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8844)
1197
- [`61544638935`](https://bitbucket.org/atlassian/atlassian-frontend/commits/61544638935) - Added
1198
- analytics to the Team profile card
1211
+ - [#8844](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8844)
1212
+ [`61544638935`](https://bitbucket.org/atlassian/atlassian-frontend/commits/61544638935) - Added
1213
+ analytics to the Team profile card
1199
1214
 
1200
1215
  ## 15.1.3
1201
1216
 
1202
1217
  ### Patch Changes
1203
1218
 
1204
- - [#8566](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8566)
1205
- [`11f5b0da43e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/11f5b0da43e) - [ux]
1206
- Fix zIndex for profile card and team profile card
1219
+ - [#8566](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8566)
1220
+ [`11f5b0da43e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/11f5b0da43e) - [ux] Fix
1221
+ zIndex for profile card and team profile card
1207
1222
 
1208
1223
  ## 15.1.2
1209
1224
 
1210
1225
  ### Patch Changes
1211
1226
 
1212
- - [#8383](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8383)
1213
- [`e104d184c58`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e104d184c58) - [ux]
1214
- Enabled translations for team profile card messages
1227
+ - [#8383](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8383)
1228
+ [`e104d184c58`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e104d184c58) - [ux]
1229
+ Enabled translations for team profile card messages
1215
1230
 
1216
1231
  ## 15.1.1
1217
1232
 
1218
1233
  ### Patch Changes
1219
1234
 
1220
- - [#8354](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8354)
1221
- [`771af9a49ed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/771af9a49ed) - [ux]
1222
- Enable propagating onClick handlers to the Avatar Group
1235
+ - [#8354](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8354)
1236
+ [`771af9a49ed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/771af9a49ed) - [ux]
1237
+ Enable propagating onClick handlers to the Avatar Group
1223
1238
 
1224
1239
  ## 15.1.0
1225
1240
 
1226
1241
  ### Minor Changes
1227
1242
 
1228
- - [#8289](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8289)
1229
- [`d30beab4f1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d30beab4f1e) -
1230
- Introduce lazy loading for the team profile card
1243
+ - [#8289](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8289)
1244
+ [`d30beab4f1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d30beab4f1e) -
1245
+ Introduce lazy loading for the team profile card
1231
1246
 
1232
1247
  ## 15.0.2
1233
1248
 
1234
1249
  ### Patch Changes
1235
1250
 
1236
- - [#8305](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8305)
1237
- [`1d2da620745`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1d2da620745) - [ux]
1238
- Default to showing shadow around user profile cards
1251
+ - [#8305](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8305)
1252
+ [`1d2da620745`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1d2da620745) - [ux]
1253
+ Default to showing shadow around user profile cards
1239
1254
 
1240
1255
  ## 15.0.1
1241
1256
 
1242
1257
  ### Patch Changes
1243
1258
 
1244
- - [#8295](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8295)
1245
- [`1e5d7f613f5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1e5d7f613f5) - [ux]
1246
- Position the header image on team profile cards correctly
1259
+ - [#8295](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8295)
1260
+ [`1e5d7f613f5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1e5d7f613f5) - [ux]
1261
+ Position the header image on team profile cards correctly
1247
1262
 
1248
1263
  ## 15.0.0
1249
1264
 
1250
1265
  ### Major Changes
1251
1266
 
1252
- - [#8235](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8235)
1253
- [`6d6aa2b4928`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6d6aa2b4928) -
1254
- Introduced entrypoints to the profilecard package.
1267
+ - [#8235](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8235)
1268
+ [`6d6aa2b4928`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6d6aa2b4928) -
1269
+ Introduced entrypoints to the profilecard package.
1255
1270
 
1256
1271
  ## 14.3.1
1257
1272
 
1258
1273
  ### Patch Changes
1259
1274
 
1260
- - [#8082](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8082)
1261
- [`537b933d68f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/537b933d68f) - [ux]
1262
- Simplified the CSS being used and added improved testing
1275
+ - [#8082](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8082)
1276
+ [`537b933d68f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/537b933d68f) - [ux]
1277
+ Simplified the CSS being used and added improved testing
1263
1278
 
1264
1279
  ## 14.3.0
1265
1280
 
1266
1281
  ### Minor Changes
1267
1282
 
1268
- - [#7762](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7762)
1269
- [`7ddbf962bd9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7ddbf962bd9) - [ux]
1270
- Updated and added new translations
1283
+ - [#7762](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7762)
1284
+ [`7ddbf962bd9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7ddbf962bd9) - [ux]
1285
+ Updated and added new translations
1271
1286
 
1272
1287
  ## 14.2.0
1273
1288
 
1274
1289
  ### Minor Changes
1275
1290
 
1276
- - [#7829](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7829)
1277
- [`78a52b31f84`](https://bitbucket.org/atlassian/atlassian-frontend/commits/78a52b31f84) - [ux]
1278
- Added triggerLinkType prop to allow customisation of the link that wraps the trigger.
1291
+ - [#7829](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7829)
1292
+ [`78a52b31f84`](https://bitbucket.org/atlassian/atlassian-frontend/commits/78a52b31f84) - [ux]
1293
+ Added triggerLinkType prop to allow customisation of the link that wraps the trigger.
1279
1294
 
1280
1295
  ## 14.1.0
1281
1296
 
1282
1297
  ### Minor Changes
1283
1298
 
1284
- - [#7637](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7637)
1285
- [`8263a7a153`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8263a7a153) - [ux]
1286
- Update the user profile card trigger to use @atlaskit/popup for the popup behaviour, and
1287
- remove/simplify unneeded code.
1299
+ - [#7637](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7637)
1300
+ [`8263a7a153`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8263a7a153) - [ux]
1301
+ Update the user profile card trigger to use @atlaskit/popup for the popup behaviour, and
1302
+ remove/simplify unneeded code.
1288
1303
 
1289
1304
  ## 14.0.2
1290
1305
 
1291
1306
  ### Patch Changes
1292
1307
 
1293
- - [#7625](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7625)
1294
- [`9e021e9873`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e021e9873) - Added
1295
- customisation to the new Team Profilecard examples.
1308
+ - [#7625](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7625)
1309
+ [`9e021e9873`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e021e9873) - Added
1310
+ customisation to the new Team Profilecard examples.
1296
1311
 
1297
1312
  ## 14.0.1
1298
1313
 
1299
1314
  ### Patch Changes
1300
1315
 
1301
- - [#7600](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7600)
1302
- [`d2582c8e90`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d2582c8e90) - Export
1303
- the TeamProfileCardTrigger
1316
+ - [#7600](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7600)
1317
+ [`d2582c8e90`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d2582c8e90) - Export the
1318
+ TeamProfileCardTrigger
1304
1319
 
1305
1320
  ## 14.0.0
1306
1321
 
1307
1322
  ### Major Changes
1308
1323
 
1309
- - [#7320](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7320)
1310
- [`bc57b32d3a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc57b32d3a) - [ux]
1311
- WARNING: This major release exists for testing purposes only. Avoid using this version as it
1312
- contains some duplicated dependencies that will be improved in future when the next release is
1313
- ready for use.
1324
+ - [#7320](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7320)
1325
+ [`bc57b32d3a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc57b32d3a) - [ux]
1326
+ WARNING: This major release exists for testing purposes only. Avoid using this version as it
1327
+ contains some duplicated dependencies that will be improved in future when the next release is
1328
+ ready for use.
1314
1329
 
1315
- Introduced a new profile card type: the Team profile card. To support this new type, some
1316
- changes have been made to the profile client structure to allow code reuse for managing both
1317
- team and user profile card data collection.
1330
+ Introduced a new profile card type: the Team profile card. To support this new type, some changes
1331
+ have been made to the profile client structure to allow code reuse for managing both team and user
1332
+ profile card data collection.
1318
1333
 
1319
1334
  ## 13.0.7
1320
1335
 
1321
1336
  ### Patch Changes
1322
1337
 
1323
- - [#5497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5497)
1324
- [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export
1325
- types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules
1326
- compiler option. This requires version 3.8 of Typescript, read more about how we handle
1327
- Typescript versions here: https://atlaskit.atlassian.com/get-started Also add `typescript` to
1328
- `devDependencies` to denote version that the package was built with.
1338
+ - [#5497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5497)
1339
+ [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export
1340
+ types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules
1341
+ compiler option. This requires version 3.8 of Typescript, read more about how we handle Typescript
1342
+ versions here: https://atlaskit.atlassian.com/get-started Also add `typescript` to
1343
+ `devDependencies` to denote version that the package was built with.
1329
1344
 
1330
1345
  ## 13.0.6
1331
1346
 
1332
1347
  ### Patch Changes
1333
1348
 
1334
- - Updated dependencies
1349
+ - Updated dependencies
1335
1350
 
1336
1351
  ## 13.0.5
1337
1352
 
1338
1353
  ### Patch Changes
1339
1354
 
1340
- - Updated dependencies
1355
+ - Updated dependencies
1341
1356
 
1342
1357
  ## 13.0.4
1343
1358
 
1344
1359
  ### Patch Changes
1345
1360
 
1346
- - [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885)
1347
- [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded
1348
- to TypeScript 3.9.6 and tslib to 2.0.0
1361
+ - [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885)
1362
+ [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded
1363
+ to TypeScript 3.9.6 and tslib to 2.0.0
1349
1364
 
1350
- Since tslib is a dependency for all our packages we recommend that products also follow this
1351
- tslib upgrade to prevent duplicates of tslib being bundled.
1365
+ Since tslib is a dependency for all our packages we recommend that products also follow this tslib
1366
+ upgrade to prevent duplicates of tslib being bundled.
1352
1367
 
1353
1368
  ## 13.0.3
1354
1369
 
1355
1370
  ### Patch Changes
1356
1371
 
1357
- - [#3823](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3823)
1358
- [`6262f382de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6262f382de) - Use the
1359
- 'lodash' package instead of single-function 'lodash.\*' packages
1360
- - Updated dependencies
1372
+ - [#3823](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3823)
1373
+ [`6262f382de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6262f382de) - Use the
1374
+ 'lodash' package instead of single-function 'lodash.\*' packages
1375
+ - Updated dependencies
1361
1376
 
1362
1377
  ## 13.0.2
1363
1378
 
1364
1379
  ### Patch Changes
1365
1380
 
1366
- - [#3369](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3369)
1367
- [`d03bff2147`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d03bff2147) - updated
1368
- translations
1381
+ - [#3369](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3369)
1382
+ [`d03bff2147`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d03bff2147) - updated
1383
+ translations
1369
1384
 
1370
1385
  ## 13.0.1
1371
1386
 
1372
1387
  ### Patch Changes
1373
1388
 
1374
- - Updated dependencies
1389
+ - Updated dependencies
1375
1390
 
1376
1391
  ## 13.0.0
1377
1392
 
1378
1393
  ### Major Changes
1379
1394
 
1380
- - [#3335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3335)
1381
- [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) -
1382
- Officially dropping IE11 support, from this version onwards there are no warranties of the
1383
- package working in IE11. For more information see:
1384
- https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
1395
+ - [#3335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3335)
1396
+ [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially
1397
+ dropping IE11 support, from this version onwards there are no warranties of the package working in
1398
+ IE11. For more information see:
1399
+ https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
1385
1400
 
1386
1401
  ### Patch Changes
1387
1402
 
1388
- - Updated dependencies
1403
+ - Updated dependencies
1389
1404
 
1390
1405
  ## 12.4.4
1391
1406
 
1392
1407
  ### Patch Changes
1393
1408
 
1394
- - Updated dependencies
1409
+ - Updated dependencies
1395
1410
 
1396
1411
  ## 12.4.3
1397
1412
 
1398
1413
  ### Patch Changes
1399
1414
 
1400
- - [#2576](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2576)
1401
- [`fc83c36503`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fc83c36503) - Update
1402
- translation files via Traduki build
1415
+ - [#2576](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2576)
1416
+ [`fc83c36503`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fc83c36503) - Update
1417
+ translation files via Traduki build
1403
1418
 
1404
1419
  ## 12.4.2
1405
1420
 
1406
1421
  ### Patch Changes
1407
1422
 
1408
- - [#2891](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2891)
1409
- [`39faba6e98`](https://bitbucket.org/atlassian/atlassian-frontend/commits/39faba6e98) - Update
1410
- all the theme imports to something tree-shakable
1423
+ - [#2891](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2891)
1424
+ [`39faba6e98`](https://bitbucket.org/atlassian/atlassian-frontend/commits/39faba6e98) - Update all
1425
+ the theme imports to something tree-shakable
1411
1426
 
1412
1427
  ## 12.4.1
1413
1428
 
1414
1429
  ### Patch Changes
1415
1430
 
1416
- - [#2137](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2137)
1417
- [`54d82b49f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54d82b49f0) - Remove
1418
- unused dependencies
1419
- - [`baaad91b65`](https://bitbucket.org/atlassian/atlassian-frontend/commits/baaad91b65) - Updated
1420
- to use the latest and more performant version of `@atlaskit/avatar`
1421
- - Updated dependencies
1431
+ - [#2137](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2137)
1432
+ [`54d82b49f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54d82b49f0) - Remove
1433
+ unused dependencies
1434
+ - [`baaad91b65`](https://bitbucket.org/atlassian/atlassian-frontend/commits/baaad91b65) - Updated to
1435
+ use the latest and more performant version of `@atlaskit/avatar`
1436
+ - Updated dependencies
1422
1437
 
1423
1438
  ## 12.4.0
1424
1439
 
1425
1440
  ### Minor Changes
1426
1441
 
1427
- - [minor][e981669ba5](https://bitbucket.org/atlassian/atlassian-frontend/commits/e981669ba5):
1442
+ - [minor][e981669ba5](https://bitbucket.org/atlassian/atlassian-frontend/commits/e981669ba5):
1428
1443
 
1429
- Adds a new prop to actions: link. The link provided will be used to provide basic web link
1430
- functionality to the button (eg. URL preview, open link in new tab, etc.).
1444
+ Adds a new prop to actions: link. The link provided will be used to provide basic web link
1445
+ functionality to the button (eg. URL preview, open link in new tab, etc.).
1431
1446
 
1432
1447
  ### Patch Changes
1433
1448
 
1434
- - [patch][9957801602](https://bitbucket.org/atlassian/atlassian-frontend/commits/9957801602):
1449
+ - [patch][9957801602](https://bitbucket.org/atlassian/atlassian-frontend/commits/9957801602):
1435
1450
 
1436
- clear all timeout callbacks- Updated dependencies
1437
- [66dcced7a0](https://bitbucket.org/atlassian/atlassian-frontend/commits/66dcced7a0):
1451
+ clear all timeout callbacks- Updated dependencies
1452
+ [66dcced7a0](https://bitbucket.org/atlassian/atlassian-frontend/commits/66dcced7a0):
1438
1453
 
1439
- - Updated dependencies
1440
- [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
1441
- - Updated dependencies
1442
- [0732eedea7](https://bitbucket.org/atlassian/atlassian-frontend/commits/0732eedea7):
1443
- - Updated dependencies
1444
- [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
1445
- - Updated dependencies
1446
- [eea5e9bd8c](https://bitbucket.org/atlassian/atlassian-frontend/commits/eea5e9bd8c):
1447
- - Updated dependencies
1448
- [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
1449
- - @atlaskit/docs@8.4.0
1450
- - @atlaskit/icon@20.1.0
1451
- - @atlaskit/util-data-test@13.1.2
1452
- - @atlaskit/avatar@17.1.9
1453
- - @atlaskit/button@13.3.9
1454
- - @atlaskit/dynamic-table@13.7.2
1455
- - @atlaskit/lozenge@9.1.6
1456
- - @atlaskit/spinner@12.1.6
1454
+ - Updated dependencies
1455
+ [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
1456
+ - Updated dependencies
1457
+ [0732eedea7](https://bitbucket.org/atlassian/atlassian-frontend/commits/0732eedea7):
1458
+ - Updated dependencies
1459
+ [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
1460
+ - Updated dependencies
1461
+ [eea5e9bd8c](https://bitbucket.org/atlassian/atlassian-frontend/commits/eea5e9bd8c):
1462
+ - Updated dependencies
1463
+ [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
1464
+ - @atlaskit/docs@8.4.0
1465
+ - @atlaskit/icon@20.1.0
1466
+ - @atlaskit/util-data-test@13.1.2
1467
+ - @atlaskit/avatar@17.1.9
1468
+ - @atlaskit/button@13.3.9
1469
+ - @atlaskit/dynamic-table@13.7.2
1470
+ - @atlaskit/lozenge@9.1.6
1471
+ - @atlaskit/spinner@12.1.6
1457
1472
 
1458
1473
  ## 12.3.8
1459
1474
 
1460
1475
  ### Patch Changes
1461
1476
 
1462
- - [patch][c913bb88f4](https://bitbucket.org/atlassian/atlassian-frontend/commits/c913bb88f4):
1477
+ - [patch][c913bb88f4](https://bitbucket.org/atlassian/atlassian-frontend/commits/c913bb88f4):
1463
1478
 
1464
- quickfix to kill stale timeouts
1479
+ quickfix to kill stale timeouts
1465
1480
 
1466
1481
  ## 12.3.7
1467
1482
 
1468
1483
  ### Patch Changes
1469
1484
 
1470
- - [patch][6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
1485
+ - [patch][6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
1471
1486
 
1472
- Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
1473
- [6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
1487
+ Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
1488
+ [6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
1474
1489
 
1475
- - @atlaskit/docs@8.3.2
1476
- - @atlaskit/avatar@17.1.7
1477
- - @atlaskit/button@13.3.7
1478
- - @atlaskit/dynamic-table@13.6.2
1479
- - @atlaskit/icon@20.0.1
1480
- - @atlaskit/layer@8.0.1
1481
- - @atlaskit/lozenge@9.1.4
1482
- - @atlaskit/popper@3.1.11
1483
- - @atlaskit/portal@3.1.6
1484
- - @atlaskit/spinner@12.1.4
1485
- - @atlaskit/theme@9.5.1
1486
- - @atlaskit/util-data-test@13.1.1
1490
+ - @atlaskit/docs@8.3.2
1491
+ - @atlaskit/avatar@17.1.7
1492
+ - @atlaskit/button@13.3.7
1493
+ - @atlaskit/dynamic-table@13.6.2
1494
+ - @atlaskit/icon@20.0.1
1495
+ - @atlaskit/layer@8.0.1
1496
+ - @atlaskit/lozenge@9.1.4
1497
+ - @atlaskit/popper@3.1.11
1498
+ - @atlaskit/portal@3.1.6
1499
+ - @atlaskit/spinner@12.1.4
1500
+ - @atlaskit/theme@9.5.1
1501
+ - @atlaskit/util-data-test@13.1.1
1487
1502
 
1488
1503
  ## 12.3.6
1489
1504
 
1490
1505
  ### Patch Changes
1491
1506
 
1492
- - Updated dependencies
1493
- [c0102a3ea2](https://bitbucket.org/atlassian/atlassian-frontend/commits/c0102a3ea2):
1494
- - Updated dependencies
1495
- [b9dc265bc9](https://bitbucket.org/atlassian/atlassian-frontend/commits/b9dc265bc9):
1496
- - @atlaskit/icon@20.0.0
1497
- - @atlaskit/layer@8.0.0
1498
- - @atlaskit/avatar@17.1.6
1499
- - @atlaskit/docs@8.3.1
1500
- - @atlaskit/button@13.3.6
1501
- - @atlaskit/portal@3.1.5
1507
+ - Updated dependencies
1508
+ [c0102a3ea2](https://bitbucket.org/atlassian/atlassian-frontend/commits/c0102a3ea2):
1509
+ - Updated dependencies
1510
+ [b9dc265bc9](https://bitbucket.org/atlassian/atlassian-frontend/commits/b9dc265bc9):
1511
+ - @atlaskit/icon@20.0.0
1512
+ - @atlaskit/layer@8.0.0
1513
+ - @atlaskit/avatar@17.1.6
1514
+ - @atlaskit/docs@8.3.1
1515
+ - @atlaskit/button@13.3.6
1516
+ - @atlaskit/portal@3.1.5
1502
1517
 
1503
1518
  ## 12.3.5
1504
1519
 
1505
1520
  ### Patch Changes
1506
1521
 
1507
- - [patch][f9c291923c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f9c291923c):
1522
+ - [patch][f9c291923c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f9c291923c):
1508
1523
 
1509
- Corrects the type exports for typography, colors, elevation and layers. If you were doing any
1510
- dynamic code it may break you. Refer to the
1511
- [upgrade guide](/packages/core/theme/docs/upgrade-guide) for help upgrading.- Updated
1512
- dependencies [c1d4898af5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c1d4898af5):
1524
+ Corrects the type exports for typography, colors, elevation and layers. If you were doing any
1525
+ dynamic code it may break you. Refer to the
1526
+ [upgrade guide](/packages/core/theme/docs/upgrade-guide) for help upgrading.- Updated dependencies
1527
+ [c1d4898af5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c1d4898af5):
1513
1528
 
1514
- - Updated dependencies
1515
- [3c0f6feee5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3c0f6feee5):
1516
- - Updated dependencies
1517
- [f9c291923c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f9c291923c):
1518
- - @atlaskit/icon@19.0.11
1519
- - @atlaskit/theme@9.3.0
1520
- - @atlaskit/portal@3.1.3
1529
+ - Updated dependencies
1530
+ [3c0f6feee5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3c0f6feee5):
1531
+ - Updated dependencies
1532
+ [f9c291923c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f9c291923c):
1533
+ - @atlaskit/icon@19.0.11
1534
+ - @atlaskit/theme@9.3.0
1535
+ - @atlaskit/portal@3.1.3
1521
1536
 
1522
1537
  ## 12.3.4
1523
1538
 
1524
1539
  ### Patch Changes
1525
1540
 
1526
- - [patch][d222c2b987](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d222c2b987):
1541
+ - [patch][d222c2b987](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d222c2b987):
1527
1542
 
1528
- Theme has been converted to Typescript. Typescript consumers will now get static type safety.
1529
- Flow types are no longer provided.
1543
+ Theme has been converted to Typescript. Typescript consumers will now get static type safety. Flow
1544
+ types are no longer provided.
1530
1545
 
1531
- ### Breaking
1546
+ ### Breaking
1532
1547
 
1533
- ** getTokens props changes ** When defining the value function passed into a ThemeProvider, the
1534
- getTokens parameter cannot be called without props; if no props are provided an empty object
1535
- `{}` must be passed in:
1548
+ ** getTokens props changes ** When defining the value function passed into a ThemeProvider, the
1549
+ getTokens parameter cannot be called without props; if no props are provided an empty object `{}`
1550
+ must be passed in:
1536
1551
 
1537
- ```javascript
1538
- <CustomTheme.Provider
1539
- value={t => ({ ...t(), backgroundColor: '#333'})}
1540
- >
1541
- ```
1552
+ ```javascript
1553
+ <CustomTheme.Provider
1554
+ value={t => ({ ...t(), backgroundColor: '#333'})}
1555
+ >
1556
+ ```
1542
1557
 
1543
- becomes:
1558
+ becomes:
1544
1559
 
1545
- ```javascript
1546
- <CustomTheme.Provider
1547
- value={t => ({ ...t({}), backgroundColor: '#333'})}
1548
- >
1549
- ```
1560
+ ```javascript
1561
+ <CustomTheme.Provider
1562
+ value={t => ({ ...t({}), backgroundColor: '#333'})}
1563
+ >
1564
+ ```
1550
1565
 
1551
- ** Color palette changes ** Color palettes have been moved into their own file. Users will need
1552
- to update imports from this:
1566
+ ** Color palette changes ** Color palettes have been moved into their own file. Users will need to
1567
+ update imports from this:
1553
1568
 
1554
- ```javascript
1555
- import { colors } from '@atlaskit/theme';
1569
+ ```javascript
1570
+ import { colors } from '@atlaskit/theme';
1556
1571
 
1557
- colors.colorPalette('8');
1558
- ```
1572
+ colors.colorPalette('8');
1573
+ ```
1559
1574
 
1560
- to this:
1575
+ to this:
1561
1576
 
1562
- ```javascript
1563
- import { colorPalette } from '@atlaskit/theme';
1577
+ ```javascript
1578
+ import { colorPalette } from '@atlaskit/theme';
1564
1579
 
1565
- colorPalette.colorPalette('8');
1566
- ```
1580
+ colorPalette.colorPalette('8');
1581
+ ```
1567
1582
 
1568
- or for multi entry-point users:
1583
+ or for multi entry-point users:
1569
1584
 
1570
- ```javascript
1571
- import * as colors from '@atlaskit/theme/colors';
1585
+ ```javascript
1586
+ import * as colors from '@atlaskit/theme/colors';
1572
1587
 
1573
- colors.colorPalette('8');
1574
- ```
1588
+ colors.colorPalette('8');
1589
+ ```
1575
1590
 
1576
- to this:
1591
+ to this:
1577
1592
 
1578
- ```javascript
1579
- import * as colorPalettes from '@atlaskit/theme/color-palette';
1593
+ ```javascript
1594
+ import * as colorPalettes from '@atlaskit/theme/color-palette';
1580
1595
 
1581
- colorPalettes.colorPalette('8');
1582
- ```
1596
+ colorPalettes.colorPalette('8');
1597
+ ```
1583
1598
 
1584
1599
  ## 12.3.3
1585
1600
 
1586
- - Updated dependencies
1587
- [bd94b1d552](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bd94b1d552):
1588
- - Updated dependencies
1589
- [ae4f336a3a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ae4f336a3a):
1590
- - @atlaskit/util-data-test@13.0.0
1591
- - @atlaskit/i18n-tools@0.6.0
1601
+ - Updated dependencies
1602
+ [bd94b1d552](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bd94b1d552):
1603
+ - Updated dependencies
1604
+ [ae4f336a3a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ae4f336a3a):
1605
+ - @atlaskit/util-data-test@13.0.0
1606
+ - @atlaskit/i18n-tools@0.6.0
1592
1607
 
1593
1608
  ## 12.3.2
1594
1609
 
1595
1610
  ### Patch Changes
1596
1611
 
1597
- - [patch][f86839ca4e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f86839ca4e):
1612
+ - [patch][f86839ca4e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f86839ca4e):
1598
1613
 
1599
- @atlaskit/portal had an issue in IE11 and this is fixed in 3.1.2
1614
+ @atlaskit/portal had an issue in IE11 and this is fixed in 3.1.2
1600
1615
 
1601
1616
  ## 12.3.1
1602
1617
 
1603
1618
  ### Patch Changes
1604
1619
 
1605
- - [patch][35d2229b2a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/35d2229b2a):
1620
+ - [patch][35d2229b2a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/35d2229b2a):
1606
1621
 
1607
- Adding missing license to packages and update to Copyright 2019 Atlassian Pty Ltd.
1622
+ Adding missing license to packages and update to Copyright 2019 Atlassian Pty Ltd.
1608
1623
 
1609
1624
  ## 12.3.0
1610
1625
 
1611
1626
  ### Minor Changes
1612
1627
 
1613
- - [minor][84bedb23c4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/84bedb23c4):
1628
+ - [minor][84bedb23c4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/84bedb23c4):
1614
1629
 
1615
- Export profile-cards withOuterListeners wrapper
1630
+ Export profile-cards withOuterListeners wrapper
1616
1631
 
1617
1632
  ## 12.2.0
1618
1633
 
1619
1634
  ### Minor Changes
1620
1635
 
1621
- - [minor][8a3c534ec6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8a3c534ec6):
1636
+ - [minor][8a3c534ec6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8a3c534ec6):
1622
1637
 
1623
- Export show and hide delay times of profile card trigger
1638
+ Export show and hide delay times of profile card trigger
1624
1639
 
1625
1640
  ## 12.1.0
1626
1641
 
1627
1642
  ### Minor Changes
1628
1643
 
1629
- - [minor][16bf116576](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/16bf116576):
1644
+ - [minor][16bf116576](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/16bf116576):
1630
1645
 
1631
- Increased show/hide delay times for ProfileCardTrigger
1646
+ Increased show/hide delay times for ProfileCardTrigger
1632
1647
 
1633
1648
  ## 12.0.9
1634
1649
 
1635
1650
  ### Patch Changes
1636
1651
 
1637
- - [patch][8d0f37c23e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8d0f37c23e):
1652
+ - [patch][8d0f37c23e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8d0f37c23e):
1638
1653
 
1639
- @atlaskit/avatar has been converted to Typescript. Typescript consumers will now get static type
1640
- safety. Flow types are no longer provided. No API or behavioural changes.
1654
+ @atlaskit/avatar has been converted to Typescript. Typescript consumers will now get static type
1655
+ safety. Flow types are no longer provided. No API or behavioural changes.
1641
1656
 
1642
1657
  ## 12.0.8
1643
1658
 
1644
1659
  ### Patch Changes
1645
1660
 
1646
- - [patch][02f8d986b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/02f8d986b5):
1661
+ - [patch][02f8d986b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/02f8d986b5):
1647
1662
 
1648
- ProfileCardResourced should trigger analytics event when having error
1663
+ ProfileCardResourced should trigger analytics event when having error
1649
1664
 
1650
1665
  ## 12.0.7
1651
1666
 
1652
1667
  ### Patch Changes
1653
1668
 
1654
- - [patch][875282da30](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/875282da30):
1669
+ - [patch][875282da30](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/875282da30):
1655
1670
 
1656
- Fix a bug which causes ProfileCard triggers viewed analytics event twice
1671
+ Fix a bug which causes ProfileCard triggers viewed analytics event twice
1657
1672
 
1658
1673
  ## 12.0.6
1659
1674
 
1660
1675
  ### Patch Changes
1661
1676
 
1662
- - [patch][097b696613](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/097b696613):
1677
+ - [patch][097b696613](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/097b696613):
1663
1678
 
1664
- Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving
1665
- non-relative imports as relative imports
1679
+ Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving
1680
+ non-relative imports as relative imports
1666
1681
 
1667
1682
  ## 12.0.5
1668
1683
 
1669
1684
  ### Patch Changes
1670
1685
 
1671
- - [patch][688f2957ca](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/688f2957ca):
1686
+ - [patch][688f2957ca](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/688f2957ca):
1672
1687
 
1673
- Fixes various TypeScript errors which were previously failing silently
1688
+ Fixes various TypeScript errors which were previously failing silently
1674
1689
 
1675
1690
  ## 12.0.4
1676
1691
 
1677
- - Updated dependencies
1678
- [ebfeb03eb7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ebfeb03eb7):
1679
- - @atlaskit/popper@3.0.0
1692
+ - Updated dependencies
1693
+ [ebfeb03eb7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ebfeb03eb7):
1694
+ - @atlaskit/popper@3.0.0
1680
1695
 
1681
1696
  ## 12.0.3
1682
1697
 
1683
1698
  ### Patch Changes
1684
1699
 
1685
- - [patch][6742fbf2cc](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6742fbf2cc):
1700
+ - [patch][6742fbf2cc](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6742fbf2cc):
1686
1701
 
1687
- bugfix, fixes missing version.json file
1702
+ bugfix, fixes missing version.json file
1688
1703
 
1689
1704
  ## 12.0.2
1690
1705
 
1691
1706
  ### Patch Changes
1692
1707
 
1693
- - [patch][18dfac7332](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/18dfac7332):
1708
+ - [patch][18dfac7332](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/18dfac7332):
1694
1709
 
1695
- In this PR, we are:
1710
+ In this PR, we are:
1696
1711
 
1697
- - Re-introducing dist build folders
1698
- - Adding back cjs
1699
- - Replacing es5 by cjs and es2015 by esm
1700
- - Creating folders at the root for entry-points
1701
- - Removing the generation of the entry-points at the root Please see this
1702
- [ticket](https://product-fabric.atlassian.net/browse/BUILDTOOLS-118) or this
1703
- [page](https://hello.atlassian.net/wiki/spaces/FED/pages/452325500/Finishing+Atlaskit+multiple+entry+points)
1704
- for further details
1712
+ - Re-introducing dist build folders
1713
+ - Adding back cjs
1714
+ - Replacing es5 by cjs and es2015 by esm
1715
+ - Creating folders at the root for entry-points
1716
+ - Removing the generation of the entry-points at the root Please see this
1717
+ [ticket](https://product-fabric.atlassian.net/browse/BUILDTOOLS-118) or this
1718
+ [page](https://hello.atlassian.net/wiki/spaces/FED/pages/452325500/Finishing+Atlaskit+multiple+entry+points)
1719
+ for further details
1705
1720
 
1706
1721
  ## 12.0.1
1707
1722
 
1708
- - Updated dependencies
1709
- [06326ef3f7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/06326ef3f7):
1710
- - @atlaskit/docs@8.1.3
1711
- - @atlaskit/avatar@16.0.6
1712
- - @atlaskit/button@13.0.9
1713
- - @atlaskit/portal@3.0.7
1714
- - @atlaskit/icon@19.0.0
1723
+ - Updated dependencies
1724
+ [06326ef3f7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/06326ef3f7):
1725
+ - @atlaskit/docs@8.1.3
1726
+ - @atlaskit/avatar@16.0.6
1727
+ - @atlaskit/button@13.0.9
1728
+ - @atlaskit/portal@3.0.7
1729
+ - @atlaskit/icon@19.0.0
1715
1730
 
1716
1731
  ## 12.0.0
1717
1732
 
1718
1733
  ### Major Changes
1719
1734
 
1720
- - [major][2b333a4c6d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2b333a4c6d):
1735
+ - [major][2b333a4c6d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2b333a4c6d):
1721
1736
 
1722
- update api types; dispay user active state in ProfilecardResourced; change trigger component
1723
- display to inherit
1737
+ update api types; dispay user active state in ProfilecardResourced; change trigger component
1738
+ display to inherit
1724
1739
 
1725
1740
  ## 11.0.1
1726
1741
 
1727
1742
  ### Patch Changes
1728
1743
 
1729
- - [patch][0b87683d6c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0b87683d6c):
1744
+ - [patch][0b87683d6c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0b87683d6c):
1730
1745
 
1731
- fix unbound method in ProfilecardTrigger component
1746
+ fix unbound method in ProfilecardTrigger component
1732
1747
 
1733
1748
  ## 11.0.0
1734
1749
 
1735
1750
  ### Major Changes
1736
1751
 
1737
- - [major][a40f54404e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a40f54404e):
1752
+ - [major][a40f54404e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a40f54404e):
1738
1753
 
1739
- Profilecard is no longer internally wrapped by a react-intl IntlProvider. Consumers must now
1740
- ensure to Profilecard is wrapped inside a IntlProvider and provide messages from
1741
- @atlaskit/profilecard/i18n. See
1742
- https://hello.atlassian.net/wiki/spaces/AtlasKit/pages/287632890/i18n+API
1754
+ Profilecard is no longer internally wrapped by a react-intl IntlProvider. Consumers must now
1755
+ ensure to Profilecard is wrapped inside a IntlProvider and provide messages from
1756
+ @atlaskit/profilecard/i18n. See
1757
+ https://hello.atlassian.net/wiki/spaces/AtlasKit/pages/287632890/i18n+API
1743
1758
 
1744
1759
  ## 10.2.6
1745
1760
 
1746
- - Updated dependencies
1747
- [cfc3c8adb3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cfc3c8adb3):
1748
- - @atlaskit/docs@8.1.2
1749
- - @atlaskit/avatar@16.0.3
1750
- - @atlaskit/button@13.0.8
1751
- - @atlaskit/portal@3.0.3
1752
- - @atlaskit/icon@18.0.0
1761
+ - Updated dependencies
1762
+ [cfc3c8adb3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cfc3c8adb3):
1763
+ - @atlaskit/docs@8.1.2
1764
+ - @atlaskit/avatar@16.0.3
1765
+ - @atlaskit/button@13.0.8
1766
+ - @atlaskit/portal@3.0.3
1767
+ - @atlaskit/icon@18.0.0
1753
1768
 
1754
1769
  ## 10.2.5
1755
1770
 
1756
- - [patch][b0ef06c685](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b0ef06c685):
1771
+ - [patch][b0ef06c685](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b0ef06c685):
1757
1772
 
1758
- - This is just a safety release in case anything strange happened in in the previous one. See
1759
- Pull Request #5942 for details
1773
+ - This is just a safety release in case anything strange happened in in the previous one. See Pull
1774
+ Request #5942 for details
1760
1775
 
1761
1776
  ## 10.2.4
1762
1777
 
1763
- - Updated dependencies
1764
- [215688984e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/215688984e):
1765
- - Updated dependencies
1766
- [dacfb81ca1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dacfb81ca1):
1767
- - @atlaskit/button@13.0.4
1768
- - @atlaskit/dynamic-table@13.0.1
1769
- - @atlaskit/spinner@12.0.0
1770
- - @atlaskit/portal@3.0.0
1778
+ - Updated dependencies
1779
+ [215688984e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/215688984e):
1780
+ - Updated dependencies
1781
+ [dacfb81ca1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dacfb81ca1):
1782
+ - @atlaskit/button@13.0.4
1783
+ - @atlaskit/dynamic-table@13.0.1
1784
+ - @atlaskit/spinner@12.0.0
1785
+ - @atlaskit/portal@3.0.0
1771
1786
 
1772
1787
  ## 10.2.3
1773
1788
 
1774
- - Updated dependencies
1775
- [ed41cac6ac](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ed41cac6ac):
1776
- - @atlaskit/theme@9.0.3
1777
- - @atlaskit/lozenge@9.0.0
1789
+ - Updated dependencies
1790
+ [ed41cac6ac](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ed41cac6ac):
1791
+ - @atlaskit/theme@9.0.3
1792
+ - @atlaskit/lozenge@9.0.0
1778
1793
 
1779
1794
  ## 10.2.2
1780
1795
 
1781
- - [patch][afd34e36b0](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/afd34e36b0):
1796
+ - [patch][afd34e36b0](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/afd34e36b0):
1782
1797
 
1783
- - Hide public name when it matches the full name
1798
+ - Hide public name when it matches the full name
1784
1799
 
1785
1800
  ## 10.2.1
1786
1801
 
1787
- - Updated dependencies
1788
- [3d95467c4b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3d95467c4b):
1789
- - @atlaskit/icon@17.0.1
1790
- - @atlaskit/dynamic-table@13.0.0
1802
+ - Updated dependencies
1803
+ [3d95467c4b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3d95467c4b):
1804
+ - @atlaskit/icon@17.0.1
1805
+ - @atlaskit/dynamic-table@13.0.0
1791
1806
 
1792
1807
  ## 10.2.0
1793
1808
 
1794
- - [minor][e7d7fe8252](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7d7fe8252):
1809
+ - [minor][e7d7fe8252](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7d7fe8252):
1795
1810
 
1796
- - Make full name and public name in the same line. Remove `@` symbol in front of public name.
1797
- Remove mention icon
1811
+ - Make full name and public name in the same line. Remove `@` symbol in front of public name.
1812
+ Remove mention icon
1798
1813
 
1799
1814
  ## 10.1.0
1800
1815
 
1801
- - [minor][5a49043dac](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5a49043dac):
1816
+ - [minor][5a49043dac](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5a49043dac):
1802
1817
 
1803
- - Enable strictPropertyInitialization in tsconfig.base
1818
+ - Enable strictPropertyInitialization in tsconfig.base
1804
1819
 
1805
1820
  ## 10.0.0
1806
1821
 
1807
- - [major][7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
1822
+ - [major][7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
1808
1823
 
1809
- - Updates react and react-dom peer dependencies to react@^16.8.0 and react-dom@^16.8.0. To use
1810
- this package, please ensure you use at least this version of react and react-dom.
1824
+ - Updates react and react-dom peer dependencies to react@^16.8.0 and react-dom@^16.8.0. To use
1825
+ this package, please ensure you use at least this version of react and react-dom.
1811
1826
 
1812
1827
  ## 9.0.5
1813
1828
 
1814
- - [patch][d3cad2622e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d3cad2622e):
1829
+ - [patch][d3cad2622e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d3cad2622e):
1815
1830
 
1816
- - Removes babel-runtime in favour of @babel/runtime
1831
+ - Removes babel-runtime in favour of @babel/runtime
1817
1832
 
1818
1833
  ## 9.0.4
1819
1834
 
1820
- - Updated dependencies
1821
- [5b6b4d6a0f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5b6b4d6a0f):
1822
- - Updated dependencies
1823
- [8b5f052003](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8b5f052003):
1824
- - @atlaskit/portal@1.0.0
1825
- - @atlaskit/popper@1.0.0
1835
+ - Updated dependencies
1836
+ [5b6b4d6a0f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5b6b4d6a0f):
1837
+ - Updated dependencies
1838
+ [8b5f052003](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8b5f052003):
1839
+ - @atlaskit/portal@1.0.0
1840
+ - @atlaskit/popper@1.0.0
1826
1841
 
1827
1842
  ## 9.0.3
1828
1843
 
1829
- - [patch][50e8c82ec4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/50e8c82ec4):
1844
+ - [patch][50e8c82ec4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/50e8c82ec4):
1830
1845
 
1831
- - index.ts is now ignored when published to npm to avoid ambiguity between ts and js files
1846
+ - index.ts is now ignored when published to npm to avoid ambiguity between ts and js files
1832
1847
 
1833
1848
  ## 9.0.2
1834
1849
 
1835
- - Updated dependencies
1836
- [9c0b4744be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c0b4744be):
1837
- - @atlaskit/docs@7.0.3
1838
- - @atlaskit/avatar@15.0.4
1839
- - @atlaskit/button@12.0.3
1840
- - @atlaskit/dynamic-table@11.0.3
1841
- - @atlaskit/icon@16.0.9
1842
- - @atlaskit/lozenge@7.0.2
1843
- - @atlaskit/popper@0.4.3
1844
- - @atlaskit/spinner@10.0.7
1845
- - @atlaskit/theme@8.1.7
1850
+ - Updated dependencies
1851
+ [9c0b4744be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c0b4744be):
1852
+ - @atlaskit/docs@7.0.3
1853
+ - @atlaskit/avatar@15.0.4
1854
+ - @atlaskit/button@12.0.3
1855
+ - @atlaskit/dynamic-table@11.0.3
1856
+ - @atlaskit/icon@16.0.9
1857
+ - @atlaskit/lozenge@7.0.2
1858
+ - @atlaskit/popper@0.4.3
1859
+ - @atlaskit/spinner@10.0.7
1860
+ - @atlaskit/theme@8.1.7
1846
1861
 
1847
1862
  ## 9.0.1
1848
1863
 
1849
- - Updated dependencies
1850
- [1e826b2966](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e826b2966):
1851
- - @atlaskit/docs@7.0.2
1852
- - @atlaskit/avatar@15.0.3
1853
- - @atlaskit/dynamic-table@11.0.2
1854
- - @atlaskit/icon@16.0.8
1855
- - @atlaskit/popper@0.4.2
1856
- - @atlaskit/portal@0.3.1
1857
- - @atlaskit/spinner@10.0.5
1858
- - @atlaskit/theme@8.1.6
1859
- - @atlaskit/button@12.0.0
1864
+ - Updated dependencies
1865
+ [1e826b2966](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e826b2966):
1866
+ - @atlaskit/docs@7.0.2
1867
+ - @atlaskit/avatar@15.0.3
1868
+ - @atlaskit/dynamic-table@11.0.2
1869
+ - @atlaskit/icon@16.0.8
1870
+ - @atlaskit/popper@0.4.2
1871
+ - @atlaskit/portal@0.3.1
1872
+ - @atlaskit/spinner@10.0.5
1873
+ - @atlaskit/theme@8.1.6
1874
+ - @atlaskit/button@12.0.0
1860
1875
 
1861
1876
  ## 9.0.0
1862
1877
 
1863
- - [major][bfca144ea5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bfca144ea5):
1878
+ - [major][bfca144ea5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bfca144ea5):
1864
1879
 
1865
- - Refactored internal components. Moved to Typescript. Updated named exports. Updated type
1866
- definitions.
1880
+ - Refactored internal components. Moved to Typescript. Updated named exports. Updated type
1881
+ definitions.
1867
1882
 
1868
1883
  ## 8.0.2
1869
1884
 
1870
- - Updated dependencies
1871
- [9d5cc39394](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d5cc39394):
1872
- - @atlaskit/docs@7.0.1
1873
- - @atlaskit/avatar@15.0.1
1874
- - @atlaskit/dynamic-table@11.0.1
1875
- - @atlaskit/icon@16.0.5
1876
- - @atlaskit/spinner@10.0.1
1877
- - @atlaskit/theme@8.0.1
1878
- - @atlaskit/i18n-tools@0.5.0
1879
- - @atlaskit/button@11.0.0
1880
- - @atlaskit/util-data-test@11.0.0
1885
+ - Updated dependencies
1886
+ [9d5cc39394](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d5cc39394):
1887
+ - @atlaskit/docs@7.0.1
1888
+ - @atlaskit/avatar@15.0.1
1889
+ - @atlaskit/dynamic-table@11.0.1
1890
+ - @atlaskit/icon@16.0.5
1891
+ - @atlaskit/spinner@10.0.1
1892
+ - @atlaskit/theme@8.0.1
1893
+ - @atlaskit/i18n-tools@0.5.0
1894
+ - @atlaskit/button@11.0.0
1895
+ - @atlaskit/util-data-test@11.0.0
1881
1896
 
1882
1897
  ## 8.0.1
1883
1898
 
1884
- - [patch][9a0c34d490](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9a0c34d490):
1899
+ - [patch][9a0c34d490](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9a0c34d490):
1885
1900
 
1886
- - Fixes package.json to not exclude built files
1901
+ - Fixes package.json to not exclude built files
1887
1902
 
1888
1903
  ## 8.0.0
1889
1904
 
1890
- - [major][dbff4fdcf9](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dbff4fdcf9):
1905
+ - [major][dbff4fdcf9](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dbff4fdcf9):
1891
1906
 
1892
- - Remove presence from profilecard now that users cannot use Stride to control it
1907
+ - Remove presence from profilecard now that users cannot use Stride to control it
1893
1908
 
1894
1909
  ## 7.0.0
1895
1910
 
1896
- - [major][76299208e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/76299208e6):
1911
+ - [major][76299208e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/76299208e6):
1897
1912
 
1898
- - Drop ES5 from all the flow modules
1913
+ - Drop ES5 from all the flow modules
1899
1914
 
1900
- ### Dropping CJS support in all @atlaskit packages
1915
+ ### Dropping CJS support in all @atlaskit packages
1901
1916
 
1902
- As a breaking change, all @atlaskit packages will be dropping cjs distributions and will only
1903
- distribute esm. This means all distributed code will be transpiled, but will still contain
1904
- `import` and `export` declarations.
1917
+ As a breaking change, all @atlaskit packages will be dropping cjs distributions and will only
1918
+ distribute esm. This means all distributed code will be transpiled, but will still contain
1919
+ `import` and `export` declarations.
1905
1920
 
1906
- The major reason for doing this is to allow us to support multiple entry points in packages,
1907
- e.g:
1921
+ The major reason for doing this is to allow us to support multiple entry points in packages, e.g:
1908
1922
 
1909
- ```js
1910
- import colors from `@atlaskit/theme/colors`;
1911
- ```
1923
+ ```js
1924
+ import colors from `@atlaskit/theme/colors`;
1925
+ ```
1912
1926
 
1913
- Previously this was sort of possible for consumers by doing something like:
1927
+ Previously this was sort of possible for consumers by doing something like:
1914
1928
 
1915
- ```js
1916
- import colors from `@atlaskit/theme/dist/esm/colors`;
1917
- ```
1929
+ ```js
1930
+ import colors from `@atlaskit/theme/dist/esm/colors`;
1931
+ ```
1918
1932
 
1919
- This has a couple of issues. 1, it treats the file system as API making internal refactors
1920
- harder, we have to worry about how consumers might be using things that aren't _actually_
1921
- supposed to be used. 2. We are unable to do this _internally_ in @atlaskit packages. This leads
1922
- to lots of packages bundling all of theme, just to use a single color, especially in situations
1923
- where tree shaking fails.
1933
+ This has a couple of issues. 1, it treats the file system as API making internal refactors harder,
1934
+ we have to worry about how consumers might be using things that aren't _actually_ supposed to be
1935
+ used. 2. We are unable to do this _internally_ in @atlaskit packages. This leads to lots of
1936
+ packages bundling all of theme, just to use a single color, especially in situations where tree
1937
+ shaking fails.
1924
1938
 
1925
- To support being able to use multiple entrypoints internally, we unfortunately cannot have
1926
- multiple distributions as they would need to have very different imports from of their own
1927
- internal dependencies.
1939
+ To support being able to use multiple entrypoints internally, we unfortunately cannot have
1940
+ multiple distributions as they would need to have very different imports from of their own
1941
+ internal dependencies.
1928
1942
 
1929
- ES Modules are widely supported by all modern bundlers and can be worked around in node
1930
- environments.
1943
+ ES Modules are widely supported by all modern bundlers and can be worked around in node
1944
+ environments.
1931
1945
 
1932
- We may choose to revisit this solution in the future if we find any unintended condequences, but
1933
- we see this as a pretty sane path forward which should lead to some major bundle size decreases,
1934
- saner API's and simpler package architecture.
1946
+ We may choose to revisit this solution in the future if we find any unintended condequences, but
1947
+ we see this as a pretty sane path forward which should lead to some major bundle size decreases,
1948
+ saner API's and simpler package architecture.
1935
1949
 
1936
- Please reach out to #fabric-build (if in Atlassian) or create an issue in
1937
- [Design System Support](https://ecosystem.atlassian.net/secure/CreateIssue.jspa?pid=24670) (for
1938
- external) if you have any questions or queries about this.
1950
+ Please reach out to #fabric-build (if in Atlassian) or create an issue in
1951
+ [Design System Support](https://ecosystem.atlassian.net/secure/CreateIssue.jspa?pid=24670) (for
1952
+ external) if you have any questions or queries about this.
1939
1953
 
1940
1954
  ## 6.2.0
1941
1955
 
1942
- - [minor][e0e5dd69a7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e0e5dd69a7):
1956
+ - [minor][e0e5dd69a7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e0e5dd69a7):
1943
1957
 
1944
- - Support 2 new props "hasStatusLozengeForDisabledAccount" and
1945
- "customMessageForDisabledAccount"
1958
+ - Support 2 new props "hasStatusLozengeForDisabledAccount" and "customMessageForDisabledAccount"
1946
1959
 
1947
1960
  ## 6.1.5
1948
1961
 
1949
- - Updated dependencies
1950
- [d7ef59d432](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d7ef59d432):
1951
- - @atlaskit/docs@6.0.1
1952
- - @atlaskit/avatar@14.1.8
1953
- - @atlaskit/button@10.1.2
1954
- - @atlaskit/icon@16.0.0
1962
+ - Updated dependencies
1963
+ [d7ef59d432](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d7ef59d432):
1964
+ - @atlaskit/docs@6.0.1
1965
+ - @atlaskit/avatar@14.1.8
1966
+ - @atlaskit/button@10.1.2
1967
+ - @atlaskit/icon@16.0.0
1955
1968
 
1956
1969
  ## 6.1.4
1957
1970
 
1958
- - [patch][ba95c0e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ba95c0e):
1971
+ - [patch][ba95c0e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ba95c0e):
1959
1972
 
1960
- - Remove typescript type InjectedIntlProps from flow js code
1973
+ - Remove typescript type InjectedIntlProps from flow js code
1961
1974
 
1962
1975
  ## 6.1.3
1963
1976
 
1964
- - [patch][3ef5292](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3ef5292):
1977
+ - [patch][3ef5292](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3ef5292):
1965
1978
 
1966
- - Include type definitions in npm package
1979
+ - Include type definitions in npm package
1967
1980
 
1968
1981
  ## 6.1.2
1969
1982
 
1970
- - Updated dependencies [58b84fa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/58b84fa):
1971
- - @atlaskit/avatar@14.1.7
1972
- - @atlaskit/button@10.1.1
1973
- - @atlaskit/dynamic-table@10.0.22
1974
- - @atlaskit/icon@15.0.2
1975
- - @atlaskit/layer@5.0.10
1976
- - @atlaskit/lozenge@6.2.4
1977
- - @atlaskit/spinner@9.0.13
1978
- - @atlaskit/theme@7.0.1
1979
- - @atlaskit/util-data-test@10.0.25
1980
- - @atlaskit/docs@6.0.0
1983
+ - Updated dependencies [58b84fa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/58b84fa):
1984
+ - @atlaskit/avatar@14.1.7
1985
+ - @atlaskit/button@10.1.1
1986
+ - @atlaskit/dynamic-table@10.0.22
1987
+ - @atlaskit/icon@15.0.2
1988
+ - @atlaskit/layer@5.0.10
1989
+ - @atlaskit/lozenge@6.2.4
1990
+ - @atlaskit/spinner@9.0.13
1991
+ - @atlaskit/theme@7.0.1
1992
+ - @atlaskit/util-data-test@10.0.25
1993
+ - @atlaskit/docs@6.0.0
1981
1994
 
1982
1995
  ## 6.1.1
1983
1996
 
1984
- - Updated dependencies [d13242d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d13242d):
1985
- - @atlaskit/docs@5.2.3
1986
- - @atlaskit/button@10.0.4
1987
- - @atlaskit/dynamic-table@10.0.20
1988
- - @atlaskit/icon@15.0.1
1989
- - @atlaskit/spinner@9.0.12
1990
- - @atlaskit/theme@7.0.0
1991
- - @atlaskit/avatar@14.1.6
1992
- - @atlaskit/lozenge@6.2.3
1997
+ - Updated dependencies [d13242d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d13242d):
1998
+ - @atlaskit/docs@5.2.3
1999
+ - @atlaskit/button@10.0.4
2000
+ - @atlaskit/dynamic-table@10.0.20
2001
+ - @atlaskit/icon@15.0.1
2002
+ - @atlaskit/spinner@9.0.12
2003
+ - @atlaskit/theme@7.0.0
2004
+ - @atlaskit/avatar@14.1.6
2005
+ - @atlaskit/lozenge@6.2.3
1993
2006
 
1994
2007
  ## 6.1.0
1995
2008
 
1996
- - [minor][a2da489](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a2da489):
2009
+ - [minor][a2da489](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a2da489):
1997
2010
 
1998
- - - wrap profile card in IntlProvider and support i18n
2011
+ - - wrap profile card in IntlProvider and support i18n
1999
2012
 
2000
2013
  ## 6.0.3
2001
2014
 
2002
- - Updated dependencies [ab9b69c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ab9b69c):
2003
- - @atlaskit/docs@5.2.2
2004
- - @atlaskit/avatar@14.1.5
2005
- - @atlaskit/button@10.0.1
2006
- - @atlaskit/icon@15.0.0
2015
+ - Updated dependencies [ab9b69c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ab9b69c):
2016
+ - @atlaskit/docs@5.2.2
2017
+ - @atlaskit/avatar@14.1.5
2018
+ - @atlaskit/button@10.0.1
2019
+ - @atlaskit/icon@15.0.0
2007
2020
 
2008
2021
  ## 6.0.2
2009
2022
 
2010
- - Updated dependencies [6998f11](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6998f11):
2011
- - @atlaskit/docs@5.2.1
2012
- - @atlaskit/avatar@14.1.4
2013
- - @atlaskit/dynamic-table@10.0.18
2014
- - @atlaskit/icon@14.6.1
2015
- - @atlaskit/spinner@9.0.11
2016
- - @atlaskit/theme@6.2.1
2017
- - @atlaskit/button@10.0.0
2023
+ - Updated dependencies [6998f11](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6998f11):
2024
+ - @atlaskit/docs@5.2.1
2025
+ - @atlaskit/avatar@14.1.4
2026
+ - @atlaskit/dynamic-table@10.0.18
2027
+ - @atlaskit/icon@14.6.1
2028
+ - @atlaskit/spinner@9.0.11
2029
+ - @atlaskit/theme@6.2.1
2030
+ - @atlaskit/button@10.0.0
2018
2031
 
2019
2032
  ## 6.0.1
2020
2033
 
2021
- - [patch][9d63842](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d63842):
2034
+ - [patch][9d63842](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d63842):
2022
2035
 
2023
- - Fixed a bug where content is not rendered for cards of users whose accounts are closed
2036
+ - Fixed a bug where content is not rendered for cards of users whose accounts are closed
2024
2037
 
2025
2038
  ## 6.0.0
2026
2039
 
2027
- - [major][9c0844d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c0844d):
2040
+ - [major][9c0844d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c0844d):
2028
2041
 
2029
- - Replace "isActive" prop with new "status" prop and adding react-intl messages
2042
+ - Replace "isActive" prop with new "status" prop and adding react-intl messages
2030
2043
 
2031
2044
  ## 5.0.0
2032
2045
 
2033
- - [major][a6dd6e3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a6dd6e3):
2046
+ - [major][a6dd6e3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a6dd6e3):
2034
2047
 
2035
- - Removed isCensored prop as this state no longer exists
2048
+ - Removed isCensored prop as this state no longer exists
2036
2049
 
2037
2050
  ## 4.0.10
2038
2051
 
2039
- - [patch] Updated dependencies
2040
- [65c6514](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/65c6514)
2041
- - @atlaskit/docs@5.0.8
2042
- - @atlaskit/avatar@14.0.11
2043
- - @atlaskit/button@9.0.13
2044
- - @atlaskit/icon@14.0.0
2052
+ - [patch] Updated dependencies
2053
+ [65c6514](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/65c6514)
2054
+ - @atlaskit/docs@5.0.8
2055
+ - @atlaskit/avatar@14.0.11
2056
+ - @atlaskit/button@9.0.13
2057
+ - @atlaskit/icon@14.0.0
2045
2058
 
2046
2059
  ## 4.0.9
2047
2060
 
2048
- - [patch] Remove promise polyfill to fix Jira SSR
2049
- [e793f6e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e793f6e)
2061
+ - [patch] Remove promise polyfill to fix Jira SSR
2062
+ [e793f6e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e793f6e)
2050
2063
 
2051
2064
  ## 4.0.8
2052
2065
 
2053
- - [patch] Updated dependencies
2054
- [b12f7e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b12f7e6)
2055
- - @atlaskit/util-data-test@10.0.7
2066
+ - [patch] Updated dependencies
2067
+ [b12f7e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b12f7e6)
2068
+ - @atlaskit/util-data-test@10.0.7
2056
2069
 
2057
2070
  ## 4.0.7
2058
2071
 
2059
- - [patch] Updated dependencies
2060
- [df22ad8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/df22ad8)
2061
- - @atlaskit/theme@6.0.0
2062
- - @atlaskit/spinner@9.0.6
2063
- - @atlaskit/icon@13.2.5
2064
- - @atlaskit/dynamic-table@10.0.9
2065
- - @atlaskit/button@9.0.6
2066
- - @atlaskit/avatar@14.0.8
2067
- - @atlaskit/docs@5.0.6
2072
+ - [patch] Updated dependencies
2073
+ [df22ad8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/df22ad8)
2074
+ - @atlaskit/theme@6.0.0
2075
+ - @atlaskit/spinner@9.0.6
2076
+ - @atlaskit/icon@13.2.5
2077
+ - @atlaskit/dynamic-table@10.0.9
2078
+ - @atlaskit/button@9.0.6
2079
+ - @atlaskit/avatar@14.0.8
2080
+ - @atlaskit/docs@5.0.6
2068
2081
 
2069
2082
  ## 4.0.6
2070
2083
 
2071
- - [patch] Updated dependencies
2072
- [8242529](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8242529)
2073
- - @atlaskit/layer@5.0.5
2084
+ - [patch] Updated dependencies
2085
+ [8242529](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8242529)
2086
+ - @atlaskit/layer@5.0.5
2074
2087
 
2075
2088
  ## 4.0.5
2076
2089
 
2077
- - [patch] use size prop small when using icon component
2078
- [27e074e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/27e074e)
2079
- - [none] Updated dependencies
2080
- [27e074e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/27e074e)
2090
+ - [patch] use size prop small when using icon component
2091
+ [27e074e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/27e074e)
2092
+ - [none] Updated dependencies
2093
+ [27e074e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/27e074e)
2081
2094
 
2082
2095
  ## 4.0.4
2083
2096
 
2084
- - [patch] update the dependency of react-dom to 16.4.2 due to vulnerability in previous versions
2085
- read https://reactjs.org/blog/2018/08/01/react-v-16-4-2.html for details
2086
- [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
2087
- - [none] Updated dependencies
2088
- [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
2089
- - @atlaskit/util-data-test@10.0.4
2090
- - @atlaskit/dynamic-table@10.0.7
2091
- - @atlaskit/button@9.0.5
2092
- - @atlaskit/theme@5.1.3
2093
- - @atlaskit/spinner@9.0.5
2094
- - @atlaskit/layer@5.0.4
2095
- - @atlaskit/icon@13.2.4
2096
- - @atlaskit/avatar@14.0.6
2097
+ - [patch] update the dependency of react-dom to 16.4.2 due to vulnerability in previous versions
2098
+ read https://reactjs.org/blog/2018/08/01/react-v-16-4-2.html for details
2099
+ [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
2100
+ - [none] Updated dependencies
2101
+ [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
2102
+ - @atlaskit/util-data-test@10.0.4
2103
+ - @atlaskit/dynamic-table@10.0.7
2104
+ - @atlaskit/button@9.0.5
2105
+ - @atlaskit/theme@5.1.3
2106
+ - @atlaskit/spinner@9.0.5
2107
+ - @atlaskit/layer@5.0.4
2108
+ - @atlaskit/icon@13.2.4
2109
+ - @atlaskit/avatar@14.0.6
2097
2110
 
2098
2111
  ## 4.0.3
2099
2112
 
2100
- - [patch] Bumping dependency on util-data-test
2101
- [597e0bd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/597e0bd)
2102
-
2103
- * [none] Updated dependencies
2104
- [597e0bd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/597e0bd)
2105
- - @atlaskit/util-data-test@10.0.3
2106
- * [none] Updated dependencies
2107
- [61df453](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/61df453)
2108
- - @atlaskit/util-data-test@10.0.3
2109
- * [none] Updated dependencies
2110
- [812a39c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/812a39c)
2111
- - @atlaskit/dynamic-table@10.0.6
2112
- - @atlaskit/util-data-test@10.0.3
2113
- * [none] Updated dependencies
2114
- [c8eb097](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c8eb097)
2115
- - @atlaskit/util-data-test@10.0.3
2116
- * [none] Updated dependencies
2117
- [d02746f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d02746f)
2118
- - @atlaskit/util-data-test@10.0.3
2113
+ - [patch] Bumping dependency on util-data-test
2114
+ [597e0bd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/597e0bd)
2115
+
2116
+ * [none] Updated dependencies
2117
+ [597e0bd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/597e0bd)
2118
+ - @atlaskit/util-data-test@10.0.3
2119
+ * [none] Updated dependencies
2120
+ [61df453](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/61df453)
2121
+ - @atlaskit/util-data-test@10.0.3
2122
+ * [none] Updated dependencies
2123
+ [812a39c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/812a39c)
2124
+ - @atlaskit/dynamic-table@10.0.6
2125
+ - @atlaskit/util-data-test@10.0.3
2126
+ * [none] Updated dependencies
2127
+ [c8eb097](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c8eb097)
2128
+ - @atlaskit/util-data-test@10.0.3
2129
+ * [none] Updated dependencies
2130
+ [d02746f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d02746f)
2131
+ - @atlaskit/util-data-test@10.0.3
2119
2132
 
2120
2133
  ## 4.0.2
2121
2134
 
2122
- - [patch] Updated dependencies
2123
- [acd86a1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/acd86a1)
2124
- - @atlaskit/util-data-test@10.0.2
2125
- - @atlaskit/icon@13.2.2
2126
- - @atlaskit/dynamic-table@10.0.5
2127
- - @atlaskit/button@9.0.4
2128
- - @atlaskit/theme@5.1.2
2129
- - @atlaskit/spinner@9.0.4
2130
- - @atlaskit/docs@5.0.2
2131
- - @atlaskit/layer@5.0.3
2132
- - @atlaskit/avatar@14.0.5
2135
+ - [patch] Updated dependencies
2136
+ [acd86a1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/acd86a1)
2137
+ - @atlaskit/util-data-test@10.0.2
2138
+ - @atlaskit/icon@13.2.2
2139
+ - @atlaskit/dynamic-table@10.0.5
2140
+ - @atlaskit/button@9.0.4
2141
+ - @atlaskit/theme@5.1.2
2142
+ - @atlaskit/spinner@9.0.4
2143
+ - @atlaskit/docs@5.0.2
2144
+ - @atlaskit/layer@5.0.3
2145
+ - @atlaskit/avatar@14.0.5
2133
2146
 
2134
2147
  ## 4.0.1
2135
2148
 
2136
- - [patch] Remove \$FlowFixMe, move styled-components to peerDependencies and move tests under src
2137
- and a unit folder [36b595c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/36b595c)
2138
- - [none] Updated dependencies
2139
- [36b595c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/36b595c)
2149
+ - [patch] Remove \$FlowFixMe, move styled-components to peerDependencies and move tests under src
2150
+ and a unit folder [36b595c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/36b595c)
2151
+ - [none] Updated dependencies
2152
+ [36b595c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/36b595c)
2140
2153
 
2141
2154
  ## 4.0.0
2142
2155
 
2143
- - [major] Updates to React ^16.4.0
2144
- [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
2145
- - [major] Updated dependencies
2146
- [563a7eb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/563a7eb)
2147
- - @atlaskit/util-data-test@10.0.0
2148
- - @atlaskit/dynamic-table@10.0.0
2149
- - @atlaskit/button@9.0.0
2150
- - @atlaskit/theme@5.0.0
2151
- - @atlaskit/spinner@9.0.0
2152
- - @atlaskit/docs@5.0.0
2153
- - @atlaskit/layer@5.0.0
2154
- - @atlaskit/icon@13.0.0
2155
- - @atlaskit/avatar@14.0.0
2156
- - [major] Updated dependencies
2157
- [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
2158
- - @atlaskit/util-data-test@10.0.0
2159
- - @atlaskit/dynamic-table@10.0.0
2160
- - @atlaskit/button@9.0.0
2161
- - @atlaskit/theme@5.0.0
2162
- - @atlaskit/spinner@9.0.0
2163
- - @atlaskit/docs@5.0.0
2164
- - @atlaskit/layer@5.0.0
2165
- - @atlaskit/icon@13.0.0
2166
- - @atlaskit/avatar@14.0.0
2156
+ - [major] Updates to React ^16.4.0
2157
+ [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
2158
+ - [major] Updated dependencies
2159
+ [563a7eb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/563a7eb)
2160
+ - @atlaskit/util-data-test@10.0.0
2161
+ - @atlaskit/dynamic-table@10.0.0
2162
+ - @atlaskit/button@9.0.0
2163
+ - @atlaskit/theme@5.0.0
2164
+ - @atlaskit/spinner@9.0.0
2165
+ - @atlaskit/docs@5.0.0
2166
+ - @atlaskit/layer@5.0.0
2167
+ - @atlaskit/icon@13.0.0
2168
+ - @atlaskit/avatar@14.0.0
2169
+ - [major] Updated dependencies
2170
+ [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
2171
+ - @atlaskit/util-data-test@10.0.0
2172
+ - @atlaskit/dynamic-table@10.0.0
2173
+ - @atlaskit/button@9.0.0
2174
+ - @atlaskit/theme@5.0.0
2175
+ - @atlaskit/spinner@9.0.0
2176
+ - @atlaskit/docs@5.0.0
2177
+ - @atlaskit/layer@5.0.0
2178
+ - @atlaskit/icon@13.0.0
2179
+ - @atlaskit/avatar@14.0.0
2167
2180
 
2168
2181
  ## 3.13.4
2169
2182
 
2170
- - [none] Updated dependencies
2171
- [da63331](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/da63331)
2172
- - @atlaskit/button@8.2.5
2173
- - @atlaskit/dynamic-table@9.2.6
2174
- - @atlaskit/avatar@13.0.0
2175
- - [patch] Updated dependencies
2176
- [7724115](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7724115)
2177
- - @atlaskit/avatar@13.0.0
2178
- - @atlaskit/button@8.2.5
2179
- - @atlaskit/dynamic-table@9.2.6
2183
+ - [none] Updated dependencies
2184
+ [da63331](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/da63331)
2185
+ - @atlaskit/button@8.2.5
2186
+ - @atlaskit/dynamic-table@9.2.6
2187
+ - @atlaskit/avatar@13.0.0
2188
+ - [patch] Updated dependencies
2189
+ [7724115](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7724115)
2190
+ - @atlaskit/avatar@13.0.0
2191
+ - @atlaskit/button@8.2.5
2192
+ - @atlaskit/dynamic-table@9.2.6
2180
2193
 
2181
2194
  ## 3.13.3
2182
2195
 
2183
- - [patch] Fix flow config and add back flow fix me
2184
- [107da09](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/107da09)
2185
- - [none] Updated dependencies
2186
- [107da09](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/107da09)
2196
+ - [patch] Fix flow config and add back flow fix me
2197
+ [107da09](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/107da09)
2198
+ - [none] Updated dependencies
2199
+ [107da09](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/107da09)
2187
2200
 
2188
2201
  ## 3.13.2
2189
2202
 
2190
- - [patch] Update package.json to point to correct build directories
2191
- [2362f0b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2362f0b)
2192
- - [none] Updated dependencies
2193
- [2362f0b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2362f0b)
2203
+ - [patch] Update package.json to point to correct build directories
2204
+ [2362f0b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2362f0b)
2205
+ - [none] Updated dependencies
2206
+ [2362f0b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2362f0b)
2194
2207
 
2195
2208
  ## 3.13.1
2196
2209
 
2197
- - [patch] Migrate Profilecard to AKM2 DIR-553
2198
- [9bac948](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9bac948)
2199
- - [none] Updated dependencies
2200
- [99446e3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/99446e3)
2201
- - @atlaskit/docs@4.2.2
2202
- - [none] Updated dependencies
2203
- [9bac948](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9bac948)
2204
- - @atlaskit/docs@4.2.2
2210
+ - [patch] Migrate Profilecard to AKM2 DIR-553
2211
+ [9bac948](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9bac948)
2212
+ - [none] Updated dependencies
2213
+ [99446e3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/99446e3)
2214
+ - @atlaskit/docs@4.2.2
2215
+ - [none] Updated dependencies
2216
+ [9bac948](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9bac948)
2217
+ - @atlaskit/docs@4.2.2
2205
2218
 
2206
2219
  ## 3.12.3 (2017-12-13)
2207
2220
 
2208
- - bug fix; cap profilecard cache age at 30 days
2209
- ([6e112c0](https://bitbucket.org/atlassian/atlaskit/commits/6e112c0))
2221
+ - bug fix; cap profilecard cache age at 30 days
2222
+ ([6e112c0](https://bitbucket.org/atlassian/atlaskit/commits/6e112c0))
2210
2223
 
2211
2224
  ## 3.12.2 (2017-12-06)
2212
2225
 
2213
- - bug fix; add max-width to profilecard trigger to allow CSS truncation of children (issues
2214
- closed: ak-3989) ([ad721a1](https://bitbucket.org/atlassian/atlaskit/commits/ad721a1))
2226
+ - bug fix; add max-width to profilecard trigger to allow CSS truncation of children (issues closed:
2227
+ ak-3989) ([ad721a1](https://bitbucket.org/atlassian/atlaskit/commits/ad721a1))
2215
2228
 
2216
2229
  ## 3.12.1 (2017-11-27)
2217
2230
 
2218
- - bug fix; fix profilecard error when user has null presenceMessage
2219
- ([b250e2b](https://bitbucket.org/atlassian/atlaskit/commits/b250e2b))
2231
+ - bug fix; fix profilecard error when user has null presenceMessage
2232
+ ([b250e2b](https://bitbucket.org/atlassian/atlaskit/commits/b250e2b))
2220
2233
 
2221
2234
  ## 3.12.0 (2017-11-20)
2222
2235
 
2223
- - feature; add presence message to profilecard (issues closed: dir-459)
2224
- ([a927c12](https://bitbucket.org/atlassian/atlaskit/commits/a927c12))
2236
+ - feature; add presence message to profilecard (issues closed: dir-459)
2237
+ ([a927c12](https://bitbucket.org/atlassian/atlaskit/commits/a927c12))
2225
2238
 
2226
2239
  ## 3.11.0 (2017-11-17)
2227
2240
 
2228
- - feature; add support for focus state to profilecard (issues closed: dir-453)
2229
- ([51185f4](https://bitbucket.org/atlassian/atlaskit/commits/51185f4))
2241
+ - feature; add support for focus state to profilecard (issues closed: dir-453)
2242
+ ([51185f4](https://bitbucket.org/atlassian/atlaskit/commits/51185f4))
2230
2243
 
2231
2244
  ## 3.10.0 (2017-11-01)
2232
2245
 
2233
- - bug fix; fix profilecard graphql api client (issues closed: dir-444)
2234
- ([8adce3a](https://bitbucket.org/atlassian/atlaskit/commits/8adce3a))
2235
- - feature; add card states for deactivated and app users (issues closed: dir-436)
2236
- ([0343cb6](https://bitbucket.org/atlassian/atlaskit/commits/0343cb6))
2246
+ - bug fix; fix profilecard graphql api client (issues closed: dir-444)
2247
+ ([8adce3a](https://bitbucket.org/atlassian/atlaskit/commits/8adce3a))
2248
+ - feature; add card states for deactivated and app users (issues closed: dir-436)
2249
+ ([0343cb6](https://bitbucket.org/atlassian/atlaskit/commits/0343cb6))
2237
2250
 
2238
2251
  ## 3.9.0 (2017-10-27)
2239
2252
 
2240
- - feature; add new profile data keys to graphql query
2241
- ([44d81d4](https://bitbucket.org/atlassian/atlaskit/commits/44d81d4))
2253
+ - feature; add new profile data keys to graphql query
2254
+ ([44d81d4](https://bitbucket.org/atlassian/atlaskit/commits/44d81d4))
2242
2255
 
2243
- - feature; add predicate method to profile card actions (issues closed: dir-423)
2244
- ([2737016](https://bitbucket.org/atlassian/atlaskit/commits/2737016))
2256
+ - feature; add predicate method to profile card actions (issues closed: dir-423)
2257
+ ([2737016](https://bitbucket.org/atlassian/atlaskit/commits/2737016))
2245
2258
 
2246
2259
  ## 3.8.1 (2017-10-22)
2247
2260
 
2248
- - bug fix; update styled-components dep and react peerDep
2249
- ([6a67bf8](https://bitbucket.org/atlassian/atlaskit/commits/6a67bf8))
2261
+ - bug fix; update styled-components dep and react peerDep
2262
+ ([6a67bf8](https://bitbucket.org/atlassian/atlaskit/commits/6a67bf8))
2250
2263
 
2251
2264
  ## 3.8.0 (2017-10-16)
2252
2265
 
2253
- - feature; add new detail label for a users email to the profilecard (issues closed: dir-324)
2254
- ([84f12aa](https://bitbucket.org/atlassian/atlaskit/commits/84f12aa))
2266
+ - feature; add new detail label for a users email to the profilecard (issues closed: dir-324)
2267
+ ([84f12aa](https://bitbucket.org/atlassian/atlaskit/commits/84f12aa))
2255
2268
 
2256
2269
  ## 3.7.4 (2017-10-12)
2257
2270
 
2258
- - bug fix; fix dark mode colors for profilecard (issues closed: dir-413)
2259
- ([27a6981](https://bitbucket.org/atlassian/atlaskit/commits/27a6981))
2271
+ - bug fix; fix dark mode colors for profilecard (issues closed: dir-413)
2272
+ ([27a6981](https://bitbucket.org/atlassian/atlaskit/commits/27a6981))
2260
2273
 
2261
- - bug fix; fix unit tests for profilecard (issues closed: dir-407)
2262
- ([9a488fe](https://bitbucket.org/atlassian/atlaskit/commits/9a488fe))
2263
- - bug fix; refactor profilecard to styled components (issues closed: dir-407)
2264
- ([2a0a834](https://bitbucket.org/atlassian/atlaskit/commits/2a0a834))
2274
+ - bug fix; fix unit tests for profilecard (issues closed: dir-407)
2275
+ ([9a488fe](https://bitbucket.org/atlassian/atlaskit/commits/9a488fe))
2276
+ - bug fix; refactor profilecard to styled components (issues closed: dir-407)
2277
+ ([2a0a834](https://bitbucket.org/atlassian/atlaskit/commits/2a0a834))
2265
2278
 
2266
2279
  ## 3.7.3 (2017-10-10)
2267
2280
 
2268
- - bug fix; align default status messages of profilecard with Stride (issues closed: dir-414)
2269
- ([4d65674](https://bitbucket.org/atlassian/atlaskit/commits/4d65674))
2270
- - bug fix; bump dependeny versions for profilecard to latest (issues closed: dir-408)
2271
- ([839922d](https://bitbucket.org/atlassian/atlaskit/commits/839922d))
2281
+ - bug fix; align default status messages of profilecard with Stride (issues closed: dir-414)
2282
+ ([4d65674](https://bitbucket.org/atlassian/atlaskit/commits/4d65674))
2283
+ - bug fix; bump dependeny versions for profilecard to latest (issues closed: dir-408)
2284
+ ([839922d](https://bitbucket.org/atlassian/atlaskit/commits/839922d))
2272
2285
 
2273
2286
  ## 3.7.2 (2017-09-20)
2274
2287
 
2275
- - bug fix; fix non array value of \`oneOf\` proptype in profilecard.jsx
2276
- ([39131f7](https://bitbucket.org/atlassian/atlaskit/commits/39131f7))
2288
+ - bug fix; fix non array value of \`oneOf\` proptype in profilecard.jsx
2289
+ ([39131f7](https://bitbucket.org/atlassian/atlaskit/commits/39131f7))
2277
2290
 
2278
2291
  ## 3.7.1 (2017-09-08)
2279
2292
 
2280
- - bug fix; limit profilecards error types to the two available from the api (issues closed:
2281
- dir-376) ([b9b8532](https://bitbucket.org/atlassian/atlaskit/commits/b9b8532))
2293
+ - bug fix; limit profilecards error types to the two available from the api (issues closed: dir-376)
2294
+ ([b9b8532](https://bitbucket.org/atlassian/atlaskit/commits/b9b8532))
2282
2295
 
2283
2296
  ## 3.7.0 (2017-08-14)
2284
2297
 
2285
- - feature; add not-found error state to profilecard (issues closed: dir-340)
2286
- ([8021368](https://bitbucket.org/atlassian/atlaskit/commits/8021368))
2298
+ - feature; add not-found error state to profilecard (issues closed: dir-340)
2299
+ ([8021368](https://bitbucket.org/atlassian/atlaskit/commits/8021368))
2287
2300
 
2288
2301
  ## 3.6.4 (2017-08-09)
2289
2302
 
2290
- - bug fix; make profilecard type def also available through lerna link (issues closed: ed-2435)
2291
- ([fb15d63](https://bitbucket.org/atlassian/atlaskit/commits/fb15d63))
2303
+ - bug fix; make profilecard type def also available through lerna link (issues closed: ed-2435)
2304
+ ([fb15d63](https://bitbucket.org/atlassian/atlaskit/commits/fb15d63))
2292
2305
 
2293
- * bug fix; Merged in fix/ED-2266-profile-card (pull request #3650) (issues closed: ed-2266)
2294
- ([2a5b88e](https://bitbucket.org/atlassian/atlaskit/commits/2a5b88e))
2306
+ * bug fix; Merged in fix/ED-2266-profile-card (pull request #3650) (issues closed: ed-2266)
2307
+ ([2a5b88e](https://bitbucket.org/atlassian/atlaskit/commits/2a5b88e))
2295
2308
 
2296
2309
  ## 3.6.3 (2017-07-27)
2297
2310
 
2298
- - fix; rename jsnext:main to jsnext:experimental:main temporarily
2299
- ([c7508e0](https://bitbucket.org/atlassian/atlaskit/commits/c7508e0))
2311
+ - fix; rename jsnext:main to jsnext:experimental:main temporarily
2312
+ ([c7508e0](https://bitbucket.org/atlassian/atlaskit/commits/c7508e0))
2300
2313
 
2301
2314
  ## 3.6.2 (2017-07-25)
2302
2315
 
2303
- - fix; use class transform in loose mode in babel to improve load performance in apps
2304
- ([fde719a](https://bitbucket.org/atlassian/atlaskit/commits/fde719a))
2316
+ - fix; use class transform in loose mode in babel to improve load performance in apps
2317
+ ([fde719a](https://bitbucket.org/atlassian/atlaskit/commits/fde719a))
2305
2318
 
2306
2319
  ## 3.6.1 (2017-07-20)
2307
2320
 
2308
- - fix; use \`title\` instead of \`position\` from directory data for job title
2309
- ([3d0864b](https://bitbucket.org/atlassian/atlaskit/commits/3d0864b))
2321
+ - fix; use \`title\` instead of \`position\` from directory data for job title
2322
+ ([3d0864b](https://bitbucket.org/atlassian/atlaskit/commits/3d0864b))
2310
2323
 
2311
2324
  ## 3.6.0 (2017-07-18)
2312
2325
 
@@ -2314,94 +2327,94 @@
2314
2327
 
2315
2328
  ## 3.2.0 (2017-07-17)
2316
2329
 
2317
- - feature; fix analytics event names for profilecard
2318
- ([2225d04](https://bitbucket.org/atlassian/atlaskit/commits/2225d04))
2330
+ - feature; fix analytics event names for profilecard
2331
+ ([2225d04](https://bitbucket.org/atlassian/atlaskit/commits/2225d04))
2319
2332
 
2320
2333
  ## 3.2.0 (2017-07-17)
2321
2334
 
2322
- - fix; rerelease, failed prepublish scripts
2323
- ([5fd82f8](https://bitbucket.org/atlassian/atlaskit/commits/5fd82f8))
2335
+ - fix; rerelease, failed prepublish scripts
2336
+ ([5fd82f8](https://bitbucket.org/atlassian/atlaskit/commits/5fd82f8))
2324
2337
 
2325
2338
  ## 3.2.0 (2017-07-17)
2326
2339
 
2327
- - feature; added ES module builds to dist and add jsnext:main to most ADG packages
2328
- ([ea76507](https://bitbucket.org/atlassian/atlaskit/commits/ea76507))
2340
+ - feature; added ES module builds to dist and add jsnext:main to most ADG packages
2341
+ ([ea76507](https://bitbucket.org/atlassian/atlaskit/commits/ea76507))
2329
2342
 
2330
2343
  ## 3.1.0 (2017-07-17)
2331
2344
 
2332
- - feature; add trigger property to AkProfilecardTrigger (possible values: click, hover (defaul
2333
- ([6f7b508](https://bitbucket.org/atlassian/atlaskit/commits/6f7b508))
2345
+ - feature; add trigger property to AkProfilecardTrigger (possible values: click, hover (defaul
2346
+ ([6f7b508](https://bitbucket.org/atlassian/atlaskit/commits/6f7b508))
2334
2347
 
2335
2348
  ## 3.0.2 (2017-07-12)
2336
2349
 
2337
- - fix; export modifyResponse for util-data-test
2338
- ([67d5784](https://bitbucket.org/atlassian/atlaskit/commits/67d5784))
2339
- - fix; add prop-types as a dependency to avoid React 15.x warnings
2340
- ([92598eb](https://bitbucket.org/atlassian/atlaskit/commits/92598eb))
2350
+ - fix; export modifyResponse for util-data-test
2351
+ ([67d5784](https://bitbucket.org/atlassian/atlaskit/commits/67d5784))
2352
+ - fix; add prop-types as a dependency to avoid React 15.x warnings
2353
+ ([92598eb](https://bitbucket.org/atlassian/atlaskit/commits/92598eb))
2341
2354
 
2342
2355
  ## 3.0.1 (2017-05-12)
2343
2356
 
2344
- - fix; fix profilecard caching issue
2345
- ([53223a1](https://bitbucket.org/atlassian/atlaskit/commits/53223a1))
2346
- - fix; add required cloudId props to stories
2347
- ([5aa1e8a](https://bitbucket.org/atlassian/atlaskit/commits/5aa1e8a))
2357
+ - fix; fix profilecard caching issue
2358
+ ([53223a1](https://bitbucket.org/atlassian/atlaskit/commits/53223a1))
2359
+ - fix; add required cloudId props to stories
2360
+ ([5aa1e8a](https://bitbucket.org/atlassian/atlaskit/commits/5aa1e8a))
2348
2361
 
2349
2362
  ## 3.0.0 (2017-05-10)
2350
2363
 
2351
2364
  ## 2.4.0 (2017-05-09)
2352
2365
 
2353
- - fix; fix profilecards retry button to only show up when retry method is passed
2354
- ([4c67a6d](https://bitbucket.org/atlassian/atlaskit/commits/4c67a6d))
2366
+ - fix; fix profilecards retry button to only show up when retry method is passed
2367
+ ([4c67a6d](https://bitbucket.org/atlassian/atlaskit/commits/4c67a6d))
2355
2368
 
2356
- * feature; stop render empty layer while profilecard is not visible anyway
2357
- ([8d56ab3](https://bitbucket.org/atlassian/atlaskit/commits/8d56ab3))
2358
- * feature; use new GraphQL query in profilecard-client
2359
- ([66b846d](https://bitbucket.org/atlassian/atlaskit/commits/66b846d))
2369
+ * feature; stop render empty layer while profilecard is not visible anyway
2370
+ ([8d56ab3](https://bitbucket.org/atlassian/atlaskit/commits/8d56ab3))
2371
+ * feature; use new GraphQL query in profilecard-client
2372
+ ([66b846d](https://bitbucket.org/atlassian/atlaskit/commits/66b846d))
2360
2373
 
2361
- - breaking; cloudId is now required for resourced component
2374
+ - breaking; cloudId is now required for resourced component
2362
2375
 
2363
2376
  ISSUES CLOSED: DIR-248, DIR-249, DIR-250
2364
2377
 
2365
2378
  ## 2.3.2 (2017-04-27)
2366
2379
 
2367
- - fix; update legal copy to be more clear. Not all modules include ADG license.
2368
- ([f3a945e](https://bitbucket.org/atlassian/atlaskit/commits/f3a945e))
2380
+ - fix; update legal copy to be more clear. Not all modules include ADG license.
2381
+ ([f3a945e](https://bitbucket.org/atlassian/atlaskit/commits/f3a945e))
2369
2382
 
2370
2383
  ## 2.3.1 (2017-04-26)
2371
2384
 
2372
- - fix; update legal copy and fix broken links for component README on npm. New contribution and
2373
- ([0b3e454](https://bitbucket.org/atlassian/atlaskit/commits/0b3e454))
2385
+ - fix; update legal copy and fix broken links for component README on npm. New contribution and
2386
+ ([0b3e454](https://bitbucket.org/atlassian/atlaskit/commits/0b3e454))
2374
2387
 
2375
2388
  ## 2.3.0 (2017-04-20)
2376
2389
 
2377
- - feature; add analytics to profilecard component
2378
- ([77fa03e](https://bitbucket.org/atlassian/atlaskit/commits/77fa03e))
2390
+ - feature; add analytics to profilecard component
2391
+ ([77fa03e](https://bitbucket.org/atlassian/atlaskit/commits/77fa03e))
2379
2392
 
2380
2393
  ## 2.2.0 (2017-04-20)
2381
2394
 
2382
- - feature; removed explicit style! imports, set style-loader in webpack config
2383
- ([891fc3c](https://bitbucket.org/atlassian/atlaskit/commits/891fc3c))
2395
+ - feature; removed explicit style! imports, set style-loader in webpack config
2396
+ ([891fc3c](https://bitbucket.org/atlassian/atlaskit/commits/891fc3c))
2384
2397
 
2385
2398
  ## 2.1.1 (2017-04-18)
2386
2399
 
2387
- - fix; minor profilecard fixes for integration with Home
2388
- ([7140657](https://bitbucket.org/atlassian/atlaskit/commits/7140657))
2400
+ - fix; minor profilecard fixes for integration with Home
2401
+ ([7140657](https://bitbucket.org/atlassian/atlaskit/commits/7140657))
2389
2402
 
2390
2403
  ## 2.1.0 (2017-04-12)
2391
2404
 
2392
- - feature; add trigger wrapper component for profile cards
2393
- ([cff0f87](https://bitbucket.org/atlassian/atlaskit/commits/cff0f87))
2405
+ - feature; add trigger wrapper component for profile cards
2406
+ ([cff0f87](https://bitbucket.org/atlassian/atlaskit/commits/cff0f87))
2394
2407
 
2395
2408
  ## 2.0.0 (2017-03-31)
2396
2409
 
2397
2410
  ## 1.3.0 (2017-03-31)
2398
2411
 
2399
- - feature; add LRU cache to AkProfileClient
2400
- ([cb34168](https://bitbucket.org/atlassian/atlaskit/commits/cb34168))
2401
- - feature; add wrapper for height transition animation around profilecard
2402
- ([23cea8c](https://bitbucket.org/atlassian/atlaskit/commits/23cea8c))
2412
+ - feature; add LRU cache to AkProfileClient
2413
+ ([cb34168](https://bitbucket.org/atlassian/atlaskit/commits/cb34168))
2414
+ - feature; add wrapper for height transition animation around profilecard
2415
+ ([23cea8c](https://bitbucket.org/atlassian/atlaskit/commits/23cea8c))
2403
2416
 
2404
- * breaking; made resourceClient a required prop, resourceClients method names changed
2417
+ * breaking; made resourceClient a required prop, resourceClients method names changed
2405
2418
 
2406
2419
  ISSUES CLOSED: FAB-2671
2407
2420
 
@@ -2409,49 +2422,49 @@ ISSUES CLOSED: FAB-2671
2409
2422
 
2410
2423
  ## 1.2.3 (2017-03-21)
2411
2424
 
2412
- - fix; maintainers for all the packages were added
2413
- ([261d00a](https://bitbucket.org/atlassian/atlaskit/commits/261d00a))
2425
+ - fix; maintainers for all the packages were added
2426
+ ([261d00a](https://bitbucket.org/atlassian/atlaskit/commits/261d00a))
2414
2427
 
2415
2428
  ## 1.2.2 (2017-03-20)
2416
2429
 
2417
- - fix; make sure profilecard has a minimum height even without any labels
2418
- ([88b07a5](https://bitbucket.org/atlassian/atlaskit/commits/88b07a5))
2430
+ - fix; make sure profilecard has a minimum height even without any labels
2431
+ ([88b07a5](https://bitbucket.org/atlassian/atlaskit/commits/88b07a5))
2419
2432
 
2420
2433
  ## 1.2.1 (2017-03-07)
2421
2434
 
2422
2435
  ## 1.2.0 (2017-03-02)
2423
2436
 
2424
- - feature; fixing error component in profilecard
2425
- ([66f533c](https://bitbucket.org/atlassian/atlaskit/commits/66f533c))
2437
+ - feature; fixing error component in profilecard
2438
+ ([66f533c](https://bitbucket.org/atlassian/atlaskit/commits/66f533c))
2426
2439
 
2427
2440
  ## 1.1.2 (2017-02-28)
2428
2441
 
2429
- - fix; adds warning to usage.md about editing readme
2430
- ([4496574](https://bitbucket.org/atlassian/atlaskit/commits/4496574))
2431
- - fix; removes jsdoc annoations and moves content to usage.md
2432
- ([dc12a0d](https://bitbucket.org/atlassian/atlaskit/commits/dc12a0d))
2433
- - fix; dummy commit to release stories
2434
- ([3df5d9f](https://bitbucket.org/atlassian/atlaskit/commits/3df5d9f))
2442
+ - fix; adds warning to usage.md about editing readme
2443
+ ([4496574](https://bitbucket.org/atlassian/atlaskit/commits/4496574))
2444
+ - fix; removes jsdoc annoations and moves content to usage.md
2445
+ ([dc12a0d](https://bitbucket.org/atlassian/atlaskit/commits/dc12a0d))
2446
+ - fix; dummy commit to release stories
2447
+ ([3df5d9f](https://bitbucket.org/atlassian/atlaskit/commits/3df5d9f))
2435
2448
 
2436
2449
  ## 1.1.1 (2017-02-27)
2437
2450
 
2438
- - fix; change action button appearance
2439
- ([e13175f](https://bitbucket.org/atlassian/atlaskit/commits/e13175f))
2440
- - empty commit to make components release themselves
2441
- ([5511fbe](https://bitbucket.org/atlassian/atlaskit/commits/5511fbe))
2451
+ - fix; change action button appearance
2452
+ ([e13175f](https://bitbucket.org/atlassian/atlaskit/commits/e13175f))
2453
+ - empty commit to make components release themselves
2454
+ ([5511fbe](https://bitbucket.org/atlassian/atlaskit/commits/5511fbe))
2442
2455
 
2443
2456
  ## 1.1.0 (2017-02-17)
2444
2457
 
2445
- - feature; Adding isLoading and hasError props to the stateless AkProfilecard component
2446
- ([b988ff8](https://bitbucket.org/atlassian/atlaskit/commits/b988ff8))
2447
- - fixing lint error ([da369d3](https://bitbucket.org/atlassian/atlaskit/commits/da369d3))
2458
+ - feature; Adding isLoading and hasError props to the stateless AkProfilecard component
2459
+ ([b988ff8](https://bitbucket.org/atlassian/atlaskit/commits/b988ff8))
2460
+ - fixing lint error ([da369d3](https://bitbucket.org/atlassian/atlaskit/commits/da369d3))
2448
2461
 
2449
2462
  ## 1.0.2 (2017-02-07)
2450
2463
 
2451
- - fix; Updates docs to mention using yarn
2452
- ([8259add](https://bitbucket.org/atlassian/atlaskit/commits/8259add))
2464
+ - fix; Updates docs to mention using yarn
2465
+ ([8259add](https://bitbucket.org/atlassian/atlaskit/commits/8259add))
2453
2466
 
2454
2467
  ## 1.0.1 (2017-02-06)
2455
2468
 
2456
- - fix; Updates package to use scoped ak packges
2457
- ([26b9140](https://bitbucket.org/atlassian/atlaskit/commits/26b9140))
2469
+ - fix; Updates package to use scoped ak packges
2470
+ ([26b9140](https://bitbucket.org/atlassian/atlaskit/commits/26b9140))