Merge ~smoser/cloud-init:release/18.1 into cloud-init:master

Proposed by Scott Moser
Status: Merged
Merged at revision: 1e2c2f84cf68e19728f7bc51f0c9322c3e895019
Proposed branch: ~smoser/cloud-init:release/18.1
Merge into: cloud-init:master
Diff against target: 73 lines (+53/-1)
2 files modified
ChangeLog (+52/-0)
cloudinit/version.py (+1/-1)
Reviewer Review Type Date Requested Status
Server Team CI bot continuous-integration Approve
Ryan Harper Approve
Review via email: mp+338588@code.launchpad.net

Commit message

release 18.1

Bump the version in cloudinit/version.py to be 18.1 and update ChangeLog.

Description of the change

see commit message

To post a comment you must log in.
Revision history for this message
Server Team CI bot (server-team-bot) wrote :

FAILED: Continuous integration, rev:2af2d49830bd72c15b7666615ce0383b893b1821
https://jenkins.ubuntu.com/server/job/cloud-init-ci/782/
Executed test runs:
    SUCCESS: Checkout
    FAILED: Unit & Style Tests

Click here to trigger a rebuild:
https://jenkins.ubuntu.com/server/job/cloud-init-ci/782/rebuild

review: Needs Fixing (continuous-integration)
Revision history for this message
Ryan Harper (raharper) wrote :

LGTM!

review: Approve
Revision history for this message
Server Team CI bot (server-team-bot) wrote :

PASSED: Continuous integration, rev:2af2d49830bd72c15b7666615ce0383b893b1821
https://jenkins.ubuntu.com/server/job/cloud-init-ci/783/
Executed test runs:
    SUCCESS: Checkout
    SUCCESS: Unit & Style Tests
    SUCCESS: Ubuntu LTS: Build
    SUCCESS: Ubuntu LTS: Integration
    SUCCESS: MAAS Compatability Testing
    IN_PROGRESS: Declarative: Post Actions

Click here to trigger a rebuild:
https://jenkins.ubuntu.com/server/job/cloud-init-ci/783/rebuild

review: Approve (continuous-integration)
Revision history for this message
Server Team CI bot (server-team-bot) wrote :

PASSED: Continuous integration, rev:1e2c2f84cf68e19728f7bc51f0c9322c3e895019
https://jenkins.ubuntu.com/server/job/cloud-init-ci/784/
Executed test runs:
    SUCCESS: Checkout
    SUCCESS: Unit & Style Tests
    SUCCESS: Ubuntu LTS: Build
    SUCCESS: Ubuntu LTS: Integration
    SUCCESS: MAAS Compatability Testing
    IN_PROGRESS: Declarative: Post Actions

Click here to trigger a rebuild:
https://jenkins.ubuntu.com/server/job/cloud-init-ci/784/rebuild

review: Approve (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1diff --git a/ChangeLog b/ChangeLog
2index 31c2dcb..be4c357 100644
3--- a/ChangeLog
4+++ b/ChangeLog
5@@ -1,3 +1,55 @@
6+18.1:
7+ - OVF: Fix VMware support for 64-bit platforms. [Sankar Tanguturi]
8+ - ds-identify: Fix searching for iso9660 OVF cdroms. (LP: #1749980)
9+ - SUSE: Fix groups used for ownership of cloud-init.log [Robert Schweikert]
10+ - ds-identify: check /writable/system-data/ for nocloud seed.
11+ (LP: #1747070)
12+ - tests: run nosetests in cloudinit/ directory, fix py26 fallout.
13+ - tools: run-centos: git clone rather than tar.
14+ - tests: add support for logs with lxd from snap and future lxd 3.
15+ (LP: #1745663)
16+ - EC2: Fix get_instance_id called against cached datasource pickle.
17+ (LP: #1748354)
18+ - cli: fix cloud-init status to report running when before result.json
19+ (LP: #1747965)
20+ - net: accept network-config in netplan format for renaming interfaces
21+ (LP: #1709715)
22+ - Fix ssh keys validation in ssh_util [Tatiana Kholkina]
23+ - docs: Update RTD content for cloud-init subcommands.
24+ - OVF: Extend well-known labels to include OVFENV. (LP: #1698669)
25+ - Fix potential cases of uninitialized variables. (LP: #1744796)
26+ - tests: Collect script output as binary, collect systemd journal, fix lxd.
27+ - HACKING.rst: mention setting user name and email via git config.
28+ - Azure VM Preprovisioning support. [Douglas Jordan] (LP: #1734991)
29+ - tools/read-version: Fix read-version when in a git worktree.
30+ - docs: Fix typos in docs and one debug message. [Florian Grignon]
31+ - btrfs: support resizing if root is mounted ro.
32+ [Robert Schweikert] (LP: #1734787)
33+ - OpenNebula: Improve network configuration support.
34+ [Akihiko Ota] (LP: #1719157, #1716397, #1736750)
35+ - tests: Fix EC2 Platform to return console output as bytes.
36+ - tests: Fix attempted use of /run in a test case.
37+ - GCE: Improvements and changes to ssh key behavior for default user.
38+ [Max Illfelder] (LP: #1670456, #1707033, #1707037, #1707039)
39+ - subp: make ProcessExecutionError have expected types in stderr, stdout.
40+ - tests: when querying ntp server, do not do dns resolution.
41+ - Recognize uppercase vfat disk labels [James Penick] (LP: #1598783)
42+ - tests: remove zesty as supported OS to test [Joshua Powers]
43+ - Do not log warning on config files that represent None. (LP: #1742479)
44+ - tests: Use git hash pip dependency format for pylxd.
45+ - tests: add integration requirements text file [Joshua Powers]
46+ - MAAS: add check_instance_id based off oauth tokens. (LP: #1712680)
47+ - tests: update apt sources list test [Joshua Powers]
48+ - tests: clean up image properties [Joshua Powers]
49+ - tests: rename test ssh keys to avoid appearance of leaking private keys.
50+ [Joshua Powers]
51+ - tests: Enable AWS EC2 Integration Testing [Joshua Powers]
52+ - cli: cloud-init clean handles symlinks (LP: #1741093)
53+ - SUSE: Add a basic test of network config rendering. [Robert Schweikert]
54+ - Azure: Only bounce network when necessary. (LP: #1722668)
55+ - lint: Fix lints seen by pylint version 1.8.1.
56+ - cli: Fix error in cloud-init modules --mode=init. (LP: #1736600)
57+
58 17.2:
59 - ds-identify: failure in NoCloud due to unset variable usage.
60 (LP: #1737704)
61diff --git a/cloudinit/version.py b/cloudinit/version.py
62index be6262d..4a682ad 100644
63--- a/cloudinit/version.py
64+++ b/cloudinit/version.py
65@@ -4,7 +4,7 @@
66 #
67 # This file is part of cloud-init. See LICENSE file for license information.
68
69-__VERSION__ = "17.2"
70+__VERSION__ = "18.1"
71
72 FEATURES = [
73 # supports network config version 1

Subscribers

People subscribed via source and target branches