@salesforce/cli 2.0.0-beta.49 → 2.0.0-beta.51

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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.0.0-beta.49",
2
+ "version": "2.0.0-beta.51",
3
3
  "commands": {
4
4
  "cmdt:generate:field": {
5
5
  "id": "cmdt:generate:field",
@@ -4240,6 +4240,78 @@
4240
4240
  "requiresProject": true,
4241
4241
  "hasDynamicHelp": true
4242
4242
  },
4243
+ "package:version:retrieve": {
4244
+ "id": "package:version:retrieve",
4245
+ "summary": "Retrieve package metadata for a specified package version.",
4246
+ "description": "Retrieving a package version downloads the metadata into the directory you specify.\n\nYou can retrieve metadata for a second- or first-generation managed package, or an unlocked package.\n\nSpecify the subscriber package version ID (starts with 04t) and the path to an empty directory when you run this command.",
4247
+ "strict": true,
4248
+ "pluginName": "@salesforce/plugin-packaging",
4249
+ "pluginAlias": "@salesforce/plugin-packaging",
4250
+ "pluginType": "jit",
4251
+ "hidden": true,
4252
+ "aliases": [],
4253
+ "examples": [
4254
+ "Retrieve package metadata for a subscriber package version ID (starts with 04t) into my-folder/ within your Salesforce DX project directory:\n<%= config.bin %> <%= command.id %> --package 04t... --output-dir my-folder –-target-org my-scratch\nIf you omit --target-org, this command runs against your default org."
4255
+ ],
4256
+ "flags": {
4257
+ "json": {
4258
+ "name": "json",
4259
+ "type": "boolean",
4260
+ "description": "Format output as json.",
4261
+ "helpGroup": "GLOBAL",
4262
+ "allowNo": false
4263
+ },
4264
+ "loglevel": {
4265
+ "name": "loglevel",
4266
+ "type": "option",
4267
+ "hidden": true,
4268
+ "multiple": false,
4269
+ "deprecated": {
4270
+ "message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
4271
+ }
4272
+ },
4273
+ "api-version": {
4274
+ "name": "api-version",
4275
+ "type": "option",
4276
+ "description": "Override the api version used for api requests made by this command",
4277
+ "multiple": false,
4278
+ "aliases": [
4279
+ "apiversion"
4280
+ ]
4281
+ },
4282
+ "target-org": {
4283
+ "name": "target-org",
4284
+ "type": "option",
4285
+ "char": "o",
4286
+ "summary": "Username or alias of the target org.",
4287
+ "required": true,
4288
+ "multiple": false,
4289
+ "aliases": [
4290
+ "targetusername",
4291
+ "u"
4292
+ ]
4293
+ },
4294
+ "package": {
4295
+ "name": "package",
4296
+ "type": "option",
4297
+ "char": "p",
4298
+ "summary": "Subscriber package version ID (starts with 04t).",
4299
+ "required": true,
4300
+ "multiple": false
4301
+ },
4302
+ "output-dir": {
4303
+ "name": "output-dir",
4304
+ "type": "option",
4305
+ "char": "d",
4306
+ "summary": "Path within your Salesforce DX project directory in which to download the metadata. This directory must be empty.",
4307
+ "multiple": false,
4308
+ "default": "force-app"
4309
+ }
4310
+ },
4311
+ "args": {},
4312
+ "requiresProject": true,
4313
+ "hasDynamicHelp": true
4314
+ },
4243
4315
  "package:version:update": {
4244
4316
  "id": "package:version:update",
4245
4317
  "summary": "Update a package version.",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
3
  "description": "The Salesforce CLI",
4
- "version": "2.0.0-beta.49",
4
+ "version": "2.0.0-beta.51",
5
5
  "author": "Salesforce",
6
6
  "bin": {
7
7
  "sf": "./bin/run",
@@ -69,15 +69,15 @@
69
69
  "@salesforce/plugin-user"
70
70
  ],
71
71
  "jitPlugins": {
72
- "@salesforce/plugin-custom-metadata": "2.1.24",
73
- "@salesforce/plugin-community": "2.3.0",
74
- "@salesforce/plugin-dev": "0.7.8",
72
+ "@salesforce/plugin-custom-metadata": "2.1.25",
73
+ "@salesforce/plugin-community": "2.3.1",
74
+ "@salesforce/plugin-dev": "0.7.9",
75
75
  "@salesforce/plugin-env": "2.1.9",
76
76
  "@salesforce/plugin-functions": "1.21.10",
77
- "@salesforce/plugin-packaging": "1.18.0",
78
- "@salesforce/plugin-signups": "1.4.20",
77
+ "@salesforce/plugin-packaging": "1.19.0",
78
+ "@salesforce/plugin-signups": "1.4.21",
79
79
  "@salesforce/sfdx-plugin-lwc-test": "1.0.2",
80
- "@salesforce/sfdx-scanner": "3.12.0"
80
+ "@salesforce/sfdx-scanner": "3.13.0"
81
81
  },
82
82
  "devPlugins": [
83
83
  "@oclif/plugin-command-snapshot",
@@ -110,7 +110,7 @@
110
110
  },
111
111
  "windows": {
112
112
  "name": "Salesforce CLI",
113
- "keypath": "/tmp/windows-signing.pfx"
113
+ "keypathBackup": "/tmp/windows-signing.pfx"
114
114
  },
115
115
  "additionalVersionFlags": [
116
116
  "-v"
@@ -127,28 +127,28 @@
127
127
  "@oclif/plugin-not-found": "2.3.24",
128
128
  "@oclif/plugin-plugins": "3.1.2",
129
129
  "@oclif/plugin-search": "0.0.17",
130
- "@oclif/plugin-update": "3.1.16",
130
+ "@oclif/plugin-update": "3.1.17",
131
131
  "@oclif/plugin-version": "1.3.4",
132
132
  "@oclif/plugin-warn-if-update-available": "2.0.37",
133
- "@oclif/plugin-which": "2.2.21",
134
- "@salesforce/core": "4.1.0",
135
- "@salesforce/plugin-apex": "2.3.0",
136
- "@salesforce/plugin-auth": "2.8.0",
137
- "@salesforce/plugin-data": "2.3.20",
138
- "@salesforce/plugin-deploy-retrieve": "1.11.2",
139
- "@salesforce/plugin-info": "2.6.16",
140
- "@salesforce/plugin-limits": "2.3.17",
133
+ "@oclif/plugin-which": "2.2.22",
134
+ "@salesforce/core": "4.2.0",
135
+ "@salesforce/plugin-apex": "2.3.3",
136
+ "@salesforce/plugin-auth": "2.8.1",
137
+ "@salesforce/plugin-data": "2.3.22",
138
+ "@salesforce/plugin-deploy-retrieve": "1.11.7",
139
+ "@salesforce/plugin-info": "2.6.19",
140
+ "@salesforce/plugin-limits": "2.3.18",
141
141
  "@salesforce/plugin-login": "1.2.11",
142
- "@salesforce/plugin-org": "2.9.3",
143
- "@salesforce/plugin-schema": "2.3.10",
144
- "@salesforce/plugin-settings": "1.4.10",
145
- "@salesforce/plugin-sobject": "0.1.22",
146
- "@salesforce/plugin-source": "2.10.12",
142
+ "@salesforce/plugin-org": "2.9.8",
143
+ "@salesforce/plugin-schema": "2.3.12",
144
+ "@salesforce/plugin-settings": "1.4.11",
145
+ "@salesforce/plugin-sobject": "0.1.24",
146
+ "@salesforce/plugin-source": "2.10.14",
147
147
  "@salesforce/plugin-telemetry": "2.2.0",
148
- "@salesforce/plugin-templates": "55.4.18",
148
+ "@salesforce/plugin-templates": "55.4.20",
149
149
  "@salesforce/plugin-trust": "2.4.20",
150
- "@salesforce/plugin-user": "2.3.14",
151
- "@salesforce/sf-plugins-core": "3.0.2",
150
+ "@salesforce/plugin-user": "2.3.17",
151
+ "@salesforce/sf-plugins-core": "3.0.3",
152
152
  "debug": "^4.3.4",
153
153
  "semver": "^7.3.8",
154
154
  "tslib": "^2.4.1"
@@ -3,7 +3,7 @@
3
3
  const { spawn } = require('child_process');
4
4
  const { join } = require('path');
5
5
 
6
- if (process.env.SFDX_HIDE_RELEASE_NOTES === 'true' || process.env.SF_HIDE_RELEASE_NOTES === 'true') process.exit(0);
6
+ if (process.env.SF_HIDE_RELEASE_NOTES === 'true') process.exit(0);
7
7
 
8
8
  const logAndExit = (msg) => {
9
9
  console.log('NOTE: This error can be ignored in CI and may be silenced in the future');