Skip to content

Commit

Permalink
Merge pull request #897 from cderici/release-2.9.43.0
Browse files Browse the repository at this point in the history
#897

## What's Changed
* [JUJU-1682] Utilities for subordinate units by @cderici in #879
* [JUJU-4018] Avoid upgrade resource in app refresh if upstream has same resource revision by @cderici in #884
* [JUJU-4112] Determining series for local bundle deploying local charm with manifest by @cderici in #896
* [JUJU-4188] Add 2.9.43 facades by @cderici in #895
* [JUJU-3998] Pass through local_refresh if refreshing with local charm & resources by @cderici in #894
* Revert arg name change in application.refresh by @cderici in #898


[JUJU-1682]: https://warthogs.atlassian.net/browse/JUJU-1682?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
[JUJU-4018]: https://warthogs.atlassian.net/browse/JUJU-4018?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
[JUJU-4112]: https://warthogs.atlassian.net/browse/JUJU-4112?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
[JUJU-4188]: https://warthogs.atlassian.net/browse/JUJU-4188?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
[JUJU-3998]: https://warthogs.atlassian.net/browse/JUJU-3998?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
  • Loading branch information
jujubot authored Jul 7, 2023
2 parents 61b80c0 + dd96cb0 commit d9df8ad
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.9.42.4
2.9.43.0
17 changes: 13 additions & 4 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_application.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit d9df8ad

Please sign in to comment.