cumulusci-plus 5.0.35__py3-none-any.whl → 5.0.43__py3-none-any.whl
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.
- cumulusci/__about__.py +1 -1
- cumulusci/cli/task.py +9 -10
- cumulusci/cli/tests/test_org.py +5 -0
- cumulusci/cli/tests/test_task.py +34 -0
- cumulusci/core/config/__init__.py +1 -0
- cumulusci/core/config/org_config.py +2 -1
- cumulusci/core/config/project_config.py +12 -0
- cumulusci/core/config/scratch_org_config.py +12 -0
- cumulusci/core/config/tests/test_config.py +1 -0
- cumulusci/core/dependencies/base.py +4 -0
- cumulusci/cumulusci.yml +18 -1
- cumulusci/schema/cumulusci.jsonschema.json +5 -0
- cumulusci/tasks/apex/testrunner.py +7 -4
- cumulusci/tasks/bulkdata/tests/test_select_utils.py +20 -0
- cumulusci/tasks/metadata_etl/__init__.py +2 -0
- cumulusci/tasks/metadata_etl/applications.py +256 -0
- cumulusci/tasks/metadata_etl/tests/test_applications.py +710 -0
- cumulusci/tasks/salesforce/insert_record.py +18 -19
- cumulusci/tasks/salesforce/tests/test_enable_prediction.py +4 -2
- cumulusci/tasks/salesforce/tests/test_update_external_auth_identity_provider.py +927 -0
- cumulusci/tasks/salesforce/tests/test_update_external_credential.py +523 -8
- cumulusci/tasks/salesforce/tests/test_update_record.py +512 -0
- cumulusci/tasks/salesforce/update_external_auth_identity_provider.py +551 -0
- cumulusci/tasks/salesforce/update_external_credential.py +89 -4
- cumulusci/tasks/salesforce/update_record.py +217 -0
- cumulusci/tasks/sfdmu/sfdmu.py +14 -1
- cumulusci/tasks/utility/credentialManager.py +58 -12
- cumulusci/tasks/utility/secretsToEnv.py +2 -2
- cumulusci/tasks/utility/tests/test_credentialManager.py +586 -0
- cumulusci/tasks/utility/tests/test_secretsToEnv.py +42 -15
- cumulusci/utils/yaml/cumulusci_yml.py +1 -0
- {cumulusci_plus-5.0.35.dist-info → cumulusci_plus-5.0.43.dist-info}/METADATA +6 -7
- {cumulusci_plus-5.0.35.dist-info → cumulusci_plus-5.0.43.dist-info}/RECORD +37 -31
- {cumulusci_plus-5.0.35.dist-info → cumulusci_plus-5.0.43.dist-info}/WHEEL +1 -1
- {cumulusci_plus-5.0.35.dist-info → cumulusci_plus-5.0.43.dist-info}/entry_points.txt +0 -0
- {cumulusci_plus-5.0.35.dist-info → cumulusci_plus-5.0.43.dist-info}/licenses/AUTHORS.rst +0 -0
- {cumulusci_plus-5.0.35.dist-info → cumulusci_plus-5.0.43.dist-info}/licenses/LICENSE +0 -0
|
@@ -17,7 +17,7 @@ class TestSecretsToEnvOptions:
|
|
|
17
17
|
|
|
18
18
|
def test_default_options(self):
|
|
19
19
|
"""Test initialization with default options."""
|
|
20
|
-
task_config = TaskConfig({"options": {}})
|
|
20
|
+
task_config = TaskConfig({"options": {"secrets": ["TEST_SECRET"]}})
|
|
21
21
|
with tempfile.TemporaryDirectory() as tmpdir:
|
|
22
22
|
env_path = os.path.join(tmpdir, ".env")
|
|
23
23
|
task_config.options["env_path"] = env_path
|
|
@@ -31,7 +31,7 @@ class TestSecretsToEnvOptions:
|
|
|
31
31
|
assert task.parsed_options.env_path == Path(env_path)
|
|
32
32
|
assert task.parsed_options.secrets_provider is None
|
|
33
33
|
assert task.parsed_options.provider_options == {}
|
|
34
|
-
assert task.parsed_options.secrets == []
|
|
34
|
+
assert task.parsed_options.secrets == ["TEST_SECRET"]
|
|
35
35
|
|
|
36
36
|
def test_custom_options(self):
|
|
37
37
|
"""Test initialization with custom options."""
|
|
@@ -90,6 +90,7 @@ class TestSecretsToEnvInitialization:
|
|
|
90
90
|
"options": {
|
|
91
91
|
"env_path": ".env",
|
|
92
92
|
"secrets_provider": "local",
|
|
93
|
+
"secrets": ["TEST_SECRET"],
|
|
93
94
|
}
|
|
94
95
|
}
|
|
95
96
|
)
|
|
@@ -112,7 +113,9 @@ class TestSecretsToEnvInitialization:
|
|
|
112
113
|
with open(env_path, "w") as f:
|
|
113
114
|
f.write('EXISTING_KEY="existing_value"\n')
|
|
114
115
|
|
|
115
|
-
task_config = TaskConfig(
|
|
116
|
+
task_config = TaskConfig(
|
|
117
|
+
{"options": {"env_path": env_path, "secrets": ["TEST_SECRET"]}}
|
|
118
|
+
)
|
|
116
119
|
|
|
117
120
|
task = SecretsToEnv(
|
|
118
121
|
project_config=mock.Mock(),
|
|
@@ -202,7 +205,9 @@ class TestSecretsToEnvGetCredential:
|
|
|
202
205
|
|
|
203
206
|
def test_get_credential_success(self):
|
|
204
207
|
"""Test _get_credential successfully retrieves credential."""
|
|
205
|
-
task_config = TaskConfig(
|
|
208
|
+
task_config = TaskConfig(
|
|
209
|
+
{"options": {"env_path": ".env", "secrets": ["TEST_SECRET"]}}
|
|
210
|
+
)
|
|
206
211
|
|
|
207
212
|
task = SecretsToEnv(
|
|
208
213
|
project_config=mock.Mock(),
|
|
@@ -227,7 +232,9 @@ class TestSecretsToEnvGetCredential:
|
|
|
227
232
|
|
|
228
233
|
def test_get_credential_escapes_quotes(self):
|
|
229
234
|
"""Test _get_credential escapes double quotes."""
|
|
230
|
-
task_config = TaskConfig(
|
|
235
|
+
task_config = TaskConfig(
|
|
236
|
+
{"options": {"env_path": ".env", "secrets": ["TEST_SECRET"]}}
|
|
237
|
+
)
|
|
231
238
|
|
|
232
239
|
task = SecretsToEnv(
|
|
233
240
|
project_config=mock.Mock(),
|
|
@@ -246,7 +253,9 @@ class TestSecretsToEnvGetCredential:
|
|
|
246
253
|
|
|
247
254
|
def test_get_credential_escapes_newlines(self):
|
|
248
255
|
"""Test _get_credential escapes newlines."""
|
|
249
|
-
task_config = TaskConfig(
|
|
256
|
+
task_config = TaskConfig(
|
|
257
|
+
{"options": {"env_path": ".env", "secrets": ["TEST_SECRET"]}}
|
|
258
|
+
)
|
|
250
259
|
|
|
251
260
|
task = SecretsToEnv(
|
|
252
261
|
project_config=mock.Mock(),
|
|
@@ -265,7 +274,9 @@ class TestSecretsToEnvGetCredential:
|
|
|
265
274
|
|
|
266
275
|
def test_get_credential_handles_both_quotes_and_newlines(self):
|
|
267
276
|
"""Test _get_credential handles both quotes and newlines."""
|
|
268
|
-
task_config = TaskConfig(
|
|
277
|
+
task_config = TaskConfig(
|
|
278
|
+
{"options": {"env_path": ".env", "secrets": ["TEST_SECRET"]}}
|
|
279
|
+
)
|
|
269
280
|
|
|
270
281
|
task = SecretsToEnv(
|
|
271
282
|
project_config=mock.Mock(),
|
|
@@ -284,7 +295,9 @@ class TestSecretsToEnvGetCredential:
|
|
|
284
295
|
|
|
285
296
|
def test_get_credential_with_none_value_raises_error(self):
|
|
286
297
|
"""Test _get_credential raises error when provider returns None."""
|
|
287
|
-
task_config = TaskConfig(
|
|
298
|
+
task_config = TaskConfig(
|
|
299
|
+
{"options": {"env_path": ".env", "secrets": ["TEST_SECRET"]}}
|
|
300
|
+
)
|
|
288
301
|
|
|
289
302
|
task = SecretsToEnv(
|
|
290
303
|
project_config=mock.Mock(),
|
|
@@ -304,7 +317,9 @@ class TestSecretsToEnvGetCredential:
|
|
|
304
317
|
|
|
305
318
|
def test_get_credential_uses_env_key_parameter(self):
|
|
306
319
|
"""Test _get_credential uses custom env_key when provided."""
|
|
307
|
-
task_config = TaskConfig(
|
|
320
|
+
task_config = TaskConfig(
|
|
321
|
+
{"options": {"env_path": ".env", "secrets": ["TEST_SECRET"]}}
|
|
322
|
+
)
|
|
308
323
|
|
|
309
324
|
task = SecretsToEnv(
|
|
310
325
|
project_config=mock.Mock(),
|
|
@@ -328,7 +343,9 @@ class TestSecretsToEnvGetCredential:
|
|
|
328
343
|
import logging
|
|
329
344
|
|
|
330
345
|
caplog.set_level(logging.INFO)
|
|
331
|
-
task_config = TaskConfig(
|
|
346
|
+
task_config = TaskConfig(
|
|
347
|
+
{"options": {"env_path": ".env", "secrets": ["TEST_SECRET"]}}
|
|
348
|
+
)
|
|
332
349
|
|
|
333
350
|
task = SecretsToEnv(
|
|
334
351
|
project_config=mock.Mock(),
|
|
@@ -352,7 +369,9 @@ class TestSecretsToEnvGetAllCredentials:
|
|
|
352
369
|
|
|
353
370
|
def test_get_all_credentials_success(self):
|
|
354
371
|
"""Test _get_all_credentials successfully retrieves all credentials."""
|
|
355
|
-
task_config = TaskConfig(
|
|
372
|
+
task_config = TaskConfig(
|
|
373
|
+
{"options": {"env_path": ".env", "secrets": ["TEST_SECRET"]}}
|
|
374
|
+
)
|
|
356
375
|
|
|
357
376
|
task = SecretsToEnv(
|
|
358
377
|
project_config=mock.Mock(),
|
|
@@ -382,7 +401,9 @@ class TestSecretsToEnvGetAllCredentials:
|
|
|
382
401
|
|
|
383
402
|
def test_get_all_credentials_escapes_quotes(self):
|
|
384
403
|
"""Test _get_all_credentials escapes quotes in all values."""
|
|
385
|
-
task_config = TaskConfig(
|
|
404
|
+
task_config = TaskConfig(
|
|
405
|
+
{"options": {"env_path": ".env", "secrets": ["TEST_SECRET"]}}
|
|
406
|
+
)
|
|
386
407
|
|
|
387
408
|
task = SecretsToEnv(
|
|
388
409
|
project_config=mock.Mock(),
|
|
@@ -405,7 +426,9 @@ class TestSecretsToEnvGetAllCredentials:
|
|
|
405
426
|
|
|
406
427
|
def test_get_all_credentials_escapes_newlines(self):
|
|
407
428
|
"""Test _get_all_credentials escapes newlines in all values."""
|
|
408
|
-
task_config = TaskConfig(
|
|
429
|
+
task_config = TaskConfig(
|
|
430
|
+
{"options": {"env_path": ".env", "secrets": ["TEST_SECRET"]}}
|
|
431
|
+
)
|
|
409
432
|
|
|
410
433
|
task = SecretsToEnv(
|
|
411
434
|
project_config=mock.Mock(),
|
|
@@ -428,7 +451,9 @@ class TestSecretsToEnvGetAllCredentials:
|
|
|
428
451
|
|
|
429
452
|
def test_get_all_credentials_with_none_value_raises_error(self):
|
|
430
453
|
"""Test _get_all_credentials raises error when provider returns None."""
|
|
431
|
-
task_config = TaskConfig(
|
|
454
|
+
task_config = TaskConfig(
|
|
455
|
+
{"options": {"env_path": ".env", "secrets": ["TEST_SECRET"]}}
|
|
456
|
+
)
|
|
432
457
|
|
|
433
458
|
task = SecretsToEnv(
|
|
434
459
|
project_config=mock.Mock(),
|
|
@@ -453,7 +478,9 @@ class TestSecretsToEnvGetAllCredentials:
|
|
|
453
478
|
import logging
|
|
454
479
|
|
|
455
480
|
caplog.set_level(logging.INFO)
|
|
456
|
-
task_config = TaskConfig(
|
|
481
|
+
task_config = TaskConfig(
|
|
482
|
+
{"options": {"env_path": ".env", "secrets": ["TEST_SECRET"]}}
|
|
483
|
+
)
|
|
457
484
|
|
|
458
485
|
task = SecretsToEnv(
|
|
459
486
|
project_config=mock.Mock(),
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cumulusci-plus
|
|
3
|
-
Version: 5.0.
|
|
3
|
+
Version: 5.0.43
|
|
4
4
|
Summary: Build and release tools for Salesforce developers
|
|
5
5
|
Project-URL: Homepage, https://github.com/jorgesolebur/CumulusCI
|
|
6
6
|
Project-URL: Changelog, https://cumulusci.readthedocs.io/en/stable/history.html
|
|
@@ -19,6 +19,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.12
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.13
|
|
21
21
|
Requires-Python: >=3.11
|
|
22
|
+
Requires-Dist: boto3
|
|
22
23
|
Requires-Dist: click>=8.1
|
|
23
24
|
Requires-Dist: cryptography
|
|
24
25
|
Requires-Dist: defusedxml
|
|
@@ -55,7 +56,6 @@ Requires-Dist: sqlalchemy<2
|
|
|
55
56
|
Requires-Dist: xmltodict
|
|
56
57
|
Provides-Extra: select
|
|
57
58
|
Requires-Dist: annoy; extra == 'select'
|
|
58
|
-
Requires-Dist: boto3; extra == 'select'
|
|
59
59
|
Requires-Dist: numpy; extra == 'select'
|
|
60
60
|
Requires-Dist: pandas; extra == 'select'
|
|
61
61
|
Requires-Dist: scikit-learn; extra == 'select'
|
|
@@ -129,14 +129,13 @@ license](https://github.com/SFDO-Tooling/CumulusCI/blob/main/LICENSE)
|
|
|
129
129
|
and is not covered by the Salesforce Master Subscription Agreement.
|
|
130
130
|
|
|
131
131
|
<!-- Changelog -->
|
|
132
|
-
## v5.0.
|
|
132
|
+
## v5.0.43 (2025-12-08)
|
|
133
133
|
<!-- Release notes generated using configuration in .github/release.yml at main -->
|
|
134
134
|
|
|
135
135
|
## What's Changed
|
|
136
136
|
### Changes
|
|
137
|
-
*
|
|
138
|
-
*
|
|
139
|
-
* Rename project from CumulusCI to CumulusCI Plus by [@rupeshjSFDC](https://github.com/rupeshjSFDC) in [#133](https://github.com/jorgesolebur/CumulusCI/pull/133)
|
|
137
|
+
* Clean profile action overrides task for custom applications. by [@rupeshjSFDC](https://github.com/rupeshjSFDC) in [#161](https://github.com/jorgesolebur/CumulusCI/pull/161)
|
|
138
|
+
* Add task execution in universal context. by [@rupeshjSFDC](https://github.com/rupeshjSFDC) in [#163](https://github.com/jorgesolebur/CumulusCI/pull/163)
|
|
140
139
|
|
|
141
140
|
|
|
142
|
-
**Full Changelog**: https://github.com/jorgesolebur/CumulusCI/compare/v5.0.
|
|
141
|
+
**Full Changelog**: https://github.com/jorgesolebur/CumulusCI/compare/v5.0.42...v5.0.43
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
cumulusci/__about__.py,sha256
|
|
1
|
+
cumulusci/__about__.py,sha256=-NhB_eXyQFJxpgrAhhd1X6z-0mhpkHP0Trik6tfT3DE,23
|
|
2
2
|
cumulusci/__init__.py,sha256=jdanFQ_i8vbdO7Eltsf4pOfvV4mwa_Osyc4gxWKJ8ng,764
|
|
3
3
|
cumulusci/__main__.py,sha256=kgRH-n5AJrH_daCK_EJwH7azAUxdXEmpi-r-dPGMR6Y,43
|
|
4
4
|
cumulusci/conftest.py,sha256=AIL98BDwNAQtdo8YFmLKwav0tmrQ5dpbw1cX2FyGouQ,5108
|
|
5
|
-
cumulusci/cumulusci.yml,sha256=
|
|
5
|
+
cumulusci/cumulusci.yml,sha256=qVkhf6IcFflzTz392zYLTzPjhT_wesYDBiugB2vIu4A,77202
|
|
6
6
|
cumulusci/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
cumulusci/cli/cci.py,sha256=yAq8jFoGde6g_1TeAAjzZYsk77itiONCQGBFe3g3nOs,11836
|
|
8
8
|
cumulusci/cli/error.py,sha256=znj0YN8D2Grozm1u7mZAsJlmmdGebbuy0c1ofQluL4Q,4410
|
|
@@ -14,7 +14,7 @@ cumulusci/cli/project.py,sha256=GKFTNgvB_xj5yIk2Wwj3gwAN3-eXCZTk6PhwLYOH6cI,1331
|
|
|
14
14
|
cumulusci/cli/robot.py,sha256=hGfa3UQkwxAyuY0MlV6KzUqhwwJCvm-BPo742cTOKIQ,3847
|
|
15
15
|
cumulusci/cli/runtime.py,sha256=PFBy-idQy6WsUijiU61hd4-jL12UH_PRGHATJxsNacU,6991
|
|
16
16
|
cumulusci/cli/service.py,sha256=_d7C0ROpIf80wAu0BT-VO4DxSpJRHgFubTC4s6o5ZI8,20575
|
|
17
|
-
cumulusci/cli/task.py,sha256=
|
|
17
|
+
cumulusci/cli/task.py,sha256=X4EeeRcL7Qp4nqiaJhjlS6LyjGghA5N6PAIfBb1r0Sw,10768
|
|
18
18
|
cumulusci/cli/ui.py,sha256=Ld-2S6Kr204SBput-1pNAVlYglzcvbV5nVA_rGXlAo8,7346
|
|
19
19
|
cumulusci/cli/utils.py,sha256=Bl-l8eOXxzi6E_DsWGGGeefwZxrVg7Zo52BIwoNhKH8,5522
|
|
20
20
|
cumulusci/cli/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -22,13 +22,13 @@ cumulusci/cli/tests/test_cci.py,sha256=p9PYNij3dB3dNwOg9ivPSzVw179WORFVMfRpkWW68
|
|
|
22
22
|
cumulusci/cli/tests/test_error.py,sha256=Urny_SlYehF8Kc27BVKt1mkjm5hMlUZyr1rB6pWkclE,6643
|
|
23
23
|
cumulusci/cli/tests/test_flow.py,sha256=Fz_drWWczzDsWirJmKpdA68I9IJRlarAsuRy1qX27UA,19173
|
|
24
24
|
cumulusci/cli/tests/test_logger.py,sha256=-XBwSmtuelpx5sax0_E2xi4F9m_UsRkt2gn1o9ub6h8,834
|
|
25
|
-
cumulusci/cli/tests/test_org.py,sha256=
|
|
25
|
+
cumulusci/cli/tests/test_org.py,sha256=Zdq6ynTwvZFvS58PTycM7Y2t_gUn3emL8CrFTcJECvY,51258
|
|
26
26
|
cumulusci/cli/tests/test_plan.py,sha256=IweBQlmtE2JnnBJy2fJagGA1DcKKORbbb2Xbu6t_hYU,8528
|
|
27
27
|
cumulusci/cli/tests/test_project.py,sha256=VMwsmyf2Cww9B6zuxh41kiXpyvozEdvfUAOdE491hXw,8498
|
|
28
28
|
cumulusci/cli/tests/test_robot.py,sha256=v2CCYYOg9ocEN-xvO5MXY_XsIbwu5_Z3mwLYZjisn74,6523
|
|
29
29
|
cumulusci/cli/tests/test_runtime.py,sha256=omkRBqLfdmjooV0HvMjyYx-fiYlOa2__YJBVw1wD8os,6910
|
|
30
30
|
cumulusci/cli/tests/test_service.py,sha256=iT-uHGItVT8LHHqtPB1gdKUMPgShXveLOw8_vUTxuwU,26686
|
|
31
|
-
cumulusci/cli/tests/test_task.py,sha256=
|
|
31
|
+
cumulusci/cli/tests/test_task.py,sha256=FKO1m8R4pJjbShMt188UiGiBH8psmYBqks5IHGN2YSI,12878
|
|
32
32
|
cumulusci/cli/tests/test_ui.py,sha256=mxvVF_kCVuTceA_J25LUH07NIS8hmMCvuFRa3fZ2NFQ,9480
|
|
33
33
|
cumulusci/cli/tests/test_utils.py,sha256=nkvUfN7m811_QPBeY2bR49KZRffAxBjxiy3bNrXCLvA,3537
|
|
34
34
|
cumulusci/cli/tests/utils.py,sha256=w-hbH16JAQ5ykgkU8smgHrbpc020jPFF9dnVG5sADcw,1340
|
|
@@ -49,23 +49,23 @@ cumulusci/core/config/BaseConfig.py,sha256=WFz6jq2xnUHyi-Plm3ARpqAZtDlI4zLact3e5
|
|
|
49
49
|
cumulusci/core/config/BaseTaskFlowConfig.py,sha256=vdUijsUtURFl9e3M8qv-KSLkLBSsMFh-zuDgbPcyDKA,158
|
|
50
50
|
cumulusci/core/config/OrgConfig.py,sha256=5pY3LUVTMFBAcZ4Na0opJx_zFS-4Bz3FXDk_jUrCMRo,127
|
|
51
51
|
cumulusci/core/config/ScratchOrgConfig.py,sha256=ApofLILKrkqfizAzVOw7Iz5gu41-PI-RlDVc1959-tI,150
|
|
52
|
-
cumulusci/core/config/__init__.py,sha256=
|
|
52
|
+
cumulusci/core/config/__init__.py,sha256=HKIb08Gq-r3feMn-WobF8JrUfivV8je0GzPtJ162eeo,3447
|
|
53
53
|
cumulusci/core/config/base_config.py,sha256=stziL-bZzu1uj2sPNKqm2_7sABXCA-_l5LVKOwFfW9E,3889
|
|
54
54
|
cumulusci/core/config/base_task_flow_config.py,sha256=ac0s_bptLhSpYR-7WHZNXBuHGrvK0TifHeof9keJl1Y,3833
|
|
55
55
|
cumulusci/core/config/marketing_cloud_service_config.py,sha256=wFiOx8WlOFotXHX9S20mC24hlZ0xe8OwsQZadtMkkQQ,3017
|
|
56
56
|
cumulusci/core/config/oauth2_service_config.py,sha256=3gLoR38l-0zYgxtsQ5w7qUwWdrFkTF3R5EnbDmLJer8,653
|
|
57
|
-
cumulusci/core/config/org_config.py,sha256=
|
|
58
|
-
cumulusci/core/config/project_config.py,sha256=
|
|
59
|
-
cumulusci/core/config/scratch_org_config.py,sha256=
|
|
57
|
+
cumulusci/core/config/org_config.py,sha256=7zsrzap92Wwj0ASebEA9MSS0dkOPeyPnN0Uydw9STC0,26121
|
|
58
|
+
cumulusci/core/config/project_config.py,sha256=xH2Oq7UpyTHVwpfoDV3ipM8fAruZyXRhdxiIYg0ksPg,26994
|
|
59
|
+
cumulusci/core/config/scratch_org_config.py,sha256=91gminoPLO7tUnIMbASKPMZgKKdCyL0Sfm1F0BwGNC0,9283
|
|
60
60
|
cumulusci/core/config/sfdx_org_config.py,sha256=EsuiNVjv1v9EbwexIIfvvsNtxbU43QpsArS-xSlOGfI,8069
|
|
61
61
|
cumulusci/core/config/universal_config.py,sha256=tw6BXxBCcyeN4EBYBmF9yLkO-rY_Hxfn00AvKMrX7Ro,2625
|
|
62
62
|
cumulusci/core/config/util.py,sha256=yjoXpT06z-oJ9SYb_FD-ucc2LDZ6FsBUReo7Qceu3oQ,770
|
|
63
63
|
cumulusci/core/config/tests/_test_config_backwards_compatibility.py,sha256=uSmk1Y8kTz8lUnjI7ABNgdl-wFXGLlWkFsqbPF2-pSA,1016
|
|
64
|
-
cumulusci/core/config/tests/test_config.py,sha256=
|
|
64
|
+
cumulusci/core/config/tests/test_config.py,sha256=vuw258qP8cUyRY4cWDlU30iPuaCQOs-0lhM1QC3Aq78,70021
|
|
65
65
|
cumulusci/core/config/tests/test_config_expensive.py,sha256=FttEpUu-kLhi1qv22-w458JPlEXXCOCIoRRwLQzt4os,30554
|
|
66
66
|
cumulusci/core/config/tests/test_config_util.py,sha256=X1SY9PIhLoQuC8duBKgs804aghN3n12DhqiC_f6jSmM,3177
|
|
67
67
|
cumulusci/core/dependencies/__init__.py,sha256=Txf4VCrRW-aREKHqzK3ZyauQMsgtCXjiLkQzpMQT0kI,1533
|
|
68
|
-
cumulusci/core/dependencies/base.py,sha256=
|
|
68
|
+
cumulusci/core/dependencies/base.py,sha256=LAsGv6IeVyqtlWVVmbSbjYRqaBQo48cSwSh8w7_WrKs,25076
|
|
69
69
|
cumulusci/core/dependencies/dependencies.py,sha256=1BuDBL3jVUkwwbA7c_E3beI46hEm2SDSlj_3Yl2iRjo,9104
|
|
70
70
|
cumulusci/core/dependencies/github.py,sha256=EQnhZbY-GV5KJ4b3LLF6CselQX7P8b6iuPVAkWhvV6I,5871
|
|
71
71
|
cumulusci/core/dependencies/github_resolvers.py,sha256=Em8p41Q-npoKv1ZAYNxXVrluQmYitzVfLLXlmln-MGw,9196
|
|
@@ -224,7 +224,7 @@ cumulusci/salesforce_api/tests/test_package_zip.py,sha256=C8YzRFvRRpgT1ysqUMGhGV
|
|
|
224
224
|
cumulusci/salesforce_api/tests/test_rest_deploy.py,sha256=VRADL5vHlCJcswLk1IA6Chs6UD6YJUzPiM3KzPJ63L8,10045
|
|
225
225
|
cumulusci/salesforce_api/tests/test_retrieve_profile_api.py,sha256=oDE0fM992y0N7fI94oJtRXJzIQ5sew285-ywDk4c-S4,11778
|
|
226
226
|
cumulusci/salesforce_api/tests/test_utils.py,sha256=h3dGnr-au7H9QUzUv-3uDFEjP6eq29MXFQeYi3Cxfwk,3965
|
|
227
|
-
cumulusci/schema/cumulusci.jsonschema.json,sha256=
|
|
227
|
+
cumulusci/schema/cumulusci.jsonschema.json,sha256=nh6GxGFSY8RteKC9CMj5tMf3C7ecRuqnEFcu7JXkxfQ,27577
|
|
228
228
|
cumulusci/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
229
229
|
cumulusci/tasks/base_source_control_task.py,sha256=YVLngLcXsjnsbQwTS33tioLic3EU5D-P0GtY8op00Uw,637
|
|
230
230
|
cumulusci/tasks/command.py,sha256=ntVmi98kUvoQm90sd34pbILLt73tdG9VUT1-eTdHQ6g,5710
|
|
@@ -239,7 +239,7 @@ cumulusci/tasks/util.py,sha256=FDd4dl-P6fSwvg1jU0508hoV9G8eeDeu5aDQ_dwZQ5k,9534
|
|
|
239
239
|
cumulusci/tasks/apex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
240
240
|
cumulusci/tasks/apex/anon.py,sha256=Bipdxh_RDJ6zfpKn-feNECkz322Cvra1KzjL9fnWP00,5923
|
|
241
241
|
cumulusci/tasks/apex/batch.py,sha256=TeDy3KeJBbtdzQXG8eoH0fcUCnRgU8XGAsePc3iXzT8,6779
|
|
242
|
-
cumulusci/tasks/apex/testrunner.py,sha256=
|
|
242
|
+
cumulusci/tasks/apex/testrunner.py,sha256=5xyQ560hg5fzfQHH44WdTdNX4iX6yROisjiHfWLso54,45669
|
|
243
243
|
cumulusci/tasks/apex/tests/test_apex_tasks.py,sha256=-G-aMlMF_RO_yfsJ7gCS8Z5AqC5n4WOXU9QESPeSFKo,96440
|
|
244
244
|
cumulusci/tasks/apex/tests/cassettes/ManualEditTestApexIntegrationTests.test_run_tests__integration_test.yaml,sha256=dyTatJlZVNT7_stHhT6y_pss9-lxnTfBGZC7fJlmlqU,45568
|
|
245
245
|
cumulusci/tasks/bulkdata/__init__.py,sha256=NtVjVN00_inX3YjfffcKb096jxVvRG_Gpc-ummS0_ko,485
|
|
@@ -322,7 +322,7 @@ cumulusci/tasks/bulkdata/tests/test_query_db__joins_self_lookups.yml,sha256=SKEK
|
|
|
322
322
|
cumulusci/tasks/bulkdata/tests/test_query_db_joins_lookups.yml,sha256=2ysoNGHa5WvaAj56p4uSrwepdHHtGWS9lirGvKaxhs4,414
|
|
323
323
|
cumulusci/tasks/bulkdata/tests/test_query_db_joins_lookups_select.yml,sha256=riwNEmO95RuUrpEeEGt4TkgK5tJDlJ8rZcMaFH_Ckj8,855
|
|
324
324
|
cumulusci/tasks/bulkdata/tests/test_select.py,sha256=inbEwJEx7yIF2BvlcPtepVMdeI6kc3XpYnz27FaPvtY,7733
|
|
325
|
-
cumulusci/tasks/bulkdata/tests/test_select_utils.py,sha256=
|
|
325
|
+
cumulusci/tasks/bulkdata/tests/test_select_utils.py,sha256=wFroB4Hmr9QMWas34pWP2B4cXBoaWxv_YdpRxzZNKbs,36793
|
|
326
326
|
cumulusci/tasks/bulkdata/tests/test_snowfakery.py,sha256=TcG9nUJMECk_UrDb1I1y95nifadPhem2y68uGu0-xWE,48031
|
|
327
327
|
cumulusci/tasks/bulkdata/tests/test_step.py,sha256=AKAXRnrv4dZ1lMymnx_EyvsqOL2vGetZ6B5H1wq-cSw,138042
|
|
328
328
|
cumulusci/tasks/bulkdata/tests/test_updates.py,sha256=FByHFA7KfArniMheBekXt0Eb-Vip3ydoxuFJOvFPX8A,16701
|
|
@@ -412,7 +412,8 @@ cumulusci/tasks/metadata/tests/package_metadata/namespaced_report_folder/package
|
|
|
412
412
|
cumulusci/tasks/metadata/tests/package_metadata/namespaced_report_folder/package_install_uninstall.xml,sha256=5OfcO5M5m06k2yGqUiMCv_QpLHZNHPy4zfuZuJGVht8,404
|
|
413
413
|
cumulusci/tasks/metadata/tests/package_metadata/namespaced_report_folder/.hidden/.keep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
414
414
|
cumulusci/tasks/metadata/tests/package_metadata/namespaced_report_folder/reports/namespace__TestFolder/TestReport.report,sha256=cJLHJFWY4-zJFXSlveGf4TZcMpVwesU5iUZXD7yqIHk,106
|
|
415
|
-
cumulusci/tasks/metadata_etl/__init__.py,sha256=
|
|
415
|
+
cumulusci/tasks/metadata_etl/__init__.py,sha256=y68uou11OQJiz4k-209JtjQ4zDWVPX5U2YvVUaCClxs,1134
|
|
416
|
+
cumulusci/tasks/metadata_etl/applications.py,sha256=5k0QxsQCaRry4CPbvbuhZ2MvnInkz2wMBZsaY6XeK38,9538
|
|
416
417
|
cumulusci/tasks/metadata_etl/base.py,sha256=hZ0aqhNBvewDb1GxDYy7isaeGr-EGtcH81_mARH2awI,16198
|
|
417
418
|
cumulusci/tasks/metadata_etl/duplicate_rules.py,sha256=28ry5b8pXIVOdxP0p0jNkTlq6n58X6n9ypueUWgDbos,828
|
|
418
419
|
cumulusci/tasks/metadata_etl/field_sets.py,sha256=cncPFxr8iQVQCIOgI9yEhwCd8rJfO4Cv61baPAsq_-k,2746
|
|
@@ -424,6 +425,7 @@ cumulusci/tasks/metadata_etl/picklists.py,sha256=8Ik5CWvpvH0ZxV9m-RKvZTyJZF0bQ-0
|
|
|
424
425
|
cumulusci/tasks/metadata_etl/remote_site_settings.py,sha256=hFw0B41aTgozzPHjA4rspnAZ92-jve3wOX400nnZOJc,3422
|
|
425
426
|
cumulusci/tasks/metadata_etl/sharing.py,sha256=ziV3acvJ9dHNEdH9RFWvSKzqn3l4voK_7vjyG2ObapU,5801
|
|
426
427
|
cumulusci/tasks/metadata_etl/value_sets.py,sha256=WsfHAyMiuJk49_WXW_hMkJrtwNIJVhTr6Dd959jHxiY,4341
|
|
428
|
+
cumulusci/tasks/metadata_etl/tests/test_applications.py,sha256=2oHF7s6WypzPNfF8aGq7GwGOvnvMCr_x4RcDNLZWjxU,28101
|
|
427
429
|
cumulusci/tasks/metadata_etl/tests/test_base.py,sha256=Twb0lF3aOerQAfxFdos3sI2xbPB8UDoTk3GAzp5xpSg,16731
|
|
428
430
|
cumulusci/tasks/metadata_etl/tests/test_duplicate_rules.py,sha256=zUz7FtRyJ40aKkiwo_OsP4kGJOoIcv9bZfx11L-l0Gw,873
|
|
429
431
|
cumulusci/tasks/metadata_etl/tests/test_field_sets.py,sha256=tc5_rHTqKcxmNyyOYqADnPME9ouxPDBm88xEejvZCxo,5618
|
|
@@ -534,7 +536,7 @@ cumulusci/tasks/salesforce/custom_settings.py,sha256=rpDszqBKB1qPR5DlLhG3ke41WKr
|
|
|
534
536
|
cumulusci/tasks/salesforce/custom_settings_wait.py,sha256=41xVNNVj0uauK2oFQ9PDj2VeEkGpJFqY8sOFZQ9ruts,4909
|
|
535
537
|
cumulusci/tasks/salesforce/enable_prediction.py,sha256=mUPPGOmZjToPhQ8xaBSNreCh13L4gnwl4Oh3sxEw7KM,4311
|
|
536
538
|
cumulusci/tasks/salesforce/getPackageVersion.py,sha256=t6d3sx_6XrnRmhIb06vlp5BdP7iURuIl0HrQKQzo7W8,3615
|
|
537
|
-
cumulusci/tasks/salesforce/insert_record.py,sha256=
|
|
539
|
+
cumulusci/tasks/salesforce/insert_record.py,sha256=PGr-IeJOtOyOyk4X4vU0uP-ugfhuDnrOafp4wVhj_Dk,1510
|
|
538
540
|
cumulusci/tasks/salesforce/install_package_version.py,sha256=fYw47SGj2_0YL26KTjKrYsG8acoTG4wsv4--Bsc7IE0,10057
|
|
539
541
|
cumulusci/tasks/salesforce/license_preflights.py,sha256=QUsoMKTKxJ_fQVNpzLJ0jMiwKsh7LFqbHjKeY8LtxO8,209
|
|
540
542
|
cumulusci/tasks/salesforce/network_member_group.py,sha256=sWkRr4A6Zm_Iv_7uzPmiNjwKm4EHYbqT4tLNPINgLBM,6853
|
|
@@ -549,9 +551,11 @@ cumulusci/tasks/salesforce/sourcetracking.py,sha256=cLMYSnkCmp6YaN9koSPX2i2g1t1W
|
|
|
549
551
|
cumulusci/tasks/salesforce/trigger_handlers.py,sha256=cs6pDHhvi_eu0Vr8sLtfH2nrhlsF8TPrkKezjciy79o,4932
|
|
550
552
|
cumulusci/tasks/salesforce/uninstall_packaged_incremental.py,sha256=9-_3S0PaVm-K6t44McBHSfRTB7KVzkHUMii4-p5PkS0,5673
|
|
551
553
|
cumulusci/tasks/salesforce/update_dependencies.py,sha256=84N_hUam6wNxrnseaGMJSSDtz02cV78MKWVQzwjVecY,12225
|
|
552
|
-
cumulusci/tasks/salesforce/
|
|
554
|
+
cumulusci/tasks/salesforce/update_external_auth_identity_provider.py,sha256=PpgsK9oIib7IdKqzGjpahHomm19WEJ9GgxJO4EfY1Fs,20649
|
|
555
|
+
cumulusci/tasks/salesforce/update_external_credential.py,sha256=s5DJ8yGo4xrHg4-ZIsgJ-8RCQuNwyzVcQorw1wHdU6o,25163
|
|
553
556
|
cumulusci/tasks/salesforce/update_named_credential.py,sha256=4Lxf-F-ag9whHQ-W2qKL5DHItl3i2oskPKu-1FWHxTM,16485
|
|
554
557
|
cumulusci/tasks/salesforce/update_profile.py,sha256=YHaP0v0Su9blkESLRqoXgPbGnHoVhWr4LgfzbQJ1ED8,15152
|
|
558
|
+
cumulusci/tasks/salesforce/update_record.py,sha256=k4pnSz3IFaTJRVkSP2HswtH0rizu6hUAmP0zmBWzGNQ,8971
|
|
555
559
|
cumulusci/tasks/salesforce/tests/__init__.py,sha256=zEUlLU8eRXUU1HAcYdHtdAgHbdlAPPj39rcWRPEu2H4,57
|
|
556
560
|
cumulusci/tasks/salesforce/tests/test_CreateCommunity.py,sha256=aepyVVrM6zfmT2UJ_pKKdgwv7DsU66F_eiwmE4EfVUo,8720
|
|
557
561
|
cumulusci/tasks/salesforce/tests/test_CreatePackage.py,sha256=Tn98TgYJUdMh1RCGZSHXVxmanUbXGngnNd4-e1IbuIs,753
|
|
@@ -584,7 +588,7 @@ cumulusci/tasks/salesforce/tests/test_create_permission_sets.py,sha256=7lV0NUPf6
|
|
|
584
588
|
cumulusci/tasks/salesforce/tests/test_custom_settings.py,sha256=wnMUkj7siBS3vrKhSi3Wxw3HAYW4BOJpEcPjn7BefnM,7945
|
|
585
589
|
cumulusci/tasks/salesforce/tests/test_custom_settings_wait.py,sha256=tPkR-i4kIjRaHwWzLg8x7ztS9uShkkybtPu0EqQwETg,6546
|
|
586
590
|
cumulusci/tasks/salesforce/tests/test_describemetadatatypes.py,sha256=wNDjtmuV7pZ1irSvVITQ6I6eCznNKO2O766N9eTaZZ4,523
|
|
587
|
-
cumulusci/tasks/salesforce/tests/test_enable_prediction.py,sha256=
|
|
591
|
+
cumulusci/tasks/salesforce/tests/test_enable_prediction.py,sha256=Gj-jv1FzN2b40Mu-VUiRMHXn5ovnVJa_ByBpJ7p8vpQ,9705
|
|
588
592
|
cumulusci/tasks/salesforce/tests/test_getPackageVersion.py,sha256=6n8vBSzBtkns_Po0rbCAo03ps5whPqfNPBUEMyLUJTs,23417
|
|
589
593
|
cumulusci/tasks/salesforce/tests/test_insert_record.py,sha256=8SKZ28aH1x4-NYHAxsk2HkT7IlPGi0qJoNqVFM2i8M8,3478
|
|
590
594
|
cumulusci/tasks/salesforce/tests/test_install_package_version.py,sha256=f_hHO83vRxbgHNvNfOF8tf7FZCY4bVT2uofdoGNgChY,15282
|
|
@@ -597,8 +601,10 @@ cumulusci/tasks/salesforce/tests/test_salesforce_files.py,sha256=eBeyanF7ygldukf
|
|
|
597
601
|
cumulusci/tasks/salesforce/tests/test_sourcetracking.py,sha256=n9dyJ21OZs8P574Ds3uzVESCVl6fK0_RYv2bKI1dm3E,12540
|
|
598
602
|
cumulusci/tasks/salesforce/tests/test_trigger_handlers.py,sha256=IpqnCKgGVWU0XUP4LDB10HG1LLj5VvsSfxMBa26EScs,10567
|
|
599
603
|
cumulusci/tasks/salesforce/tests/test_update_dependencies.py,sha256=A6A4xk5fojSwqzvgCQRujfvB1lqw8Tj1i1b0sRU-imE,14694
|
|
600
|
-
cumulusci/tasks/salesforce/tests/
|
|
604
|
+
cumulusci/tasks/salesforce/tests/test_update_external_auth_identity_provider.py,sha256=QXBnzDhEeiK-Dd5aU4epQAl237KNGHTdCdyGfdQH0iU,35069
|
|
605
|
+
cumulusci/tasks/salesforce/tests/test_update_external_credential.py,sha256=9vRFDWi5alrrvimWRUwvQDDbGCPYy2yVGF_w2pXZ8VI,54117
|
|
601
606
|
cumulusci/tasks/salesforce/tests/test_update_named_credential.py,sha256=ryyW7b1TGXw4-k5E3-LXzT2iQhBhnpAgTJcEQMlSdOw,37829
|
|
607
|
+
cumulusci/tasks/salesforce/tests/test_update_record.py,sha256=L6YxtocoVvPaFVgkQxeioPuwSWjIgQPuQ3DQxZ5jjsE,17181
|
|
602
608
|
cumulusci/tasks/salesforce/tests/util.py,sha256=YbeHOKyKNhKNYtd1g467a4sQ07W3SvyMAuT0E3bL6Js,2543
|
|
603
609
|
cumulusci/tasks/salesforce/users/permsets.py,sha256=6Qhsems0x8SGfksEpn7qjJiLFoApyQHPXXJuT28TNxk,12005
|
|
604
610
|
cumulusci/tasks/salesforce/users/photos.py,sha256=67-fQk0m9w4bf1N2WSWfsn-kwtmIuLtSpyJCqa8Cr1w,5745
|
|
@@ -610,7 +616,7 @@ cumulusci/tasks/sample_data/load_sample_data.py,sha256=x_m8OvqoZuPUzblhhFpiQXqHH
|
|
|
610
616
|
cumulusci/tasks/sample_data/test_capture_sample_data.py,sha256=irPGIQYwqmuTXMIDeN6pz-EpjDY7T4F32mhhLvtM_ho,3999
|
|
611
617
|
cumulusci/tasks/sample_data/test_load_sample_data.py,sha256=iSLRTrx2iwOanSMyKPFSn-j1YKOy1ZGFt1niV24LFH8,4168
|
|
612
618
|
cumulusci/tasks/sfdmu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
613
|
-
cumulusci/tasks/sfdmu/sfdmu.py,sha256=
|
|
619
|
+
cumulusci/tasks/sfdmu/sfdmu.py,sha256=hwfYez3F9t00onOjSCIVf63YZ2_Po6OEUIkwMgML0AE,15617
|
|
614
620
|
cumulusci/tasks/sfdmu/tests/__init__.py,sha256=Vx3BD82OfmecnZN_5DtdAjiDqpRxgAsi9QUjFuoij2w,29
|
|
615
621
|
cumulusci/tasks/sfdmu/tests/test_runner.py,sha256=_lZAjglaEzb0Eb6hOGpl3B1iBVNXEVAek0OrS1PxwvA,7736
|
|
616
622
|
cumulusci/tasks/sfdmu/tests/test_sfdmu.py,sha256=bp8tJpEis5oAFbO9C6IElCvb4HQ_7gkX8-Ui5CTZr4A,42806
|
|
@@ -629,15 +635,15 @@ cumulusci/tasks/tests/test_salesforce.py,sha256=yCGtuHapxyAEmXQhuF2g2fh2naknTu7M
|
|
|
629
635
|
cumulusci/tasks/tests/test_sfdx.py,sha256=oUbHo28d796m5RuskXMLitJw2rCLjjXIfxggzr4gsso,3545
|
|
630
636
|
cumulusci/tasks/tests/test_util.py,sha256=SHNXQdfo3pxH7oFGvd-IpJS9noEoL4lm2b3CqW3KNws,9212
|
|
631
637
|
cumulusci/tasks/utility/copyContents.py,sha256=V2Pif9T8MSI3xPChtENBSSzGnh2-ahI0TIlUiBNiepI,14847
|
|
632
|
-
cumulusci/tasks/utility/credentialManager.py,sha256=
|
|
638
|
+
cumulusci/tasks/utility/credentialManager.py,sha256=PZRhXwqBL2DFvbLJM8_LlBXE8vD0O0VIafC4P-djaOk,11181
|
|
633
639
|
cumulusci/tasks/utility/directoryRecreator.py,sha256=PjUBOOxJy2DQbjimkp1XYScdH07TtutZ_1CYLlHK1YA,934
|
|
634
640
|
cumulusci/tasks/utility/env_management.py,sha256=FVMbm1PCz_c__sgmZ_6cXC6H0E3qpNhds5CFCOj1Dnw,6594
|
|
635
|
-
cumulusci/tasks/utility/secretsToEnv.py,sha256=
|
|
641
|
+
cumulusci/tasks/utility/secretsToEnv.py,sha256=GAf8kXtbWCy58YnuIu4P4XjtPAb_mSj6HSEfSxfVHas,4646
|
|
636
642
|
cumulusci/tasks/utility/tests/test_copyContents.py,sha256=ta8DbH-qKpGm-2Lw5LlHK8YqyuIIguf4GRuifdQwyRo,67191
|
|
637
|
-
cumulusci/tasks/utility/tests/test_credentialManager.py,sha256=
|
|
643
|
+
cumulusci/tasks/utility/tests/test_credentialManager.py,sha256=jjAmzpowD0zKfSn4S7FxDdiCaZntK87NFtsMClQAi_0,49230
|
|
638
644
|
cumulusci/tasks/utility/tests/test_directoryRecreator.py,sha256=zfBf_CMWHTGCKeHyoWPZ_kcu0rcU1H3e2MavqpJXabo,15488
|
|
639
645
|
cumulusci/tasks/utility/tests/test_env_management.py,sha256=fw34meWGOe1YYZO449MMCi2O7BgSaOA_I_wScrIr1Uk,8702
|
|
640
|
-
cumulusci/tasks/utility/tests/test_secretsToEnv.py,sha256=
|
|
646
|
+
cumulusci/tasks/utility/tests/test_secretsToEnv.py,sha256=mr6-oGG2zdzXv0IQK69Z7jJ--nuHFlQvHCMb_-5QmK4,36388
|
|
641
647
|
cumulusci/tasks/vcs/__init__.py,sha256=ZzpMZnhooXZ6r_ywBVTS3UNw9uMcXW6h33LylRqTDK0,700
|
|
642
648
|
cumulusci/tasks/vcs/commit_status.py,sha256=hgPUVHeQyIfMsCuwrw2RI-ufnbjdRARc6HI3BEgdcxI,2332
|
|
643
649
|
cumulusci/tasks/vcs/create_commit_status.py,sha256=kr_OFM3J32jxusS1og-K91Kl1F_Nr7SlevRsJKBhifs,1565
|
|
@@ -738,7 +744,7 @@ cumulusci/utils/xml/robot_xml.py,sha256=V9daywDdxBMDUYvMchWaPx-rj9kCXYskua1hvG_t
|
|
|
738
744
|
cumulusci/utils/xml/salesforce_encoding.py,sha256=ahPJWYfq3NMW8oSjsrzzQnAqghL-nQBWn-lSXuGjhIc,3071
|
|
739
745
|
cumulusci/utils/xml/test/test_metadata_tree.py,sha256=4jzKqYUEVzK6H8iCWMTD2v2hRssz2OeLspQO9osqm2E,8517
|
|
740
746
|
cumulusci/utils/xml/test/test_salesforce_encoding.py,sha256=DN0z5sM6Lk1U2hD7nYt7eYK1BjJy3-d5OdHk4HsPo6Y,6309
|
|
741
|
-
cumulusci/utils/yaml/cumulusci_yml.py,sha256=
|
|
747
|
+
cumulusci/utils/yaml/cumulusci_yml.py,sha256=UlvvvrBxhTGzWDBQCj6ja1Lv7tK6lUX_Bu5Quh98R7w,11612
|
|
742
748
|
cumulusci/utils/yaml/model_parser.py,sha256=m8lLvAynxuTbDm7rtPCxZZhEmNayDI12AJpapi3x4wU,5063
|
|
743
749
|
cumulusci/utils/yaml/safer_loader.py,sha256=O7hhI2DqVA0GV4oY4rlB084QCc_eXFg2HTNHlfGVOcQ,2388
|
|
744
750
|
cumulusci/utils/yaml/tests/bad_cci.yml,sha256=Idj6subt7pNZk8A1Vt3bs_lM99Ash5ZVgOho1drMTXQ,17
|
|
@@ -765,9 +771,9 @@ cumulusci/vcs/tests/test_vcs_bootstrap.py,sha256=N0NA48-rGNIIjY3Z7PtVnNwHObSlEGD
|
|
|
765
771
|
cumulusci/vcs/utils/__init__.py,sha256=py4fEcHM7Vd0M0XWznOlywxaeCtG3nEVGmELmEKVGU8,869
|
|
766
772
|
cumulusci/vcs/utils/list_modified_files.py,sha256=ylVwAGd0e1b06WWXy5lfYnpztiWXcrJRsG6uaha7CmM,7160
|
|
767
773
|
cumulusci/vcs/utils/tests/test_list_modified_files.py,sha256=kE8vP99apPzOCv7HQPxjG2-veEDO6vXcGuMgY-cd-6I,23894
|
|
768
|
-
cumulusci_plus-5.0.
|
|
769
|
-
cumulusci_plus-5.0.
|
|
770
|
-
cumulusci_plus-5.0.
|
|
771
|
-
cumulusci_plus-5.0.
|
|
772
|
-
cumulusci_plus-5.0.
|
|
773
|
-
cumulusci_plus-5.0.
|
|
774
|
+
cumulusci_plus-5.0.43.dist-info/METADATA,sha256=ykO19yyHYw-fSSF8xNzzIKglea20iUeV0phbGf62EWo,5998
|
|
775
|
+
cumulusci_plus-5.0.43.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
776
|
+
cumulusci_plus-5.0.43.dist-info/entry_points.txt,sha256=nTtu04b9iLXhzADcTrb5PwmdXE6e2MTUAMh9OK6Z2pg,80
|
|
777
|
+
cumulusci_plus-5.0.43.dist-info/licenses/AUTHORS.rst,sha256=PvewjKImdKPhhJ6xR2EEZ4T7GbpY2ZeAeyWm2aLtiMQ,676
|
|
778
|
+
cumulusci_plus-5.0.43.dist-info/licenses/LICENSE,sha256=NFsF_s7RVXk2dU6tmRAN8wF45pnD98VZ5IwqOsyBcaU,1499
|
|
779
|
+
cumulusci_plus-5.0.43.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|