Skip to content

Commit 50daab2

Browse files
Merge pull request #173 from gliderlabs/master
release 0.3.17
2 parents a607b59 + 20ba410 commit 50daab2

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

CHANGELOG.md

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

1313

14+
## [0.3.17] - 2016-07-14
15+
### Fixed
16+
- @michaelshobbs set unprivileged user/group to same name and test with this user
17+
18+
1419
## [0.3.16] - 2016-07-14
1520
### Added
1621
- @michaelshobbs add named unprivileged user
@@ -242,7 +247,8 @@ All notable changes to this project will be documented in this file.
242247
- User for `buildpack-build` is `$USER` or randomized
243248
- User for `procfile-exec` is `$USER` or detected from `/app`
244249

245-
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.3.16...HEAD
250+
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.3.17...HEAD
251+
[0.3.17]: https://github.com/gliderlabs/herokuish/compare/v0.3.16...v0.3.17
246252
[0.3.16]: https://github.com/gliderlabs/herokuish/compare/v0.3.15...v0.3.16
247253
[0.3.15]: https://github.com/gliderlabs/herokuish/compare/v0.3.14...v0.3.15
248254
[0.3.14]: https://github.com/gliderlabs/herokuish/compare/v0.3.13...v0.3.14

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.16/herokuish_0.3.16_linux_x86_64.tgz \
2+
RUN curl https://github.com/gliderlabs/herokuish/releases/download/v0.3.17/herokuish_0.3.17_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.16
3+
VERSION ?= 0.3.17
44
IMAGE_NAME ?= $(NAME)
55
BUILD_TAG ?= dev
66

buildpacks/test

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ run-test() {
2020
cd - &> /dev/null
2121
[[ "$CI" ]] || rmflag="--rm"
2222
[[ "$TRACE" ]] && debug_flag="-e TRACE=true"
23-
docker run $rmflag $debug_flag -v "$app_path:/tmp/app" herokuish:dev /bin/herokuish test / "$app"
23+
docker run $rmflag $debug_flag --env=USER=herokuishuser -v "$app_path:/tmp/app" herokuish:dev /bin/herokuish test / "$app"
2424
}
2525

2626
main() {

include/default_user.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
addgroup --quiet --gid "32767" "herokuishgroup" && \
3+
addgroup --quiet --gid "32767" "herokuishuser" && \
44
adduser \
55
--shell /bin/bash \
66
--disabled-password \

0 commit comments

Comments
 (0)