Skip to content

Commit b1e978e

Browse files
committed
v1.2.2
1 parent 9f490af commit b1e978e

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ If you don't have an internal apt server, you can use `dpkg -i` to install the
174174
One possibility is with the following commands in your Dockerfile:
175175

176176
```Dockerfile
177-
RUN wget https://github.com/Yelp/dumb-init/releases/download/v1.2.1/dumb-init_1.2.1_amd64.deb
177+
RUN wget https://github.com/Yelp/dumb-init/releases/download/v1.2.2/dumb-init_1.2.2_amd64.deb
178178
RUN dpkg -i dumb-init_*.deb
179179
```
180180

@@ -185,7 +185,7 @@ Since dumb-init is released as a statically-linked binary, you can usually just
185185
plop it into your images. Here's an example of doing that in a Dockerfile:
186186

187187
```Dockerfile
188-
RUN wget -O /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.2.1/dumb-init_1.2.1_amd64
188+
RUN wget -O /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.2.2/dumb-init_1.2.2_amd64
189189
RUN chmod +x /usr/local/bin/dumb-init
190190
```
191191

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.1
1+
1.2.2

VERSION.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// THIS FILE IS AUTOMATICALLY GENERATED
22
// Run `make VERSION.h` to update it after modifying VERSION.
33
unsigned char VERSION[] = {
4-
0x31, 0x2e, 0x32, 0x2e, 0x31, 0x0a
4+
0x31, 0x2e, 0x32, 0x2e, 0x32, 0x0a
55
};
66
unsigned int VERSION_len = 6;

debian/changelog

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
dumb-init (1.2.2) unstable; urgency=medium
2+
3+
* Fix a race condition which can cause the child to receive SIGHUP and
4+
SIGCONT very shortly after start (#174).
5+
6+
In general this was very rare, but some environments (especially some
7+
container and virtualization environments) appear to encounter it at a
8+
much higher rate, possibly due to scheduler quirks.
9+
10+
-- Chris Kuehl <ckuehl@yelp.com> Wed, 01 Aug 2018 16:36:22 -0700
11+
112
dumb-init (1.2.1) unstable; urgency=medium
213

314
* Fix verbose debug logging for ignored signals.

0 commit comments

Comments
 (0)