Skip to content

Commit

Permalink
Merge pull request #1584 from SFDO-Tooling/feature/3.8.0
Browse files Browse the repository at this point in the history
Release notes for 3.8.0
  • Loading branch information
David Glick authored Feb 28, 2020
2 parents 83576b8 + 0533354 commit 8a43013
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 3 deletions.
25 changes: 25 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,31 @@
History
=======

3.8.0 (2020-02-28)
------------------

Changes:

* The ``batch_apex_wait`` task can now wait for chained batch jobs,
i.e. when one job starts another job of the same class.

* The metadata ETL tasks that were added in cumulusci 3.7.0 have been refactored
to use a new library, ``cumulusci.utils.xml.metadata_tree``, which streamlines
building Salesforce Metadata XML in Python. If you got an early start writing
custom tasks using the metadata ETL task framework, you may need to adjust them
to work with this library instead of lxml.

Issues closed:

* Adjusted the ``run_tests`` task to avoid an error due to not being able
to access the symbol table for managed Apex classes in Spring '20.
Due to this limitation, CumulusCI now will not attempt to retry class-level
concurrency failures when running Apex unit tests in a managed package.
Such failures will be logged but will not cause a build failure.

* Corrected a bug in storing preflight check results for MetaDeploy
when multiple tasks have the same path.

3.7.0 (2020-02-20)
------------------

Expand Down
2 changes: 1 addition & 1 deletion cumulusci/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

__import__("pkg_resources").declare_namespace("cumulusci")

__version__ = "3.7.0.dev0"
__version__ = "3.8.0"

__location__ = os.path.dirname(os.path.realpath(__file__))

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.7.1.dev0
current_version = 3.8.0
commit = True
tag = False

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def find_packages(path=["."], prefix=""):

setup(
name="cumulusci",
version="3.7.0.dev0",
version="3.8.0",
description="Build and release tools for Salesforce developers",
long_description=readme + u"\n\n" + history,
long_description_content_type="text/x-rst",
Expand Down

0 comments on commit 8a43013

Please sign in to comment.