@backstage/plugin-auth-backend-module-oidc-provider 0.4.1-next.1 → 0.4.1-next.2

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 +10 -0
  2. package/README.md +1 -1
  3. package/package.json +6 -13
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @backstage/plugin-auth-backend-module-oidc-provider
2
2
 
3
+ ## 0.4.1-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - ce15e30: Fixed repository url in `README.md`
8
+ - Updated dependencies
9
+ - @backstage/backend-plugin-api@1.2.1-next.1
10
+ - @backstage/plugin-auth-backend@0.24.4-next.2
11
+ - @backstage/plugin-auth-node@0.6.1-next.1
12
+
3
13
  ## 0.4.1-next.1
4
14
 
5
15
  ### Patch Changes
package/README.md CHANGED
@@ -4,5 +4,5 @@ This module provides an Oidc auth provider implementation for `@backstage/plugin
4
4
 
5
5
  ## Links
6
6
 
7
- - [Repository](https://oidc.com/backstage/backstage/tree/master/plugins/auth-backend-module-oidc-provider)
7
+ - [Repository](https://github.com/backstage/backstage/tree/master/plugins/auth-backend-module-oidc-provider)
8
8
  - [Backstage Project Homepage](https://backstage.io)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-auth-backend-module-oidc-provider",
3
- "version": "0.4.1-next.1",
3
+ "version": "0.4.1-next.2",
4
4
  "description": "The oidc-provider backend module for the auth plugin.",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -38,16 +38,16 @@
38
38
  },
39
39
  "dependencies": {
40
40
  "@backstage/backend-plugin-api": "1.2.1-next.1",
41
- "@backstage/plugin-auth-backend": "0.24.4-next.1",
41
+ "@backstage/plugin-auth-backend": "0.24.4-next.2",
42
42
  "@backstage/plugin-auth-node": "0.6.1-next.1",
43
43
  "express": "^4.18.2",
44
44
  "openid-client": "^5.5.0",
45
45
  "passport": "^0.7.0"
46
46
  },
47
47
  "devDependencies": {
48
- "@backstage/backend-defaults": "0.8.2-next.1",
49
- "@backstage/backend-test-utils": "1.3.1-next.1",
50
- "@backstage/cli": "0.30.1-next.0",
48
+ "@backstage/backend-defaults": "0.8.2-next.2",
49
+ "@backstage/backend-test-utils": "1.3.1-next.2",
50
+ "@backstage/cli": "0.31.0-next.1",
51
51
  "@backstage/config": "1.3.2",
52
52
  "@backstage/types": "1.2.1",
53
53
  "cookie-parser": "^1.4.6",
@@ -57,12 +57,5 @@
57
57
  "msw": "^1.3.1",
58
58
  "supertest": "^7.0.0"
59
59
  },
60
- "configSchema": "config.d.ts",
61
- "typesVersions": {
62
- "*": {
63
- "index": [
64
- "dist/index.d.ts"
65
- ]
66
- }
67
- }
60
+ "configSchema": "config.d.ts"
68
61
  }