@backstage/plugin-auth-backend 0.17.2 → 0.17.3-next.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,31 @@
1
1
  # @backstage/plugin-auth-backend
2
2
 
3
+ ## 0.17.3-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-common@0.18.0-next.0
9
+ - @backstage/config@1.0.6-next.0
10
+ - @backstage/catalog-client@1.3.0-next.1
11
+ - @backstage/catalog-model@1.1.5-next.1
12
+ - @backstage/errors@1.1.4
13
+ - @backstage/types@1.0.2
14
+ - @backstage/plugin-auth-node@0.2.9-next.0
15
+
16
+ ## 0.17.3-next.0
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies
21
+ - @backstage/catalog-model@1.1.5-next.0
22
+ - @backstage/catalog-client@1.3.0-next.0
23
+ - @backstage/backend-common@0.17.0
24
+ - @backstage/config@1.0.5
25
+ - @backstage/errors@1.1.4
26
+ - @backstage/types@1.0.2
27
+ - @backstage/plugin-auth-node@0.2.8
28
+
3
29
  ## 0.17.2
4
30
 
5
31
  ### Patch Changes
package/dist/index.cjs.js CHANGED
@@ -259,7 +259,7 @@ const postMessageResponse = (res, appOrigin, response) => {
259
259
  res.setHeader("Content-Type", "text/html");
260
260
  res.setHeader("X-Frame-Options", "sameorigin");
261
261
  res.setHeader("Content-Security-Policy", `script-src 'sha256-${hash}'`);
262
- res.end(`<html><body><script>${script}</script></body></html>`);
262
+ res.end(`<html><body><script>${script}<\/script></body></html>`);
263
263
  };
264
264
  const ensuresXRequestedWith = (req) => {
265
265
  const requiredHeader = req.header("X-Requested-With");