cumulusci-plus 5.0.11__py3-none-any.whl → 5.0.12__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.
Potentially problematic release.
This version of cumulusci-plus might be problematic. Click here for more details.
- cumulusci/__about__.py +1 -1
- cumulusci/core/dependencies/base.py +17 -2
- {cumulusci_plus-5.0.11.dist-info → cumulusci_plus-5.0.12.dist-info}/METADATA +4 -5
- {cumulusci_plus-5.0.11.dist-info → cumulusci_plus-5.0.12.dist-info}/RECORD +8 -8
- {cumulusci_plus-5.0.11.dist-info → cumulusci_plus-5.0.12.dist-info}/WHEEL +0 -0
- {cumulusci_plus-5.0.11.dist-info → cumulusci_plus-5.0.12.dist-info}/entry_points.txt +0 -0
- {cumulusci_plus-5.0.11.dist-info → cumulusci_plus-5.0.12.dist-info}/licenses/AUTHORS.rst +0 -0
- {cumulusci_plus-5.0.11.dist-info → cumulusci_plus-5.0.12.dist-info}/licenses/LICENSE +0 -0
cumulusci/__about__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "5.0.
|
|
1
|
+
__version__ = "5.0.12"
|
|
@@ -10,7 +10,12 @@ from cumulusci.core.config import OrgConfig
|
|
|
10
10
|
from cumulusci.core.config.project_config import BaseProjectConfig
|
|
11
11
|
from cumulusci.core.dependencies.utils import TaskContext
|
|
12
12
|
from cumulusci.core.exceptions import DependencyResolutionError, VcsNotFoundError
|
|
13
|
-
from cumulusci.core.flowrunner import
|
|
13
|
+
from cumulusci.core.flowrunner import (
|
|
14
|
+
FlowCallback,
|
|
15
|
+
FlowCoordinator,
|
|
16
|
+
StepResult,
|
|
17
|
+
StepVersion,
|
|
18
|
+
)
|
|
14
19
|
from cumulusci.core.sfdx import (
|
|
15
20
|
SourceFormat,
|
|
16
21
|
convert_sfdx_source,
|
|
@@ -673,7 +678,6 @@ class UnmanagedVcsDependencyFlow(UnmanagedStaticDependency, ABC):
|
|
|
673
678
|
flow_config,
|
|
674
679
|
name=flow_config.name,
|
|
675
680
|
options={
|
|
676
|
-
"flow": pre_post_options,
|
|
677
681
|
"deploy_pre": pre_post_options,
|
|
678
682
|
"deploy_post": pre_post_options,
|
|
679
683
|
},
|
|
@@ -681,6 +685,17 @@ class UnmanagedVcsDependencyFlow(UnmanagedStaticDependency, ABC):
|
|
|
681
685
|
callbacks=self.callback_class(),
|
|
682
686
|
)
|
|
683
687
|
|
|
688
|
+
coordinator.results.append(
|
|
689
|
+
StepResult(
|
|
690
|
+
step_num=StepVersion("0.0.0"),
|
|
691
|
+
task_name="flow",
|
|
692
|
+
path=f"{self.flow_name}.flow",
|
|
693
|
+
result=None,
|
|
694
|
+
return_values=pre_post_options,
|
|
695
|
+
exception=None,
|
|
696
|
+
)
|
|
697
|
+
)
|
|
698
|
+
|
|
684
699
|
start_time = datetime.now()
|
|
685
700
|
coordinator.run(org)
|
|
686
701
|
duration = datetime.now() - start_time
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cumulusci-plus
|
|
3
|
-
Version: 5.0.
|
|
3
|
+
Version: 5.0.12
|
|
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
|
|
@@ -127,7 +127,7 @@ license](https://github.com/SFDO-Tooling/CumulusCI/blob/main/LICENSE)
|
|
|
127
127
|
and is not covered by the Salesforce Master Subscription Agreement.
|
|
128
128
|
|
|
129
129
|
<!-- Changelog -->
|
|
130
|
-
## v5.0.
|
|
130
|
+
## v5.0.12 (2025-07-28)
|
|
131
131
|
|
|
132
132
|
<!-- Release notes generated using configuration in .github/release.yml at main -->
|
|
133
133
|
|
|
@@ -135,7 +135,6 @@ and is not covered by the Salesforce Master Subscription Agreement.
|
|
|
135
135
|
|
|
136
136
|
### Changes
|
|
137
137
|
|
|
138
|
-
- Add
|
|
139
|
-
- All pre executions are always deployed unmanaged. by [@rupeshjSFDC](https://github.com/rupeshjSFDC) in [#47](https://github.com/jorgesolebur/CumulusCI/pull/47)
|
|
138
|
+
- Add flow variables accessible in the subflows. by [@rupeshjSFDC](https://github.com/rupeshjSFDC) in [#49](https://github.com/jorgesolebur/CumulusCI/pull/49)
|
|
140
139
|
|
|
141
|
-
**Full Changelog**: https://github.com/jorgesolebur/CumulusCI/compare/v5.0.
|
|
140
|
+
**Full Changelog**: https://github.com/jorgesolebur/CumulusCI/compare/v5.0.11...v5.0.12
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
cumulusci/__about__.py,sha256=
|
|
1
|
+
cumulusci/__about__.py,sha256=Vv4u1p-G1Nbn4Nke1q7gMED6qBN0oq8r2iByRLaev3Y,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
|
|
@@ -65,7 +65,7 @@ cumulusci/core/config/tests/test_config.py,sha256=ZtIQSIzQWebw7mYXgehnp3CvoatC_t
|
|
|
65
65
|
cumulusci/core/config/tests/test_config_expensive.py,sha256=__3JEuoAQ8s5njTcbyZlpXHr0jR0Qtne96xyF7fzqjQ,30137
|
|
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=Y0Tr8qGmGOnqaq7PEDI6cHdEcKCsL8CUPQyHXvkouFM,23295
|
|
69
69
|
cumulusci/core/dependencies/dependencies.py,sha256=74KjrCRn7AjKPBSGOm4pU34eJd8GSp1wNs7EFIC0wBE,8689
|
|
70
70
|
cumulusci/core/dependencies/github.py,sha256=ozpRc5ADJsRDD5C_T-TLFygnBDE5Y9_03ZLCtZ-qr98,5897
|
|
71
71
|
cumulusci/core/dependencies/github_resolvers.py,sha256=Em8p41Q-npoKv1ZAYNxXVrluQmYitzVfLLXlmln-MGw,9196
|
|
@@ -736,9 +736,9 @@ cumulusci/vcs/tests/dummy_service.py,sha256=RltOUpMIhSDNrfxk0LhLqlH4ppC0sK6NC2cO
|
|
|
736
736
|
cumulusci/vcs/tests/test_vcs_base.py,sha256=9mp6uZ3lTxY4onjUNCucp9N9aB3UylKS7_2Zu_hdAZw,24331
|
|
737
737
|
cumulusci/vcs/tests/test_vcs_bootstrap.py,sha256=N0NA48-rGNIIjY3Z7PtVnNwHObSlEGDk2K55TQGI8g4,27954
|
|
738
738
|
cumulusci/vcs/utils/__init__.py,sha256=py4fEcHM7Vd0M0XWznOlywxaeCtG3nEVGmELmEKVGU8,869
|
|
739
|
-
cumulusci_plus-5.0.
|
|
740
|
-
cumulusci_plus-5.0.
|
|
741
|
-
cumulusci_plus-5.0.
|
|
742
|
-
cumulusci_plus-5.0.
|
|
743
|
-
cumulusci_plus-5.0.
|
|
744
|
-
cumulusci_plus-5.0.
|
|
739
|
+
cumulusci_plus-5.0.12.dist-info/METADATA,sha256=YL-mSE1VN78CKMMurKseclnCKS8YwSmhPXgfUVVeNjw,5767
|
|
740
|
+
cumulusci_plus-5.0.12.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
741
|
+
cumulusci_plus-5.0.12.dist-info/entry_points.txt,sha256=nTtu04b9iLXhzADcTrb5PwmdXE6e2MTUAMh9OK6Z2pg,80
|
|
742
|
+
cumulusci_plus-5.0.12.dist-info/licenses/AUTHORS.rst,sha256=PvewjKImdKPhhJ6xR2EEZ4T7GbpY2ZeAeyWm2aLtiMQ,676
|
|
743
|
+
cumulusci_plus-5.0.12.dist-info/licenses/LICENSE,sha256=NFsF_s7RVXk2dU6tmRAN8wF45pnD98VZ5IwqOsyBcaU,1499
|
|
744
|
+
cumulusci_plus-5.0.12.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|