@backstage/core-components 0.12.1-next.2 → 0.12.1-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,17 @@
1
1
  # @backstage/core-components
2
2
 
3
+ ## 0.12.1-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 91bba69ef8: Internal refactor to remove deprecated symbols.
8
+ - Updated dependencies
9
+ - @backstage/config@1.0.5-next.1
10
+ - @backstage/core-plugin-api@1.2.0-next.2
11
+ - @backstage/errors@1.1.4-next.1
12
+ - @backstage/theme@0.2.16
13
+ - @backstage/version-bridge@1.0.3-next.0
14
+
3
15
  ## 0.12.1-next.2
4
16
 
5
17
  ### Patch Changes
package/dist/index.esm.js CHANGED
@@ -6074,7 +6074,7 @@ function tokenToExpiry(jwtToken) {
6074
6074
  return fallback;
6075
6075
  }
6076
6076
  const [_header, rawPayload, _signature] = jwtToken.split(".");
6077
- const payload = JSON.parse(atob(rawPayload));
6077
+ const payload = JSON.parse(window.atob(rawPayload));
6078
6078
  if (typeof payload.exp !== "number") {
6079
6079
  return fallback;
6080
6080
  }
@@ -6240,7 +6240,7 @@ class GuestUserIdentity {
6240
6240
 
6241
6241
  function parseJwtPayload(token) {
6242
6242
  const [_header, payload, _signature] = token.split(".");
6243
- return JSON.parse(atob(payload));
6243
+ return JSON.parse(window.atob(payload));
6244
6244
  }
6245
6245
  class LegacyUserIdentity {
6246
6246
  constructor(result) {