@backstage/plugin-catalog 1.29.1-next.0 → 1.29.1-next.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # @backstage/plugin-catalog
2
2
 
3
+ ## 1.29.1-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - fb58f20: Internal update to use the new `pluginId` option of `createFrontendPlugin`.
8
+ - Updated dependencies
9
+ - @backstage/core-components@0.17.2-next.0
10
+ - @backstage/frontend-plugin-api@0.10.2-next.0
11
+ - @backstage/core-compat-api@0.4.2-next.1
12
+ - @backstage/plugin-search-react@1.9.0-next.0
13
+ - @backstage/plugin-catalog-react@1.18.0-next.1
14
+ - @backstage/integration-react@1.2.7-next.1
15
+ - @backstage/catalog-client@1.10.0-next.0
16
+ - @backstage/catalog-model@1.7.3
17
+ - @backstage/core-plugin-api@1.10.6
18
+ - @backstage/errors@1.2.7
19
+ - @backstage/types@1.2.1
20
+ - @backstage/version-bridge@1.0.11
21
+ - @backstage/plugin-catalog-common@1.1.4-next.0
22
+ - @backstage/plugin-permission-react@0.4.34-next.0
23
+ - @backstage/plugin-scaffolder-common@1.5.11-next.0
24
+ - @backstage/plugin-search-common@1.2.18-next.0
25
+
3
26
  ## 1.29.1-next.0
4
27
 
5
28
  ### Patch Changes
@@ -12,7 +12,7 @@ import searchResultItems from './searchResultItems.esm.js';
12
12
  import contextMenuItems from './contextMenuItems.esm.js';
13
13
 
