aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAng Li <angli@google.com>2022-08-05 10:34:30 -0700
committerGitHub <noreply@github.com>2022-08-05 10:34:30 -0700
commit2da2ec36501a6e510d1b092d22fa03a71c40821f (patch)
tree81cf52e1e969fcc4ce99496bf49c5a3477459111
parent792df04ea317ca3ab0bdab3e0b73ee6c900eb7c1 (diff)
downloadmobly-2da2ec36501a6e510d1b092d22fa03a71c40821f.tar.gz
Mobly Release 1.12. (#846)
-rw-r--r--CHANGELOG.md34
-rwxr-xr-xsetup.py4
2 files changed, 36 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index aaf6c90..ed34c68 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,40 @@
# Mobly Release History
+## Mobly Release 1.12: New Snippet Base Client and a New `pre_run` Stage
+
+This release introduces the new generic Mobly snippet base client and the new
+Android snippet client built on top. The new snippet base enables us to better
+scale Mobly snippets across various platforms.
+
+The old Android snippet client is now considered deprecated, and will be
+removed in the following release. Please update your code accordingly:
+* `snippet_client` -> `snippet_client_v2`
+* `snippet_event` -> `mobly.snippet.callback_event`
+* `callback_handler` -> `callback_handler_v2`
+
+The `generate_setup_tests` stage is renamed to `pre_run` to better reflect its
+true role: steps that happen before all the test case methods are finalized.
+This is a pure rename with no functional changes. Please migrate your code as
+the `generate_setup_tests` stage will stop working completely in the next
+release.
+
+### New
+* Added the new Mobly snippet base client.
+* Added the new Android snippet client v2 based on the new base client.
+* Support changing Mobly's logger level to `DEBUG` via cli arg.
+* Termination signal type is now included in result records.
+
+### Breaking Changes
+* The old Android snippet client is deprecated.
+* The `generate_setup_tests` stage is now `pre_run`.
+
+### Fixes
+* Various issues in the Android snippet client.
+
+[Full list of changes](https://github.com/google/mobly/milestone/27?closed=1)
+
+
## Mobly Release 1.11.1: Support Test Case `repeat` and `retry`.
### New
diff --git a/setup.py b/setup.py
index 30f3ce2..ffaebe6 100755
--- a/setup.py
+++ b/setup.py
@@ -44,13 +44,13 @@ class PyTest(test.test):
def main():
setuptools.setup(
name='mobly',
- version='1.11.1',
+ version='1.12',
maintainer='Ang Li',
maintainer_email='mobly-github@googlegroups.com',
description='Automation framework for special end-to-end test cases',
license='Apache2.0',
url='https://github.com/google/mobly',
- download_url='https://github.com/google/mobly/tarball/1.11.1',
+ download_url='https://github.com/google/mobly/tarball/1.12',
packages=setuptools.find_packages(exclude=['tests']),
include_package_data=False,
scripts=['tools/sl4a_shell.py', 'tools/snippet_shell.py'],