Skip to content

Commit 661ac20

Browse files
author
Ulysses Souza
committed
"Bump 1.25.0-rc2"
Signed-off-by: Ulysses Souza <[email protected]>
1 parent ab93b87 commit 661ac20

3 files changed

Lines changed: 73 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,77 @@
11
Change log
22
==========
33

4+
1.25.0-rc2 (2019-08-06)
5+
-------------------
6+
7+
### Features
8+
9+
- Add tag `docker-compose:latest`
10+
11+
- Add `docker-compose:<version>-alpine` image/tag
12+
13+
- Add `docker-compose:<version>-debian` image/tag
14+
15+
- Bumped `docker-py` 4.0.1
16+
17+
- Supports `requests` up to 2.22.0 version
18+
19+
- Drops empty tag on `build:cache_from`
20+
21+
- `Dockerfile` now generates `libmusl` binaries for alpine
22+
23+
- Only pull images that can't be built
24+
25+
- Attribute `scale` can now accept `0` as a value
26+
27+
- Added `--quiet` build flag
28+
29+
- Added `--no-interpolate` to `docker-compose config`
30+
31+
- Bump OpenSSL for macOS build (`1.1.0j` to `1.1.1a`)
32+
33+
- Added `--no-rm` to `build` command
34+
35+
- Added support for `credential_spec`
36+
37+
- Resolve digests without pulling image
38+
39+
- Upgrade `pyyaml` to `4.2b1`
40+
41+
- Lowered severity to `warning` if `down` tries to remove nonexisting image
42+
43+
- Use improved API fields for project events when possible
44+
45+
- Update `setup.py` for modern `pypi/setuptools` and remove `pandoc` dependencies
46+
47+
- Removed `Dockerfile.armhf` which is no longer needed
48+
49+
### Bugfixes
50+
51+
- Fixed stdin_open
52+
53+
- Fixed `--remove-orphans` when used with `up --no-start`
54+
55+
- Fixed `docker-compose ps --all`
56+
57+
- Fixed `depends_on` dependency recreation behavior
58+
59+
- Fixed bash completion for `build --memory`
60+
61+
- Fixed misleading warning concerning env vars when performing an `exec` command
62+
63+
- Fixed failure check in parallel_execute_watch
64+
65+
- Fixed race condition after pulling image
66+
67+
- Fixed error on duplicate mount points.
68+
69+
- Fixed merge on networks section
70+
71+
- Always connect Compose container to `stdin`
72+
73+
- Fixed the presentation of failed services on 'docker-compose start' when containers are not available
74+
475
1.24.0 (2019-03-28)
576
-------------------
677

compose/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from __future__ import absolute_import
22
from __future__ import unicode_literals
33

4-
__version__ = '1.25.0dev'
4+
__version__ = '1.25.0-rc2'

script/run/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
set -e
1717

18-
VERSION="1.24.0"
18+
VERSION="1.25.0-rc2"
1919
IMAGE="docker/compose:$VERSION"
2020

2121

0 commit comments

Comments
 (0)