juju-core 1.25-alpha1

Milestone information

Project:
juju-core
Series:
1.25
Version:
1.25-alpha1
Released:
 
Registrant:
Curtis Hovey
Release registered:
Active:
No. Drivers cannot target bugs and blueprints to this milestone.  

Download RDF metadata

Activities

Assigned to you:
No blueprints or bugs assigned to you.
Assignees:
2 @les, 4 Anastasia, 24 Andrew Wilkins, 11 Bogdan Teleaga, 1 Brad Crittenden, 1 Casey Marshall, 9 Cheryl Jennings, 2 Curtis Hovey, 11 Dave Cheney, 4 Dimiter Naydenov, 13 Eric Snow, 3 Frank Mueller, 3 Gabriel Samfira, 9 Horacio Durán, 32 Ian Booth, 5 James Tunnicliffe, 10 Jesse Meek, 3 John Weldon, 1 Jorge Niedbalski, 4 Katherine Cox-Buday, 3 Martin Packman, 2 Matthew Williams, 12 Menno Finlay-Smits, 2 Michael Foord, 5 Nate Finch, 10 Tim Penhey, 1 Wayne Witzel III, 2 William Reade
Blueprints:
No blueprints are targeted to this milestone.
Bugs:
197 Fix Released

Download files for this release

After you've downloaded a file, you can verify its authenticity using its MD5 sum or signature. (How do I verify a download?)

File Description Downloads
download icon juju-1.25-alpha1-centos7.tar.gz (md5, sig) Centos juju commands tarball 18
last downloaded 76 weeks ago
download icon juju-1.25-alpha1-osx.tar.gz (md5, sig) OS X juju commands tarball 11
last downloaded 76 weeks ago
download icon juju-setup-1.25-alpha1.exe (md5, sig) Windows installer for the juju client 17
last downloaded 76 weeks ago
download icon juju-core_1.25-alpha1.tar.gz (md5, sig) Juju-core release 6
last downloaded 76 weeks ago
Total downloads: 52

Release notes 

# juju-core 1.25-alpha1

A new development release of Juju, juju-core 1.25-alpha1, is now available.

## Getting Juju

juju-core 1.25-alpha1 is available for Wily and backported to earlier
series in the following PPA:

    https://launchpad.net/~juju/+archive/devel

Windows, Centos, and OS X users will find installers at:

    https://launchpad.net/juju-core/+milestone/1.25-alpha1

Development releases use the "devel" simple-streams. This release
will automatically select the devel stream. You do not need to update
your config in environments.yaml to bootstrap.

Upgrading from stable releases to development releases is not
supported. You can upgrade test environments to development releases
to test new features and fixes, but it is not advised to upgrade
production environments to 1.25-alpha1.

## Notable Changes
  * (Experimental) Improved networking features for AWS
    * New 'spaces' and 'subnet' commands
    * New 'spaces' constraints support
  * Support for "devices" on MAAS 1.8+
  * Storage support for GCE and Azure providers

### (Experimental) Improved networking features for AWS

Juju has experimental support for deploying services on AWS in isolation,
taking advantage of the enhanced AWS VPC networking features. This is just a
first step towards a full-fledged networking model support in Juju.

#### New 'spaces' and 'subnet' commands

Juju introduces the 'space' and 'subnet' commands to manage the networks
available to services. A Juju network space is a collection of related subnets
that have no firewalls between each other and have the same ingress and egress
policies.

You can create a new Juju space, and optionally associate existing subnets
with it by specifying their CIDRs using the 'create' subcommand. The command
looks like this:

    juju space create <name> [<CIDR1> <CIDR2> …]

The list of registered spaces can be seen using the 'list' subcommand:

    juju space list [--short] [--format yaml|json] [--output <path>]

You can add an existing AWS subnet to a space by CIDR or AWS ID, for example:

    juju subnet add <CIDR>|<AWS-subnet-id> <space-name>

You can list all the subnets known by Juju and optionally filtering them by
space and/or availability zone like so:

    juju subnet list [--zone <name>] [--space <name>] [<zone1> <zone2> …]

