Skip to content

Commit

Permalink
chore(release): 3.0.6 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
svc-cli-bot committed Dec 13, 2023
1 parent 231e7b2 commit 981a9b8
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 24 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [3.0.6](https://github.com/salesforcecli/plugin-source/compare/3.0.5...3.0.6) (2023-12-13)

### Bug Fixes

- **deps:** bump @salesforce/sf-plugins-core from 5.0.1 to 5.0.8 ([#1030](https://github.com/salesforcecli/plugin-source/issues/1030)) ([231e7b2](https://github.com/salesforcecli/plugin-source/commit/231e7b2452ecb0a5b66dac5bad5bdcf91fa20ea0))

## [3.0.5](https://github.com/salesforcecli/plugin-source/compare/3.0.4...3.0.5) (2023-12-13)

### Bug Fixes
Expand Down
56 changes: 33 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ $ npm install -g @salesforce/plugin-source
$ sfdx COMMAND
running command...
$ sfdx (--version)
@salesforce/plugin-source/3.0.5 linux-x64 node-v18.19.0
@salesforce/plugin-source/3.0.6 linux-x64 node-v18.19.0
$ sfdx --help [COMMAND]
USAGE
$ sfdx COMMAND
Expand Down Expand Up @@ -299,7 +299,7 @@ FLAG DESCRIPTIONS
Indicates that you want verbose output from the deploy operation.
```

_See code: [src/commands/force/mdapi/deploy.ts](https://github.com/salesforcecli/plugin-source/blob/3.0.5/src/commands/force/mdapi/deploy.ts)_
_See code: [src/commands/force/mdapi/deploy.ts](https://github.com/salesforcecli/plugin-source/blob/3.0.6/src/commands/force/mdapi/deploy.ts)_

## `sfdx force mdapi deploy cancel`

Expand All @@ -311,7 +311,8 @@ USAGE
FLAGS
-i, --jobid=<value> Job ID of the deployment you want to cancel; defaults to your most recent CLI deployment.
-o, --target-org=<value> (required) Username or alias of the target org.
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
configuration variable is already set.
-w, --wait=<value> [default: 33 minutes] Number of minutes for the command to complete and display results to
the terminal window.
--api-version=<value> Override the api version used for api requests made by this command
Expand Down Expand Up @@ -342,7 +343,7 @@ FLAG DESCRIPTIONS
If the command continues to run after the wait period, the CLI returns control of the terminal window to you.
```

_See code: [src/commands/force/mdapi/deploy/cancel.ts](https://github.com/salesforcecli/plugin-source/blob/3.0.5/src/commands/force/mdapi/deploy/cancel.ts)_
_See code: [src/commands/force/mdapi/deploy/cancel.ts](https://github.com/salesforcecli/plugin-source/blob/3.0.6/src/commands/force/mdapi/deploy/cancel.ts)_

## `sfdx force mdapi deploy report`

Expand All @@ -360,7 +361,8 @@ FLAGS
recent CLI deployment.
-o, --target-org=<value>
(required) Username or alias of the target org.
(required) Username or alias of the target org. Not required if the `target-org` configuration variable is already
set.
-w, --wait=<value>
[default: 0 minutes] Number of minutes to wait for the command to finish; use -1 to poll indefinitely.
Expand Down Expand Up @@ -413,7 +415,7 @@ FLAG DESCRIPTIONS
use the ID of the most recent metadata deployment.
```

_See code: [src/commands/force/mdapi/deploy/report.ts](https://github.com/salesforcecli/plugin-source/blob/3.0.5/src/commands/force/mdapi/deploy/report.ts)_
_See code: [src/commands/force/mdapi/deploy/report.ts](https://github.com/salesforcecli/plugin-source/blob/3.0.6/src/commands/force/mdapi/deploy/report.ts)_

## `sfdx force mdapi retrieve`

Expand All @@ -430,7 +432,8 @@ FLAGS
sfdx-project.json.
-k, --unpackaged=<value> Complete path for the manifest file that specifies the components to retrieve.
-n, --zipfilename=<value> File name to use for the retrieved zip file.
-o, --target-org=<value> (required) Username or alias of the target org.
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
configuration variable is already set.
-p, --packagenames=<value>... Comma-separated list of packages to retrieve.
-r, --retrievetargetdir=<value> (required) Root of the directory structure where the retrieved .zip or metadata files
are retrieved.
Expand Down Expand Up @@ -477,7 +480,7 @@ FLAG DESCRIPTIONS
By default, the CLI assumes the directory is structured for a set of packages.
```

_See code: [src/commands/force/mdapi/retrieve.ts](https://github.com/salesforcecli/plugin-source/blob/3.0.5/src/commands/force/mdapi/retrieve.ts)_
_See code: [src/commands/force/mdapi/retrieve.ts](https://github.com/salesforcecli/plugin-source/blob/3.0.6/src/commands/force/mdapi/retrieve.ts)_

## `sfdx force mdapi retrieve report`

Expand All @@ -491,7 +494,8 @@ USAGE
FLAGS
-i, --jobid=<value> Job ID of the retrieve you want to check; defaults to your most recent CLI retrieval.
-n, --zipfilename=<value> File name to use for the retrieved zip file.
-o, --target-org=<value> (required) Username or alias of the target org.
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
configuration variable is already set.
-r, --retrievetargetdir=<value> Root of the directory structure where the retrieved .zip or metadata files are
retrieved.
-w, --wait=<value> [default: 1440 minutes] Number of minutes to wait for the command to complete.
Expand Down Expand Up @@ -531,7 +535,7 @@ FLAG DESCRIPTIONS
You must specify a --retrievetargetdir. Use with --wait to resume waiting.
```

_See code: [src/commands/force/mdapi/retrieve/report.ts](https://github.com/salesforcecli/plugin-source/blob/3.0.5/src/commands/force/mdapi/retrieve/report.ts)_
_See code: [src/commands/force/mdapi/retrieve/report.ts](https://github.com/salesforcecli/plugin-source/blob/3.0.6/src/commands/force/mdapi/retrieve/report.ts)_

## `sfdx force source deploy`

Expand Down Expand Up @@ -797,7 +801,7 @@ FLAG DESCRIPTIONS
If you specify this parameter, don’t specify --metadata or --sourcepath.
```

_See code: [src/commands/force/source/deploy.ts](https://github.com/salesforcecli/plugin-source/blob/3.0.5/src/commands/force/source/deploy.ts)_
_See code: [src/commands/force/source/deploy.ts](https://github.com/salesforcecli/plugin-source/blob/3.0.6/src/commands/force/source/deploy.ts)_

## `sfdx force source deploy cancel`

Expand All @@ -810,7 +814,8 @@ USAGE
FLAGS
-i, --jobid=<value> Job ID of the deployment you want to cancel; defaults to your most recent CLI deployment if
not specified.
-o, --target-org=<value> (required) Username or alias of the target org.
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
configuration variable is already set.
-w, --wait=<value> [default: 33 minutes] Number of minutes to wait for the command to complete and display
results.
--api-version=<value> Override the api version used for api requests made by this command
Expand Down Expand Up @@ -842,7 +847,7 @@ FLAG DESCRIPTIONS
If the command continues to run after the wait period, the CLI returns control of the terminal window to you.
```

_See code: [src/commands/force/source/deploy/cancel.ts](https://github.com/salesforcecli/plugin-source/blob/3.0.5/src/commands/force/source/deploy/cancel.ts)_
_See code: [src/commands/force/source/deploy/cancel.ts](https://github.com/salesforcecli/plugin-source/blob/3.0.6/src/commands/force/source/deploy/cancel.ts)_

## `sfdx force source deploy report`

Expand All @@ -859,7 +864,8 @@ FLAGS
Job ID of the deployment you want to check; defaults to your most recent CLI deployment.
-o, --target-org=<value>
(required) Username or alias of the target org.
(required) Username or alias of the target org. Not required if the `target-org` configuration variable is already
set.
-w, --wait=<value>
[default: 33 minutes] Number of minutes to wait for the command to complete and display results to the terminal
Expand Down Expand Up @@ -905,7 +911,7 @@ FLAG DESCRIPTIONS
If the command continues to run after the wait period, the CLI returns control of the terminal window to you.
```

_See code: [src/commands/force/source/deploy/report.ts](https://github.com/salesforcecli/plugin-source/blob/3.0.5/src/commands/force/source/deploy/report.ts)_
_See code: [src/commands/force/source/deploy/report.ts](https://github.com/salesforcecli/plugin-source/blob/3.0.6/src/commands/force/source/deploy/report.ts)_

## `sfdx force source pull`

Expand All @@ -917,7 +923,8 @@ USAGE
FLAGS
-f, --forceoverwrite Ignore conflict warnings; changes in the org overwrite changes in the project.
-o, --target-org=<value> (required) Username or alias of the target org.
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
configuration variable is already set.
-w, --wait=<value> [default: 33 minutes] Number of minutes to wait for the command to complete and display
results to the terminal window.
--api-version=<value> Override the api version used for api requests made by this command
Expand Down Expand Up @@ -948,7 +955,7 @@ FLAG DESCRIPTIONS
If the command continues to run after the wait period, the CLI returns control of the terminal window to you.
```

_See code: [src/commands/force/source/pull.ts](https://github.com/salesforcecli/plugin-source/blob/3.0.5/src/commands/force/source/pull.ts)_
_See code: [src/commands/force/source/pull.ts](https://github.com/salesforcecli/plugin-source/blob/3.0.6/src/commands/force/source/pull.ts)_

## `sfdx force source push`

Expand All @@ -962,7 +969,8 @@ FLAGS
-f, --forceoverwrite Ignore conflict warnings and push source anyway; changes in the project overwrite changes
in the org.
-g, --ignorewarnings Deploy changes even if warnings are generated.
-o, --target-org=<value> (required) Username or alias of the target org.
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
configuration variable is already set.
-w, --wait=<value> [default: 33 minutes] Number of minutes to wait for the command to complete and display
results to the terminal window.
--api-version=<value> Override the api version used for api requests made by this command
Expand Down Expand Up @@ -993,7 +1001,7 @@ FLAG DESCRIPTIONS
If the command continues to run after the wait period, the CLI returns control of the terminal window to you.
```

_See code: [src/commands/force/source/push.ts](https://github.com/salesforcecli/plugin-source/blob/3.0.5/src/commands/force/source/push.ts)_
_See code: [src/commands/force/source/push.ts](https://github.com/salesforcecli/plugin-source/blob/3.0.6/src/commands/force/source/push.ts)_

## `sfdx force source retrieve`

Expand All @@ -1009,7 +1017,8 @@ FLAGS
-f, --forceoverwrite Ignore conflict warnings and overwrite changes to the project.
-m, --metadata=<value>... Comma-separated list of names of metadata components to retrieve from the org.
-n, --packagenames=<value>... Comma-separated list of packages to retrieve.
-o, --target-org=<value> (required) Username or alias of the target org.
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
configuration variable is already set.
-p, --sourcepath=<value>... Comma-separated list of file paths for source to retrieve from the org.
-r, --retrievetargetdir=<value> Root of the directory structure into which the source files are retrieved.
-t, --tracksource If the retrieve succeeds, update source tracking information; doesn't delete local
Expand Down Expand Up @@ -1118,7 +1127,7 @@ FLAG DESCRIPTIONS
If you specify this parameter, don’t specify --metadata or --sourcepath.
```

_See code: [src/commands/force/source/retrieve.ts](https://github.com/salesforcecli/plugin-source/blob/3.0.5/src/commands/force/source/retrieve.ts)_
_See code: [src/commands/force/source/retrieve.ts](https://github.com/salesforcecli/plugin-source/blob/3.0.6/src/commands/force/source/retrieve.ts)_

## `sfdx force source status`

Expand All @@ -1130,7 +1139,8 @@ USAGE
FLAGS
-l, --local List the changes that have been made locally.
-o, --target-org=<value> (required) Username or alias of the target org.
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
configuration variable is already set.
-r, --remote List the changes that have been made in the org.
--api-version=<value> Override the api version used for api requests made by this command
--concise Show only the changes that will be pushed or pulled; omits files that are forceignored.
Expand All @@ -1148,6 +1158,6 @@ EXAMPLES
$ sfdx force source status --remote
```

_See code: [src/commands/force/source/status.ts](https://github.com/salesforcecli/plugin-source/blob/3.0.5/src/commands/force/source/status.ts)_
_See code: [src/commands/force/source/status.ts](https://github.com/salesforcecli/plugin-source/blob/3.0.6/src/commands/force/source/status.ts)_

<!-- commandsstop -->
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@salesforce/plugin-source",
"description": "Commands to interact with source formatted metadata",
"version": "3.0.5",
"version": "3.0.6",
"author": "Salesforce",
"bugs": "https://github.com/forcedotcom/cli/issues",
"dependencies": {
Expand Down

0 comments on commit 981a9b8

Please sign in to comment.