@sap-ux/deploy-tooling 0.15.22 → 0.15.24

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.
Files changed (2) hide show
  1. package/README.md +13 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -127,7 +127,7 @@ Options:
127
127
  --username ABAP Service username
128
128
  --password ABAP Service password
129
129
  --authentication-type Authentication type for the app (e.g. 'basic', 'reentranceTicket'). Required for 'reentranceTicket'.
130
- --create-transport Create a transport request during deployment
130
+ --create-transport Create a transport request during deployment/undeployment
131
131
  --transport <transport-request> Transport number to record the change in the ABAP system
132
132
  --name <bsp-name> Project name of the app
133
133
  --no-strict-ssl Deactivate SSL certificate validation, enabled by default
@@ -213,3 +213,15 @@ Options:
213
213
  -v, --version version of the deploy tooling
214
214
  -h, --help display help for command
215
215
  ```
216
+
217
+ ### Proxy Support
218
+
219
+ To enable support for TLS (Transport Layer Security) connections when using `HTTPS_PROXY`, update your environment by setting the `TOOLSUITE_FEATURES` environment variable with `sap.ux.enablePatchProxy`, as shown;
220
+
221
+ ```bash
222
+ export TOOLSUITE_FEATURES=sap.ux.enablePatchProxy
223
+ export HTTPS_PROXY=<YOUR-PROXY:PORT>
224
+ ```
225
+ Example Scenario
226
+
227
+ If you're using a proxy server to route your HTTPS traffic, the proxy server will need to create a secure, TLS-encrypted connection to the target server on your behalf. `tls.connect()` will be used to establish that encrypted tunnel between your client, the proxy, and the server.
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "bugs": {
10
10
  "url": "https://github.com/SAP/open-ux-tools/issues?q=is%3Aopen+is%3Aissue+label%3Abug+label%3Adeploy-tooling"
11
11
  },
12
- "version": "0.15.22",
12
+ "version": "0.15.24",
13
13
  "license": "Apache-2.0",
14
14
  "author": "@SAP/ux-tools-team",
15
15
  "main": "dist/index.js",
@@ -32,10 +32,10 @@
32
32
  "prompts": "2.4.2",
33
33
  "adm-zip": "0.5.10",
34
34
  "chalk": "4.1.2",
35
- "@sap-ux/axios-extension": "1.16.7",
35
+ "@sap-ux/axios-extension": "1.17.1",
36
36
  "@sap-ux/btp-utils": "0.15.2",
37
37
  "@sap-ux/logger": "0.6.0",
38
- "@sap-ux/system-access": "0.5.14",
38
+ "@sap-ux/system-access": "0.5.16",
39
39
  "@sap-ux/ui5-config": "0.25.1",
40
40
  "@sap-ux/project-input-validator": "0.3.3"
41
41
  },