@salesforce/plugin-data 2.1.1 → 2.1.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-data",
3
- "version": "2.1.1",
3
+ "version": "2.1.3",
4
4
  "description": "Plugin for salesforce data commands",
5
5
  "author": "Salesforce",
6
6
  "main": "lib/index.js",
@@ -41,7 +41,12 @@
41
41
  "description": "manipulate records using the enterprise API"
42
42
  },
43
43
  "soql": {
44
- "description": "fetch records using SOQL"
44
+ "description": "fetch records using SOQL",
45
+ "subtopics": {
46
+ "bulk": {
47
+ "description": "fetch records using the bulk 2.0 API"
48
+ }
49
+ }
45
50
  },
46
51
  "tree": {
47
52
  "description": "import/export records using the tree API"
@@ -78,18 +83,19 @@
78
83
  "prepare": "sf-install",
79
84
  "pretest": "sf-compile-test",
80
85
  "test": "sf-test",
81
- "test:command-reference": "./bin/run commandreference:generate --erroronwarnings",
82
- "test:deprecation-policy": "./bin/run snapshot:compare",
86
+ "test:command-reference": "./bin/dev commandreference:generate --erroronwarnings",
87
+ "test:deprecation-policy": "./bin/dev snapshot:compare",
83
88
  "test:nuts": "nyc mocha \"./test/**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel",
84
89
  "version": "oclif readme"
85
90
  },
86
91
  "dependencies": {
87
- "@oclif/core": "^1.6.4",
88
- "@salesforce/command": "^5.1.3",
89
- "@salesforce/core": "^3.21.1",
92
+ "@oclif/core": "^1.13.10",
93
+ "@salesforce/command": "^5.2.4",
94
+ "@salesforce/core": "^3.30.3",
90
95
  "@salesforce/ts-types": "^1.5.20",
91
96
  "@types/fs-extra": "^9.0.13",
92
97
  "chalk": "^4.1.0",
98
+ "jsforce": "beta",
93
99
  "csv-parse": "^4.16.3",
94
100
  "fs-extra": "^10.0.1",
95
101
  "csv-stringify": "^6.0.5",
@@ -99,7 +105,7 @@
99
105
  "@oclif/plugin-command-snapshot": "^3.1.3",
100
106
  "@salesforce/cli-plugins-testkit": "^1.4.24",
101
107
  "@salesforce/dev-config": "^3.0.1",
102
- "@salesforce/dev-scripts": "2.0.3",
108
+ "@salesforce/dev-scripts": "2.0.4",
103
109
  "@salesforce/plugin-command-reference": "^1.3.0",
104
110
  "@salesforce/prettier-config": "^0.0.2",
105
111
  "@salesforce/ts-sinon": "^1.3.15",
@@ -135,7 +141,7 @@
135
141
  "typescript": "^4.4.4"
136
142
  },
137
143
  "sfdx": {
138
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/2.1.1.crt",
139
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/2.1.1.sig"
144
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/2.1.3.crt",
145
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/2.1.3.sig"
140
146
  }
141
147
  }
