Skip to content

Commit

Permalink
Merge pull request #1468 from SFDO-Tooling/feature/3.5.0
Browse files Browse the repository at this point in the history
Feature/3.5.0
  • Loading branch information
TheBitShepherd authored Jan 15, 2020
2 parents a76e764 + 01e4572 commit 7003b21
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 5 deletions.
15 changes: 15 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@
History
=======

3.5.0 (2020-01--15)
-------------------

Changes:

* The ``load_dataset`` task now accepts a ``bulk_mode`` option which can be set to ``Serial`` to load batches serially instead of in parallel.

* CumulusCI now stores the logs from the last five executions under ``~/.cumulusci/logs``

* CumulusCI has a new top-level command: ``cci gist``. This command creates a secret GitHub gist which includes: The user's current CumulusCI version, current Python version, path to python binary, sysname (e.g. Darwin), machine (e.g. x86_64), and the most recent CumulusCI logfile (``~/.cumulusci/logs/cci.log``). The command outputs a link to the created gist and opens a browser tab with the new GitHub gist. This can be helpful for sharing information regarding errors and issues encountered when working with cci. This feature uses a users GitHub access token for creation of gists. If your access token does not have the 'gist (Create gists)' scope this command will result in a 404 error. For more info see: https://cumulusci.readthedocs.io/en/latest/features.html#reporting-error-logs

* Changed ``UpdateAdminProfile`` so that it only deploys the modified Admin profile. While it is necessary to retrieve profiles along their associated metadata objects, we don't need to do that for deployments.

* Added options to the `deploy` task: ``check_only``, ``test_level``, and ``specified_tests``. Run ``cci task info deploy`` for details. (#1066)

3.4.0 (2020-01-09)
------------------

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.4.0"
__version__ = "3.5.0"

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

Expand Down
3 changes: 2 additions & 1 deletion cumulusci/cli/cci.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,8 @@ def new_func(*args, **kw):


SUGGEST_GIT_GIST_COMMAND = """\nIt looks like you may have run into an error. Did you know cci has a command for sending this error to a GitHub gist?
Just run `$ cci gist` and make sure that your GitHub access token has the 'create gist' scope.\n"""
Just run `$ cci gist` and make sure that your GitHub access token has the 'create gist' scope.
For more info see: https://cumulusci.readthedocs.io/en/latest/features.html#reporting-error-logs"""


#
Expand Down
5 changes: 4 additions & 1 deletion docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,10 @@ is installed correctly by running ``cci version``:
.. code:: console
$ cci version
CumulusCI version: 3.1.2
CumulusCI version: 3.5.0 (/path/to/bin/cci)
Python version: 3.7.4 (/path/to/bin/python)
You have the latest version of CumulusCI.
You can also use this command in the future to check whether your CumulusCI installation is up to date.

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.4.0
current_version = 3.5.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.4.0",
version="3.5.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 7003b21

Please sign in to comment.