@atlaskit/profilecard 19.5.10 → 19.5.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +121 -109
- package/dist/cjs/client/CachingClient.js +2 -3
- package/dist/cjs/client/ProfileCardClient.js +2 -3
- package/dist/cjs/client/TeamCentralCardClient.js +3 -4
- package/dist/cjs/client/TeamProfileCardClient.js +2 -3
- package/dist/cjs/client/UserProfileCardClient.js +4 -6
- package/dist/cjs/client/errorUtils.js +65 -15
- package/dist/cjs/client/getTeamFromAGG.js +12 -19
- package/dist/cjs/client/graphqlUtils.js +105 -36
- package/dist/cjs/client/index.js +1 -2
- package/dist/cjs/client/types.js +5 -0
- package/dist/cjs/components/Error/AccessLockSVG.js +1 -2
- package/dist/cjs/components/Error/ErrorBoundary.js +2 -4
- package/dist/cjs/components/Error/ErrorIllustration.js +2 -3
- package/dist/cjs/components/Error/ErrorMessage.js +1 -2
- package/dist/cjs/components/Icon/IconLabel.js +1 -2
- package/dist/cjs/components/Team/TeamForbiddenErrorState.js +2 -3
- package/dist/cjs/components/Team/TeamLoadingState.js +2 -3
- package/dist/cjs/components/Team/TeamProfileCard.js +1 -2
- package/dist/cjs/components/Team/TeamProfileCardTrigger.js +2 -4
- package/dist/cjs/components/Team/index.js +1 -2
- package/dist/cjs/components/Team/lazyTeamProfileCard.js +2 -3
- package/dist/cjs/components/User/OverflowProfileCardButtons.js +3 -5
- package/dist/cjs/components/User/ProfileCard.js +2 -4
- package/dist/cjs/components/User/ProfileCardDetails.js +2 -3
- package/dist/cjs/components/User/ProfileCardResourced.js +2 -4
- package/dist/cjs/components/User/ProfileCardTrigger.js +1 -2
- package/dist/cjs/components/User/ReportingLinesDetails.js +1 -2
- package/dist/cjs/components/User/UserLoadingState.js +1 -2
- package/dist/cjs/components/User/index.js +1 -2
- package/dist/cjs/components/User/lazyProfileCard.js +2 -3
- package/dist/cjs/i18n/cs.js +2 -3
- package/dist/cjs/i18n/da.js +2 -3
- package/dist/cjs/i18n/de.js +2 -3
- package/dist/cjs/i18n/en.js +2 -3
- package/dist/cjs/i18n/en_GB.js +2 -3
- package/dist/cjs/i18n/en_ZZ.js +2 -3
- package/dist/cjs/i18n/es.js +2 -3
- package/dist/cjs/i18n/et.js +2 -3
- package/dist/cjs/i18n/fi.js +2 -3
- package/dist/cjs/i18n/fr.js +2 -3
- package/dist/cjs/i18n/hu.js +2 -3
- package/dist/cjs/i18n/is.js +2 -3
- package/dist/cjs/i18n/it.js +2 -3
- package/dist/cjs/i18n/ja.js +2 -3
- package/dist/cjs/i18n/ko.js +2 -3
- package/dist/cjs/i18n/languages.js +2 -3
- package/dist/cjs/i18n/nb.js +2 -3
- package/dist/cjs/i18n/nl.js +2 -3
- package/dist/cjs/i18n/pl.js +2 -3
- package/dist/cjs/i18n/pt_BR.js +2 -3
- package/dist/cjs/i18n/pt_PT.js +2 -3
- package/dist/cjs/i18n/ro.js +2 -3
- package/dist/cjs/i18n/ru.js +2 -3
- package/dist/cjs/i18n/sk.js +2 -3
- package/dist/cjs/i18n/sv.js +2 -3
- package/dist/cjs/i18n/th.js +2 -3
- package/dist/cjs/i18n/tr.js +2 -3
- package/dist/cjs/i18n/uk.js +2 -3
- package/dist/cjs/i18n/vi.js +2 -3
- package/dist/cjs/i18n/zh.js +2 -3
- package/dist/cjs/i18n/zh_TW.js +2 -3
- package/dist/cjs/index.js +1 -2
- package/dist/cjs/internal/filterActions.js +1 -2
- package/dist/cjs/messages.js +1 -2
- package/dist/cjs/mocks/mock-team-client.js +6 -1
- package/dist/cjs/mocks/profile-data.js +1 -2
- package/dist/cjs/mocks/reporting-lines-data.js +2 -3
- package/dist/cjs/mocks/simple-mock-clients.js +4 -7
- package/dist/cjs/mocks/util.js +4 -7
- package/dist/cjs/styled/Card.js +22 -44
- package/dist/cjs/styled/Error.js +5 -10
- package/dist/cjs/styled/ReportingLines.js +5 -10
- package/dist/cjs/styled/TeamCard.js +16 -31
- package/dist/cjs/styled/constants.js +13 -26
- package/dist/cjs/util/analytics.js +14 -24
- package/dist/cjs/util/click.js +2 -3
- package/dist/cjs/util/config.js +2 -4
- package/dist/cjs/util/errors.js +110 -0
- package/dist/cjs/util/performance.js +2 -3
- package/dist/es2019/client/TeamCentralCardClient.js +3 -3
- package/dist/es2019/client/UserProfileCardClient.js +2 -2
- package/dist/es2019/client/errorUtils.js +63 -12
- package/dist/es2019/client/getTeamFromAGG.js +3 -3
- package/dist/es2019/client/graphqlUtils.js +28 -26
- package/dist/es2019/client/types.js +1 -0
- package/dist/es2019/mocks/mock-team-client.js +6 -1
- package/dist/es2019/util/analytics.js +1 -1
- package/dist/es2019/util/errors.js +59 -0
- package/dist/esm/client/ProfileCardClient.js +1 -1
- package/dist/esm/client/TeamCentralCardClient.js +3 -3
- package/dist/esm/client/UserProfileCardClient.js +2 -2
- package/dist/esm/client/errorUtils.js +63 -12
- package/dist/esm/client/getTeamFromAGG.js +6 -6
- package/dist/esm/client/graphqlUtils.js +103 -35
- package/dist/esm/client/types.js +1 -0
- package/dist/esm/mocks/mock-team-client.js +6 -1
- package/dist/esm/util/analytics.js +1 -1
- package/dist/esm/util/errors.js +103 -0
- package/dist/types/client/errorUtils.d.ts +5 -9
- package/dist/types/client/graphqlUtils.d.ts +13 -1
- package/dist/types/client/types.d.ts +12 -0
- package/dist/types/mocks/mock-team-client.d.ts +1 -0
- package/dist/types/util/analytics.d.ts +2 -1
- package/dist/types/util/errors.d.ts +43 -0
- package/dist/types-ts4.5/client/errorUtils.d.ts +5 -9
- package/dist/types-ts4.5/client/graphqlUtils.d.ts +13 -1
- package/dist/types-ts4.5/client/types.d.ts +12 -0
- package/dist/types-ts4.5/mocks/mock-team-client.d.ts +1 -0
- package/dist/types-ts4.5/util/analytics.d.ts +2 -1
- package/dist/types-ts4.5/util/errors.d.ts +43 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,49 +1,61 @@
|
|
|
1
1
|
# @atlaskit/profilecard
|
|
2
2
|
|
|
3
|
+
## 19.5.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#41012](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41012) [`99707f3ab56`](https://bitbucket.org/atlassian/atlassian-frontend/commits/99707f3ab56) - Fix destructing Directory error
|
|
8
|
+
|
|
9
|
+
## 19.5.11
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#40822](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40822) [`179ee5ba573`](https://bitbucket.org/atlassian/atlassian-frontend/commits/179ee5ba573) - Better handling of errors
|
|
14
|
+
|
|
3
15
|
## 19.5.10
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
6
18
|
|
|
7
|
-
- [`6900f89eb0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6900f89eb0e) - Internal changes to use space tokens. There is no expected visual or behaviour change.
|
|
19
|
+
- [#39787](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39787) [`6900f89eb0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6900f89eb0e) - Internal changes to use space tokens. There is no expected visual or behaviour change.
|
|
8
20
|
|
|
9
21
|
## 19.5.9
|
|
10
22
|
|
|
11
23
|
### Patch Changes
|
|
12
24
|
|
|
13
|
-
- [`c18f1580f12`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c18f1580f12) - [ux] [ECA11Y-33] Remove unncessary prefix from mention icons aria-label attribute
|
|
14
|
-
- [`e9c9a4ea79f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e9c9a4ea79f) - [ux] [ECA11Y-34] Replaced profile name span element with h2 tag
|
|
25
|
+
- [#39562](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39562) [`c18f1580f12`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c18f1580f12) - [ux] [ECA11Y-33] Remove unncessary prefix from mention icons aria-label attribute
|
|
26
|
+
- [#39559](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39559) [`e9c9a4ea79f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e9c9a4ea79f) - [ux] [ECA11Y-34] Replaced profile name span element with h2 tag
|
|
15
27
|
|
|
16
28
|
## 19.5.8
|
|
17
29
|
|
|
18
30
|
### Patch Changes
|
|
19
31
|
|
|
20
|
-
- [`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete version.json
|
|
32
|
+
- [#38162](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38162) [`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete version.json
|
|
21
33
|
- Updated dependencies
|
|
22
34
|
|
|
23
35
|
## 19.5.7
|
|
24
36
|
|
|
25
37
|
### Patch Changes
|
|
26
38
|
|
|
27
|
-
- [`834a98bdc7b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/834a98bdc7b) - [ECA11Y-13] Make focus ring visible for 'Give kudos' button
|
|
39
|
+
- [#37372](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37372) [`834a98bdc7b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/834a98bdc7b) - [ECA11Y-13] Make focus ring visible for 'Give kudos' button
|
|
28
40
|
- Updated dependencies
|
|
29
41
|
|
|
30
42
|
## 19.5.6
|
|
31
43
|
|
|
32
44
|
### Patch Changes
|
|
33
45
|
|
|
34
|
-
- [`3ef90d5fc2f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3ef90d5fc2f) - Cleanup the references to version.json
|
|
46
|
+
- [#38551](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38551) [`3ef90d5fc2f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3ef90d5fc2f) - Cleanup the references to version.json
|
|
35
47
|
|
|
36
48
|
## 19.5.5
|
|
37
49
|
|
|
38
50
|
### Patch Changes
|
|
39
51
|
|
|
40
|
-
- [`f01deb5e6ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f01deb5e6ab) - Use injected env vars instead of version.json
|
|
52
|
+
- [#37925](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37925) [`f01deb5e6ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f01deb5e6ab) - Use injected env vars instead of version.json
|
|
41
53
|
|
|
42
54
|
## 19.5.4
|
|
43
55
|
|
|
44
56
|
### Patch Changes
|
|
45
57
|
|
|
46
|
-
- [`cc13658d9b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cc13658d9b4) - Fix for incorrect GraphQL query variable in team card
|
|
58
|
+
- [#38237](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38237) [`cc13658d9b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cc13658d9b4) - Fix for incorrect GraphQL query variable in team card
|
|
47
59
|
|
|
48
60
|
## 19.5.3
|
|
49
61
|
|
|
@@ -55,55 +67,55 @@
|
|
|
55
67
|
|
|
56
68
|
### Patch Changes
|
|
57
69
|
|
|
58
|
-
- [`0c6a7acba8d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0c6a7acba8d) - Resolved an issue with the team profile card query having invalid formatting
|
|
70
|
+
- [#36576](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36576) [`0c6a7acba8d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0c6a7acba8d) - Resolved an issue with the team profile card query having invalid formatting
|
|
59
71
|
|
|
60
72
|
## 19.5.1
|
|
61
73
|
|
|
62
74
|
### Patch Changes
|
|
63
75
|
|
|
64
|
-
- [`5259a126fa1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5259a126fa1) - Replace calls to pf-directory `Team` and `TeamMembership` with AGG `teamV2` in Directory app.
|
|
76
|
+
- [#35908](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35908) [`5259a126fa1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5259a126fa1) - Replace calls to pf-directory `Team` and `TeamMembership` with AGG `teamV2` in Directory app.
|
|
65
77
|
|
|
66
78
|
## 19.5.0
|
|
67
79
|
|
|
68
80
|
### Minor Changes
|
|
69
81
|
|
|
70
|
-
- [`5a5c412a944`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5a5c412a944) - Site scoped changes for TeamProfileCard - behind FF platform.teams.site-scoped.m1
|
|
82
|
+
- [#35776](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35776) [`5a5c412a944`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5a5c412a944) - Site scoped changes for TeamProfileCard - behind FF platform.teams.site-scoped.m1
|
|
71
83
|
|
|
72
84
|
## 19.4.2
|
|
73
85
|
|
|
74
86
|
### Patch Changes
|
|
75
87
|
|
|
76
|
-
- [`61cb5313358`](https://bitbucket.org/atlassian/atlassian-frontend/commits/61cb5313358) - Removing unused dependencies and dev dependencies
|
|
88
|
+
- [#34443](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34443) [`61cb5313358`](https://bitbucket.org/atlassian/atlassian-frontend/commits/61cb5313358) - Removing unused dependencies and dev dependencies
|
|
77
89
|
|
|
78
90
|
## 19.4.1
|
|
79
91
|
|
|
80
92
|
### Patch Changes
|
|
81
93
|
|
|
82
|
-
- [`2eb438477ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2eb438477ab) - Internal change to enforce token usage for spacing properties. There is no expected visual or behaviour change.
|
|
94
|
+
- [#34118](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34118) [`2eb438477ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2eb438477ab) - Internal change to enforce token usage for spacing properties. There is no expected visual or behaviour change.
|
|
83
95
|
|
|
84
96
|
## 19.4.0
|
|
85
97
|
|
|
86
98
|
### Minor Changes
|
|
87
99
|
|
|
88
|
-
- [`17fe8f92030`](https://bitbucket.org/atlassian/atlassian-frontend/commits/17fe8f92030) - Correctly export i18n messages from profilecard!
|
|
100
|
+
- [#34206](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34206) [`17fe8f92030`](https://bitbucket.org/atlassian/atlassian-frontend/commits/17fe8f92030) - Correctly export i18n messages from profilecard!
|
|
89
101
|
|
|
90
102
|
## 19.3.2
|
|
91
103
|
|
|
92
104
|
### Patch Changes
|
|
93
105
|
|
|
94
|
-
- [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
|
|
106
|
+
- [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793) [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
|
|
95
107
|
|
|
96
108
|
## 19.3.1
|
|
97
109
|
|
|
98
110
|
### Patch Changes
|
|
99
111
|
|
|
100
|
-
- [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
|
|
112
|
+
- [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649) [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
|
|
101
113
|
|
|
102
114
|
## 19.3.0
|
|
103
115
|
|
|
104
116
|
### Minor Changes
|
|
105
117
|
|
|
106
|
-
- [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
|
|
118
|
+
- [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258) [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
|
|
107
119
|
|
|
108
120
|
### Patch Changes
|
|
109
121
|
|
|
@@ -113,49 +125,49 @@
|
|
|
113
125
|
|
|
114
126
|
### Patch Changes
|
|
115
127
|
|
|
116
|
-
- [`c3d16d3164f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c3d16d3164f) - Migrated use of `gridSize` to space tokens where possible. There is no expected visual or behaviour change.
|
|
128
|
+
- [#32030](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32030) [`c3d16d3164f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c3d16d3164f) - Migrated use of `gridSize` to space tokens where possible. There is no expected visual or behaviour change.
|
|
117
129
|
|
|
118
130
|
## 19.2.1
|
|
119
131
|
|
|
120
132
|
### Patch Changes
|
|
121
133
|
|
|
122
|
-
- [`052672d7eca`](https://bitbucket.org/atlassian/atlassian-frontend/commits/052672d7eca) - Added errorSource to analytics events, added tests for fail events
|
|
134
|
+
- [#31560](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31560) [`052672d7eca`](https://bitbucket.org/atlassian/atlassian-frontend/commits/052672d7eca) - Added errorSource to analytics events, added tests for fail events
|
|
123
135
|
|
|
124
136
|
## 19.2.0
|
|
125
137
|
|
|
126
138
|
### Minor Changes
|
|
127
139
|
|
|
128
|
-
- [`2af6359970f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2af6359970f) - [ux] This change (related to TSLA-521) adds an onFocus handler for the profile card trigger that performs the same behavior as onHover. The change also adds an onBlur handler.
|
|
140
|
+
- [#31233](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31233) [`2af6359970f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2af6359970f) - [ux] This change (related to TSLA-521) adds an onFocus handler for the profile card trigger that performs the same behavior as onHover. The change also adds an onBlur handler.
|
|
129
141
|
|
|
130
142
|
## 19.1.1
|
|
131
143
|
|
|
132
144
|
### Patch Changes
|
|
133
145
|
|
|
134
|
-
- [`f80d2e43a41`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f80d2e43a41) - Added traceId, errorSource and errorMessage to analytic events
|
|
146
|
+
- [#31423](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31423) [`f80d2e43a41`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f80d2e43a41) - Added traceId, errorSource and errorMessage to analytic events
|
|
135
147
|
|
|
136
148
|
## 19.1.0
|
|
137
149
|
|
|
138
150
|
### Minor Changes
|
|
139
151
|
|
|
140
|
-
- [`13af6ca0e48`](https://bitbucket.org/atlassian/atlassian-frontend/commits/13af6ca0e48) - [ux] TSLA-521 docs(changeset): [ux] This change (TSLA-521) adds keyboard support for the profile card component by adding tabindex, an onKeyPress handler, and setting role="button" when the card is trigged by click. This change also adds unit tests for the profile card trigger as well as notifcations.
|
|
152
|
+
- [#31160](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31160) [`13af6ca0e48`](https://bitbucket.org/atlassian/atlassian-frontend/commits/13af6ca0e48) - [ux] TSLA-521 docs(changeset): [ux] This change (TSLA-521) adds keyboard support for the profile card component by adding tabindex, an onKeyPress handler, and setting role="button" when the card is trigged by click. This change also adds unit tests for the profile card trigger as well as notifcations.
|
|
141
153
|
|
|
142
154
|
## 19.0.0
|
|
143
155
|
|
|
144
156
|
### Major Changes
|
|
145
157
|
|
|
146
|
-
- [`6e57454a13a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6e57454a13a) - makeRequestViaGateway removed from TeamProfileClient, instead use makeRequest. teamsUseV2 removed from ProfileCardClient, it will now always use V3.
|
|
158
|
+
- [#31230](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31230) [`6e57454a13a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6e57454a13a) - makeRequestViaGateway removed from TeamProfileClient, instead use makeRequest. teamsUseV2 removed from ProfileCardClient, it will now always use V3.
|
|
147
159
|
|
|
148
160
|
## 18.4.0
|
|
149
161
|
|
|
150
162
|
### Minor Changes
|
|
151
163
|
|
|
152
|
-
- [`312e4be46d2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/312e4be46d2) - Always call AGG for team data'
|
|
164
|
+
- [#30903](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30903) [`312e4be46d2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/312e4be46d2) - Always call AGG for team data'
|
|
153
165
|
|
|
154
166
|
## 18.3.0
|
|
155
167
|
|
|
156
168
|
### Minor Changes
|
|
157
169
|
|
|
158
|
-
- [`9cbd4a1766b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9cbd4a1766b) - [ux] Added an error state for team profile card that is displayed when the user lack of access to the team
|
|
170
|
+
- [#30439](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30439) [`9cbd4a1766b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9cbd4a1766b) - [ux] Added an error state for team profile card that is displayed when the user lack of access to the team
|
|
159
171
|
|
|
160
172
|
## 18.2.4
|
|
161
173
|
|
|
@@ -173,43 +185,43 @@
|
|
|
173
185
|
|
|
174
186
|
### Patch Changes
|
|
175
187
|
|
|
176
|
-
- [`7d2488dcbcf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7d2488dcbcf) - Upgrade lru-fast@0.2.2 to lru_map
|
|
188
|
+
- [#29080](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29080) [`7d2488dcbcf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7d2488dcbcf) - Upgrade lru-fast@0.2.2 to lru_map
|
|
177
189
|
|
|
178
190
|
## 18.2.1
|
|
179
191
|
|
|
180
192
|
### Patch Changes
|
|
181
193
|
|
|
182
|
-
- [`20f162117fb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/20f162117fb) - Remove usaged of themed for light and dark theme
|
|
194
|
+
- [#29094](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29094) [`20f162117fb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/20f162117fb) - Remove usaged of themed for light and dark theme
|
|
183
195
|
|
|
184
196
|
## 18.2.0
|
|
185
197
|
|
|
186
198
|
### Minor Changes
|
|
187
199
|
|
|
188
|
-
- [`da891855ee9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/da891855ee9) - Remove Atlas give kudos M2 feature flag check
|
|
200
|
+
- [#28622](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28622) [`da891855ee9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/da891855ee9) - Remove Atlas give kudos M2 feature flag check
|
|
189
201
|
|
|
190
202
|
## 18.1.3
|
|
191
203
|
|
|
192
204
|
### Patch Changes
|
|
193
205
|
|
|
194
|
-
- [`5e697be0410`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5e697be0410) - [ux] Fix team header image bug
|
|
206
|
+
- [#28723](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28723) [`5e697be0410`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5e697be0410) - [ux] Fix team header image bug
|
|
195
207
|
|
|
196
208
|
## 18.1.2
|
|
197
209
|
|
|
198
210
|
### Patch Changes
|
|
199
211
|
|
|
200
|
-
- [`6455cf006b3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6455cf006b3) - Builds for this package now pass through a tokens babel plugin, removing runtime invocations of the tokens() function and improving performance.
|
|
212
|
+
- [#28324](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28324) [`6455cf006b3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6455cf006b3) - Builds for this package now pass through a tokens babel plugin, removing runtime invocations of the tokens() function and improving performance.
|
|
201
213
|
|
|
202
214
|
## 18.1.1
|
|
203
215
|
|
|
204
216
|
### Patch Changes
|
|
205
217
|
|
|
206
|
-
- [`60b1c9b0f05`](https://bitbucket.org/atlassian/atlassian-frontend/commits/60b1c9b0f05) - Upgrade profilecard to the latest major version of emotion
|
|
218
|
+
- [#28352](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28352) [`60b1c9b0f05`](https://bitbucket.org/atlassian/atlassian-frontend/commits/60b1c9b0f05) - Upgrade profilecard to the latest major version of emotion
|
|
207
219
|
|
|
208
220
|
## 18.1.0
|
|
209
221
|
|
|
210
222
|
### Minor Changes
|
|
211
223
|
|
|
212
|
-
- [`227230d34f2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/227230d34f2) - Allow option to force team profilecard to use pf-directory
|
|
224
|
+
- [#28343](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28343) [`227230d34f2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/227230d34f2) - Allow option to force team profilecard to use pf-directory
|
|
213
225
|
|
|
214
226
|
## 18.0.2
|
|
215
227
|
|
|
@@ -227,7 +239,7 @@
|
|
|
227
239
|
|
|
228
240
|
### Major Changes
|
|
229
241
|
|
|
230
|
-
- [`d1789629297`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d1789629297) - Switch from styled-components to emotion for CSS
|
|
242
|
+
- [#27453](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27453) [`d1789629297`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d1789629297) - Switch from styled-components to emotion for CSS
|
|
231
243
|
|
|
232
244
|
## 17.3.1
|
|
233
245
|
|
|
@@ -239,13 +251,13 @@
|
|
|
239
251
|
|
|
240
252
|
### Minor Changes
|
|
241
253
|
|
|
242
|
-
- [`b2ef0c20138`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b2ef0c20138) - [ux] Don't shift focus when triggering user or team profilecard via hover
|
|
254
|
+
- [#27395](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27395) [`b2ef0c20138`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b2ef0c20138) - [ux] Don't shift focus when triggering user or team profilecard via hover
|
|
243
255
|
|
|
244
256
|
## 17.2.7
|
|
245
257
|
|
|
246
258
|
### Patch Changes
|
|
247
259
|
|
|
248
|
-
- [`7bb86e9484c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7bb86e9484c) - Transform errors from AGG and ignore 403(TEAMS_FORBIDDEN) and 410(TEAMS_TEAM_DELETED) errors for SLO failure
|
|
260
|
+
- [#27626](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27626) [`7bb86e9484c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7bb86e9484c) - Transform errors from AGG and ignore 403(TEAMS_FORBIDDEN) and 410(TEAMS_TEAM_DELETED) errors for SLO failure
|
|
249
261
|
|
|
250
262
|
## 17.2.6
|
|
251
263
|
|
|
@@ -257,13 +269,13 @@
|
|
|
257
269
|
|
|
258
270
|
### Patch Changes
|
|
259
271
|
|
|
260
|
-
- [`dbd0fa0aa5e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dbd0fa0aa5e) - Handle both new and legacy Team ARIs
|
|
272
|
+
- [#26483](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26483) [`dbd0fa0aa5e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dbd0fa0aa5e) - Handle both new and legacy Team ARIs
|
|
261
273
|
|
|
262
274
|
## 17.2.4
|
|
263
275
|
|
|
264
276
|
### Patch Changes
|
|
265
277
|
|
|
266
|
-
- [`250ad85dd78`](https://bitbucket.org/atlassian/atlassian-frontend/commits/250ad85dd78) - [ux] Removed ButtonGroup from team profile card to fix the layout of action buttons
|
|
278
|
+
- [#26481](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26481) [`250ad85dd78`](https://bitbucket.org/atlassian/atlassian-frontend/commits/250ad85dd78) - [ux] Removed ButtonGroup from team profile card to fix the layout of action buttons
|
|
267
279
|
|
|
268
280
|
## 17.2.3
|
|
269
281
|
|
|
@@ -275,19 +287,19 @@
|
|
|
275
287
|
|
|
276
288
|
### Patch Changes
|
|
277
289
|
|
|
278
|
-
- [`285ad326001`](https://bitbucket.org/atlassian/atlassian-frontend/commits/285ad326001) - no-issue: Translations update
|
|
290
|
+
- [#23053](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23053) [`285ad326001`](https://bitbucket.org/atlassian/atlassian-frontend/commits/285ad326001) - no-issue: Translations update
|
|
279
291
|
|
|
280
292
|
## 17.2.1
|
|
281
293
|
|
|
282
294
|
### Patch Changes
|
|
283
295
|
|
|
284
|
-
- [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade Typescript from `4.3.5` to `4.5.5`
|
|
296
|
+
- [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874) [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade Typescript from `4.3.5` to `4.5.5`
|
|
285
297
|
|
|
286
298
|
## 17.2.0
|
|
287
299
|
|
|
288
300
|
### Minor Changes
|
|
289
301
|
|
|
290
|
-
- [`7f54d783d6e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f54d783d6e) - Add mock for team central client workspace check
|
|
302
|
+
- [#25271](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25271) [`7f54d783d6e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f54d783d6e) - Add mock for team central client workspace check
|
|
291
303
|
|
|
292
304
|
## 17.1.1
|
|
293
305
|
|
|
@@ -299,31 +311,31 @@
|
|
|
299
311
|
|
|
300
312
|
### Minor Changes
|
|
301
313
|
|
|
302
|
-
- [`aa321e66c2a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aa321e66c2a) - Add cloudid as optional client prop and add workspace check for Atlas functionality
|
|
314
|
+
- [#24175](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24175) [`aa321e66c2a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aa321e66c2a) - Add cloudid as optional client prop and add workspace check for Atlas functionality
|
|
303
315
|
|
|
304
316
|
## 17.0.0
|
|
305
317
|
|
|
306
318
|
### Major Changes
|
|
307
319
|
|
|
308
|
-
- [`fae495c5956`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fae495c5956) - Deprecated the analytics prop and start emitting GASv3 analytics
|
|
320
|
+
- [#23125](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23125) [`fae495c5956`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fae495c5956) - Deprecated the analytics prop and start emitting GASv3 analytics
|
|
309
321
|
|
|
310
322
|
## 16.12.1
|
|
311
323
|
|
|
312
324
|
### Patch Changes
|
|
313
325
|
|
|
314
|
-
- [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`.
|
|
326
|
+
- [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492) [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`.
|
|
315
327
|
|
|
316
328
|
## 16.12.0
|
|
317
329
|
|
|
318
330
|
### Minor Changes
|
|
319
331
|
|
|
320
|
-
- [`12835d685b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/12835d685b4) - [ux] Only show give kudos button on active profiles
|
|
332
|
+
- [#23898](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23898) [`12835d685b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/12835d685b4) - [ux] Only show give kudos button on active profiles
|
|
321
333
|
|
|
322
334
|
## 16.11.0
|
|
323
335
|
|
|
324
336
|
### Minor Changes
|
|
325
337
|
|
|
326
|
-
- [`01d80d395bc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/01d80d395bc) - pass event to onOpenChange consistently
|
|
338
|
+
- [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381) [`01d80d395bc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/01d80d395bc) - pass event to onOpenChange consistently
|
|
327
339
|
|
|
328
340
|
### Patch Changes
|
|
329
341
|
|
|
@@ -339,7 +351,7 @@
|
|
|
339
351
|
|
|
340
352
|
### Minor Changes
|
|
341
353
|
|
|
342
|
-
- [`e5fbc101e73`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e5fbc101e73) - Remove analytics prop from give kudos component
|
|
354
|
+
- [#23074](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23074) [`e5fbc101e73`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e5fbc101e73) - Remove analytics prop from give kudos component
|
|
343
355
|
|
|
344
356
|
### Patch Changes
|
|
345
357
|
|
|
@@ -355,37 +367,37 @@
|
|
|
355
367
|
|
|
356
368
|
### Minor Changes
|
|
357
369
|
|
|
358
|
-
- [`1f16cd80413`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f16cd80413) - [ux] Add give kudos to Team profile card.
|
|
370
|
+
- [#22749](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22749) [`1f16cd80413`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f16cd80413) - [ux] Add give kudos to Team profile card.
|
|
359
371
|
|
|
360
372
|
## 16.8.0
|
|
361
373
|
|
|
362
374
|
### Minor Changes
|
|
363
375
|
|
|
364
|
-
- [`319c46e77de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/319c46e77de) - [ux] Adding a button background animation when the give kudos button on the profile card is hovered over
|
|
376
|
+
- [#22618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22618) [`319c46e77de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/319c46e77de) - [ux] Adding a button background animation when the give kudos button on the profile card is hovered over
|
|
365
377
|
|
|
366
378
|
## 16.7.0
|
|
367
379
|
|
|
368
380
|
### Minor Changes
|
|
369
381
|
|
|
370
|
-
- [`4e9fbfb9e85`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4e9fbfb9e85) - [ux] Adding meatballs overflow menu when the profile card has more than two action buttons
|
|
382
|
+
- [#22588](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22588) [`4e9fbfb9e85`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4e9fbfb9e85) - [ux] Adding meatballs overflow menu when the profile card has more than two action buttons
|
|
371
383
|
|
|
372
384
|
## 16.6.1
|
|
373
385
|
|
|
374
386
|
### Patch Changes
|
|
375
387
|
|
|
376
|
-
- [`cf03bdf6b7e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf03bdf6b7e) - Made feature flag check extra context optional.
|
|
388
|
+
- [#22624](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22624) [`cf03bdf6b7e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf03bdf6b7e) - Made feature flag check extra context optional.
|
|
377
389
|
|
|
378
390
|
## 16.6.0
|
|
379
391
|
|
|
380
392
|
### Minor Changes
|
|
381
393
|
|
|
382
|
-
- [`7c691c8e8a9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7c691c8e8a9) - [ux] Launch the give kudos flow via a drawer from the profile-card.
|
|
394
|
+
- [#22152](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22152) [`7c691c8e8a9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7c691c8e8a9) - [ux] Launch the give kudos flow via a drawer from the profile-card.
|
|
383
395
|
|
|
384
396
|
## 16.5.0
|
|
385
397
|
|
|
386
398
|
### Minor Changes
|
|
387
399
|
|
|
388
|
-
- [`31ca93c69a3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/31ca93c69a3) - [ux] Adding give kudos button to the profile card
|
|
400
|
+
- [#21848](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21848) [`31ca93c69a3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/31ca93c69a3) - [ux] Adding give kudos button to the profile card
|
|
389
401
|
|
|
390
402
|
## 16.4.8
|
|
391
403
|
|
|
@@ -403,25 +415,25 @@
|
|
|
403
415
|
|
|
404
416
|
### Patch Changes
|
|
405
417
|
|
|
406
|
-
- [`386249e4be4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/386249e4be4) - [ux] Fix hide handler when the profile card is triggered via click
|
|
418
|
+
- [#21462](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21462) [`386249e4be4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/386249e4be4) - [ux] Fix hide handler when the profile card is triggered via click
|
|
407
419
|
|
|
408
420
|
## 16.4.5
|
|
409
421
|
|
|
410
422
|
### Patch Changes
|
|
411
423
|
|
|
412
|
-
- [`18ab5ef3325`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18ab5ef3325) - Filter out certain types of failures for team profilecard data fetch
|
|
424
|
+
- [#20787](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20787) [`18ab5ef3325`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18ab5ef3325) - Filter out certain types of failures for team profilecard data fetch
|
|
413
425
|
|
|
414
426
|
## 16.4.4
|
|
415
427
|
|
|
416
428
|
### Patch Changes
|
|
417
429
|
|
|
418
|
-
- [`b876346271a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b876346271a) - Ensure that component wrapping a ProfileCardTrigger is not clicked when clicking the trigger
|
|
430
|
+
- [#21005](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21005) [`b876346271a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b876346271a) - Ensure that component wrapping a ProfileCardTrigger is not clicked when clicking the trigger
|
|
419
431
|
|
|
420
432
|
## 16.4.3
|
|
421
433
|
|
|
422
434
|
### Patch Changes
|
|
423
435
|
|
|
424
|
-
- [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade to TypeScript 4.2.4
|
|
436
|
+
- [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650) [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade to TypeScript 4.2.4
|
|
425
437
|
- Updated dependencies
|
|
426
438
|
|
|
427
439
|
## 16.4.2
|
|
@@ -434,14 +446,14 @@
|
|
|
434
446
|
|
|
435
447
|
### Patch Changes
|
|
436
448
|
|
|
437
|
-
- [`ac9343c3ed4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac9343c3ed4) - Replaces usage of deprecated design tokens. No visual or functional changes
|
|
449
|
+
- [#19618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19618) [`ac9343c3ed4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac9343c3ed4) - Replaces usage of deprecated design tokens. No visual or functional changes
|
|
438
450
|
- Updated dependencies
|
|
439
451
|
|
|
440
452
|
## 16.4.0
|
|
441
453
|
|
|
442
454
|
### Minor Changes
|
|
443
455
|
|
|
444
|
-
- [`4c94bc2d6c4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4c94bc2d6c4) - Update profilecard to use analytics from teams common
|
|
456
|
+
- [#19693](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19693) [`4c94bc2d6c4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4c94bc2d6c4) - Update profilecard to use analytics from teams common
|
|
445
457
|
|
|
446
458
|
## 16.3.1
|
|
447
459
|
|
|
@@ -453,19 +465,19 @@
|
|
|
453
465
|
|
|
454
466
|
### Minor Changes
|
|
455
467
|
|
|
456
|
-
- [`ce207d8ea47`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ce207d8ea47) - Add option to query teams with AGG
|
|
468
|
+
- [#17604](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17604) [`ce207d8ea47`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ce207d8ea47) - Add option to query teams with AGG
|
|
457
469
|
|
|
458
470
|
## 16.2.3
|
|
459
471
|
|
|
460
472
|
### Patch Changes
|
|
461
473
|
|
|
462
|
-
- [`4d4d5d66cb8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4d4d5d66cb8) - Use entrypoints to import profilecard components
|
|
474
|
+
- [#18109](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18109) [`4d4d5d66cb8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4d4d5d66cb8) - Use entrypoints to import profilecard components
|
|
463
475
|
|
|
464
476
|
## 16.2.2
|
|
465
477
|
|
|
466
478
|
### Patch Changes
|
|
467
479
|
|
|
468
|
-
- [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - The no-unsafe-design-token-usage eslint rule now respects the new token naming conventions when auto-fixing by correctly formatting token ids.
|
|
480
|
+
- [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752) [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - The no-unsafe-design-token-usage eslint rule now respects the new token naming conventions when auto-fixing by correctly formatting token ids.
|
|
469
481
|
- Updated dependencies
|
|
470
482
|
|
|
471
483
|
## 16.2.1
|
|
@@ -478,31 +490,31 @@
|
|
|
478
490
|
|
|
479
491
|
### Minor Changes
|
|
480
492
|
|
|
481
|
-
- [`4039320b130`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4039320b130) - Support lazy loading in the ProfileCardTrigger component
|
|
493
|
+
- [#17840](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17840) [`4039320b130`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4039320b130) - Support lazy loading in the ProfileCardTrigger component
|
|
482
494
|
|
|
483
495
|
## 16.1.0
|
|
484
496
|
|
|
485
497
|
### Minor Changes
|
|
486
498
|
|
|
487
|
-
- [`a5c73ccaa58`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a5c73ccaa58) - Added manager and direct reports section to profile hover card"
|
|
499
|
+
- [#17298](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17298) [`a5c73ccaa58`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a5c73ccaa58) - Added manager and direct reports section to profile hover card"
|
|
488
500
|
|
|
489
501
|
## 16.0.2
|
|
490
502
|
|
|
491
503
|
### Patch Changes
|
|
492
504
|
|
|
493
|
-
- [`c55c736ecea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c55c736ecea) - Patch VULN AFP-3486 AFP-3487 AFP-3488 AFP-3489
|
|
505
|
+
- [#17475](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17475) [`c55c736ecea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c55c736ecea) - Patch VULN AFP-3486 AFP-3487 AFP-3488 AFP-3489
|
|
494
506
|
|
|
495
507
|
## 16.0.1
|
|
496
508
|
|
|
497
509
|
### Patch Changes
|
|
498
510
|
|
|
499
|
-
- [`82099b76445`](https://bitbucket.org/atlassian/atlassian-frontend/commits/82099b76445) - Add optional `testId` prop to `ProfileCardTrigger` to ease testing
|
|
511
|
+
- [#16812](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16812) [`82099b76445`](https://bitbucket.org/atlassian/atlassian-frontend/commits/82099b76445) - Add optional `testId` prop to `ProfileCardTrigger` to ease testing
|
|
500
512
|
|
|
501
513
|
## 16.0.0
|
|
502
514
|
|
|
503
515
|
### Major Changes
|
|
504
516
|
|
|
505
|
-
- [`47f58da5946`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47f58da5946) - ED-13322, ED-13324, ED-13326, ED-13323, ED-13204: Upgrade and support react-intl@^5.18.1 including breaking API changes, types and tests in atlassian-frontend packages
|
|
517
|
+
- [#14810](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14810) [`47f58da5946`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47f58da5946) - ED-13322, ED-13324, ED-13326, ED-13323, ED-13204: Upgrade and support react-intl@^5.18.1 including breaking API changes, types and tests in atlassian-frontend packages
|
|
506
518
|
|
|
507
519
|
What changed: Upgraded our react-intl support from ^2.6.0 to ^5.18.1. This means editor packages now rely on consumers installing ^5.18.1, otherwise editor usage of react-intl will mismatch with actual installed react-intl APIs.
|
|
508
520
|
Why change was made: As part of a coordinated upgrade effort across AF packages, as react-intl v2 is quite dated.
|
|
@@ -556,7 +568,7 @@
|
|
|
556
568
|
|
|
557
569
|
### Minor Changes
|
|
558
570
|
|
|
559
|
-
- [`1b9bc1e4b9a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1b9bc1e4b9a) - [ux] Instrumented profilecard with the new theming package, `@atlaskit/tokens`.
|
|
571
|
+
- [#15859](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15859) [`1b9bc1e4b9a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1b9bc1e4b9a) - [ux] Instrumented profilecard with the new theming package, `@atlaskit/tokens`.
|
|
560
572
|
|
|
561
573
|
New tokens will be visible only in applications configured to use the new Tokens API (currently in alpha).
|
|
562
574
|
These changes are intended to be interoperable with the legacy theme implementation. Legacy dark mode users should expect no visual or breaking changes.
|
|
@@ -565,38 +577,38 @@
|
|
|
565
577
|
|
|
566
578
|
### Patch Changes
|
|
567
579
|
|
|
568
|
-
- [`d04cae5d45c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d04cae5d45c) - Expose some mock helpers
|
|
580
|
+
- [#15267](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15267) [`d04cae5d45c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d04cae5d45c) - Expose some mock helpers
|
|
569
581
|
|
|
570
582
|
## 15.7.0
|
|
571
583
|
|
|
572
584
|
### Minor Changes
|
|
573
585
|
|
|
574
|
-
- [`322786b0386`](https://bitbucket.org/atlassian/atlassian-frontend/commits/322786b0386) - Export team profile card content to outside so we can use it to build legacy profile card in Jira FE
|
|
586
|
+
- [#15165](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15165) [`322786b0386`](https://bitbucket.org/atlassian/atlassian-frontend/commits/322786b0386) - Export team profile card content to outside so we can use it to build legacy profile card in Jira FE
|
|
575
587
|
|
|
576
588
|
## 15.6.2
|
|
577
589
|
|
|
578
590
|
### Patch Changes
|
|
579
591
|
|
|
580
|
-
- [`cf853e39278`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf853e39278) - Internal changes to remove `@atlaskit/theme/math` usage.
|
|
592
|
+
- [#14319](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14319) [`cf853e39278`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf853e39278) - Internal changes to remove `@atlaskit/theme/math` usage.
|
|
581
593
|
- Updated dependencies
|
|
582
594
|
|
|
583
595
|
## 15.6.1
|
|
584
596
|
|
|
585
597
|
### Patch Changes
|
|
586
598
|
|
|
587
|
-
- [`301bf1b9e08`](https://bitbucket.org/atlassian/atlassian-frontend/commits/301bf1b9e08) - Bring `withOuterListeners` HOC back so that Jira can continue use it
|
|
599
|
+
- [#14411](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14411) [`301bf1b9e08`](https://bitbucket.org/atlassian/atlassian-frontend/commits/301bf1b9e08) - Bring `withOuterListeners` HOC back so that Jira can continue use it
|
|
588
600
|
|
|
589
601
|
## 15.6.0
|
|
590
602
|
|
|
591
603
|
### Minor Changes
|
|
592
604
|
|
|
593
|
-
- [`d07a1ced0bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d07a1ced0bd) - Pass orgId on to service when querying team
|
|
605
|
+
- [#13464](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13464) [`d07a1ced0bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d07a1ced0bd) - Pass orgId on to service when querying team
|
|
594
606
|
|
|
595
607
|
## 15.5.12
|
|
596
608
|
|
|
597
609
|
### Patch Changes
|
|
598
610
|
|
|
599
|
-
- [`524b20aff9a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/524b20aff9a) - Update package.jsons to remove unused dependencies. Also excludes tests from some build tsconfigs
|
|
611
|
+
- [#13136](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13136) [`524b20aff9a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/524b20aff9a) - Update package.jsons to remove unused dependencies. Also excludes tests from some build tsconfigs
|
|
600
612
|
- [`3c0349f272a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3c0349f272a) - Update package.jsons to remove unused dependencies. Also excludes tests from some build tsconfigs
|
|
601
613
|
- [`591d34f966f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/591d34f966f) - Update package.jsons to remove unused dependencies. Also excludes tests from some build tsconfigs
|
|
602
614
|
|
|
@@ -610,13 +622,13 @@
|
|
|
610
622
|
|
|
611
623
|
### Patch Changes
|
|
612
624
|
|
|
613
|
-
- [`414b6216adf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/414b6216adf) - Upgrade date-fns to ^2.17
|
|
625
|
+
- [#9328](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9328) [`414b6216adf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/414b6216adf) - Upgrade date-fns to ^2.17
|
|
614
626
|
|
|
615
627
|
## 15.5.9
|
|
616
628
|
|
|
617
629
|
### Patch Changes
|
|
618
630
|
|
|
619
|
-
- [`d57d071183e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d57d071183e) - Fix a bug - should re-render ProfileCard when "resourceClient" prop is changed
|
|
631
|
+
- [#11951](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11951) [`d57d071183e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d57d071183e) - Fix a bug - should re-render ProfileCard when "resourceClient" prop is changed
|
|
620
632
|
|
|
621
633
|
## 15.5.8
|
|
622
634
|
|
|
@@ -628,37 +640,37 @@
|
|
|
628
640
|
|
|
629
641
|
### Patch Changes
|
|
630
642
|
|
|
631
|
-
- [`8b87ba0c18c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8b87ba0c18c) - Fix the behavior of command click and shift click on links
|
|
643
|
+
- [#10514](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10514) [`8b87ba0c18c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8b87ba0c18c) - Fix the behavior of command click and shift click on links
|
|
632
644
|
|
|
633
645
|
## 15.5.6
|
|
634
646
|
|
|
635
647
|
### Patch Changes
|
|
636
648
|
|
|
637
|
-
- [`f8cf7c90c94`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f8cf7c90c94) - Added error attributes to analytics after failures so we can track issue causes
|
|
649
|
+
- [#10136](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10136) [`f8cf7c90c94`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f8cf7c90c94) - Added error attributes to analytics after failures so we can track issue causes
|
|
638
650
|
|
|
639
651
|
## 15.5.5
|
|
640
652
|
|
|
641
653
|
### Patch Changes
|
|
642
654
|
|
|
643
|
-
- [`f5c41936feb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f5c41936feb) - Fix the props to allow better customization of links on avatars in team profilecards.
|
|
655
|
+
- [#9558](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9558) [`f5c41936feb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f5c41936feb) - Fix the props to allow better customization of links on avatars in team profilecards.
|
|
644
656
|
|
|
645
657
|
## 15.5.4
|
|
646
658
|
|
|
647
659
|
### Patch Changes
|
|
648
660
|
|
|
649
|
-
- [`9f19d3e89fe`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9f19d3e89fe) - CONFDEV-73945: Added optional customLozenges property to ProfileCardClientData so Typescript will allow custom UserProfileClients to add custom lozenges to the ProfileCard
|
|
661
|
+
- [#9460](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9460) [`9f19d3e89fe`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9f19d3e89fe) - CONFDEV-73945: Added optional customLozenges property to ProfileCardClientData so Typescript will allow custom UserProfileClients to add custom lozenges to the ProfileCard
|
|
650
662
|
|
|
651
663
|
## 15.5.3
|
|
652
664
|
|
|
653
665
|
### Patch Changes
|
|
654
666
|
|
|
655
|
-
- [`e7d0d61bfc0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e7d0d61bfc0) - Fixed analytics issues in Team Profilecard avatars and added key to User Profilecard lozenges
|
|
667
|
+
- [#9307](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9307) [`e7d0d61bfc0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e7d0d61bfc0) - Fixed analytics issues in Team Profilecard avatars and added key to User Profilecard lozenges
|
|
656
668
|
|
|
657
669
|
## 15.5.2
|
|
658
670
|
|
|
659
671
|
### Patch Changes
|
|
660
672
|
|
|
661
|
-
- [`471e2431a7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/471e2431a7c) - Downgrade back to date-fns 1.30.1
|
|
673
|
+
- [#9299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9299) [`471e2431a7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/471e2431a7c) - Downgrade back to date-fns 1.30.1
|
|
662
674
|
We discovered big bundle size increases associated with the date-fns upgrade.
|
|
663
675
|
We're reverting the upgarde to investigate
|
|
664
676
|
|
|
@@ -666,121 +678,121 @@
|
|
|
666
678
|
|
|
667
679
|
### Patch Changes
|
|
668
680
|
|
|
669
|
-
- [`70f0701c2e6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/70f0701c2e6) - Upgrade date-fns to 2.17
|
|
681
|
+
- [#8291](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8291) [`70f0701c2e6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/70f0701c2e6) - Upgrade date-fns to 2.17
|
|
670
682
|
|
|
671
683
|
## 15.5.0
|
|
672
684
|
|
|
673
685
|
### Minor Changes
|
|
674
686
|
|
|
675
|
-
- [`54f4ce55485`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54f4ce55485) - Changed ProfileCard's customLozenges' 'text' prop type to accept a ReactNode to allow internationalized <FormattedMessage> elements in addition to string
|
|
687
|
+
- [#9165](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9165) [`54f4ce55485`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54f4ce55485) - Changed ProfileCard's customLozenges' 'text' prop type to accept a ReactNode to allow internationalized <FormattedMessage> elements in addition to string
|
|
676
688
|
|
|
677
689
|
## 15.4.0
|
|
678
690
|
|
|
679
691
|
### Minor Changes
|
|
680
692
|
|
|
681
|
-
- [`e76cdc56e39`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e76cdc56e39) - Made cloudId optional, to increase usability in site-less contexts like new products.
|
|
693
|
+
- [#8973](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8973) [`e76cdc56e39`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e76cdc56e39) - Made cloudId optional, to increase usability in site-less contexts like new products.
|
|
682
694
|
|
|
683
695
|
## 15.3.1
|
|
684
696
|
|
|
685
697
|
### Patch Changes
|
|
686
698
|
|
|
687
|
-
- [`620ddc14690`](https://bitbucket.org/atlassian/atlassian-frontend/commits/620ddc14690) - [ux] Correct styling on Profile Card triggers
|
|
699
|
+
- [#9010](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9010) [`620ddc14690`](https://bitbucket.org/atlassian/atlassian-frontend/commits/620ddc14690) - [ux] Correct styling on Profile Card triggers
|
|
688
700
|
|
|
689
701
|
## 15.3.0
|
|
690
702
|
|
|
691
703
|
### Minor Changes
|
|
692
704
|
|
|
693
|
-
- [`5e7fbaa154f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5e7fbaa154f) - [ux] Added an optional prop to the Profilecard component for displaying custom lozenges
|
|
705
|
+
- [#8759](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8759) [`5e7fbaa154f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5e7fbaa154f) - [ux] Added an optional prop to the Profilecard component for displaying custom lozenges
|
|
694
706
|
|
|
695
707
|
## 15.2.0
|
|
696
708
|
|
|
697
709
|
### Minor Changes
|
|
698
710
|
|
|
699
|
-
- [`61544638935`](https://bitbucket.org/atlassian/atlassian-frontend/commits/61544638935) - Added analytics to the Team profile card
|
|
711
|
+
- [#8844](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8844) [`61544638935`](https://bitbucket.org/atlassian/atlassian-frontend/commits/61544638935) - Added analytics to the Team profile card
|
|
700
712
|
|
|
701
713
|
## 15.1.3
|
|
702
714
|
|
|
703
715
|
### Patch Changes
|
|
704
716
|
|
|
705
|
-
- [`11f5b0da43e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/11f5b0da43e) - [ux] Fix zIndex for profile card and team profile card
|
|
717
|
+
- [#8566](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8566) [`11f5b0da43e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/11f5b0da43e) - [ux] Fix zIndex for profile card and team profile card
|
|
706
718
|
|
|
707
719
|
## 15.1.2
|
|
708
720
|
|
|
709
721
|
### Patch Changes
|
|
710
722
|
|
|
711
|
-
- [`e104d184c58`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e104d184c58) - [ux] Enabled translations for team profile card messages
|
|
723
|
+
- [#8383](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8383) [`e104d184c58`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e104d184c58) - [ux] Enabled translations for team profile card messages
|
|
712
724
|
|
|
713
725
|
## 15.1.1
|
|
714
726
|
|
|
715
727
|
### Patch Changes
|
|
716
728
|
|
|
717
|
-
- [`771af9a49ed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/771af9a49ed) - [ux] Enable propagating onClick handlers to the Avatar Group
|
|
729
|
+
- [#8354](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8354) [`771af9a49ed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/771af9a49ed) - [ux] Enable propagating onClick handlers to the Avatar Group
|
|
718
730
|
|
|
719
731
|
## 15.1.0
|
|
720
732
|
|
|
721
733
|
### Minor Changes
|
|
722
734
|
|
|
723
|
-
- [`d30beab4f1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d30beab4f1e) - Introduce lazy loading for the team profile card
|
|
735
|
+
- [#8289](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8289) [`d30beab4f1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d30beab4f1e) - Introduce lazy loading for the team profile card
|
|
724
736
|
|
|
725
737
|
## 15.0.2
|
|
726
738
|
|
|
727
739
|
### Patch Changes
|
|
728
740
|
|
|
729
|
-
- [`1d2da620745`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1d2da620745) - [ux] Default to showing shadow around user profile cards
|
|
741
|
+
- [#8305](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8305) [`1d2da620745`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1d2da620745) - [ux] Default to showing shadow around user profile cards
|
|
730
742
|
|
|
731
743
|
## 15.0.1
|
|
732
744
|
|
|
733
745
|
### Patch Changes
|
|
734
746
|
|
|
735
|
-
- [`1e5d7f613f5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1e5d7f613f5) - [ux] Position the header image on team profile cards correctly
|
|
747
|
+
- [#8295](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8295) [`1e5d7f613f5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1e5d7f613f5) - [ux] Position the header image on team profile cards correctly
|
|
736
748
|
|
|
737
749
|
## 15.0.0
|
|
738
750
|
|
|
739
751
|
### Major Changes
|
|
740
752
|
|
|
741
|
-
- [`6d6aa2b4928`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6d6aa2b4928) - Introduced entrypoints to the profilecard package.
|
|
753
|
+
- [#8235](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8235) [`6d6aa2b4928`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6d6aa2b4928) - Introduced entrypoints to the profilecard package.
|
|
742
754
|
|
|
743
755
|
## 14.3.1
|
|
744
756
|
|
|
745
757
|
### Patch Changes
|
|
746
758
|
|
|
747
|
-
- [`537b933d68f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/537b933d68f) - [ux] Simplified the CSS being used and added improved testing
|
|
759
|
+
- [#8082](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8082) [`537b933d68f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/537b933d68f) - [ux] Simplified the CSS being used and added improved testing
|
|
748
760
|
|
|
749
761
|
## 14.3.0
|
|
750
762
|
|
|
751
763
|
### Minor Changes
|
|
752
764
|
|
|
753
|
-
- [`7ddbf962bd9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7ddbf962bd9) - [ux] Updated and added new translations
|
|
765
|
+
- [#7762](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7762) [`7ddbf962bd9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7ddbf962bd9) - [ux] Updated and added new translations
|
|
754
766
|
|
|
755
767
|
## 14.2.0
|
|
756
768
|
|
|
757
769
|
### Minor Changes
|
|
758
770
|
|
|
759
|
-
- [`78a52b31f84`](https://bitbucket.org/atlassian/atlassian-frontend/commits/78a52b31f84) - [ux] Added triggerLinkType prop to allow customisation of the link that wraps the trigger.
|
|
771
|
+
- [#7829](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7829) [`78a52b31f84`](https://bitbucket.org/atlassian/atlassian-frontend/commits/78a52b31f84) - [ux] Added triggerLinkType prop to allow customisation of the link that wraps the trigger.
|
|
760
772
|
|
|
761
773
|
## 14.1.0
|
|
762
774
|
|
|
763
775
|
### Minor Changes
|
|
764
776
|
|
|
765
|
-
- [`8263a7a153`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8263a7a153) - [ux] Update the user profile card trigger to use @atlaskit/popup for the popup behaviour, and remove/simplify unneeded code.
|
|
777
|
+
- [#7637](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7637) [`8263a7a153`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8263a7a153) - [ux] Update the user profile card trigger to use @atlaskit/popup for the popup behaviour, and remove/simplify unneeded code.
|
|
766
778
|
|
|
767
779
|
## 14.0.2
|
|
768
780
|
|
|
769
781
|
### Patch Changes
|
|
770
782
|
|
|
771
|
-
- [`9e021e9873`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e021e9873) - Added customisation to the new Team Profilecard examples.
|
|
783
|
+
- [#7625](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7625) [`9e021e9873`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e021e9873) - Added customisation to the new Team Profilecard examples.
|
|
772
784
|
|
|
773
785
|
## 14.0.1
|
|
774
786
|
|
|
775
787
|
### Patch Changes
|
|
776
788
|
|
|
777
|
-
- [`d2582c8e90`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d2582c8e90) - Export the TeamProfileCardTrigger
|
|
789
|
+
- [#7600](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7600) [`d2582c8e90`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d2582c8e90) - Export the TeamProfileCardTrigger
|
|
778
790
|
|
|
779
791
|
## 14.0.0
|
|
780
792
|
|
|
781
793
|
### Major Changes
|
|
782
794
|
|
|
783
|
-
- [`bc57b32d3a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc57b32d3a) - [ux] WARNING: This major release exists for testing purposes only. Avoid using this version as it contains some duplicated dependencies that will be improved in future when the next release is ready for use.
|
|
795
|
+
- [#7320](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7320) [`bc57b32d3a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc57b32d3a) - [ux] WARNING: This major release exists for testing purposes only. Avoid using this version as it contains some duplicated dependencies that will be improved in future when the next release is ready for use.
|
|
784
796
|
|
|
785
797
|
Introduced a new profile card type: the Team profile card. To support this new type, some changes have been made to the profile client structure to allow code reuse for managing both team and user profile card data collection.
|
|
786
798
|
|
|
@@ -788,7 +800,7 @@
|
|
|
788
800
|
|
|
789
801
|
### Patch Changes
|
|
790
802
|
|
|
791
|
-
- [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules compiler option.
|
|
803
|
+
- [#5497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5497) [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules compiler option.
|
|
792
804
|
This requires version 3.8 of Typescript, read more about how we handle Typescript versions here: https://atlaskit.atlassian.com/get-started
|
|
793
805
|
Also add `typescript` to `devDependencies` to denote version that the package was built with.
|
|
794
806
|
|
|
@@ -808,7 +820,7 @@
|
|
|
808
820
|
|
|
809
821
|
### Patch Changes
|
|
810
822
|
|
|
811
|
-
- [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded to TypeScript 3.9.6 and tslib to 2.0.0
|
|
823
|
+
- [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885) [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded to TypeScript 3.9.6 and tslib to 2.0.0
|
|
812
824
|
|
|
813
825
|
Since tslib is a dependency for all our packages we recommend that products also follow this tslib upgrade
|
|
814
826
|
to prevent duplicates of tslib being bundled.
|
|
@@ -817,14 +829,14 @@
|
|
|
817
829
|
|
|
818
830
|
### Patch Changes
|
|
819
831
|
|
|
820
|
-
- [`6262f382de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6262f382de) - Use the 'lodash' package instead of single-function 'lodash.\*' packages
|
|
832
|
+
- [#3823](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3823) [`6262f382de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6262f382de) - Use the 'lodash' package instead of single-function 'lodash.\*' packages
|
|
821
833
|
- Updated dependencies
|
|
822
834
|
|
|
823
835
|
## 13.0.2
|
|
824
836
|
|
|
825
837
|
### Patch Changes
|
|
826
838
|
|
|
827
|
-
- [`d03bff2147`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d03bff2147) - updated translations
|
|
839
|
+
- [#3369](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3369) [`d03bff2147`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d03bff2147) - updated translations
|
|
828
840
|
|
|
829
841
|
## 13.0.1
|
|
830
842
|
|
|
@@ -836,7 +848,7 @@
|
|
|
836
848
|
|
|
837
849
|
### Major Changes
|
|
838
850
|
|
|
839
|
-
- [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially dropping IE11 support, from this version onwards there are no warranties of the package working in IE11.
|
|
851
|
+
- [#3335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3335) [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially dropping IE11 support, from this version onwards there are no warranties of the package working in IE11.
|
|
840
852
|
For more information see: https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
|
|
841
853
|
|
|
842
854
|
### Patch Changes
|
|
@@ -853,19 +865,19 @@
|
|
|
853
865
|
|
|
854
866
|
### Patch Changes
|
|
855
867
|
|
|
856
|
-
- [`fc83c36503`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fc83c36503) - Update translation files via Traduki build
|
|
868
|
+
- [#2576](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2576) [`fc83c36503`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fc83c36503) - Update translation files via Traduki build
|
|
857
869
|
|
|
858
870
|
## 12.4.2
|
|
859
871
|
|
|
860
872
|
### Patch Changes
|
|
861
873
|
|
|
862
|
-
- [`39faba6e98`](https://bitbucket.org/atlassian/atlassian-frontend/commits/39faba6e98) - Update all the theme imports to something tree-shakable
|
|
874
|
+
- [#2891](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2891) [`39faba6e98`](https://bitbucket.org/atlassian/atlassian-frontend/commits/39faba6e98) - Update all the theme imports to something tree-shakable
|
|
863
875
|
|
|
864
876
|
## 12.4.1
|
|
865
877
|
|
|
866
878
|
### Patch Changes
|
|
867
879
|
|
|
868
|
-
- [`54d82b49f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54d82b49f0) - Remove unused dependencies
|
|
880
|
+
- [#2137](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2137) [`54d82b49f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54d82b49f0) - Remove unused dependencies
|
|
869
881
|
- [`baaad91b65`](https://bitbucket.org/atlassian/atlassian-frontend/commits/baaad91b65) - Updated to use the latest and more performant version of `@atlaskit/avatar`
|
|
870
882
|
- Updated dependencies
|
|
871
883
|
|