@backstage/plugin-auth-backend-module-okta-provider 0.2.1-next.0 → 0.2.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 +17 -0
  2. package/README.md +1 -1
  3. package/package.json +8 -15
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @backstage/plugin-auth-backend-module-okta-provider
2
2
 
3
+ ## 0.2.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-node@0.6.1-next.1
11
+
12
+ ## 0.2.1-next.1
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies
17
+ - @backstage/plugin-auth-node@0.6.1-next.1
18
+ - @backstage/backend-plugin-api@1.2.1-next.1
19
+
3
20
  ## 0.2.1-next.0
4
21
 
5
22
  ### Patch Changes
package/README.md CHANGED
@@ -26,5 +26,5 @@ export const okta = createAuthProviderIntegration({
26
26
 
27
27
  ## Links
28
28
 
29
- - [Repository](https://okta.com/backstage/backstage/tree/master/plugins/auth-backend-module-okta-provider)
29
+ - [Repository](https://github.com/backstage/backstage/tree/master/plugins/auth-backend-module-okta-provider)
30
30
  - [Backstage Project Homepage](https://backstage.io)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-auth-backend-module-okta-provider",
3
- "version": "0.2.1-next.0",
3
+ "version": "0.2.1-next.2",
4
4
  "description": "The okta-provider backend module for the auth plugin.",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -37,26 +37,19 @@
37
37
  "test": "backstage-cli package test"
38
38
  },
39
39
  "dependencies": {
40
- "@backstage/backend-plugin-api": "1.2.1-next.0",
41
- "@backstage/plugin-auth-node": "0.6.1-next.0",
40
+ "@backstage/backend-plugin-api": "1.2.1-next.1",
41
+ "@backstage/plugin-auth-node": "0.6.1-next.1",
42
42
  "@davidzemon/passport-okta-oauth": "^0.0.5",
43
43
  "express": "^4.18.2",
44
44
  "passport": "^0.7.0"
45
45
  },
46
46
  "devDependencies": {
47
- "@backstage/backend-defaults": "0.8.2-next.0",
48
- "@backstage/backend-test-utils": "1.3.1-next.0",
49
- "@backstage/cli": "0.30.0",
50
- "@backstage/plugin-auth-backend": "0.24.4-next.0",
47
+ "@backstage/backend-defaults": "0.8.2-next.2",
48
+ "@backstage/backend-test-utils": "1.3.1-next.2",
49
+ "@backstage/cli": "0.31.0-next.1",
50
+ "@backstage/plugin-auth-backend": "0.24.4-next.2",
51
51
  "@backstage/types": "1.2.1",
52
52
  "supertest": "^7.0.0"
53
53
  },
54
- "configSchema": "config.d.ts",
55
- "typesVersions": {
56
- "*": {
57
- "index": [
58
- "dist/index.d.ts"
59
- ]
60
- }
61
- }
54
+ "configSchema": "config.d.ts"
62
55
  }