@backstage/plugin-auth-backend-module-github-provider 0.1.0-next.1 → 0.1.0-next.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,39 @@
1
1
  # @backstage/plugin-auth-backend-module-github-provider
2
2
 
3
+ ## 0.1.0-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 71114ac50e02: The export for the new backend system has been moved to be the `default` export.
8
+
9
+ For example, if you are currently importing the plugin using the following pattern:
10
+
11
+ ```ts
12
+ import { examplePlugin } from '@backstage/plugin-example-backend';
13
+
14
+ backend.add(examplePlugin);
15
+ ```
16
+
17
+ It should be migrated to this:
18
+
19
+ ```ts
20
+ backend.add(import('@backstage/plugin-example-backend'));
21
+ ```
22
+
23
+ - Updated dependencies
24
+ - @backstage/backend-plugin-api@0.6.3-next.3
25
+ - @backstage/backend-common@0.19.5-next.3
26
+ - @backstage/plugin-auth-node@0.3.0-next.3
27
+
28
+ ## 0.1.0-next.2
29
+
30
+ ### Patch Changes
31
+
32
+ - Updated dependencies
33
+ - @backstage/backend-common@0.19.5-next.2
34
+ - @backstage/plugin-auth-node@0.3.0-next.2
35
+ - @backstage/backend-plugin-api@0.6.3-next.2
36
+
3
37
  ## 0.1.0-next.1
4
38
 
5
39
  ### Patch Changes
package/dist/index.cjs.js CHANGED
@@ -116,6 +116,6 @@ const authModuleGithubProvider = backendPluginApi.createBackendModule({
116
116
  }
117
117
  });
118
118
 
119
- exports.authModuleGithubProvider = authModuleGithubProvider;
119
+ exports["default"] = authModuleGithubProvider;
120
120
  exports.githubAuthenticator = githubAuthenticator;
121
121
  //# sourceMappingURL=index.cjs.js.map
package/dist/index.d.ts CHANGED
@@ -20,4 +20,4 @@ declare namespace githubSignInResolvers {
20
20
  const usernameMatchingUserEntityName: _backstage_plugin_auth_node.SignInResolverFactory<OAuthAuthenticatorResult<PassportProfile>, unknown>;
21
21
  }
22
22
 
23
- export { authModuleGithubProvider, githubAuthenticator, githubSignInResolvers };
23
+ export { authModuleGithubProvider as default, githubAuthenticator, githubSignInResolvers };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-auth-backend-module-github-provider",
3
3
  "description": "The github-provider backend module for the auth plugin.",
4
- "version": "0.1.0-next.1",
4
+ "version": "0.1.0-next.3",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -23,16 +23,16 @@
23
23
  "postpack": "backstage-cli package postpack"
24
24
  },
25
25
  "dependencies": {
26
- "@backstage/backend-common": "^0.19.5-next.1",
27
- "@backstage/backend-plugin-api": "^0.6.3-next.1",
28
- "@backstage/plugin-auth-node": "^0.3.0-next.1",
26
+ "@backstage/backend-common": "^0.19.5-next.3",
27
+ "@backstage/backend-plugin-api": "^0.6.3-next.3",
28
+ "@backstage/plugin-auth-node": "^0.3.0-next.3",
29
29
  "passport-github2": "^0.1.12"
30
30
  },
31
31
  "devDependencies": {
32
- "@backstage/backend-defaults": "^0.2.3-next.1",
33
- "@backstage/backend-test-utils": "^0.2.3-next.1",
34
- "@backstage/cli": "^0.22.13-next.1",
35
- "@backstage/plugin-auth-backend": "^0.18.9-next.1",
32
+ "@backstage/backend-defaults": "^0.2.3-next.3",
33
+ "@backstage/backend-test-utils": "^0.2.3-next.3",
34
+ "@backstage/cli": "^0.22.13-next.3",
35
+ "@backstage/plugin-auth-backend": "^0.19.0-next.3",
36
36
  "supertest": "^6.3.3"
37
37
  },
38
38
  "files": [