Skip to content

Commit f9bd8a6

Browse files
authored
Merge pull request #1371 from gliderlabs/master
Release 0.10.2
2 parents 1e137dc + 5c9573c commit f9bd8a6

File tree

13 files changed

+51
-27
lines changed

13 files changed

+51
-27
lines changed

CHANGELOG.md

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

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

5+
## [0.10.3](https://github.com/gliderlabs/herokuish/compare/v0.10.2...v0.10.3) - 2024-11-24
6+
7+
- #1353 @dokku-bot: Update python to version v267
8+
- #1354 @dokku-bot: Update go to version v200
9+
- #1355 @dependabot: chore(deps): bump flask from 3.0.3 to 3.1.0 in /buildpacks/buildpack-multi/tests/multi
10+
- #1356 @dependabot: chore(deps): bump rackup from 2.2.0 to 2.2.1 in /buildpacks/buildpack-ruby/tests/ruby-sinatra
11+
- #1357 @dependabot: chore(deps): bump flask from 3.0.3 to 3.1.0 in /buildpacks/buildpack-python/tests/python-flask
12+
- #1358 @dokku-bot: Update nodejs to version v270
13+
- #1359 @dokku-bot: Update ruby to version v283
14+
- #1361 @dependabot: chore(deps): bump sinatra from 4.0.0 to 4.1.0 in /buildpacks/buildpack-multi/tests/multi
15+
- #1362 @dependabot: chore(deps): bump sinatra from 4.0.0 to 4.1.0 in /buildpacks/buildpack-ruby/tests/ruby-sinatra
16+
- #1363 @dependabot: chore(deps): bump sinatra from 4.0.0 to 4.1.1 in /buildpacks/buildpack-multi/tests/multi
17+
- #1364 @dependabot: chore(deps): bump sinatra from 4.0.0 to 4.1.1 in /buildpacks/buildpack-ruby/tests/ruby-sinatra
18+
- #1366 @dependabot: chore(deps-dev): bump heroku/heroku-buildpack-php from 258 to 259 in /buildpacks/buildpack-php/tests/php
19+
- #1367 @dokku-bot: Update ruby to version v285
20+
- #1368 @dokku-bot: Update nodejs to version v272
21+
- #1369 @dokku-bot: Update php to version v259
22+
523
## [0.10.2](https://github.com/gliderlabs/herokuish/compare/v0.10.1...v0.10.2) - 2024-11-10
624

725
- #1315 @dokku-bot: Update python to version v257

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.2
7+
VERSION ?= 0.10.3
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.2-blue)](https://hub.docker.com/r/gliderlabs/herokuish)
5+
[![Docker Hub](https://img.shields.io/badge/docker%20hub-v0.10.3-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.2/herokuish_0.10.2_linux_x86_64.tgz \
22+
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.10.3/herokuish_0.10.3_linux_x86_64.tgz \
2323
| tar -xzC /bin
2424
```
2525

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v198
1+
v200

buildpacks/buildpack-multi/tests/multi/Gemfile.lock

+8-5
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,25 @@ GEM
22
remote: http://rubygems.org/
33
specs:
44
base64 (0.2.0)
5-
mustermann (3.0.0)
5+
logger (1.6.1)
6+
mustermann (3.0.3)
67
ruby2_keywords (~> 0.0.1)
78
rack (3.1.8)
8-
rack-protection (4.0.0)
9+
rack-protection (4.1.1)
910
base64 (>= 0.1.0)
11+
logger (>= 1.6.0)
1012
rack (>= 3.0.0, < 4)
1113
rack-session (2.0.0)
1214
rack (>= 3.0.0)
1315
ruby2_keywords (0.0.5)
14-
sinatra (4.0.0)
16+
sinatra (4.1.1)
17+
logger (>= 1.6.0)
1518
mustermann (~> 3.0)
1619
rack (>= 3.0.0, < 4)
17-
rack-protection (= 4.0.0)
20+
rack-protection (= 4.1.1)
1821
rack-session (>= 2.0.0, < 3)
1922
tilt (~> 2.0)
20-
tilt (2.3.0)
23+
tilt (2.4.0)
2124

2225
PLATFORMS
2326
ruby
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Flask==3.0.3
1+
Flask==3.1.0
22
Jinja2==3.1.4
33
gunicorn==23.0.0
44
markupsafe==3.0.2
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v269
1+
v273
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v258
1+
v259

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

+6-6
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-
v266
1+
v267
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Flask==3.0.3
1+
Flask==3.1.0
22
Jinja2==3.1.4
33
gunicorn==23.0.0
44
markupsafe==3.0.2
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v282
1+
v285

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

+9-6
Original file line numberDiff line numberDiff line change
@@ -2,33 +2,36 @@ GEM
22
remote: http://rubygems.org/
33
specs:
44
base64 (0.2.0)
5-
mustermann (3.0.0)
5+
logger (1.6.1)
6+
mustermann (3.0.3)
67
ruby2_keywords (~> 0.0.1)
78
nio4r (2.7.3)
89
power_assert (2.0.3)
910
puma (6.4.3)
1011
nio4r (~> 2.0)
1112
rack (3.1.8)
12-
rack-protection (4.0.0)
13+
rack-protection (4.1.1)
1314
base64 (>= 0.1.0)
15+
logger (>= 1.6.0)
1416
rack (>= 3.0.0, < 4)
1517
rack-session (2.0.0)
1618
rack (>= 3.0.0)
1719
rack-test (2.1.0)
1820
rack (>= 1.3)
19-
rackup (2.2.0)
21+
rackup (2.2.1)
2022
rack (>= 3)
2123
rake (13.2.1)
2224
ruby2_keywords (0.0.5)
23-
sinatra (4.0.0)
25+
sinatra (4.1.1)
26+
logger (>= 1.6.0)
2427
mustermann (~> 3.0)
2528
rack (>= 3.0.0, < 4)
26-
rack-protection (= 4.0.0)
29+
rack-protection (= 4.1.1)
2730
rack-session (>= 2.0.0, < 3)
2831
tilt (~> 2.0)
2932
test-unit (3.6.2)
3033
power_assert
31-
tilt (2.3.0)
34+
tilt (2.4.0)
3235

3336
PLATFORMS
3437
ruby

0 commit comments

Comments
 (0)