@forge/csp 1.7.1 → 1.8.1-next.0
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,30 @@
|
|
|
1
1
|
# @forge/csp
|
|
2
2
|
|
|
3
|
+
## 1.8.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 04e4152: Enabling new frame ancestors '_.atl-paas.net' and '_.atlassian.com'
|
|
8
|
+
|
|
9
|
+
## 1.8.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- d5f3fac: Remove deprecated method for handling CSP user config
|
|
14
|
+
- f002362: Revert change for deprecated CSP
|
|
15
|
+
|
|
16
|
+
## 1.8.0-next.1
|
|
17
|
+
|
|
18
|
+
### Minor Changes
|
|
19
|
+
|
|
20
|
+
- f002362: Revert change for deprecated CSP
|
|
21
|
+
|
|
22
|
+
## 1.8.0-next.0
|
|
23
|
+
|
|
24
|
+
### Minor Changes
|
|
25
|
+
|
|
26
|
+
- d5f3fac: Remove deprecated method for handling CSP user config
|
|
27
|
+
|
|
3
28
|
## 1.7.1
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"csp-injection-service.d.ts","sourceRoot":"","sources":["../../src/csp/csp-injection-service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AAE3D,OAAO,EAAE,UAAU,EAAmB,MAAM,UAAU,CAAC;AAUvD,qBAAa,mBAAmB;IAC9B,OAAO,CAAC,eAAe;IAQvB,OAAO,CAAC,iBAAiB;IAIzB,OAAO,CAAC,qBAAqB;IAI7B,OAAO,CAAC,iBAAiB;
|
|
1
|
+
{"version":3,"file":"csp-injection-service.d.ts","sourceRoot":"","sources":["../../src/csp/csp-injection-service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AAE3D,OAAO,EAAE,UAAU,EAAmB,MAAM,UAAU,CAAC;AAUvD,qBAAa,mBAAmB;IAC9B,OAAO,CAAC,eAAe;IAQvB,OAAO,CAAC,iBAAiB;IAIzB,OAAO,CAAC,qBAAqB;IAI7B,OAAO,CAAC,iBAAiB;IAalB,gBAAgB,uBACD,UAAU,OACzB,iBAAiB,gDAErB,MAAM,EAAE,CA4CT;CACH"}
|
|
@@ -69,13 +69,14 @@ class CSPInjectionService {
|
|
|
69
69
|
}
|
|
70
70
|
getFrameAncestors(env) {
|
|
71
71
|
if (env === 'prod')
|
|
72
|
-
return ['*.atlassian.net', 'bitbucket.org', '*.jira.com'];
|
|
72
|
+
return ['*.atlassian.net', 'bitbucket.org', '*.jira.com', '*.atlassian.com'];
|
|
73
73
|
return [
|
|
74
74
|
'*.jira-dev.com',
|
|
75
75
|
'http://localhost:*',
|
|
76
76
|
'*.devbucket.org',
|
|
77
77
|
'https://staging.bb-inf.net',
|
|
78
|
-
'https://integration.bb-inf.net'
|
|
78
|
+
'https://integration.bb-inf.net',
|
|
79
|
+
'*.atl-paas.net'
|
|
79
80
|
];
|
|
80
81
|
}
|
|
81
82
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/csp",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.1-next.0",
|
|
4
4
|
"description": "Contains the CSP configuration for Custom UI resources in Forge",
|
|
5
5
|
"main": "out/index.js",
|
|
6
6
|
"author": "Atlassian",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"clean": "rm -rf ./out && rm -f tsconfig.tsbuildinfo"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"@forge/cli-shared": "^2.1.1",
|
|
15
|
-
"@forge/manifest": "^2.
|
|
14
|
+
"@forge/cli-shared": "^2.1.6-next.1",
|
|
15
|
+
"@forge/manifest": "^2.5.1-next.0",
|
|
16
16
|
"@types/jest": "^26.0.0"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|