Skip to content

Commit 1e137dc

Browse files
authored
Merge pull request #1352 from gliderlabs/master
Release v0.10.2
2 parents 782fdd4 + 60643db commit 1e137dc

File tree

19 files changed

+7645
-29
lines changed

19 files changed

+7645
-29
lines changed

.well-known/funding-manifest-urls

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
https://dokku.com/funding.json

CHANGELOG.md

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

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

5+
## [0.10.2](https://github.com/gliderlabs/herokuish/compare/v0.10.1...v0.10.2) - 2024-11-10
6+
7+
- #1315 @dokku-bot: Update python to version v257
8+
- #1316 @dokku-bot: Update php to version v257
9+
- #1317 @dependabot: chore(deps-dev): bump heroku/heroku-buildpack-php from 256 to 257 in /buildpacks/buildpack-php/tests/php
10+
- #1318 @dokku-bot: Update python to version v258
11+
- #1319 @dokku-bot: Update go to version v198
12+
- #1320 @dependabot: chore(deps): bump webrick from 1.8.1 to 1.8.2 in /buildpacks/buildpack-ruby/tests/ruby-sinatra
13+
- #1321 @dokku-bot: Update java to version v74
14+
- #1322 @dokku-bot: Update gradle to version v40
15+
- #1323 @dokku-bot: Update nodejs to version v266
16+
- #1326 @dependabot: chore(deps): bump markupsafe from 2.1.5 to 3.0.1 in /buildpacks/buildpack-python/tests/python-flask
17+
- #1327 @dependabot: chore(deps): bump markupsafe from 2.1.5 to 3.0.1 in /buildpacks/buildpack-multi/tests/multi
18+
- #1328 @dokku-bot: Update ruby to version v280
19+
- #1329 @dokku-bot: Update python to version v259
20+
- #1330 @dokku-bot: Update python to version v260
21+
- #1331 @dependabot: chore(deps): bump rack from 3.1.7 to 3.1.8 in /buildpacks/buildpack-ruby/tests/ruby-sinatra
22+
- #1332 @dependabot: chore(deps): bump rack from 3.1.7 to 3.1.8 in /buildpacks/buildpack-multi/tests/multi
23+
- #1333 @dokku-bot: Update python to version v261
24+
- #1334 @dependabot: chore(deps): bump markupsafe from 3.0.1 to 3.0.2 in /buildpacks/buildpack-python/tests/python-flask
25+
- #1335 @dependabot: chore(deps): bump markupsafe from 3.0.1 to 3.0.2 in /buildpacks/buildpack-multi/tests/multi
26+
- #1339 @dependabot: chore(deps-dev): bump heroku/heroku-buildpack-php from 257 to 258 in /buildpacks/buildpack-php/tests/php
27+
- #1340 @dokku-bot: Update nodejs to version v269
28+
- #1341 @dokku-bot: Update python to version v263
29+
- #1342 @dokku-bot: Update php to version v258
30+
- #1343 @dependabot: chore(deps): bump rackup from 2.1.0 to 2.2.0 in /buildpacks/buildpack-ruby/tests/ruby-sinatra
31+
- #1344 @dokku-bot: Update python to version v265
32+
- #1345 @dependabot: chore(deps): bump twig/twig from 3.11.1 to 3.11.2 in /buildpacks/buildpack-php/tests/php
33+
- #1347 @dokku-bot: Update ruby to version v282
34+
- #1349 @josegonzalez Copy the rds pem bundle into place to avoid build failures
35+
- #1350 @josegonzalez Create .well-known/funding-manifest-urls
36+
- #1351 @dokku-bot: Update python to version v266
37+
538
## [0.10.1](https://github.com/gliderlabs/herokuish/compare/v0.10.0...v0.10.1) - 2024-09-21
639

740
- #1298 @dokku-bot: Update php to version v256

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

build-deps/20/rds-global-bundle.pem

+2,528
Large diffs are not rendered by default.

build-deps/22/rds-global-bundle.pem

+2,528
Large diffs are not rendered by default.

build-deps/24/rds-global-bundle.pem

+2,528
Large diffs are not rendered by default.
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v197
1+
v198
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v39
1+
v40
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v73
1+
v74

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ GEM
44
base64 (0.2.0)
55
mustermann (3.0.0)
66
ruby2_keywords (~> 0.0.1)
7-
rack (3.1.7)
7+
rack (3.1.8)
88
rack-protection (4.0.0)
99
base64 (>= 0.1.0)
1010
rack (>= 3.0.0, < 4)
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Flask==3.0.3
22
Jinja2==3.1.4
33
gunicorn==23.0.0
4-
markupsafe==2.1.5
4+
markupsafe==3.0.2
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v265
1+
v269
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v256
1+
v258

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

+12-12
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-
v256
1+
v266
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Flask==3.0.3
22
Jinja2==3.1.4
33
gunicorn==23.0.0
4-
markupsafe==2.1.5
4+
markupsafe==3.0.2
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v279
1+
v282

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

+2-4
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,16 @@ GEM
88
power_assert (2.0.3)
99
puma (6.4.3)
1010
nio4r (~> 2.0)
11-
rack (3.1.7)
11+
rack (3.1.8)
1212
rack-protection (4.0.0)
1313
base64 (>= 0.1.0)
1414
rack (>= 3.0.0, < 4)
1515
rack-session (2.0.0)
1616
rack (>= 3.0.0)
1717
rack-test (2.1.0)
1818
rack (>= 1.3)
19-
rackup (2.1.0)
19+
rackup (2.2.0)
2020
rack (>= 3)
21-
webrick (~> 1.8)
2221
rake (13.2.1)
2322
ruby2_keywords (0.0.5)
2423
sinatra (4.0.0)
@@ -30,7 +29,6 @@ GEM
3029
test-unit (3.6.2)
3130
power_assert
3231
tilt (2.3.0)
33-
webrick (1.8.1)
3432

3533
PLATFORMS
3634
ruby

0 commit comments

Comments
 (0)