For more information about these commands, type:

    juju <command> --help

#### New 'spaces' constraints support

The new 'spaces' constraint instructs Juju to deploy a service's units in
subnets of the given space.

Similar to the 'tags' constraint, the 'spaces' constraint takes a comma-
delimited list of existing Juju network spaces. Both positive (without prefix)
and negative (prefixed by "^") spaces are allowed in the list. For this alpha
release, the first positive space name is used, the rest is ignored.

You can constrain a service to a space like this:

    juju deploy <charm-URL> [<service-name>] [--constraints "spaces=<list>"]

For more information, run

    juju help glossary

and

    juju help constraints

### Support "devices" on MAAS 1.8+

MAAS 1.8 introduced a new feature called "devices". This allows the
association of a "device", that requires an IP address, with a parent machine
managed by MAAS. There is a view in the MAAS UI showing all devices.

With the "address-allocation" feature flag enabled, Juju will register lxc and
kvm containers as devices on MAAS 1.8+. They are visible in the MAAS UI. If
the environment is forcibly shut down, the IP addresses allocated to the
containers will be released by MAAS.

You can enable "address-allocation" is new Juju environments like so:

    JUJU_DEV_FEATURE_FLAG=address-allocation juju bootstrap

### Storage support for GCE and Azure providers

Juju's storage feature can now be used with the Google Compute Engine and
Azure providers. Storage is now supported for local, AWS, Openstack, MAAS, GCE
and Azure. See https://jujucharms.com/docs/devel/storage for more information.

### Status for storage volumes

Volumes now have status associated, so provisioning progress can be observed.
To show the status of volumes, use "juju storage volume list".

## Resolved issues

  * Regression: juju ssh dies with (publickey)
    Lp 1472632

  * Cli rejects placement directives
    Lp 1358941

  * Feature flags don't propagate to windows agents
    Lp 1401368

  * Upgrade fails if no explicit version is specified
    Lp 1447899

  * Provider/openstack: cinder provider should reject attempts to
    create non-persistent volumes
    Lp 1450737

  * Storage: loop devices leaked by lxc containers
    Lp 1452649

  * Deployments fail when juju implicitly upgrade after bootstrap
    Lp 1455260

  * Openstack provider should work without object-store
    Lp 1456265

  * Apiserver run method doesn't validates if machines, services or
    units are present on the request.
    Lp 1456343

  * Upgrade fails if there's a series in streams juju doesn't
    recognize
    Lp 1459093

  * Init system discovery script has bashisms
    Lp 1459775

  * Juju should use devices api on maas 1.8+ for addressable
    containers
    Lp 1464237

  * "attachmentcount" and "binding" fields not set when upgrading from
    1.24
    Lp 1467379

  * Charms with storage don't use cloud-native default if size is
    specified, but provider is omitted
    Lp 1468153

  * Juju bootstrap failed - cannot dial mongo to initiate replicaset:
    no reachable servers
    Lp 1468579

  * Rsyslog connections fail with certificate verification errors
    after upgrade to 1.24.2
    Lp 1474614

  * Destroying local provider environments sometimes emits "error" log
    messages
    Lp 1477263

  * Automatic devel streams selection for beta releases
    Lp 1481500

  * Provider/maas: volume source won't work for physical
    machines/disks
    Lp 1483082

  * Provider/openstack: default block source not set to "cinder"
    Lp 1484403

  * Juju bootstrap fails to work due to incorrect identities
    restriction.
    Lp 1486074

  * Incorrectly disconnected debug-hooks does not reconnect to tmux
    Lp 1265871

  * Cannot remove an environment user with upper case characters
    Lp 1467037

  * After "juju destroy-service <charm-name>" is executed, the
    corresponding windows charm service is not uninstalled
    Lp 1471771

Finally

We encourage everyone to subscribe the mailing list at
juju-dev@lists.canonical.com, or join us on #juju-dev on freenode.

Changelog 

This release does not have a changelog.

0 blueprints and 197 bugs targeted

