@backstage/plugin-catalog-import 0.8.4 → 0.8.5-next.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,17 @@
1
1
  # @backstage/plugin-catalog-import
2
2
 
3
+ ## 0.8.5-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - bf95bb806c: Remove usages of now-removed `CatalogApi.getEntityByName`
8
+ - Updated dependencies
9
+ - @backstage/plugin-catalog-react@0.9.0-next.0
10
+ - @backstage/core-components@0.9.1-next.0
11
+ - @backstage/catalog-model@0.13.0-next.0
12
+ - @backstage/catalog-client@0.9.0-next.0
13
+ - @backstage/integration-react@0.1.25-next.0
14
+
3
15
  ## 0.8.4
4
16
 
5
17
  ### Patch Changes
@@ -29,4 +29,4 @@ const ImportPage = () => {
29
29
  };
30
30
 
31
31
  export { ImportPage };
32
- //# sourceMappingURL=index-d57d1027.esm.js.map
32
+ //# sourceMappingURL=index-c1a26cbe.esm.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index-d57d1027.esm.js","sources":["../../src/components/ImportPage/ImportPage.tsx"],"sourcesContent":["/*\n * Copyright 2020 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport React from 'react';\nimport { useOutlet } from 'react-router';\nimport { DefaultImportPage } from '../DefaultImportPage';\n\n/**\n * The whole catalog import page.\n *\n * @public\n */\nexport const ImportPage = () => {\n const outlet = useOutlet();\n\n return outlet || <DefaultImportPage />;\n};\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;MAyBa,aAAa,MAAM;AAC9B,QAAM,SAAS;AAEf,SAAO,8CAAW,mBAAD;AAAA;;;;"}
1
+ {"version":3,"file":"index-c1a26cbe.esm.js","sources":["../../src/components/ImportPage/ImportPage.tsx"],"sourcesContent":["/*\n * Copyright 2020 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport React from 'react';\nimport { useOutlet } from 'react-router';\nimport { DefaultImportPage } from '../DefaultImportPage';\n\n/**\n * The whole catalog import page.\n *\n * @public\n */\nexport const ImportPage = () => {\n const outlet = useOutlet();\n\n return outlet || <DefaultImportPage />;\n};\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;MAyBa,aAAa,MAAM;AAC9B,QAAM,SAAS;AAEf,SAAO,8CAAW,mBAAD;AAAA;;;;"}
package/dist/index.esm.js CHANGED
@@ -317,7 +317,7 @@ const catalogImportPlugin = createPlugin({
317
317
  });
318
318
  const CatalogImportPage = catalogImportPlugin.provide(createRoutableExtension({
319
319
  name: "CatalogImportPage",
320
- component: () => import('./esm/index-d57d1027.esm.js').then((m) => m.ImportPage),
320
+ component: () => import('./esm/index-c1a26cbe.esm.js').then((m) => m.ImportPage),
321
321
  mountPoint: rootRouteRef
322
322
  }));
323
323
 
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.4",
4
+ "version": "0.8.5-next.0",
5
5
  "main": "dist/index.esm.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -34,15 +34,15 @@
34
34
  "clean": "backstage-cli package clean"
35
35
  },
36
36
  "dependencies": {
37
- "@backstage/catalog-client": "^0.8.0",
38
- "@backstage/catalog-model": "^0.12.0",
37
+ "@backstage/catalog-client": "^0.9.0-next.0",
38
+ "@backstage/catalog-model": "^0.13.0-next.0",
39
39
  "@backstage/config": "^0.1.15",
40
- "@backstage/core-components": "^0.9.0",
40
+ "@backstage/core-components": "^0.9.1-next.0",
41
41
  "@backstage/core-plugin-api": "^0.8.0",
42
42
  "@backstage/errors": "^0.2.2",
43
43
  "@backstage/integration": "^0.8.0",
44
- "@backstage/integration-react": "^0.1.24",
45
- "@backstage/plugin-catalog-react": "^0.8.0",
44
+ "@backstage/integration-react": "^0.1.25-next.0",
45
+ "@backstage/plugin-catalog-react": "^0.9.0-next.0",
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",
@@ -60,9 +60,9 @@
60
60
  "react": "^16.13.1 || ^17.0.0"
61
61
  },
62
62
  "devDependencies": {
63
- "@backstage/cli": "^0.15.0",
63
+ "@backstage/cli": "^0.15.2-next.0",
64
64
  "@backstage/core-app-api": "^0.6.0",
65
- "@backstage/dev-utils": "^0.2.24",
65
+ "@backstage/dev-utils": "^0.2.25-next.0",
66
66
  "@backstage/test-utils": "^0.3.0",
67
67
  "@testing-library/jest-dom": "^5.10.1",
68
68
  "@testing-library/react": "^11.2.5",
@@ -77,5 +77,5 @@
77
77
  "config.d.ts"
78
78
  ],
79
79
  "configSchema": "config.d.ts",
80
- "gitHead": "04bb0dd824b78f6b57dac62c3015e681f094045c"
80
+ "gitHead": "e90d3ed129ebfce978f1adfa40c1dc2cef3f7e65"
81
81
  }