@sap-ux/deploy-tooling 0.16.15 → 0.16.16

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/README.md CHANGED
@@ -216,12 +216,21 @@ Options:
216
216
 
217
217
  ### Proxy Support
218
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;
219
+ To enable support for TLS (Transport Layer Security) connections when using `HTTPS_PROXY`, update your environment by setting the `HTTPS_PROXY` environment variable, as shown;
220
220
 
221
221
  ```bash
222
- export TOOLSUITE_FEATURES=sap.ux.enablePatchProxy
223
222
  export HTTPS_PROXY=<YOUR-PROXY:PORT>
224
223
  ```
224
+
225
+ In order to support credentials in the proxy URL, you can set the `HTTPS_PROXY` environment variable to include the username and password in the URL. For example:
226
+
227
+ ```bash
228
+ export HTTPS_PROXY=http://user:password@proxy.domain.com:3128
229
+ ```
230
+
231
+ Ensure you restart any running processes to apply the changes.
232
+
225
233
  Example Scenario
226
234
 
227
235
  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.
236
+
package/dist/cli/index.js CHANGED
@@ -47,7 +47,7 @@ function createCommand(name) {
47
47
  .option('--name <bsp-name>', 'Project name of the app')
48
48
  .option('--no-strict-ssl', 'Deactivate certificate validation', true)
49
49
  .option('--query-params <param1=value&param2=value>', 'Additional parameters that are to be added to calls to the target.')
50
- .option('--test', `Run in test mode. ABAP backend reports ${name}ment errors without actually ${name}ing (use --no-test to deactivate it).`);
50
+ .option('--test', `Run in test mode. ABAP backend reports ${name}ment errors without actually ${name}ing.`);
51
51
  if (name === 'deploy') {
52
52
  // additional parameters for deployment
53
53
  command
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.16.15",
12
+ "version": "0.16.16",
13
13
  "license": "Apache-2.0",
14
14
  "author": "@SAP/ux-tools-team",
15
15
  "main": "dist/index.js",
@@ -32,13 +32,13 @@
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.22.1",
35
+ "@sap-ux/axios-extension": "1.22.2",
36
+ "@sap-ux/btp-utils": "1.1.0",
36
37
  "@sap-ux/inquirer-common": "0.7.13",
37
38
  "@sap-ux/logger": "0.7.0",
38
- "@sap-ux/btp-utils": "1.1.0",
39
- "@sap-ux/system-access": "0.6.6",
40
- "@sap-ux/ui5-config": "0.28.2",
41
- "@sap-ux/project-input-validator": "0.6.3"
39
+ "@sap-ux/system-access": "0.6.7",
40
+ "@sap-ux/project-input-validator": "0.6.3",
41
+ "@sap-ux/ui5-config": "0.28.2"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/prompts": "2.4.4",