@axis-backstage/plugin-readme 0.3.0 → 0.5.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 (3) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +1 -1
  3. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @axis-backstage/plugin-readme
2
2
 
3
+ ## 0.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 08961a1: Bump to react v.18 in app and plugins, and updated dependencies. "peer" is now react 18 + 17. Removed react v. 16.13.1
8
+
9
+ ## 0.4.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 864d983: Bumped Backstage version to v.1.22.0
14
+
3
15
  ## 0.3.0
4
16
 
5
17
  ### Minor Changes
package/README.md CHANGED
@@ -41,7 +41,7 @@ import { ReadmeCard } from '@axis-backstage/plugin-readme';
41
41
 
42
42
  const overviewContent = (
43
43
  ...
44
- <Grid item md={6} sx={12}>
44
+ <Grid item md={6} xs={12}>
45
45
  <ReadmeCard />
46
46
  </Grid>
47
47
  ...
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axis-backstage/plugin-readme",
3
- "version": "0.3.0",
3
+ "version": "0.5.0",
4
4
  "main": "dist/index.esm.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "license": "Apache-2.0",
@@ -24,9 +24,9 @@
24
24
  },
25
25
  "dependencies": {
26
26
  "@backstage/catalog-model": "^1.4.3",
27
- "@backstage/core-components": "^0.13.9",
28
- "@backstage/core-plugin-api": "^1.8.1",
29
- "@backstage/plugin-catalog-react": "^1.9.2",
27
+ "@backstage/core-components": "^0.13.10",
28
+ "@backstage/core-plugin-api": "^1.8.2",
29
+ "@backstage/plugin-catalog-react": "^1.9.3",
30
30
  "@backstage/theme": "^0.5.0",
31
31
  "@mui/icons-material": "^5.15.1",
32
32
  "@mui/material": "^5.15.1",
@@ -35,15 +35,15 @@
35
35
  "peerDependencies": {
36
36
  "@emotion/react": "^11.11.1",
37
37
  "@emotion/styled": "^11.11.0",
38
- "react": "^16.13.1 || ^17.0.0"
38
+ "react": "^17.0.0 || ^18.0.0"
39
39
  },
40
40
  "devDependencies": {
41
- "@backstage/cli": "^0.25.0",
42
- "@backstage/core-app-api": "^1.11.2",
43
- "@backstage/dev-utils": "^1.0.25",
44
- "@backstage/test-utils": "^1.4.6",
45
- "@testing-library/jest-dom": "^5.10.1",
46
- "@testing-library/react": "^12.1.3",
41
+ "@backstage/cli": "^0.25.1",
42
+ "@backstage/core-app-api": "^1.11.3",
43
+ "@backstage/dev-utils": "^1.0.26",
44
+ "@backstage/test-utils": "^1.4.7",
45
+ "@testing-library/jest-dom": "6.0.0",
46
+ "@testing-library/react": "^14.0.0",
47
47
  "@testing-library/user-event": "^14.0.0",
48
48
  "msw": "^1.0.0"
49
49
  },