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

release 24.08 for jammy #259

Merged
merged 2 commits into from
Aug 6, 2024
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
11 changes: 11 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
landscape-client (24.08-0landscape0) jammy; urgency=medium

* feat: added flag to skip sending a registration request
* fix(snap): reduce computer title retry delay
* fix(snap): retry setting the computer title
* fix: remove system exit in landscape-sysinfo.wrapper
* fix: allow for oracular version of pycurl error string (LP: #2068050)
* fix: add non-filtered interfaces to the API response (LP: #2052834)

-- Mitch Burton <mitch.burton@canonical.com> Tue, 06 Aug 2024 11:13:10 -0700

landscape-client (24.04-0landscape0) jammy; urgency=medium

* Improvements:
Expand Down
2 changes: 2 additions & 0 deletions debian/tests/control
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Tests: smoke
Restrictions: allow-stderr, needs-sudo, superficial
11 changes: 11 additions & 0 deletions debian/tests/smoke
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/sh

set -ex

landscape-config --help | grep --silent is-registered
# --is-registered expected to fail, as this is a fresh system and will
# not be registered yet.
is_registered=0
sudo landscape-config --is-registered || is_registered=$?
[ "$is_registered" -eq 5 ]
landscape-client --help | grep --silent version
2 changes: 1 addition & 1 deletion landscape/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
DEBIAN_REVISION = "-0landscape0"
UPSTREAM_VERSION = "24.04"
UPSTREAM_VERSION = "24.08"
VERSION = f"{UPSTREAM_VERSION}{DEBIAN_REVISION}"

# The minimum server API version that all Landscape servers are known to speak
Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: landscape-client
base: core22
version: '24.04'
version: '24.08'
icon: snap/gui/landscape-logo-256.png
website: https://ubuntu.com/landscape
summary: Client for the Canonical systems management product Landscape
Expand Down
Loading