Skip to content

Commit fa48d00

Browse files
author
SF-CLI-BOT
committed
chore(release): 2.1.1 [ci skip]
1 parent eac62b1 commit fa48d00

3 files changed

Lines changed: 18 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [2.1.1](https://github.com/salesforcecli/plugin-data/compare/v2.1.0...v2.1.1) (2022-07-27)
6+
7+
### Bug Fixes
8+
9+
- correct test error ([eac62b1](https://github.com/salesforcecli/plugin-data/commit/eac62b1c6ea087aea116f0bbea6c1a6381d8034f))
10+
- stop lowercasing executed query string ([#330](https://github.com/salesforcecli/plugin-data/issues/330)) ([cfb06b7](https://github.com/salesforcecli/plugin-data/commit/cfb06b7a02f279889f5e94f0b0b546268cb94ca0))
11+
512
## [2.1.0](https://github.com/salesforcecli/plugin-data/compare/v2.0.4...v2.1.0) (2022-07-26)
613

714
### Features

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ EXAMPLES
128128
$ sfdx force:data:bulk:delete -s MyObject__c -f ./path/to/file.csv
129129
```
130130

131-
_See code: [src/commands/force/data/bulk/delete.ts](https://github.com/salesforcecli/plugin-data/blob/v2.0.4/src/commands/force/data/bulk/delete.ts)_
131+
_See code: [src/commands/force/data/bulk/delete.ts](https://github.com/salesforcecli/plugin-data/blob/v2.1.0/src/commands/force/data/bulk/delete.ts)_
132132

133133
## `sfdx force:data:bulk:status -i <string> [-b <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
134134

@@ -165,7 +165,7 @@ EXAMPLES
165165
$ sfdx force:data:bulk:status -i 750xx000000005sAAA -b 751xx000000005nAAA
166166
```
167167

168-
_See code: [src/commands/force/data/bulk/status.ts](https://github.com/salesforcecli/plugin-data/blob/v2.0.4/src/commands/force/data/bulk/status.ts)_
168+
_See code: [src/commands/force/data/bulk/status.ts](https://github.com/salesforcecli/plugin-data/blob/v2.1.0/src/commands/force/data/bulk/status.ts)_
169169

170170
## `sfdx force:data:bulk:upsert -i <string> -f <filepath> -s <string> [-w <minutes>] [-r] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
171171

@@ -214,7 +214,7 @@ EXAMPLES
214214
$ sfdx force:data:bulk:upsert -s MyObject__c -f ./path/to/file.csv -i Id -w 2
215215
```
216216

217-
_See code: [src/commands/force/data/bulk/upsert.ts](https://github.com/salesforcecli/plugin-data/blob/v2.0.4/src/commands/force/data/bulk/upsert.ts)_
217+
_See code: [src/commands/force/data/bulk/upsert.ts](https://github.com/salesforcecli/plugin-data/blob/v2.1.0/src/commands/force/data/bulk/upsert.ts)_
218218

219219
## `sfdx force:data:record:create -s <string> -v <string> [-t] [--perflog --json] [-u <string>] [--apiversion <string>] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
220220

@@ -263,7 +263,7 @@ EXAMPLES
263263
$ sfdx force:data:record:create -s Account -v "Name=Acme" --perflog --json
264264
```
265265

266-
_See code: [src/commands/force/data/record/create.ts](https://github.com/salesforcecli/plugin-data/blob/v2.0.4/src/commands/force/data/record/create.ts)_
266+
_See code: [src/commands/force/data/record/create.ts](https://github.com/salesforcecli/plugin-data/blob/v2.1.0/src/commands/force/data/record/create.ts)_
267267

268268
## `sfdx force:data:record:delete -s <string> [-i <id> | -w <string>] [-t] [--perflog --json] [-u <string>] [--apiversion <string>] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
269269

@@ -315,7 +315,7 @@ EXAMPLES
315315
$ sfdx force:data:record:delete -t -s TraceFlag -i 7tf170000009cU6AAI --perflog --json
316316
```
317317

318-
_See code: [src/commands/force/data/record/delete.ts](https://github.com/salesforcecli/plugin-data/blob/v2.0.4/src/commands/force/data/record/delete.ts)_
318+
_See code: [src/commands/force/data/record/delete.ts](https://github.com/salesforcecli/plugin-data/blob/v2.1.0/src/commands/force/data/record/delete.ts)_
319319

320320
## `sfdx force:data:record:get -s <string> [-i <id> | -w <string>] [-t] [--perflog --json] [-u <string>] [--apiversion <string>] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
321321

@@ -368,7 +368,7 @@ EXAMPLES
368368
$ sfdx force:data:record:get -t -s TraceFlag -i 7tf170000009cUBAAY --perflog --json
369369
```
370370

371-
_See code: [src/commands/force/data/record/get.ts](https://github.com/salesforcecli/plugin-data/blob/v2.0.4/src/commands/force/data/record/get.ts)_
371+
_See code: [src/commands/force/data/record/get.ts](https://github.com/salesforcecli/plugin-data/blob/v2.1.0/src/commands/force/data/record/get.ts)_
372372

373373
## `sfdx force:data:record:update -s <string> -v <string> [-i <id> | -w <string>] [-t] [--perflog --json] [-u <string>] [--apiversion <string>] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
374374

@@ -420,7 +420,7 @@ EXAMPLES
420420
$sfdx force:data:record:update -s Account -i 001D000000Kv3dl -v "Name=NewAcme" --perflog --json
421421
```
422422

423-
_See code: [src/commands/force/data/record/update.ts](https://github.com/salesforcecli/plugin-data/blob/v2.0.4/src/commands/force/data/record/update.ts)_
423+
_See code: [src/commands/force/data/record/update.ts](https://github.com/salesforcecli/plugin-data/blob/v2.1.0/src/commands/force/data/record/update.ts)_
424424

425425
## `sfdx force:data:soql:query [-q <string> | -f <filepath>] [-t] [-r human|csv|json] [--perflog --json] [-u <string>] [--apiversion <string>] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
426426

@@ -468,7 +468,7 @@ EXAMPLES
468468
$ sfdx force:data:soql:query --soqlqueryfile query.txt -t
469469
```
470470

471-
_See code: [src/commands/force/data/soql/query.ts](https://github.com/salesforcecli/plugin-data/blob/v2.0.4/src/commands/force/data/soql/query.ts)_
471+
_See code: [src/commands/force/data/soql/query.ts](https://github.com/salesforcecli/plugin-data/blob/v2.1.0/src/commands/force/data/soql/query.ts)_
472472

473473
## `sfdx force:data:tree:export -q <string> [-p] [-x <string>] [-d <directory>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
474474

@@ -510,7 +510,7 @@ EXAMPLES
510510
$ sfdx force:data:tree:export -q <path to file containing soql query> -x export-demo -d /tmp/sfdx-out -p
511511
```
512512

513-
_See code: [src/commands/force/data/tree/export.ts](https://github.com/salesforcecli/plugin-data/blob/v2.0.4/src/commands/force/data/tree/export.ts)_
513+
_See code: [src/commands/force/data/tree/export.ts](https://github.com/salesforcecli/plugin-data/blob/v2.1.0/src/commands/force/data/tree/export.ts)_
514514

515515
## `sfdx force:data:tree:import [-f <array> | -p <filepath>] [--confighelp] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
516516

@@ -560,6 +560,6 @@ EXAMPLES
560560
$ sfdx force:data:tree:import -p Account-Contact-plan.json -u me@my.org
561561
```
562562

563-
_See code: [src/commands/force/data/tree/import.ts](https://github.com/salesforcecli/plugin-data/blob/v2.0.4/src/commands/force/data/tree/import.ts)_
563+
_See code: [src/commands/force/data/tree/import.ts](https://github.com/salesforcecli/plugin-data/blob/v2.1.0/src/commands/force/data/tree/import.ts)_
564564

565565
<!-- commandsstop -->

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@salesforce/plugin-data",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "Plugin for salesforce data commands",
55
"author": "Salesforce",
66
"main": "lib/index.js",

0 commit comments

Comments
 (0)