Skip to content
This repository was archived by the owner on Nov 1, 2023. It is now read-only.

Commit e6a2804

Browse files
schneemsedmorley
andauthored
Deprecate buildpack (#243)
* Deprecate buildpack This build pack is currently not maintained by a team and carries no support obligations. Let's make this clearer by deprecating the build pack. This is done right before the release of heroku-22 as supporting new stacks require maintenance effort. Also before the desire to re-write it as a CNB comes into play. * Bring back Readme contents Having README docs makes it easier for developers to lookup features while they transition off the buildpack. * Update docs for deprecation - Mention the need to re-write mruby parts - Link to a specific nginx build pack and give commands on how to add it - Give specific command to remove this buildpack from app - Mention in README we're open to extra docs/help for people migrating off. - Space after testing header because it's my thing and I looked at those docs. - Added a link to where `Nginx::Request` is defined because it's not obvious it comes from ngx_mruby * Update README.md Co-authored-by: Ed Morley <[email protected]> * Update bin/compile Co-authored-by: Ed Morley <[email protected]> * Address PR comments Co-authored-by: Ed Morley <[email protected]>
1 parent 21c1f51 commit e6a2804

File tree

4 files changed

+52
-1
lines changed

4 files changed

+52
-1
lines changed

CHANGELOG.md

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

33
## Unreleased
44

5+
* [#243](https://github.com/heroku/heroku-buildpack-static/pull/243) Buildpack is officially deprecated
6+
57
## v8 (2022-05-19)
68

79
* [#240](https://github.com/heroku/heroku-buildpack-static/pull/240) Update ngx_mruby from 2.2.3 to 2.2.4.

README.md

+26
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,35 @@
11
# heroku-buildpack-static
2+
23
**NOTE**: This buildpack is in an experimental OSS project.
34

45
This is a buildpack for handling static sites and single page web apps.
56

67
For a guide, read the [Getting Started with Single Page Apps on Heroku](https://gist.github.com/hone/24b06869b4c1eca701f9).
78

9+
## WARNING: `heroku-buildpack-static` is deprecated
10+
11+
This buildpack is deprecated and is no longer being maintained.
12+
If you are using this project, you can transition over to NGINX via an NGINX buildpack.
13+
Use your project's existing configuration.
14+
To find the NGINX configuration generated by the heroku-buildpack-static you can run:
15+
16+
```
17+
$ heroku run bash
18+
~ $ bin/config/make-config
19+
~ $ cat config/nginx.conf
20+
```
21+
22+
These commands will output your current NGINX config generated from your `static.json` contents.
23+
24+
- Write these contents to your local repo at `config/nginx.conf.erb`, commit them to git.
25+
- Replace path logic that previously used `mruby` with static logic.
26+
- Configure your app to use the NGINX buildpack via `heroku buildpacks:add heroku-community/nginx`.
27+
- Remove this buildpack via `heroku buildpacks:remove heroku-community/static` (or `heroku buildpacks:remove https://github.com/heroku/heroku-buildpack-static`).
28+
29+
## Deprecation PRs
30+
31+
If you have tips or tricks for migrating off of this buildpack and want to add them to the instructions above please send a PR.
32+
833
## Features
934
* serving static assets
1035
* gzip on by default
@@ -278,6 +303,7 @@ when accessing `/foo`, `X-Foo` will have the value `"foo"` and `X-Bar` will not
278303
In case you have multiple buildpacks for the application you can ensure static rendering in `Procfile` with `web: bin/boot`.
279304

280305
## Testing
306+
281307
For testing we use Docker to replicate Heroku locally. You'll need to have [it setup locally](https://docs.docker.com/installation/). We're also using rspec for testing with Ruby. You'll need to have those setup and install those deps:
282308

283309
```sh

bin/compile

+23
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,29 @@ cache_dir=$2
88
env_dir=$3
99
bp_dir=$(dirname $(dirname $0))
1010

11+
cat <<'EOF'
12+
## WARNING: `heroku-buildpack-static` is deprecated
13+
14+
This buildpack is deprecated and is no longer being maintained.
15+
If you are using this project, you can transition over to NGINX via an NGINX buildpack.
16+
Use your project's existing configuration.
17+
To find the NGINX configuration generated by the heroku-buildpack-static you can run:
18+
19+
```
20+
$ heroku run bash
21+
~ $ bin/config/make-config
22+
~ $ cat config/nginx.conf
23+
```
24+
25+
These commands will output your current NGINX config generated from your `static.json` contents.
26+
27+
- Write these contents to your local repo at `config/nginx.conf.erb`, commit them to git.
28+
- Replace path logic that previously used `mruby` with static logic.
29+
- Configure your app to use the NGINX buildpack via `heroku buildpacks:add heroku-community/nginx`.
30+
- Remove this buildpack via `heroku buildpacks:remove heroku-community/static` (or `heroku buildpacks:remove https://github.com/heroku/heroku-buildpack-static`).
31+
32+
EOF
33+
1134
case "${STACK}" in
1235
heroku-18|heroku-20)
1336
nginx_archive_url="https://heroku-buildpack-static.s3.amazonaws.com/${STACK}/nginx-1.21.3-ngx_mruby-2.2.4.tgz"

scripts/config/lib/ngx_mruby/routes_path.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
config = {}
77
config = JSON.parse(File.read(USER_CONFIG)) if File.exist?(USER_CONFIG)
8-
req = Nginx::Request.new
8+
req = Nginx::Request.new # defined by https://github.com/matsumotory/ngx_mruby/blob/c7682cfb4c0984a41f1a447b71ae01e1f4fcc6bf/docs/class_and_method/README.md#nginxrequest-class
99
uri = req.var.uri
1010
nginx_route = req.var.route
1111
routes = NginxConfigUtil.parse_routes(config["routes"])

0 commit comments

Comments
 (0)