@backstage/backend-plugin-api 1.3.1-next.1 → 1.3.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,34 @@
1
1
  # @backstage/backend-plugin-api
2
2
 
3
+ ## 1.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - acea1d4: update documentation
8
+ - 72d019d: Removed various typos
9
+ - d385854: Minor doc comment update
10
+ - Updated dependencies
11
+ - @backstage/plugin-auth-node@0.6.3
12
+ - @backstage/plugin-permission-common@0.9.0
13
+ - @backstage/plugin-permission-node@0.10.0
14
+ - @backstage/config@1.3.2
15
+ - @backstage/cli-common@0.1.15
16
+ - @backstage/errors@1.2.7
17
+ - @backstage/types@1.2.1
18
+
19
+ ## 1.3.1-next.2
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies
24
+ - @backstage/plugin-auth-node@0.6.3-next.2
25
+ - @backstage/cli-common@0.1.15
26
+ - @backstage/config@1.3.2
27
+ - @backstage/errors@1.2.7
28
+ - @backstage/types@1.2.1
29
+ - @backstage/plugin-permission-common@0.9.0-next.0
30
+ - @backstage/plugin-permission-node@0.10.0-next.2
31
+
3
32
  ## 1.3.1-next.1
4
33
 
5
34
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/backend-plugin-api",
3
- "version": "1.3.1-next.1",
3
+ "version": "1.3.1",
4
4
  "description": "Core API used by Backstage backend plugins",
5
5
  "backstage": {
6
6
  "role": "node-library"
@@ -65,21 +65,21 @@
65
65
  "test": "backstage-cli package test"
66
66
  },
67
67
  "dependencies": {
68
- "@backstage/cli-common": "0.1.15",
69
- "@backstage/config": "1.3.2",
70
- "@backstage/errors": "1.2.7",
71
- "@backstage/plugin-auth-node": "0.6.3-next.1",
72
- "@backstage/plugin-permission-common": "0.9.0-next.0",
73
- "@backstage/plugin-permission-node": "0.10.0-next.1",
74
- "@backstage/types": "1.2.1",
68
+ "@backstage/cli-common": "^0.1.15",
69
+ "@backstage/config": "^1.3.2",
70
+ "@backstage/errors": "^1.2.7",
71
+ "@backstage/plugin-auth-node": "^0.6.3",
72
+ "@backstage/plugin-permission-common": "^0.9.0",
73
+ "@backstage/plugin-permission-node": "^0.10.0",
74
+ "@backstage/types": "^1.2.1",
75
75
  "@types/express": "^4.17.6",
76
76
  "@types/luxon": "^3.0.0",
77
77
  "knex": "^3.0.0",
78
78
  "luxon": "^3.0.0"
79
79
  },
80
80
  "devDependencies": {
81
- "@backstage/backend-test-utils": "1.5.0-next.1",
82
- "@backstage/cli": "0.32.1-next.1"
81
+ "@backstage/backend-test-utils": "^1.5.0",
82
+ "@backstage/cli": "^0.32.1"
83
83
  },
84
84
  "configSchema": "config.d.ts"
85
85
  }