Skip to content

Commit 782fdd4

Browse files
authored
Merge pull request #1314 from gliderlabs/master
Release v0.10.1
2 parents 4c2529a + 880917b commit 782fdd4

File tree

14 files changed

+70
-54
lines changed

14 files changed

+70
-54
lines changed

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
- name: Clone
6363
uses: actions/checkout@v4
6464
- name: Run shfmt
65-
uses: luizm/action-sh-checker@c6edb3de93e904488b413636d96c6a56e3ad671a
65+
uses: luizm/action-sh-checker@17bd25a6ee188d2b91f677060038f4ba37ba14b2
6666
env:
6767
SHFMT_OPTS: -l -bn -ci -i 2 -d
6868
with:

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.10.1](https://github.com/gliderlabs/herokuish/compare/v0.10.0...v0.10.1) - 2024-09-21
6+
7+
- #1298 @dokku-bot: Update php to version v256
8+
- #1299 @dependabot: chore(deps-dev): bump heroku/heroku-buildpack-php from 255 to 256 in /buildpacks/buildpack-php/tests/php
9+
- #1301 @dokku-bot: Update ruby to version v279
10+
- #1302 @dokku-bot: Update nodejs to version v264
11+
- #1303 @dokku-bot: Update python to version v256
12+
- #1306 @dokku-bot: Update go to version v197
13+
- #1307 @dependabot: chore(deps): bump twig/twig from 3.11.0 to 3.11.1 in /buildpacks/buildpack-php/tests/php
14+
- #1308 @dependabot: chore(deps): bump express from 4.19.2 to 4.21.0 in /buildpacks/buildpack-multi/tests/multi
15+
- #1309 @dependabot: chore(deps): bump express from 4.19.2 to 4.21.0 in /buildpacks/buildpack-nodejs/tests/nodejs-express
16+
- #1310 @dokku-bot: Update static to version v26
17+
- #1311 @dependabot: chore(deps): bump luizm/action-sh-checker from 0.8.0 to 0.9.0
18+
- #1312 @dependabot: chore(deps): bump puma from 6.4.2 to 6.4.3 in /buildpacks/buildpack-ruby/tests/ruby-sinatra
19+
- #1313 @dokku-bot: Update nodejs to version v265
20+
521
## [0.10.0](https://github.com/gliderlabs/herokuish/compare/v0.9.2...v0.10.0) - 2024-08-24
622

723
- #1249 @dokku-bot: Update nodejs to version v255

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ REPOSITORY = herokuish
44
DESCRIPTION = 'Herokuish uses Docker and Buildpacks to build applications like Heroku'
55
HARDWARE = $(shell uname -m)
66
SYSTEM_NAME = $(shell uname -s | tr '[:upper:]' '[:lower:]')
7-
VERSION ?= 0.10.0
7+
VERSION ?= 0.10.1
88
IMAGE_NAME ?= $(NAME)
99
BUILD_TAG ?= dev
1010
PACKAGECLOUD_REPOSITORY ?= dokku/dokku-betafish

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Build Status](https://github.com/gliderlabs/herokuish/workflows/CI/badge.svg)](https://github.com/gliderlabs/herokuish/actions?query=workflow%3ACI)
44
[![IRC Channel](https://img.shields.io/badge/irc-%23gliderlabs-blue.svg)](https://kiwiirc.com/client/irc.freenode.net/#gliderlabs)
5-
[![Docker Hub](https://img.shields.io/badge/docker%20hub-v0.10.0-blue)](https://hub.docker.com/r/gliderlabs/herokuish)
5+
[![Docker Hub](https://img.shields.io/badge/docker%20hub-v0.10.1-blue)](https://hub.docker.com/r/gliderlabs/herokuish)
66

77
A command line tool for emulating Heroku build and runtime tasks in containers.
88

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

2121
```shell
22-
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.10.0/herokuish_0.10.0_linux_x86_64.tgz \
22+
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.10.1/herokuish_0.10.1_linux_x86_64.tgz \
2323
| tar -xzC /bin
2424
```
2525

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v195
1+
v197

buildpacks/buildpack-multi/tests/multi/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"node": "8.11.2"
66
},
77
"dependencies": {
8-
"express": "4.19.x"
8+
"express": "4.21.x"
99
}
1010
}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v262
1+
v265

buildpacks/buildpack-nodejs/tests/nodejs-express/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"node": "8.11.2"
66
},
77
"dependencies": {
8-
"express": "4.19.x"
8+
"express": "4.21.x"
99
}
1010
}
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v255
1+
v256

buildpacks/buildpack-php/tests/php/composer.lock

+40-40
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v255
1+
v256
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v278
1+
v279

buildpacks/buildpack-ruby/tests/ruby-sinatra/Gemfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ GEM
44
base64 (0.2.0)
55
mustermann (3.0.0)
66
ruby2_keywords (~> 0.0.1)
7-
nio4r (2.7.0)
7+
nio4r (2.7.3)
88
power_assert (2.0.3)
9-
puma (6.4.2)
9+
puma (6.4.3)
1010
nio4r (~> 2.0)
1111
rack (3.1.7)
1212
rack-protection (4.0.0)
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v25
1+
v26

0 commit comments

Comments
 (0)