package/CHANGELOG.md DELETED
@@ -1,248 +0,0 @@
1
- # Changelog
2
-
3
- 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.
4
-
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
-
12
- ## [2.1.0](https://github.com/salesforcecli/plugin-data/compare/v2.0.4...v2.1.0) (2022-07-26)
13
-
14
- ### Features
15
-
16
- - add a soqlqueryfile parameter to allow longer queries ([#327](https://github.com/salesforcecli/plugin-data/issues/327)) ([966096d](https://github.com/salesforcecli/plugin-data/commit/966096ddd8338c1a92c02d706cbad46ba5e122ad))
17
-
18
- ### [2.0.4](https://github.com/salesforcecli/plugin-data/compare/v2.0.3...v2.0.4) (2022-06-16)
19
-
20
- ### Bug Fixes
21
-
22
- - wait until all records are emitted ([#316](https://github.com/salesforcecli/plugin-data/issues/316)) ([4269d08](https://github.com/salesforcecli/plugin-data/commit/4269d089f716d58ae37e1e416f2ad9eed33b5fb2))
23
-
24
- ### [2.0.3](https://github.com/salesforcecli/plugin-data/compare/v2.0.2...v2.0.3) (2022-06-03)
25
-
26
- ### Bug Fixes
27
-
28
- - human output no longer displaying undefined ([#307](https://github.com/salesforcecli/plugin-data/issues/307)) ([d989fad](https://github.com/salesforcecli/plugin-data/commit/d989fad3f7a5b6b0fe4e5da2f24d654b21b76038))
29
-
30
- ### [2.0.2](https://github.com/salesforcecli/plugin-data/compare/v2.0.1...v2.0.2) (2022-05-26)
31
-
32
- ### Bug Fixes
33
-
34
- - respect maxQueryLimit config ([#306](https://github.com/salesforcecli/plugin-data/issues/306)) ([e9bf141](https://github.com/salesforcecli/plugin-data/commit/e9bf141f9e175c2def51896844ab876b08baa57a))
35
-
36
- ### [2.0.1](https://github.com/salesforcecli/plugin-data/compare/v2.0.0...v2.0.1) (2022-05-20)
37
-
38
- ## [2.0.0](https://github.com/salesforcecli/plugin-data/compare/v0.6.15...v2.0.0) (2022-05-11)
39
-
40
- ### [0.6.15](https://github.com/salesforcecli/plugin-data/compare/v0.6.14...v0.6.15) (2022-05-04)
41
-
42
- ### [0.6.14](https://github.com/salesforcecli/plugin-data/compare/v0.6.13...v0.6.14) (2022-04-26)
43
-
44
- ### Bug Fixes
45
-
46
- - update schema to support AJV ([6fe5f21](https://github.com/salesforcecli/plugin-data/commit/6fe5f2188ceed5b1fa1773634cf1684bc75aa9e1))
47
-
48
- ### [0.6.13](https://github.com/salesforcecli/plugin-data/compare/v0.6.12...v0.6.13) (2022-04-14)
49
-
50
- ### Bug Fixes
51
-
52
- - bulk batching wide fIles (cli/[#1460](https://github.com/salesforcecli/plugin-data/issues/1460)) ([c8b2855](https://github.com/salesforcecli/plugin-data/commit/c8b2855786fd6e1c13fc879bc4ab7e556cfc0600))
53
-
54
- ### [0.6.12](https://github.com/salesforcecli/plugin-data/compare/v0.6.11...v0.6.12) (2022-03-30)
55
-
56
- ### [0.6.11](https://github.com/salesforcecli/plugin-data/compare/v0.6.10...v0.6.11) (2022-03-25)
57
-
58
- ### [0.6.10](https://github.com/salesforcecli/plugin-data/compare/v0.6.9...v0.6.10) (2022-03-10)
59
-
60
- ### Bug Fixes
61
-
62
- - bump core and jsforce
63
- versions ([#283](https://github.com/salesforcecli/plugin-data/issues/283)) ([11908be](https://github.com/salesforcecli/plugin-data/commit/11908bedd9538aeddc1631afa99f4ae01150935d))
64
-
65
- ### [0.6.9](https://github.com/salesforcecli/plugin-data/compare/v0.6.8...v0.6.9) (2022-02-07)
66
-
67
- ### Bug Fixes
68
-
69
- - fix 3 data
70
- bugs ([801a7aa](https://github.com/salesforcecli/plugin-data/commit/801a7aaaae5346c8c6617ba6c8dc5ca297a86f17))
71
-
72
- ### [0.6.8](https://github.com/salesforcecli/plugin-data/compare/v0.6.7...v0.6.8) (2022-01-03)
73
-
74
- ### [0.6.7](https://github.com/salesforcecli/plugin-data/compare/v0.6.6...v0.6.7) (2021-12-28)
75
-
76
- ### [0.6.6](https://github.com/salesforcecli/plugin-data/compare/v0.6.5...v0.6.6) (2021-12-02)
77
-
78
- ### Features
79
-
80
- - bump deps ([20f2598](https://github.com/salesforcecli/plugin-data/commit/20f2598606e14b676653f32f3f88569765ab7801))
81
-
82
- ### [0.6.5](https://github.com/salesforcecli/plugin-data/compare/v0.6.4...v0.6.5) (2021-11-18)
83
-
84
- ### Bug Fixes
85
-
86
- - adds note about non-inclusive
87
- language ([844f74a](https://github.com/salesforcecli/plugin-data/commit/844f74a5ceddb917491a519a760304fdd0b796f1))
88
- - remove "master-detail" from long
89
- desc ([67460fc](https://github.com/salesforcecli/plugin-data/commit/67460fcac2a0e2afb784a0d038760afda2239e96))
90
-
91
- ### [0.6.4](https://github.com/salesforcecli/plugin-data/compare/v0.6.3...v0.6.4) (2021-10-21)
92
-
93
- ### Bug Fixes
94
-
95
- - downgrade eslint jsdoc
96
- dep ([8775d6c](https://github.com/salesforcecli/plugin-data/commit/8775d6cca6b7240b023958e282cfadbe2e16ec6e))
97
-
98
- ### [0.6.3](https://github.com/salesforcecli/plugin-data/compare/v0.6.2...v0.6.3) (2021-10-12)
99
-
100
- ### [0.6.2](https://github.com/salesforcecli/plugin-data/compare/v0.6.1...v0.6.2) (2021-10-05)
101
-
102
- ### Bug Fixes
103
-
104
- - update deps ([c3b57d4](https://github.com/salesforcecli/plugin-data/commit/c3b57d4aae48a40eee90ba3380b4c650fe9df53e))
105
-
106
- ### 0.6.1 (2021-08-25)
107
-
108
- ### Features
109
-
110
- - @W-8449669@ migrate force:data:soql:
111
- query ([#16](https://github.com/salesforcecli/plugin-data/issues/16)) ([b6820f8](https://github.com/salesforcecli/plugin-data/commit/b6820f8632876419f5f0d5f74f11651adb02d4b9))
112
- - added new flag for serial
113
- process ([#166](https://github.com/salesforcecli/plugin-data/issues/166)) ([9c70cbd](https://github.com/salesforcecli/plugin-data/commit/9c70cbd78deecf2d99b63b3328fa6475657c49b2))
114
- - record
115
- commands ([37f5d61](https://github.com/salesforcecli/plugin-data/commit/37f5d61f65055c76aceac85077fd484c810bd49c))
116
-
117
- ### Bug Fixes
118
-
119
- - add oclif/dev
120
- dependency [skip-validate-pr] ([#90](https://github.com/salesforcecli/plugin-data/issues/90)) ([ecbd054](https://github.com/salesforcecli/plugin-data/commit/ecbd05403cb71988c4110b4e5e0815229c5ed86e))
121
- - commands ignore
122
- --usetoolingapi ([#40](https://github.com/salesforcecli/plugin-data/issues/40)) ([d787ebc](https://github.com/salesforcecli/plugin-data/commit/d787ebcb297e192938cf1c9fb29c5063366f65ce))
123
- - correct help for data
124
- commands ([#69](https://github.com/salesforcecli/plugin-data/issues/69)) ([80b601b](https://github.com/salesforcecli/plugin-data/commit/80b601bc0cbd973326afe69ad825530e53d1f5fc))
125
- - depend on
126
- 0.1.5 ([#132](https://github.com/salesforcecli/plugin-data/issues/132)) ([97c1199](https://github.com/salesforcecli/plugin-data/commit/97c119977b4749e1add714ce2a04ef2940e627f3))
127
- - dependency
128
- pruning ([#141](https://github.com/salesforcecli/plugin-data/issues/141)) ([7a8212d](https://github.com/salesforcecli/plugin-data/commit/7a8212d7d99e1cddc8a9f2fbaaea7abd2fea181f))
129
- - force
130
- release ([9545abe](https://github.com/salesforcecli/plugin-data/commit/9545abea419807e84bbb758dcb735eb5cb6aa91d))
131
- - parse csv as utf-8 and enable bom
132
- parsing ([#31](https://github.com/salesforcecli/plugin-data/issues/31)) ([7ecc0ed](https://github.com/salesforcecli/plugin-data/commit/7ecc0ede766270909dbeb0d8da6167efdb3d454a))
133
- - Unlerna data #( 184) ([18fa280](https://github.com/salesforcecli/plugin-data/commit/18fa2809f1337a56364bd713d3336b72d6026637))
134
- - various data:record
135
- bugs ([a05ac07](https://github.com/salesforcecli/plugin-data/commit/a05ac07e7beb9d73776908beed085b7644d580fe))
136
-
137
- # [0.6.0](https://github.com/salesforcecli/data/compare/@salesforce/plugin-data@0.5.2...@salesforce/plugin-data@0.6.0) (2021-07-26)
138
-
139
- ### Features
140
-
141
- - added new flag for serial
142
- process ([#166](https://github.com/salesforcecli/data/issues/166)) ([9c70cbd](https://github.com/salesforcecli/data/commit/9c70cbd78deecf2d99b63b3328fa6475657c49b2))
143
-
144
- ## [0.5.2](https://github.com/salesforcecli/data/compare/@salesforce/plugin-data@0.5.1...@salesforce/plugin-data@0.5.2) (2021-07-08)
145
-
146
- **Note:** Version bump only for package @salesforce/plugin-data
147
-
148
- ## [0.5.1](https://github.com/salesforcecli/data/compare/@salesforce/plugin-data@0.4.12...@salesforce/plugin-data@0.5.1) (2021-07-01)
149
-
150
- **Note:** Version bump only for package @salesforce/plugin-data
151
-
152
- ## [0.4.12](https://github.com/salesforcecli/data/compare/@salesforce/plugin-data@0.4.11...@salesforce/plugin-data@0.4.12) (2021-06-10)
153
-
154
- ### Bug Fixes
155
-
156
- - dependency
157
- pruning ([#141](https://github.com/salesforcecli/data/issues/141)) ([7a8212d](https://github.com/salesforcecli/data/commit/7a8212d7d99e1cddc8a9f2fbaaea7abd2fea181f))
158
-
159
- ## [0.4.11](https://github.com/salesforcecli/data/compare/@salesforce/plugin-data@0.4.10...@salesforce/plugin-data@0.4.11) (2021-06-04)
160
-
161
- **Note:** Version bump only for package @salesforce/plugin-data
162
-
163
- ## [0.4.10](https://github.com/salesforcecli/data/compare/@salesforce/plugin-data@0.4.9...@salesforce/plugin-data@0.4.10) (2021-06-04)
164
-
165
- ### Bug Fixes
166
-
167
- - depend on
168
- 0.1.5 ([#132](https://github.com/salesforcecli/data/issues/132)) ([97c1199](https://github.com/salesforcecli/data/commit/97c119977b4749e1add714ce2a04ef2940e627f3))
169
-
170
- ## [0.4.9](https://github.com/salesforcecli/data/compare/@salesforce/plugin-data@0.4.8...@salesforce/plugin-data@0.4.9) (2021-06-02)
171
-
172
- **Note:** Version bump only for package @salesforce/plugin-data
173
-
174
- ## [0.4.8](https://github.com/salesforcecli/data/compare/@salesforce/plugin-data@0.4.6...@salesforce/plugin-data@0.4.8) (2021-05-20)
175
-
176
- ### Bug Fixes
177
-
178
- - force release ([9545abe](https://github.com/salesforcecli/data/commit/9545abea419807e84bbb758dcb735eb5cb6aa91d))
179
-
180
- ## [0.4.6](https://github.com/salesforcecli/data/compare/@salesforce/plugin-data@0.4.5...@salesforce/plugin-data@0.4.6) (2021-04-14)
181
-
182
- ### Bug Fixes
183
-
184
- - add oclif/dev
185
- dependency [skip-validate-pr] ([#90](https://github.com/salesforcecli/data/issues/90)) ([ecbd054](https://github.com/salesforcecli/data/commit/ecbd05403cb71988c4110b4e5e0815229c5ed86e))
186
-
187
- ## [0.4.5](https://github.com/salesforcecli/data/compare/@salesforce/plugin-data@0.4.3...@salesforce/plugin-data@0.4.5) (2021-04-09)
188
-
189
- ### Bug Fixes
190
-
191
- - correct help for data
192
- commands ([#69](https://github.com/salesforcecli/data/issues/69)) ([80b601b](https://github.com/salesforcecli/data/commit/80b601bc0cbd973326afe69ad825530e53d1f5fc))
193
-
194
- ## [0.4.3](https://github.com/salesforcecli/data/compare/@salesforce/plugin-data@0.4.2...@salesforce/plugin-data@0.4.3) (2021-02-24)
195
-
196
- ### Bug Fixes
197
-
198
- - commands ignore
199
- --usetoolingapi ([#40](https://github.com/salesforcecli/data/issues/40)) ([d787ebc](https://github.com/salesforcecli/data/commit/d787ebcb297e192938cf1c9fb29c5063366f65ce))
200
-
201
- ## [0.4.2](https://github.com/salesforcecli/data/compare/@salesforce/plugin-data@0.4.1...@salesforce/plugin-data@0.4.2) (2021-02-10)
202
-
203
- **Note:** Version bump only for package @salesforce/plugin-data
204
-
205
- ## [0.4.1](https://github.com/salesforcecli/data/compare/@salesforce/plugin-data@0.4.0...@salesforce/plugin-data@0.4.1) (2021-02-02)
206
-
207
- ### Bug Fixes
208
-
209
- - parse csv as utf-8 and enable bom
210
- parsing ([#31](https://github.com/salesforcecli/data/issues/31)) ([7ecc0ed](https://github.com/salesforcecli/data/commit/7ecc0ede766270909dbeb0d8da6167efdb3d454a))
211
-
212
- # [0.4.0](https://github.com/salesforcecli/data/compare/@salesforce/plugin-data@0.2.5...@salesforce/plugin-data@0.4.0) (2021-02-01)
213
-
214
- ### Features
215
-
216
- - @W-8449669@ migrate force:data:soql:
217
- query ([#16](https://github.com/salesforcecli/data/issues/16)) ([b6820f8](https://github.com/salesforcecli/data/commit/b6820f8632876419f5f0d5f74f11651adb02d4b9))
218
-
219
- ## [0.2.5](https://github.com/salesforcecli/data/compare/@salesforce/plugin-data@0.2.4...@salesforce/plugin-data@0.2.5) (2020-12-15)
220
-
221
- **Note:** Version bump only for package @salesforce/plugin-data
222
-
223
- ## [0.2.4](https://github.com/salesforcecli/data/compare/@salesforce/plugin-data@0.2.3...@salesforce/plugin-data@0.2.4) (2020-12-15)
224
-
225
- **Note:** Version bump only for package @salesforce/plugin-data
226
-
227
- ## [0.2.3](https://github.com/salesforcecli/data/compare/@salesforce/plugin-data@0.2.2...@salesforce/plugin-data@0.2.3) (2020-12-15)
228
-
229
- **Note:** Version bump only for package @salesforce/plugin-data
230
-
231
- ## [0.2.2](https://github.com/salesforcecli/data/compare/@salesforce/plugin-data@0.2.1...@salesforce/plugin-data@0.2.2) (2020-12-10)
232
-
233
- **Note:** Version bump only for package @salesforce/plugin-data
234
-
235
- ## [0.2.1](https://github.com/salesforcecli/data/compare/@salesforce/plugin-data@0.2.0...@salesforce/plugin-data@0.2.1) (2020-12-03)
236
-
237
- ### Bug Fixes
238
-
239
- - various data:record
240
- bugs ([a05ac07](https://github.com/salesforcecli/data/commit/a05ac07e7beb9d73776908beed085b7644d580fe))
241
-
242
- # 0.2.0 (2020-11-24)
243
-
244
- ### Features
245
-
246
- - record commands ([37f5d61](https://github.com/salesforcecli/data/commit/37f5d61f65055c76aceac85077fd484c810bd49c))
247
-
248
- # Change Log