Skip to content

Commit 3e2e94a

Browse files
Merge pull request #251 from gliderlabs/master
v0.3.28
2 parents 402d813 + f95d7b2 commit 3e2e94a

File tree

8 files changed

+22
-9
lines changed

8 files changed

+22
-9
lines changed

CHANGELOG.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,18 @@ All notable changes to this project will be documented in this file.
1111
### Changed
1212

1313

14+
## [0.3.28] - 2017-04-19
15+
### Fixed
16+
- @dmgr bugfix: curl may fail to fetch not quoted url if behind proxy
17+
18+
### Changed
19+
- @rvalyi doc: proper reference to Heroku Cedar base image
20+
- @michaelshobbs Update go to version v64
21+
- @michaelshobbs Update nodejs to version v99
22+
- @michaelshobbs Update php to version v121
23+
- @michaelshobbs Update ruby to version v158
24+
25+
1426
## [0.3.27] - 2017-03-21
1527
### Changed
1628
- @michaelshobbs Update ruby to version v155
@@ -334,7 +346,8 @@ All notable changes to this project will be documented in this file.
334346
- User for `buildpack-build` is `$USER` or randomized
335347
- User for `procfile-exec` is `$USER` or detected from `/app`
336348

337-
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.3.27...HEAD
349+
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.3.28...HEAD
350+
[0.3.28]: https://github.com/gliderlabs/herokuish/compare/v0.3.27...v0.3.28
338351
[0.3.27]: https://github.com/gliderlabs/herokuish/compare/v0.3.26...v0.3.27
339352
[0.3.26]: https://github.com/gliderlabs/herokuish/compare/v0.3.25...v0.3.26
340353
[0.3.25]: https://github.com/gliderlabs/herokuish/compare/v0.3.24...v0.3.25

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM heroku/cedar:14
2-
RUN curl https://github.com/gliderlabs/herokuish/releases/download/v0.3.27/herokuish_0.3.27_linux_x86_64.tgz \
2+
RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.3.28/herokuish_0.3.28_linux_x86_64.tgz" \
33
--silent -L | tar -xzC /bin
44
RUN /bin/herokuish buildpack install \
55
&& ln -s /bin/herokuish /build \

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
NAME = herokuish
22
HARDWARE = $(shell uname -m)
3-
VERSION ?= 0.3.27
3+
VERSION ?= 0.3.28
44
IMAGE_NAME ?= $(NAME)
55
BUILD_TAG ?= dev
66

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A command line tool for emulating Heroku build and runtime tasks in containers.
77

88
Herokuish is made for platform authors. The project consolidates and decouples Heroku compatibility logic (running buildpacks, parsing Procfile) and supporting workflow (importing/exporting slugs) from specific platform images like those in Dokku/Buildstep, Deis, Flynn, etc.
99

10-
The goal is to be the definitive, well maintained and heavily tested Heroku emulation utility shared by all. It is complemented by [progrium/cedarish](https://github.com/progrium/cedarish), which focuses on reproducing the base Heroku system image. Together they form a toolkit for achieving Heroku compatibility.
10+
The goal is to be the definitive, well maintained and heavily tested Heroku emulation utility shared by all. It is based on the [Cedar Heroku system image](https://github.com/heroku/stack-images). Together they form a toolkit for achieving Heroku compatibility.
1111

1212
Herokuish is a community project and is in no way affiliated with Heroku.
1313

@@ -18,7 +18,7 @@ Download and uncompress the latest binary tarball from [releases](https://github
1818
For example, you can do this directly in your Dockerfiles installing into `/bin` as one step:
1919

2020
```
21-
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.3.27/herokuish_0.3.27_linux_x86_64.tgz \
21+
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.3.28/herokuish_0.3.28_linux_x86_64.tgz \
2222
| tar -xzC /bin
2323
```
2424

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v62
1+
v64
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v98
1+
v99
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v120
1+
v121
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v155
1+
v158

0 commit comments

Comments
 (0)