From 4176cf43c112765e2baa3ba84acb181f3f7ff828 Mon Sep 17 00:00:00 2001 From: Caner Derici Date: Thu, 6 Jul 2023 14:19:07 -0600 Subject: [PATCH 1/2] Release 2.9.43.0 notes --- VERSION | 2 +- docs/changelog.rst | 17 +++++++++++++---- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/VERSION b/VERSION index 756a1c44..0e55259a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.9.42.4 +2.9.43.0 \ No newline at end of file diff --git a/docs/changelog.rst b/docs/changelog.rst index 9721527e..a51b0858 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,12 +1,24 @@ Changelog --------- +2.9.43.0 +^^^^^^^^ + +Wednesday Jul 6 2023 + +## What's Changed + +* [JUJU-1682] Utilities for subordinate units by @cderici in https://github.com/juju/python-libjuju/pull/879 +* [JUJU-4018] Avoid upgrade resource in app refresh if upstream has same resource revision by @cderici in https://github.com/juju/python-libjuju/pull/884 +* [JUJU-4112] Determining series for local bundle deploying local charm with manifest by @cderici in https://github.com/juju/python-libjuju/pull/896 +* [JUJU-4188] Add 2.9.43 facades by @cderici in https://github.com/juju/python-libjuju/pull/895 +* [JUJU-3998] Pass through local_refresh if refreshing with local charm & resources by @cderici in https://github.com/juju/python-libjuju/pull/894 + 2.9.42.4 ^^^^^^^^ Wednesday May 31 2023 -## What's Changed * [JUJU-3886] Kubernetes series version by @cderici in https://github.com/juju/python-libjuju/pull/868 * [JUJU-3887] Avoid removing the track if set to latest in channel normalization by @cderici in https://github.com/juju/python-libjuju/pull/867 @@ -16,7 +28,6 @@ Wednesday May 31 2023 Wednesday May 24 2023 -## What's Changed * [JUJU-1467] Application status from API by @cderici in https://github.com/juju/python-libjuju/pull/849 * [JUJU-3750] Fix bug in Type.from_json() parsing simple entries by @cderici in https://github.com/juju/python-libjuju/pull/854 @@ -26,8 +37,6 @@ Wednesday May 24 2023 Thursday May 11 2023 -## What's Changed - * [JUJU-3253] add missing force in bundle deployment by @juanmanuel-tirado in https://github.com/juju/python-libjuju/pull/815 * [JUJU-3348] Fix assumes parsing by @juanmanuel-tirado in https://github.com/juju/python-libjuju/pull/820 * [JUJU-3404] Pass series info into origin for ResolveCharm by @cderici in https://github.com/juju/python-libjuju/pull/825 From dd96cb033387c97eec7f4b4609236a5cca58e866 Mon Sep 17 00:00:00 2001 From: Caner Derici Date: Fri, 7 Jul 2023 10:38:30 -0600 Subject: [PATCH 2/2] Fix test_updrade_local_charm_with_resoruce test --- tests/integration/test_application.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_application.py b/tests/integration/test_application.py index 7f7da5dc..ee3b0a19 100644 --- a/tests/integration/test_application.py +++ b/tests/integration/test_application.py @@ -250,7 +250,7 @@ async def test_upgrade_local_charm_with_resource(event_loop): assert app.units[0].agent_status == 'idle' resources = {"file-res": "test.file"} - await app.refresh(local_charm_path=str(charm_path), resources=resources) + await app.refresh(path=str(charm_path), resources=resources) await model.wait_for_idle() assert app.units[0].agent_status == 'idle'