@atlaskit/smart-user-picker 11.7.0 → 11.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,47 @@
1
1
  # @atlassian/smart-user-picker
2
2
 
3
+ ## 11.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`942e8a15cbdf1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/942e8a15cbdf1) -
8
+ Update i18n NPM package versions for linking-platform,smart-experiences (Group 15)
9
+
10
+ ## 11.7.1
11
+
12
+ ### Patch Changes
13
+
14
+ - [`0927c3666c010`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0927c3666c010) -
15
+ Upgrade `uuid` from `3.x` to `11.1.1` to remediate GHSA-w5hq-g745-h8pq / SNYK-JS-UUID-16133035.
16
+
17
+ `uuid@11` removed the deep subpath exports (`uuid/v4`, `uuid/v1`, `uuid/v5`) and the default
18
+ export, so all internal call sites were migrated to named imports:
19
+
20
+ ```diff
21
+ -import uuid from 'uuid/v4';
22
+ +import { v4 as uuid } from 'uuid';
23
+
24
+ -import uuid from 'uuid';
25
+ +import { v4 as uuid } from 'uuid';
26
+ ```
27
+
28
+ With the exception of `@atlassian/integrations` (below), this is an internal implementation change
29
+ only - no public API, export, or entrypoint changed. UUID generation behaviour is unchanged
30
+ (`uuid@3`'s default export was already `v4`).
31
+
32
+ `@atlassian/integrations` declares `uuid` as a peer dependency, so its declared range moved from
33
+ `^3.1.0` to `^11.1.1`. That is a peer dependency declaration change, hence `minor` rather than
34
+ `patch` for that package.
35
+
36
+ The following `platform/packages/ai-mate` packages were also touched, but are all `private: true`
37
+ and so are intentionally not listed in the frontmatter above:
38
+ - `@atlassian/csm-assistance-service` - bumped its explicit `uuid` dependency from `npm:^9.0.0` to
39
+ `npm:^11.1.1` (`9.0.1` is also within the advisory's affected range).
40
+ - `@atlassian/csm-guidance-config` - example helper only, migrated to the named `uuid` import.
41
+ - `@atlassian/csm-ui-components` - example helper only, migrated to the named `uuid` import.
42
+
43
+ - Updated dependencies
44
+
3
45
  ## 11.7.0
4
46
 
5
47
  ### Minor Changes
@@ -4,4 +4,4 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.packageVersion = void 0;
7
- var packageVersion = exports.packageVersion = "11.7.0";
7
+ var packageVersion = exports.packageVersion = "11.7.1";
@@ -1 +1 @@
1
- export const packageVersion = "11.7.0";
1
+ export const packageVersion = "11.7.1";
@@ -1 +1 @@
1
- export var packageVersion = "11.7.0";
1
+ export var packageVersion = "11.7.1";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/smart-user-picker",
3
- "version": "11.7.0",
3
+ "version": "11.8.0",
4
4
  "license": "Apache-2.0",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -26,7 +26,7 @@
26
26
  }
27
27
  },
28
28
  "dependencies": {
29
- "@atlaskit/afm-i18n-platform-smart-experiences-smart-user-picker": "2.238.0",
29
+ "@atlaskit/afm-i18n-platform-smart-experiences-smart-user-picker": "2.243.0",
30
30
  "@atlaskit/analytics-next": "^12.5.0",
31
31
  "@atlaskit/platform-feature-flags": "^2.2.0",
32
32
  "@atlaskit/ufo": "^1.2.0",
@@ -34,7 +34,7 @@
34
34
  "@babel/runtime": "^7.0.0",
35
35
  "lodash": "^4.17.21",
36
36
  "memoize-one": "^6.0.0",
37
- "uuid": "^3.1.0"
37
+ "uuid": "^11.1.1"
38
38
  },
39
39
  "peerDependencies": {
40
40
  "react": "^18.2.0",
@@ -48,7 +48,8 @@
48
48
  "@atlaskit/util-data-test": "^19.1.0",
49
49
  "@atlassian/a11y-jest-testing": "^0.17.0",
50
50
  "@atlassian/feature-flags-test-utils": "^1.3.0",
51
- "@atlassian/integrations": "^33.8.0",
51
+ "@atlassian/integrations": "^33.10.0",
52
+ "@atlassian/workbench": "workspace:*",
52
53
  "@testing-library/dom": "^10.1.0",
53
54
  "@testing-library/react": "^16.3.0",
54
55
  "@testing-library/user-event": "^14.4.3",