1
0
mirror of /repos/baseimage-docker.git synced 2025-12-30 08:01:31 +01:00

Document the fact that 0.9.17 fixes OpenSSL CVE-2015-1793

This commit is contained in:
Hongli Lai (Phusion) 2015-07-15 15:49:33 +02:00
parent afb0835328
commit c56b1a332f
No known key found for this signature in database
GPG Key ID: 2AF96EB85EF4DA0D

View File

@ -1,5 +1,6 @@
## 0.9.17 (not yet released)
* The latest OpenSSL updates have been pulled in. This fixes [CVE-2015-1793](http://openssl.org/news/secadv_20150709.txt). Upgrading is strongly recommended.
* Removed nano and replaced vim with vim-tiny. This reduces Baseimage-docker's virtual size by 42 MB.
* When `my_init` generates `/etc/container_environment.sh`, it now ensures that environment variable names do not include any characters unsupported by Bash. Unsupported characters are now replaced with underscores. This fixes compatibility issues with Docker Compose. Closes GH-230.
* `my_init` no longer reads from and writes to `/etc/container_environment` if that directory does not exist. Previously it would abort with an error. This change makes it easier to reuse `my_init` in other (non-Baseimage-docker-based) projects without having to modify it.