@backstage/core-plugin-api 1.0.7-next.2 → 1.1.0-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,27 @@
1
1
  # @backstage/core-plugin-api
2
2
 
3
+ ## 1.1.0-next.0
4
+
5
+ ### Minor Changes
6
+
7
+ - a228f113d0: The app `Router` component now accepts an optional `basename` property.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @backstage/types@1.0.1-next.0
13
+ - @backstage/config@1.0.4-next.0
14
+ - @backstage/version-bridge@1.0.1
15
+
16
+ ## 1.0.7
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies
21
+ - @backstage/config@1.0.3
22
+ - @backstage/types@1.0.0
23
+ - @backstage/version-bridge@1.0.1
24
+
3
25
  ## 1.0.7-next.2
4
26
 
5
27
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/core-plugin-api",
3
- "version": "1.0.7-next.2",
3
+ "version": "1.1.0-next.0",
4
4
  "main": "../dist/index.esm.js",
5
5
  "types": "../dist/index.alpha.d.ts"
6
6
  }
@@ -271,7 +271,9 @@ export declare type AppComponents = {
271
271
  NotFoundErrorPage: ComponentType<{}>;
272
272
  BootErrorPage: ComponentType<BootErrorPageProps>;
273
273
  Progress: ComponentType<{}>;
274
- Router: ComponentType<{}>;
274
+ Router: ComponentType<{
275
+ basename?: string;
276
+ }>;
275
277
  ErrorBoundaryFallback: ComponentType<ErrorBoundaryFallbackProps>;
276
278
  ThemeProvider?: ComponentType<{}>;
277
279
  /**
@@ -271,7 +271,9 @@ export declare type AppComponents = {
271
271
  NotFoundErrorPage: ComponentType<{}>;
272
272
  BootErrorPage: ComponentType<BootErrorPageProps>;
273
273
  Progress: ComponentType<{}>;
274
- Router: ComponentType<{}>;
274
+ Router: ComponentType<{
275
+ basename?: string;
276
+ }>;
275
277
  ErrorBoundaryFallback: ComponentType<ErrorBoundaryFallbackProps>;
276
278
  ThemeProvider?: ComponentType<{}>;
277
279
  /**
package/dist/index.d.ts CHANGED
@@ -271,7 +271,9 @@ export declare type AppComponents = {
271
271
  NotFoundErrorPage: ComponentType<{}>;
272
272
  BootErrorPage: ComponentType<BootErrorPageProps>;
273
273
  Progress: ComponentType<{}>;
274
- Router: ComponentType<{}>;
274
+ Router: ComponentType<{
275
+ basename?: string;
276
+ }>;
275
277
  ErrorBoundaryFallback: ComponentType<ErrorBoundaryFallbackProps>;
276
278
  ThemeProvider?: ComponentType<{}>;
277
279
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/core-plugin-api",
3
3
  "description": "Core API used by Backstage plugins",
4
- "version": "1.0.7-next.2",
4
+ "version": "1.1.0-next.0",
5
5
  "publishConfig": {
6
6
  "access": "public",
7
7
  "main": "dist/index.esm.js",
@@ -33,8 +33,8 @@
33
33
  "start": "backstage-cli package start"
34
34
  },
35
35
  "dependencies": {
36
- "@backstage/config": "^1.0.3-next.2",
37
- "@backstage/types": "^1.0.0",
36
+ "@backstage/config": "^1.0.4-next.0",
37
+ "@backstage/types": "^1.0.1-next.0",
38
38
  "@backstage/version-bridge": "^1.0.1",
39
39
  "history": "^5.0.0",
40
40
  "prop-types": "^15.7.2",
@@ -46,9 +46,9 @@
46
46
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
47
47
  },
48
48
  "devDependencies": {
49
- "@backstage/cli": "^0.20.0-next.2",
50
- "@backstage/core-app-api": "^1.1.1-next.2",
51
- "@backstage/test-utils": "^1.2.1-next.2",
49
+ "@backstage/cli": "^0.21.0-next.0",
50
+ "@backstage/core-app-api": "^1.2.0-next.0",
51
+ "@backstage/test-utils": "^1.2.2-next.0",
52
52
  "@testing-library/jest-dom": "^5.10.1",
53
53
  "@testing-library/react": "^12.1.3",
54
54
  "@testing-library/react-hooks": "^8.0.0",