@backstage/plugin-auth-node 0.1.0 → 0.1.3

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 +31 -0
  2. package/package.json +18 -14
package/CHANGELOG.md CHANGED
@@ -1,5 +1,36 @@
1
1
  # @backstage/plugin-auth-node
2
2
 
3
+ ## 0.1.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-common@0.11.0
9
+ - @backstage/catalog-model@0.11.0
10
+
11
+ ## 0.1.2
12
+
13
+ ### Patch Changes
14
+
15
+ - Fix for the previous release with missing type declarations.
16
+ - Updated dependencies
17
+ - @backstage/backend-common@0.10.9
18
+ - @backstage/catalog-model@0.10.1
19
+ - @backstage/config@0.1.15
20
+ - @backstage/errors@0.2.2
21
+
22
+ ## 0.1.1
23
+
24
+ ### Patch Changes
25
+
26
+ - 1ed305728b: Bump `node-fetch` to version 2.6.7 and `cross-fetch` to version 3.1.5
27
+ - c77c5c7eb6: Added `backstage.role` to `package.json`
28
+ - Updated dependencies
29
+ - @backstage/backend-common@0.10.8
30
+ - @backstage/errors@0.2.1
31
+ - @backstage/catalog-model@0.10.0
32
+ - @backstage/config@0.1.14
33
+
3
34
  ## 0.1.0
4
35
 
5
36
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-auth-node",
3
- "version": "0.1.0",
3
+ "version": "0.1.3",
4
4
  "main": "dist/index.cjs.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "license": "Apache-2.0",
@@ -10,30 +10,34 @@
10
10
  "main": "dist/index.cjs.js",
11
11
  "types": "dist/index.d.ts"
12
12
  },
13
+ "backstage": {
14
+ "role": "node-library"
15
+ },
13
16
  "scripts": {
14
- "build": "backstage-cli backend:build",
15
- "lint": "backstage-cli lint",
16
- "test": "backstage-cli test",
17
- "prepack": "backstage-cli prepack",
18
- "postpack": "backstage-cli postpack",
19
- "clean": "backstage-cli clean"
17
+ "build": "backstage-cli package build",
18
+ "lint": "backstage-cli package lint",
19
+ "test": "backstage-cli package test",
20
+ "prepack": "backstage-cli package prepack",
21
+ "postpack": "backstage-cli package postpack",
22
+ "clean": "backstage-cli package clean",
23
+ "start": "backstage-cli package start"
20
24
  },
21
25
  "dependencies": {
22
- "@backstage/backend-common": "^0.10.7",
23
- "@backstage/catalog-model": "^0.9.10",
24
- "@backstage/config": "^0.1.13",
25
- "@backstage/errors": "^0.2.0",
26
+ "@backstage/backend-common": "^0.11.0",
27
+ "@backstage/catalog-model": "^0.11.0",
28
+ "@backstage/config": "^0.1.15",
29
+ "@backstage/errors": "^0.2.2",
26
30
  "jose": "^1.27.1",
27
- "node-fetch": "^2.6.1",
31
+ "node-fetch": "^2.6.7",
28
32
  "winston": "^3.2.1"
29
33
  },
30
34
  "devDependencies": {
31
- "@backstage/cli": "^0.13.2",
35
+ "@backstage/cli": "^0.14.1",
32
36
  "msw": "^0.35.0",
33
37
  "uuid": "^8.0.0"
34
38
  },
35
39
  "files": [
36
40
  "dist"
37
41
  ],
38
- "gitHead": "4f4bc77a4152d372b10a4e8d97d92f00e23f3b56"
42
+ "gitHead": "a15da6ea1e3e8adc37be98be064071c8b5279b4a"
39
43
  }