Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[JUJU-1433] Release 2.9.11 notes #688

Merged
merged 3 commits into from
Jul 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.9.10
2.9.11
15 changes: 13 additions & 2 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,13 +1,24 @@
Changelog
---------

2.9.10
2.9.11
^^^^^^

Thursday June 9 2022
Monday July 11 2022

## What's Changed

* Add REPL quickstart subsection by @sed-i in https://github.com/juju/python-libjuju/pull/676
* Revision of test onos.charm by @juanmanuel-tirado in https://github.com/juju/python-libjuju/pull/686
* [JUJU-1353] Parse assume directives. by @juanmanuel-tirado in https://github.com/juju/python-libjuju/pull/685
* Replace deprecated juju.loop() calls from examples and documentation by @ittner in https://github.com/juju/python-libjuju/pull/687
* Fixed the bundle run when the channel is None by @oEscal in https://github.com/juju/python-libjuju/pull/664

2.9.10
^^^^^^

Thursday June 9 2022

* [JUJU-1155] Avoid incorrectly setting `series: kubernetes` for sidecar charms in k8s bundles by @cderici in https://github.com/juju/python-libjuju/pull/679
* [JUJU-1172] Visiting the pylibjuju CI by @cderici in https://github.com/juju/python-libjuju/pull/681
* [JUJU-1124] Avoid sending path across the wire for local resource file name by @cderici in https://github.com/juju/python-libjuju/pull/678
Expand Down
12 changes: 8 additions & 4 deletions tests/bundle/bundle.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
series: xenial
services:
applications:
wordpress:
charm: "cs:trusty/wordpress-2"
charm: "wordpress"
series: "xenial"
channel: "candidate"
num_units: 1
annotations:
"gui-x": "339.5"
"gui-y": "-171"
to:
- "0"
mysql:
charm: "cs:trusty/mysql-26"
charm: "mysql"
series: "trusty"
channel: "candidate"
num_units: 1
annotations:
"gui-x": "79.5"
Expand All @@ -21,7 +25,7 @@ relations:
- "mysql:db"
machines:
"0":
series: trusty
series: xenial
constraints: "arch=amd64 cores=1 cpu-power=100 mem=1740 root-disk=8192"
"1":
series: trusty
Expand Down
6 changes: 4 additions & 2 deletions tests/integration/bundle/bundle-include-base64.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
series: xenial
applications:
ghost:
charm: "cs:ghost-19"
charm: "ghost"
num_units: 1
mysql:
charm: "cs:trusty/mysql-57"
charm: "mysql"
channel: "candidate"
series: "trusty"
num_units: 1
options:
max-connections: 2
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/test_application.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ async def test_upgrade_charm_resource(event_loop):
@pytest.mark.asyncio
async def test_trusted(event_loop):
async with base.CleanModel() as model:
await model.deploy('cs:~juju-qa/bundle/basic-trusted-1', trust=True)
await model.deploy('ubuntu', trust=True)

ubuntu_app = model.applications['ubuntu']
trusted = await ubuntu_app.get_trusted()
Expand All @@ -241,7 +241,7 @@ async def test_trusted(event_loop):
@pytest.mark.asyncio
async def test_app_remove_wait_flag(event_loop):
async with base.CleanModel() as model:
app = await model.deploy('cs:ubuntu')
app = await model.deploy('ubuntu')
a_name = app.name
await model.wait_for_idle(status="active")

Expand Down