cumulusci-plus 5.0.10__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 CHANGED
@@ -1 +1 @@
1
- __version__ = "5.0.10"
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 FlowCallback, FlowCoordinator
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,
@@ -488,7 +493,7 @@ class VcsDynamicDependency(BaseVcsDynamicDependency, ABC):
488
493
  self._flatten_dependency_flow(
489
494
  package_config,
490
495
  "dependency_flow_pre",
491
- managed=managed,
496
+ managed=False,
492
497
  namespace=namespace,
493
498
  )
494
499
  )
@@ -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
cumulusci/cumulusci.yml CHANGED
@@ -404,6 +404,8 @@ tasks:
404
404
  vcs_create_package_data:
405
405
  description: Create a 2gp package version id reference in a commit status.
406
406
  class_path: cumulusci.tasks.vcs.create_commit_status.CreatePackageDataFromCommitStatus
407
+ options:
408
+ context: $project_config.project__git__2gp_context
407
409
  group: VCS
408
410
  github_pull_requests:
409
411
  description: Lists open pull requests in project Github repository
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cumulusci-plus
3
- Version: 5.0.10
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.10 (2025-07-25)
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,9 +135,6 @@ and is not covered by the Salesforce Master Subscription Agreement.
135
135
 
136
136
  ### Changes
137
137
 
138
- - Fix repo URL to generate release notes. by [@rupeshjSFDC](https://github.com/rupeshjSFDC) in [#37](https://github.com/jorgesolebur/CumulusCI/pull/37)
139
- - Update Commit Status create task with Options by [@rupeshjSFDC](https://github.com/rupeshjSFDC) in [#39](https://github.com/jorgesolebur/CumulusCI/pull/39)
140
- - Fix module path for CCIOptions by [@rupeshjSFDC](https://github.com/rupeshjSFDC) in [#41](https://github.com/jorgesolebur/CumulusCI/pull/41)
141
- - CCI Dependency Flow, Fix Ctrl + C by [@rupeshjSFDC](https://github.com/rupeshjSFDC) in [#43](https://github.com/jorgesolebur/CumulusCI/pull/43)
138
+ - Add flow variables accessible in the subflows. by [@rupeshjSFDC](https://github.com/rupeshjSFDC) in [#49](https://github.com/jorgesolebur/CumulusCI/pull/49)
142
139
 
143
- **Full Changelog**: https://github.com/jorgesolebur/CumulusCI/compare/v5.0.9...v5.0.10
140
+ **Full Changelog**: https://github.com/jorgesolebur/CumulusCI/compare/v5.0.11...v5.0.12
@@ -1,8 +1,8 @@
1
- cumulusci/__about__.py,sha256=EmzhdAwLnYXXoZ0aJJraVgHSrBRip89O63i_qg7JgbQ,23
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
5
- cumulusci/cumulusci.yml,sha256=FE1Dm7EhcMXY-XtLljbcbRyo_E0tvspaxqh8Nsiup3w,72365
5
+ cumulusci/cumulusci.yml,sha256=qJscpADSMzcxNYYapfbsZO2LXqjjyv7QLs62Pn2qALI,72445
6
6
  cumulusci/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  cumulusci/cli/cci.py,sha256=nho1RrdyCWsOKpMwwzoDVA7dOpNEHpb4jx0JeKkmOIE,11714
8
8
  cumulusci/cli/error.py,sha256=znj0YN8D2Grozm1u7mZAsJlmmdGebbuy0c1ofQluL4Q,4410
@@ -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=73Wy1BGvqinDOrPAyPjY_Qz4PyePhupxtt01IMY3zIk,22971
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.10.dist-info/METADATA,sha256=SJ8wcZ78rfPAjB-LWAtPNaORZ4zICzwvaH4hpB7QFiw,6206
740
- cumulusci_plus-5.0.10.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
741
- cumulusci_plus-5.0.10.dist-info/entry_points.txt,sha256=nTtu04b9iLXhzADcTrb5PwmdXE6e2MTUAMh9OK6Z2pg,80
742
- cumulusci_plus-5.0.10.dist-info/licenses/AUTHORS.rst,sha256=PvewjKImdKPhhJ6xR2EEZ4T7GbpY2ZeAeyWm2aLtiMQ,676
743
- cumulusci_plus-5.0.10.dist-info/licenses/LICENSE,sha256=NFsF_s7RVXk2dU6tmRAN8wF45pnD98VZ5IwqOsyBcaU,1499
744
- cumulusci_plus-5.0.10.dist-info/RECORD,,
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,,