@forge/tunnel 1.9.0 → 2.0.0-next.2
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 +27 -0
- package/out/index.js +1 -1
- package/package.json +4 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @forge/tunnel
|
|
2
2
|
|
|
3
|
+
## 2.0.0-next.2
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- 5972825c: Refuse to store credentials in plaintext
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [edab85a5]
|
|
12
|
+
- Updated dependencies [5972825c]
|
|
13
|
+
- @forge/cli-shared@3.0.0-next.0
|
|
14
|
+
- @forge/bundler@3.0.12-next.0
|
|
15
|
+
|
|
16
|
+
## 1.9.1-next.1
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies [36612fd]
|
|
21
|
+
- @forge/runtime@2.3.0-next.1
|
|
22
|
+
|
|
23
|
+
## 1.9.1-next.0
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- Updated dependencies [23c1a25d]
|
|
28
|
+
- @forge/runtime@2.3.0-next.0
|
|
29
|
+
|
|
3
30
|
## 1.9.0
|
|
4
31
|
|
|
5
32
|
### Minor Changes
|
package/out/index.js
CHANGED
|
@@ -14,7 +14,7 @@ const fileWriter = new cli_shared_1.FileSystemWriter();
|
|
|
14
14
|
const configFile = new cli_shared_1.ConfigFile(fileReader, fileWriter);
|
|
15
15
|
const appConfigReader = cli_shared_1.configFileReaderForSection(cli_shared_1.appConfigKey, cli_shared_1.appConfigShape, configFile);
|
|
16
16
|
const assertiveAppConfigReader = cli_shared_1.assertiveAppConfigProvider(appConfigReader);
|
|
17
|
-
const credentialsGetter = cli_shared_1.
|
|
17
|
+
const credentialsGetter = cli_shared_1.getCredentialStore(ui);
|
|
18
18
|
const authenticator = new cli_shared_1.PersonalTokenAuthenticator(credentialsGetter);
|
|
19
19
|
const createGraphQLClient = (auth) => {
|
|
20
20
|
const minimalGraphQLRunner = new cli_shared_1.MinimalGraphQLRunner(auth, graphqlGateway, tunnelling_1.getCliDetails());
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/tunnel",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-next.2",
|
|
4
4
|
"description": "Tunnel functionality for Forge CLI",
|
|
5
5
|
"author": "Atlassian",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
"postbuild": "chmod +x out/*.js"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@forge/bundler": "3.0.
|
|
20
|
-
"@forge/cli-shared": "
|
|
19
|
+
"@forge/bundler": "3.0.12-next.0",
|
|
20
|
+
"@forge/cli-shared": "3.0.0-next.0",
|
|
21
21
|
"@forge/csp": "^1.11.0",
|
|
22
22
|
"@forge/isolated-vm": "3.3.10",
|
|
23
|
-
"@forge/runtime": "2.
|
|
23
|
+
"@forge/runtime": "2.3.0-next.1",
|
|
24
24
|
"express": "^4.17.1",
|
|
25
25
|
"express-mung": "^0.5.1",
|
|
26
26
|
"http-proxy-middleware": "^1.0.6",
|
|
@@ -42,8 +42,5 @@
|
|
|
42
42
|
"@types/uuid": "^3.4.7",
|
|
43
43
|
"node-fetch": "2.6.1",
|
|
44
44
|
"supertest": "^6.1.3"
|
|
45
|
-
},
|
|
46
|
-
"optionalDependencies": {
|
|
47
|
-
"keytar": "^7.0.0"
|
|
48
45
|
}
|
|
49
46
|
}
|