summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@yahoo-inc.com>2012-11-12 13:58:00 -0800
committerJoshua Harlow <harlowja@yahoo-inc.com>2012-11-12 13:58:00 -0800
commitafd5df4d5d506e84a0a062e84355558a4392559c (patch)
tree4892fae763d1fad83bc0182026ac93ffbafe037c
parent90af12849c373d3b729c4d7d84dbb69c2ecd885a (diff)
parent9267bfbed5129060ea3365d5f91b57fee2639647 (diff)
downloadvyos-cloud-init-afd5df4d5d506e84a0a062e84355558a4392559c.tar.gz
vyos-cloud-init-afd5df4d5d506e84a0a062e84355558a4392559c.zip
Update changelog for previous commits.
Add in entry for LP: 1068801 and LP: 1075756 as well as LP: 1077245 and add in reason why we are switching back to using 'None' as the initial datasource value.
-rw-r--r--ChangeLog17
1 files changed, 17 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6d80671a..4cae8b32 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -29,6 +29,23 @@
- fix public key importing with config-drive-v2 datasource (LP: #1077700)
- handle renaming and fixing up of marker names (LP: 1075980) [revno 710]
this relieves that burden from the distro/packaging.
+ - datasource: move back to using the value 'None' for the initial datasource
+ since it causes early failure if used, instead of transient and
+ not easily-detectable later failure
+ - group config: fix how group members weren't being translated correctly
+ when the group: [member, member...] format was used (LP: #1077245)
+ - sysconfig: fix how the /etc/sysconfig/network should be using the fully
+ qualified domain name instead of the partially qualified domain name
+ which is used in the ubuntu/debian case (LP: #1076759)
+ - fix how string escaping was not working when the string was a unicode
+ string which was causing the warning message not to be written
+ out (LP: #1075756)
+ - for boto > 0.6.0 there was a lazy load of the metadata added, when cloud-init
+ runs the usage of this lazy loading is hidden and since that lazy loading
+ will be performed on future attribute access we must traverse the lazy loaded
+ dictionary and force it to full expand so that if cloud-init blocks the ec2
+ metadata port the lazy loaded dictionary will continue working properly
+ instead of trying to make additional url calls which will fail (LP: #1068801)
0.7.0:
- add a 'exception_cb' argument to 'wait_for_url'. If provided, this
method will be called back with the exception received and the message.