14
14
  var plugin = createFrontendPlugin({
15
- id: "catalog",
15
+ pluginId: "catalog",
16
16
  routes: convertLegacyRouteRefs({
17
17
  catalogIndex: rootRouteRef,
18
18
  catalogEntity: entityRouteRef
@@ -1 +1 @@
1
- {"version":3,"file":"plugin.esm.js","sources":["../../src/alpha/plugin.tsx"],"sourcesContent":["/*\n * Copyright 2023 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 { convertLegacyRouteRefs } from '@backstage/core-compat-api';\nimport { createFrontendPlugin } from '@backstage/frontend-plugin-api';\n\nimport { entityRouteRef } from '@backstage/plugin-catalog-react';\n\nimport {\n createComponentRouteRef,\n createFromTemplateRouteRef,\n rootRouteRef,\n unregisterRedirectRouteRef,\n viewTechDocRouteRef,\n} from '../routes';\n\nimport apis from './apis';\nimport pages from './pages';\nimport filters from './filters';\nimport navItems from './navItems';\nimport entityCards from './entityCards';\nimport entityContents from './entityContents';\nimport searchResultItems from './searchResultItems';\nimport contextMenuItems from './contextMenuItems';\n\n/** @alpha */\nexport default createFrontendPlugin({\n id: 'catalog',\n routes: convertLegacyRouteRefs({\n catalogIndex: rootRouteRef,\n catalogEntity: entityRouteRef,\n }),\n externalRoutes: convertLegacyRouteRefs({\n viewTechDoc: viewTechDocRouteRef,\n createComponent: createComponentRouteRef,\n createFromTemplate: createFromTemplateRouteRef,\n unregisterRedirect: unregisterRedirectRouteRef,\n }),\n extensions: [\n ...apis,\n ...pages,\n ...filters,\n ...navItems,\n ...entityCards,\n ...entityContents,\n ...contextMenuItems,\n ...searchResultItems,\n ],\n});\n"],"names":[],"mappings":";;;;;;;;;;;;;AAuCA,aAAe,oBAAqB,CAAA;AAAA,EAClC,EAAI,EAAA,SAAA;AAAA,EACJ,QAAQ,sBAAuB,CAAA;AAAA,IAC7B,YAAc,EAAA,YAAA;AAAA,IACd,aAAe,EAAA;AAAA,GAChB,CAAA;AAAA,EACD,gBAAgB,sBAAuB,CAAA;AAAA,IACrC,WAAa,EAAA,mBAAA;AAAA,IACb,eAAiB,EAAA,uBAAA;AAAA,IACjB,kBAAoB,EAAA,0BAAA;AAAA,IACpB,kBAAoB,EAAA;AAAA,GACrB,CAAA;AAAA,EACD,UAAY,EAAA;AAAA,IACV,GAAG,IAAA;AAAA,IACH,GAAG,KAAA;AAAA,IACH,GAAG,OAAA;AAAA,IACH,GAAG,QAAA;AAAA,IACH,GAAG,WAAA;AAAA,IACH,GAAG,cAAA;AAAA,IACH,GAAG,gBAAA;AAAA,IACH,GAAG;AAAA;AAEP,CAAC,CAAA;;;;"}
1
+ {"version":3,"file":"plugin.esm.js","sources":["../../src/alpha/plugin.tsx"],"sourcesContent":["/*\n * Copyright 2023 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 { convertLegacyRouteRefs } from '@backstage/core-compat-api';\nimport { createFrontendPlugin } from '@backstage/frontend-plugin-api';\n\nimport { entityRouteRef } from '@backstage/plugin-catalog-react';\n\nimport {\n createComponentRouteRef,\n createFromTemplateRouteRef,\n rootRouteRef,\n unregisterRedirectRouteRef,\n viewTechDocRouteRef,\n} from '../routes';\n\nimport apis from './apis';\nimport pages from './pages';\nimport filters from './filters';\nimport navItems from './navItems';\nimport entityCards from './entityCards';\nimport entityContents from './entityContents';\nimport searchResultItems from './searchResultItems';\nimport contextMenuItems from './contextMenuItems';\n\n/** @alpha */\nexport default createFrontendPlugin({\n pluginId: 'catalog',\n routes: convertLegacyRouteRefs({\n catalogIndex: rootRouteRef,\n catalogEntity: entityRouteRef,\n }),\n externalRoutes: convertLegacyRouteRefs({\n viewTechDoc: viewTechDocRouteRef,\n createComponent: createComponentRouteRef,\n createFromTemplate: createFromTemplateRouteRef,\n unregisterRedirect: unregisterRedirectRouteRef,\n }),\n extensions: [\n ...apis,\n ...pages,\n ...filters,\n ...navItems,\n ...entityCards,\n ...entityContents,\n ...contextMenuItems,\n ...searchResultItems,\n ],\n});\n"],"names":[],"mappings":";;;;;;;;;;;;;AAuCA,aAAe,oBAAqB,CAAA;AAAA,EAClC,QAAU,EAAA,SAAA;AAAA,EACV,QAAQ,sBAAuB,CAAA;AAAA,IAC7B,YAAc,EAAA,YAAA;AAAA,IACd,aAAe,EAAA;AAAA,GAChB,CAAA;AAAA,EACD,gBAAgB,sBAAuB,CAAA;AAAA,IACrC,WAAa,EAAA,mBAAA;AAAA,IACb,eAAiB,EAAA,uBAAA;AAAA,IACjB,kBAAoB,EAAA,0BAAA;AAAA,IACpB,kBAAoB,EAAA;AAAA,GACrB,CAAA;AAAA,EACD,UAAY,EAAA;AAAA,IACV,GAAG,IAAA;AAAA,IACH,GAAG,KAAA;AAAA,IACH,GAAG,OAAA;AAAA,IACH,GAAG,QAAA;AAAA,IACH,GAAG,WAAA;AAAA,IACH,GAAG,cAAA;AAAA,IACH,GAAG,gBAAA;AAAA,IACH,GAAG;AAAA;AAEP,CAAC,CAAA;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog",
3
- "version": "1.29.1-next.0",
3
+ "version": "1.29.1-next.1",
4
4
  "description": "The Backstage plugin for browsing the Backstage catalog",
5
5
  "backstage": {
6
6
  "role": "frontend-plugin",
@@ -72,18 +72,18 @@
72
72
  "dependencies": {
73
73
  "@backstage/catalog-client": "1.10.0-next.0",
74
74
  "@backstage/catalog-model": "1.7.3",
75
- "@backstage/core-compat-api": "0.4.2-next.0",
76
- "@backstage/core-components": "0.17.1",
75
+ "@backstage/core-compat-api": "0.4.2-next.1",
76
+ "@backstage/core-components": "0.17.2-next.0",
77
77
  "@backstage/core-plugin-api": "1.10.6",
78
78
  "@backstage/errors": "1.2.7",
79
- "@backstage/frontend-plugin-api": "0.10.1",
80
- "@backstage/integration-react": "1.2.7-next.0",
81
- "@backstage/plugin-catalog-common": "1.1.3",
82
- "@backstage/plugin-catalog-react": "1.18.0-next.0",
83
- "@backstage/plugin-permission-react": "0.4.33",
84
- "@backstage/plugin-scaffolder-common": "1.5.10",
85
- "@backstage/plugin-search-common": "1.2.17",
86
- "@backstage/plugin-search-react": "1.8.8",
79
+ "@backstage/frontend-plugin-api": "0.10.2-next.0",
80
+ "@backstage/integration-react": "1.2.7-next.1",
81
+ "@backstage/plugin-catalog-common": "1.1.4-next.0",
82
+ "@backstage/plugin-catalog-react": "1.18.0-next.1",
83
+ "@backstage/plugin-permission-react": "0.4.34-next.0",
84
+ "@backstage/plugin-scaffolder-common": "1.5.11-next.0",
85
+ "@backstage/plugin-search-common": "1.2.18-next.0",
86
+ "@backstage/plugin-search-react": "1.9.0-next.0",
87
87
  "@backstage/types": "1.2.1",
88
88
  "@backstage/version-bridge": "1.0.11",
89
89
  "@material-ui/core": "^4.12.2",
@@ -100,12 +100,12 @@
100
100
  "zen-observable": "^0.10.0"
101
101
  },
102
102
  "devDependencies": {
103
- "@backstage/cli": "0.32.1-next.0",
103
+ "@backstage/cli": "0.32.1-next.1",
104
104
  "@backstage/core-app-api": "1.16.1",
105
- "@backstage/dev-utils": "1.1.10-next.0",
106
- "@backstage/frontend-test-utils": "0.3.2-next.0",
107
- "@backstage/plugin-permission-common": "0.8.4",
108
- "@backstage/test-utils": "1.7.7",
105
+ "@backstage/dev-utils": "1.1.10-next.1",
106
+ "@backstage/frontend-test-utils": "0.3.2-next.1",
107
+ "@backstage/plugin-permission-common": "0.9.0-next.0",
108
+ "@backstage/test-utils": "1.7.8-next.0",
109
109
  "@testing-library/dom": "^10.0.0",
110
110
  "@testing-library/jest-dom": "^6.0.0",
111
111
  "@testing-library/react": "^16.0.0",