Bug report Importance Assignee Status
1440940 #1440940 xml/marshal.go:10:2: cannot find package "encoding" 2 Critical Eric Snow  10 Fix Released
1441206 #1441206 Container destruction doesn't mark IP addresses as Dead 2 Critical Michael Foord  10 Fix Released
1441826 #1441826 deployer and quickstart are broken in 1.24-alpha1 2 Critical Horacio Durán  10 Fix Released
1442801 #1442801 aws containers are broken in 1.23 2 Critical Frank Mueller  10 Fix Released
1450191 #1450191 quickstart thinks the unit is started when it's still being installed 2 Critical Ian Booth  10 Fix Released
1450912 #1450912 quickstart is universally broken in 1.24 2 Critical Ian Booth  10 Fix Released
1450917 #1450917 afterHook logic skipped if hook is missing 2 Critical Ian Booth  10 Fix Released
1450919 #1450919 many window unit tests failures 2 Critical Martin Packman  10 Fix Released
1451100 #1451100 TestCheckProviderProvisional fails on ppc64 2 Critical Eric Snow  10 Fix Released
1451674 #1451674 Broken DB field ordering when upgrading to Juju compiled with Go 1.3+ 2 Critical Menno Finlay-Smits  10 Fix Released
1452113 #1452113 log files are lost when agents are restarted under systemd 2 Critical Eric Snow  10 Fix Released
1452207 #1452207 worker/uniter: charm does not install properly if storage isn't provisioned before uniter starts 2 Critical Andrew Wilkins  10 Fix Released
1452511 #1452511 jujud does not restart after upgrade-juju on systemd hosts 2 Critical Eric Snow  10 Fix Released
1454599 #1454599 firewaller gets an exception if a machine is not provisioned 2 Critical Horacio Durán  10 Fix Released
1454658 #1454658 TestUseLumberjack fails on windows 2 Critical Jesse Meek  10 Fix Released
1454870 #1454870 Client last login time writes should not use mgo.txn 2 Critical Tim Penhey  10 Fix Released
1457031 #1457031 Juju cannot deploy to any substrate 2 Critical Eric Snow  10 Fix Released
1459288 #1459288 TestWriteTokenReplaceExisting fails 2 Critical Ian Booth  10 Fix Released
1463439 #1463439 golang.org/x/sys/windows requires go 1.4 2 Critical Gabriel Samfira  10 Fix Released
1464356 #1464356 TestCloudInit fails 2 Critical Tim Penhey  10 Fix Released
1466011 #1466011 apiserver tests fail on windows 2 Critical Dave Cheney  10 Fix Released
1470601 #1470601 UniterSuite.TestLeadership fails on windows 2 Critical Bogdan Teleaga  10 Fix Released
1472632 #1472632 regression: juju ssh dies with (publickey) 2 Critical Katherine Cox-Buday  10 Fix Released
1473461 #1473461 OSX/darwin builds fail: undefined: password.EnsureJujudPassword 2 Critical Bogdan Teleaga  10 Fix Released
1473470 #1473470 Windows cannot ensurePassword 2 Critical Bogdan Teleaga  10 Fix Released
1473517 #1473517 juju environment not usable after the upgrade 2 Critical Ian Booth  10 Fix Released
1474382 #1474382 MeterStateSuite teardown failure on windows 2 Critical Bogdan Teleaga  10 Fix Released
1474946 #1474946 kvmBrokerSuite worker/provisioner: tests are poorly isolated 2 Critical Tim Penhey  10 Fix Released
1475724 #1475724 UniterSuite.TestUniterRelations 2 Critical   10 Fix Released
1477157 #1477157 Broken windows dependencies 2 Critical Matthew Williams  10 Fix Released
1477355 #1477355 MachineSuite.TestDyingMachine fails on windows 2 Critical Andrew Wilkins  10 Fix Released
1478027 #1478027 supportedSeriesWindowsSuite.TestSupportedSeries mismatch with "arch" 2 Critical Bogdan Teleaga  10 Fix Released
1479024 #1479024 TestRootDiskTags fails on ppc64el 2 Critical Andrew Wilkins  10 Fix Released
1479289 #1479289 statushistory uses sequence, fails in multi-env state servers 2 Critical Horacio Durán  10 Fix Released
1479931 #1479931 Juju 1.22.6 cannot upgrade to 1.24.3/1.24.4 2 Critical Menno Finlay-Smits  10 Fix Released
1480298 #1480298 unknown object type "Charms" 2 Critical Cheryl Jennings  10 Fix Released
1484993 #1484993 TestBootstrapReusesAffinityGroupAndVNet: no tools are available for your environment 2 Critical Ian Booth  10 Fix Released
1486675 #1486675 supportedSeriesWindowsSuite.TestSupportedSeries fails 2 Critical Bogdan Teleaga  10 Fix Released
1488581 #1488581 TestFindToolsExactInStorage fails 2 Critical Cheryl Jennings  10 Fix Released
1489131 #1489131 BootstrapSuite.TestRunTests fails on non-amd64 archs 2 Critical Cheryl Jennings  10 Fix Released
1348663 #1348663 DHCP addresses for containers should be released on teardown 3 High Dimiter Naydenov  10 Fix Released
1370896 #1370896 juju has conf files in /var/log/juju on instances 3 High Nate Finch  10 Fix Released
1376246 #1376246 MAAS provider doesn't know about "Failed deployment" instance status 3 High Jesse Meek  10 Fix Released
1401368 #1401368 feature flags don't propagate to windows agents 3 High Bogdan Teleaga  10 Fix Released
1403165 #1403165 Cannot destroy-environment with 'juju user add' .jenv file 3 High Jesse Meek  10 Fix Released
1415176 #1415176 debug-hooks exit 1 , doesn't mark hook as failed 3 High Horacio Durán  10 Fix Released
1420057 #1420057 agents see "too many open files" errors after many failed API attempts 3 High Dave Cheney  10 Fix Released
1424892 #1424892 rsyslog-gnutls is not installed when enable-os-refresh-update is false 3 High Nate Finch  10 Fix Released
1429790 #1429790 debug-hooks not working with manually provisioned machines 3 High @les  10 Fix Released
1430245 #1430245 Transient error with juju-unit-agent on windows hosts 3 High Gabriel Samfira  10 Fix Released
1431372 #1431372 juju restore fails with "/var/lib/juju/agents: No such file or directory" 3 High Horacio Durán  10 Fix Released
1437015 #1437015 debug-log spammed with leader-election messages 3 High Katherine Cox-Buday  10 Fix Released
1437266 #1437266 Bootstrap node occasionally panicing with "not a valid unit name" 3 High Frank Mueller  10 Fix Released
1438489 #1438489 juju stop responding after juju-upgrade 3 High John Weldon  10 Fix Released
1441478 #1441478 state: availability zone upgrade fails if containers are present 3 High Jesse Meek  10 Fix Released
1441904 #1441904 jujud won't start if apt-get of juju-mongodb package fails 3 High Menno Finlay-Smits  10 Fix Released
1441913 #1441913 juju upgrade-juju failed to configure mongodb replicasets 3 High Menno Finlay-Smits  10 Fix Released
1442012 #1442012 persist iptables rules / routes for addressable containers across host reboots 3 High James Tunnicliffe  10 Fix Released
1442257 #1442257 lxc network.mtu setting not set consistently across hosts 3 High   10 Fix Released
1442308 #1442308 Juju cannot create vivid containers 3 High Cheryl Jennings  10 Fix Released
1444861 #1444861 Juju 1.23-beta4 introduces ssh key bug when used w/ DHX 3 High Horacio Durán  10 Fix Released
1445063 #1445063 addressable containers cannot resolve non-FQDN in maas 3 High Frank Mueller  10 Fix Released
1446264 #1446264 joyent machines get stuck in provisioning 3 High Martin Packman  10 Fix Released
1446608 #1446608 agent panic on MAAS network with uppercase characters 3 High Dimiter Naydenov  10 Fix Released
1446871 #1446871 Unit hooks fail on windows if PATH is uppercase 3 High Nate Finch  10 Fix Released
1447841 #1447841 eu-central-1 AWS region V4 signing required and not supported 3 High Katherine Cox-Buday  10 Fix Released
1447853 #1447853 Local charms are not added to storage on upgrade to 1.22.x 3 High Horacio Durán  10 Fix Released
1447895 #1447895 Panic if jujud restarts while action is running 3 High Jesse Meek  10 Fix Released
1447899 #1447899 upgrade fails if no explicit version is specified 3 High Jesse Meek  10 Fix Released
1449301 #1449301 storage: storage cannot be destroyed 3 High Andrew Wilkins  10 Fix Released
1449302 #1449302 upgrades: old machines need block devices document 3 High Ian Booth  10 Fix Released
1449367 #1449367 remove storage feature flag 3 High Ian Booth  10 Fix Released
1449390 #1449390 storage: charms must wait for storage to be attached before running "install" hook 3 High Andrew Wilkins  10 Fix Released
1449436 #1449436 Environment variables are not propagated to jujud on vivid 3 High Andrew Wilkins  10 Fix Released
1449822 #1449822 storage: storage-detached should be storage-detaching 3 High Andrew Wilkins  10 Fix Released
1450118 #1450118 vsphere provider should use OVA instead of OVF from cloud images. 3 High Eric Snow  10 Fix Released
1450129 #1450129 vsphere provider is missing firewaller, networking implementations 3 High Eric Snow  10 Fix Released
1450146 #1450146 vsphere provider feature flag should apply only to bootstrap 3 High Eric Snow  10 Fix Released
1450701 #1450701 Juju CLI compatibility option 3 High Ian Booth  10 Fix Released
1450737 #1450737 provider/openstack: cinder provider should reject attempts to create non-persistent volumes 3 High Jesse Meek  10 Fix Released
1451283 #1451283 deployer sometimes fails with a unit status not found error 3 High Ian Booth  10 Fix Released
1451297 #1451297 Upgrade from 1.18 to 1.23 fails: password for machine agent can't be set 3 High Menno Finlay-Smits  10 Fix Released
1451626 #1451626 Erroneous Juju user data on Windows for Juju version 1.23 3 High   10 Fix Released
1452285 #1452285 logs don't rotate 3 High Nate Finch  10 Fix Released
1452422 #1452422 Cannot boostrap from custom image-metadata-url or by specifying metadata-source 3 High Ian Booth  10 Fix Released
1452535 #1452535 default storage constraints are not quite correct 3 High Ian Booth  10 Fix Released
1452649 #1452649 storage: loop devices leaked by LXC containers 3 High Andrew Wilkins  10 Fix Released
1453785 #1453785 transaction collection (txns) grows without bound 3 High Menno Finlay-Smits  10 Fix Released
1453801 #1453801 /var/spool/rsyslog grows without bound 3 High Andrew Wilkins  10 Fix Released
1454043 #1454043 InstancePoller compares wrong Address list and always requests updated state Addresses 3 High Tim Penhey  10 Fix Released
1454481 #1454481 juju log spams ERROR juju.worker.diskmanager lsblk.go:111 error checking if "sr0" is in use: open /dev/sr0: no medium found 3 High Andrew Wilkins  10 Fix Released
1454676 #1454676 failed to retrieve the template to clone - 500 Internal Server error - error creating container juju-trusty-lxc-template - 3 High Ian Booth  10 Fix Released
1454678 #1454678 "relation-set --file -" doesn't seem to work 3 High Andrew Wilkins  10 Fix Released
1454697 #1454697 jujud leaking file handles 3 High Cheryl Jennings  10 Fix Released
1454829 #1454829 1.20.x client cannot communicate with 1.22.x env 3 High Ian Booth  10 Fix Released
1454891 #1454891 1.23.2.1, mongo: document is larger than capped size 3 High Ian Booth  10 Fix Released
1455158 #1455158 Destroying a machine with a placed unit errors then destroys anyway. 3 High Ian Booth  10 Fix Released
1455260 #1455260 Deployments fail when juju implicitly upgrade after bootstrap 3 High Ian Booth  10 Fix Released
1455623 #1455623 TestPingCalledOnceOnlyForSeveralWorkers fails 3 High Tim Penhey  10 Fix Released
1456265 #1456265 Openstack provider should work without object-store 3 High Andrew Wilkins  10 Fix Released
1456343 #1456343 APIServer Run method doesn't validates if Machines, Services or Units are present on the request. 3 High Jorge Niedbalski  10 Fix Released
1456989 #1456989 cloud-init 0.6.3 on precise generates invalid apt-get install command line 3 High Dimiter Naydenov  10 Fix Released
1457011 #1457011 init system discovery script fails with: [[: not found 3 High Eric Snow  10 Fix Released
1457205 #1457205 Subordinate charm Action data not reported by API 3 High John Weldon  10 Fix Released
1457218 #1457218 failing windows unit tests 3 High Eric Snow  10 Fix Released
1457645 #1457645 warning: log line attempted over max size - leadership related 3 High Ian Booth  10 Fix Released
1457728 #1457728 `juju upgrade-juju --upload-tools` leaves local environment unusable 3 High Andrew Wilkins  10 Fix Released
1459057 #1459057 multiple storage-add constraints for the same storage unsupported 3 High Anastasia  10 Fix Released
1459060 #1459060 add support for "storage-add <name>" 3 High Anastasia  10 Fix Released
1459085 #1459085 worker/logger: data race in tests 3 High Dave Cheney  10 Fix Released
1459093 #1459093 Upgrade --upload-tools fails if there's a series in streams Juju doesn't recognize 3 High Jesse Meek  10 Fix Released
1459250 #1459250 centos 7 is ambiguous in streams 3 High Ian Booth  10 Fix Released
1459274 #1459274 unexpected fault running unit tests 3 High   10 Fix Released
1459611 #1459611 juju status --utc does not display utc and is confused 3 High Ian Booth  10 Fix Released
1459616 #1459616 'juju status' wall clock timestamps should display offset not TZ abbrev 3 High Ian Booth  10 Fix Released
1459775 #1459775 init system discovery script has bashisms 3 High Eric Snow  10 Fix Released
1459785 #1459785 systemd-related tests may fail under windows 3 High Eric Snow  10 Fix Released
1459885 #1459885 harvest mode setting not used by container provisioner 3 High Ian Booth  10 Fix Released
1459912 #1459912 juju agent opens api when upgrade is pending 3 High Ian Booth  10 Fix Released
1461111 #1461111 Allow status-set/get to a service by its leader unit 3 High Horacio Durán  10 Fix Released
1461342 #1461342 unit storage add should only accept count as constraint 3 High Anastasia  10 Fix Released
1461354 #1461354 debug-log EOF: invalid tag and panic seen in state server logs 3 High Nate Finch  10 Fix Released
1461385 #1461385 apiserver/instancepoller: data race in test 3 High Dave Cheney  10 Fix Released
1461871 #1461871 worker/diskmanager sometimes goes into a restart loop due to failing to update state 3 High   10 Fix Released
1461890 #1461890 leadership unreliable in HA 3 High William Reade  10 Fix Released
1462146 #1462146 cmd/juju/storage: "add" fails to dynamically add filesystem for storage 3 High Anastasia  10 Fix Released
1463117 #1463117 Juju 1.24-beta6.1 unit commands in debug-hooks hang indefinitely 3 High Jesse Meek  10 Fix Released
1463455 #1463455 package github.com/juju/txn has conflicting licences 3 High Curtis Hovey  10 Fix Released
1463480 #1463480 Failed upgrade, mixed up HA addresses 3 High Ian Booth  10 Fix Released
1464237 #1464237 juju should use devices API on MAAS 1.8+ for addressable containers 3 High Michael Foord  10 Fix Released
1464335 #1464335 debug-log does not work with local provider 3 High Andrew Wilkins  10 Fix Released
1464392 #1464392 mgo iterator not being closed in state/action.go 3 High John Weldon  10 Fix Released
1464470 #1464470 A subordinate charm hook scheduled to run(but waiting for the principal charm hook to release the lock) goes to an error state after the principal charm hook triggers a reboot. 3 High Bogdan Teleaga  10 Fix Released
1464616 #1464616 destroy-machine --force no longer forceably destroys machine 3 High Ian Booth  10 Fix Released
1466167 #1466167 debug-hooks no longer works with 1.24-beta6 3 High Jesse Meek  10 Fix Released
1466969 #1466969 Upgrading 1.20.14 -> 1.24.0 fails 3 High Andrew Wilkins  10 Fix Released
1467379 #1467379 "attachmentcount" and "binding" fields not set when upgrading from 1.24 3 High Horacio Durán  10 Fix Released
1467690 #1467690 inconsistent juju status from cli vs api 3 High Ian Booth  10 Fix Released
1468153 #1468153 Charms with storage don't use cloud-native default if size is specified, but provider is omitted 3 High Andrew Wilkins  10 Fix Released
1468354 #1468354 RelationUnitSuite setup fails 3 High   10 Fix Released
1468355 #1468355 TestAddStoreCharmPlaceholder fails 3 High   10 Fix Released
1468579 #1468579 juju bootstrap failed - cannot dial mongo to initiate replicaset: no reachable servers 3 High Menno Finlay-Smits  10 Fix Released
1468581 #1468581 juju bootstrap fails - Waiting for API to become available ERROR cannot get all blocks: EOF 3 High Tim Penhey  10 Fix Released
1468653 #1468653 jujud hanging after upgrading from 1.24.0 to 1.24.1(and 1.24.2) 3 High Tim Penhey  10 Fix Released
1468994 #1468994 leadership settings documents written out without env-uuid field 3 High Menno Finlay-Smits  10 Fix Released
1469130 #1469130 tools migration fails when upgrading 1.20.14 to 1.24.1 on ec2 3 High   10 Fix Released
1469199 #1469199 State server seems to have died 3 High Menno Finlay-Smits  10 Fix Released
1470150 #1470150 CentOS fails to bootstrap using juju 1.24 3 High Gabriel Samfira  10 Fix Released
1471332 #1471332 Upgrade fails on windows machines 3 High Bogdan Teleaga  10 Fix Released
1472014 #1472014 juju 1.24.0: wget cert issues causing failure to create containers on 14.04.2 with lxc 1.07 3 High Ian Booth  10 Fix Released
1472729 #1472729 Agent shutdown can cause cert updater channel already closed panic 3 High Ian Booth  10 Fix Released
1472749 #1472749 github.com/juju/utils has contradictory licences 3 High Curtis Hovey  10 Fix Released
1474195 #1474195 juju 1.24 memory leakage 3 High Menno Finlay-Smits  10 Fix Released
1474508 #1474508 Rebooting the virtual machines breaks Juju networking 3 High James Tunnicliffe  10 Fix Released
1474606 #1474606 $set updates may clear out the env-uuid field 3 High Menno Finlay-Smits  10 Fix Released
1474614 #1474614 rsyslog connections fail with certificate verification errors after upgrade to 1.24.2 3 High Andrew Wilkins  10 Fix Released
1474788 #1474788 ec2: provisioning machines sometimes fails with "tagging instance: The instance ID <ID> does not exist" 3 High Andrew Wilkins  10 Fix Released
1475163 #1475163 when the uniter fails to run an operation due to an error, the agent state is not set to "failed" 3 High Ian Booth  10 Fix Released
1475271 #1475271 Intermittent test failure UniterSuite.TestUniterCollectMetrics 3 High Casey Marshall  10 Fix Released
1475779 #1475779 EnsureJujudPassword fails if the registry keys are not present 3 High Bogdan Teleaga  10 Fix Released
1476895 #1476895 ec2: auto-created EBS volumes are not tagged 3 High Andrew Wilkins  10 Fix Released
1477263 #1477263 destroying local provider environments sometimes emits "ERROR" log messages 3 High Andrew Wilkins  10 Fix Released
1477358 #1477358 No output from ssh problems during bootstrap 3 High Menno Finlay-Smits  10 Fix Released
1478024 #1478024 Looping config-changed hooks in fresh juju-core 1.24.3 Openstack deployment 3 High William Reade  10 Fix Released
1478660 #1478660 juju uses proxy to access bootstrap node 3 High Cheryl Jennings  10 Fix Released
1479546 #1479546 Storage provisioner timeouts spawning extra volumes on AWS 3 High Andrew Wilkins  10 Fix Released
1481500 #1481500 automatic devel streams selection for beta releases 3 High Ian Booth  10 Fix Released
1483082 #1483082 provider/maas: volume source won't work for physical machines/disks 3 High Andrew Wilkins  10 Fix Released
1483083 #1483083 worker/storageprovisioner: unnecessary Attach just after a Create that creates attachment 3 High Andrew Wilkins  10 Fix Released
1483086 #1483086 storage/provider: managedfs fails to create fs on full disks 3 High Andrew Wilkins  10 Fix Released
1484403 #1484403 provider/openstack: default block source not set to "cinder" 3 High Ian Booth  10 Fix Released
1484617 #1484617 Need arbitrary stream names for testing 3 High Ian Booth  10 Fix Released
1484789 #1484789 add-machine fails with hosted environments 3 High Cheryl Jennings  10 Fix Released
1486074 #1486074 juju bootstrap fails to work due to incorrect Identities restriction. 3 High Katherine Cox-Buday  10 Fix Released
1486106 #1486106 TestNetworkInterfaces fails on vivid/wily 3 High James Tunnicliffe  10 Fix Released
1486166 #1486166 JES deploy fails 3 High Tim Penhey  10 Fix Released
1486749 #1486749 juju backups create should fail earlier for hosted environments 3 High Cheryl Jennings  10 Fix Released
1174610 #1174610 unit ids should be unique 4 Medium Matthew Williams  10 Fix Released
1222413 #1222413 openstack provider Instances suppresses errors 4 Medium Martin Packman  10 Fix Released
1265871 #1265871 Incorrectly disconnected debug-hooks does not reconnect to tmux 4 Medium @les  10 Fix Released
1452114 #1452114 Unnecessary errors emitted during init system discovery 4 Medium Wayne Witzel III  10 Fix Released
1454323 #1454323 Mysterious env.lock held message 4 Medium Tim Penhey  10 Fix Released
1456315 #1456315 Received disconnect from ...: 2: Too many authentication failures for ubuntu 4 Medium Eric Snow  10 Fix Released
1457122 #1457122 local data dir handling for init services should be handled independently 4 Medium Tim Penhey  10 Fix Released
1458717 #1458717 utils/featureflag: data race on feature flags 4 Medium Dave Cheney  10 Fix Released
1458721 #1458721 lease: data races in tests 4 Medium Dave Cheney  10 Fix Released
1459064 #1459064 worker/leadership: data races in test and code 4 Medium Dave Cheney  10 Fix Released
1460893 #1460893 many unhandled assigned values 4 Medium Dave Cheney  10 Fix Released
1462412 #1462412 TestResumeTransactionsFailure fails 4 Medium Dimiter Naydenov  10 Fix Released
1465115 #1465115 api: data race in test 4 Medium Dave Cheney  10 Fix Released
1467037 #1467037 Cannot remove an environment user with upper case characters 4 Medium Cheryl Jennings  10 Fix Released
1468349 #1468349 discoverySuite.TestDiscoverServiceLocalHost: invalid series for wily and vivid 4 Medium James Tunnicliffe  10 Fix Released
1471771 #1471771 After "juju destroy-service <charm-name>" is executed, the corresponding Windows charm service is not uninstalled 4 Medium Bogdan Teleaga  10 Fix Released
1486640 #1486640 Typos in help 5 Low Brad Crittenden  10 Fix Released
1461393 #1461393 worker/deployer: multiple data races 1 Undecided Dave Cheney  10 Fix Released
1463641 #1463641 lease: data race in tests (again) 1 Undecided Dave Cheney  10 Fix Released
1467372 #1467372 api/cleaner: data race in test 1 Undecided James Tunnicliffe  10 Fix Released
This milestone contains Public information
Everyone can see this information.