@backstage/backend-app-api 0.7.0 → 0.7.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @backstage/backend-app-api
2
2
 
3
+ ## 0.7.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 3554ebe: Move the JWKS registration outside of the lifecycle middleware
8
+
3
9
  ## 0.7.0
4
10
 
5
11
  ### Minor Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/backend-app-api",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
package/dist/index.cjs.js CHANGED
@@ -3314,8 +3314,8 @@ const httpRouterServiceFactory = backendPluginApi.createServiceFactory(
3314
3314
  httpAuth,
3315
3315
  config
3316
3316
  });
3317
- router.use(createLifecycleMiddleware({ lifecycle }));
3318
3317
  router.use(createAuthIntegrationRouter({ auth }));
3318
+ router.use(createLifecycleMiddleware({ lifecycle }));
3319
3319
  router.use(credentialsBarrier.middleware);
3320
3320
  router.use(createCookieAuthRefreshMiddleware({ auth, httpAuth }));
3321
3321
  return {