@backstage/core-components 0.11.0-next.2 → 0.11.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @backstage/core-components
2
2
 
3
+ ## 0.11.0
4
+
5
+ ### Minor Changes
6
+
7
+ - d0eefc499a: Made the `to` prop of `Button` and `Link` more strict, only supporting plain strings. It used to be the case that this prop was unexpectedly too liberal, making it look like we supported the complex `react-router-dom` object form of the parameter as well, which led to unexpected results at runtime.
8
+
9
+ ### Patch Changes
10
+
11
+ - a22af3edc8: Adding a `className` prop to the `MarkdownContent` component
12
+ - Updated dependencies
13
+ - @backstage/core-plugin-api@1.0.5
14
+
3
15
  ## 0.11.0-next.2
4
16
 
5
17
  ### Minor Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/core-components",
3
3
  "description": "Core components used by Backstage plugins and apps",
4
- "version": "0.11.0-next.2",
4
+ "version": "0.11.0",
5
5
  "private": false,
6
6
  "publishConfig": {
7
7
  "access": "public",
@@ -34,7 +34,7 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "@backstage/config": "^1.0.1",
37
- "@backstage/core-plugin-api": "^1.0.5-next.0",
37
+ "@backstage/core-plugin-api": "^1.0.5",
38
38
  "@backstage/errors": "^1.1.0",
39
39
  "@backstage/theme": "^0.2.16",
40
40
  "@backstage/version-bridge": "^1.0.1",
@@ -79,9 +79,9 @@
79
79
  "react-dom": "^16.13.1 || ^17.0.0"
80
80
  },
81
81
  "devDependencies": {
82
- "@backstage/cli": "^0.18.1-next.1",
83
- "@backstage/core-app-api": "^1.0.5-next.0",
84
- "@backstage/test-utils": "^1.1.3-next.0",
82
+ "@backstage/cli": "^0.18.1",
83
+ "@backstage/core-app-api": "^1.0.5",
84
+ "@backstage/test-utils": "^1.1.3",
85
85
  "@testing-library/jest-dom": "^5.10.1",
86
86
  "@testing-library/react": "^12.1.3",
87
87
  "@testing-library/react-hooks": "^8.0.0",
@@ -106,5 +106,5 @@
106
106
  "files": [
107
107
  "dist"
108
108
  ],
109
- "gitHead": "9b7d23351cdbe29fb16060f6f9e8442932d3fa29"
109
+ "gitHead": "a12f6269e3bf224aa7f52475be9152bc52addeed"
110
110
  }