@backstage/plugin-catalog-import 0.8.10-next.3 → 0.8.10

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 (2) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/package.json +16 -16
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @backstage/plugin-catalog-import
2
2
 
3
+ ## 0.8.10
4
+
5
+ ### Patch Changes
6
+
7
+ - 9de15a41d7: Upgrade @octokit/rest to 19.0.3
8
+ - a70869e775: Updated dependency `msw` to `^0.43.0`.
9
+ - 72622d9143: Updated dependency `yaml` to `^2.0.0`.
10
+ - 8006d0f9bf: Updated dependency `msw` to `^0.44.0`.
11
+ - e2d7b76f43: Upgrade git-url-parse to 12.0.0.
12
+
13
+ Motivation for upgrade is transitively upgrading parse-url which is vulnerable
14
+ to several CVEs detected by Snyk.
15
+
16
+ - SNYK-JS-PARSEURL-2935944
17
+ - SNYK-JS-PARSEURL-2935947
18
+ - SNYK-JS-PARSEURL-2936249
19
+
20
+ - 272106fdad: Support use without `integrations` or only integrations without frontend visible properties (e.g., `bitbucketCloud`) being configured by checking `integrations.github` directly without attempting to load `integrations`.
21
+ - Updated dependencies
22
+ - @backstage/core-components@0.10.0
23
+ - @backstage/catalog-model@1.1.0
24
+ - @backstage/core-plugin-api@1.0.4
25
+ - @backstage/integration@1.2.2
26
+ - @backstage/catalog-client@1.0.4
27
+ - @backstage/integration-react@1.1.2
28
+ - @backstage/plugin-catalog-react@1.1.2
29
+ - @backstage/errors@1.1.0
30
+
3
31
  ## 0.8.10-next.3
4
32
 
5
33
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-import",
3
3
  "description": "A Backstage plugin the helps you import entities into your catalog",
4
- "version": "0.8.10-next.3",
4
+ "version": "0.8.10",
5
5
  "main": "dist/index.esm.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -34,19 +34,19 @@
34
34
  "clean": "backstage-cli package clean"
35
35
  },
36
36
  "dependencies": {
37
- "@backstage/catalog-client": "^1.0.4-next.2",
38
- "@backstage/catalog-model": "^1.1.0-next.3",
37
+ "@backstage/catalog-client": "^1.0.4",
38
+ "@backstage/catalog-model": "^1.1.0",
39
39
  "@backstage/config": "^1.0.1",
40
- "@backstage/core-components": "^0.10.0-next.3",
41
- "@backstage/core-plugin-api": "^1.0.4-next.0",
42
- "@backstage/errors": "^1.1.0-next.0",
43
- "@backstage/integration": "^1.2.2-next.3",
44
- "@backstage/integration-react": "^1.1.2-next.3",
45
- "@backstage/plugin-catalog-react": "^1.1.2-next.3",
40
+ "@backstage/core-components": "^0.10.0",
41
+ "@backstage/core-plugin-api": "^1.0.4",
42
+ "@backstage/errors": "^1.1.0",
43
+ "@backstage/integration": "^1.2.2",
44
+ "@backstage/integration-react": "^1.1.2",
45
+ "@backstage/plugin-catalog-react": "^1.1.2",
46
46
  "@material-ui/core": "^4.12.2",
47
47
  "@material-ui/icons": "^4.9.1",
48
48
  "@material-ui/lab": "4.0.0-alpha.57",
49
- "@octokit/rest": "^18.5.3",
49
+ "@octokit/rest": "^19.0.3",
50
50
  "git-url-parse": "^12.0.0",
51
51
  "js-base64": "^3.6.0",
52
52
  "lodash": "^4.17.21",
@@ -60,22 +60,22 @@
60
60
  "react": "^16.13.1 || ^17.0.0"
61
61
  },
62
62
  "devDependencies": {
63
- "@backstage/cli": "^0.18.0-next.3",
64
- "@backstage/core-app-api": "^1.0.4-next.1",
65
- "@backstage/dev-utils": "^1.0.4-next.3",
66
- "@backstage/test-utils": "^1.1.2-next.2",
63
+ "@backstage/cli": "^0.18.0",
64
+ "@backstage/core-app-api": "^1.0.4",
65
+ "@backstage/dev-utils": "^1.0.4",
66
+ "@backstage/test-utils": "^1.1.2",
67
67
  "@testing-library/jest-dom": "^5.10.1",
68
68
  "@testing-library/react": "^12.1.3",
69
69
  "@testing-library/react-hooks": "^8.0.0",
70
70
  "@testing-library/user-event": "^14.0.0",
71
71
  "@types/jest": "^26.0.7",
72
72
  "cross-fetch": "^3.1.5",
73
- "msw": "^0.43.0"
73
+ "msw": "^0.44.0"
74
74
  },
75
75
  "files": [
76
76
  "dist",
77
77
  "config.d.ts"
78
78
  ],
79
79
  "configSchema": "config.d.ts",
80
- "gitHead": "291b3a07233061266d9f3ce431345bf19fa4bbd5"
80
+ "gitHead": "999878d8f1ae30f6a15925816af2016cb9d717a1"
81
81
  }