-
Notifications
You must be signed in to change notification settings - Fork 384
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
38 changed files
with
553 additions
and
204 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "compile-extensions"] | ||
path = compile-extensions | ||
url = https://github.com/cloudfoundry-incubator/compile-extensions.git | ||
url = https://github.com/cloudfoundry/compile-extensions.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
language: bash | ||
sudo: required | ||
services: | ||
- docker | ||
install: docker pull heroku/cedar:14 | ||
script: make test-cedar-14 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,89 @@ | ||
## master | ||
# Node.js Buildpack Changelog | ||
|
||
- Fix caching issues | ||
- Use bin/release instead of generated Procfile | ||
- Support OSX | ||
- Simplify detect (package.json required) | ||
## Pending | ||
|
||
## v74 / v75 (24/4/2015) | ||
Enables compiling the same directory multiple times | ||
Updates tests for Node v5 | ||
|
||
- Update build failure messaging and help | ||
## v86 (2015-10-08) | ||
|
||
## v73 (24/4/2015) | ||
Fixes piped output buffering issues | ||
|
||
- Patch for caching to disable cache restoration if node_modules already exists (eg from being git submoduled or checked into git) | ||
## v85 (2015-10-08) | ||
|
||
## v72 (23/4/2015) | ||
Fixes piped output buffering issues (unsuccessful) | ||
|
||
* Accepts `cacheDirectories` array in package.json to override default `node_modules` caching | ||
- https://github.com/heroku/heroku-buildpack-nodejs/issues/273 | ||
|
||
## v84 (2015-10-08) | ||
|
||
Replaces sed with awk for output formatting | ||
|
||
- large output (from assets or npm 3) was crashing sed ('resource unavailable') | ||
|
||
## v83 (2015-10-05) | ||
|
||
Caching improvements | ||
|
||
- Fixes modules-checked-in reference URL | ||
- When cache restoration is disabled, empties the cache instead of saving it | ||
- Adds bower_components as a default cache target | ||
|
||
## v82 (2015-09-30) | ||
|
||
Detects bower+angular resolution failures | ||
Detects missing grunt/gulp/bower failures | ||
|
||
## v81 (2015-09-24) | ||
|
||
Supports WEB_CONCURRENCY=28 for Performance-L dynos | ||
|
||
## v80 (2015-08-14) | ||
|
||
Fixes not defaulting to `NODE_ENV=production` during runtime | ||
|
||
## v79 (2015-08-10) | ||
|
||
Supports WEB_CONCURRENCY for Performance-M dynos | ||
|
||
## v78 (2015-07-24) | ||
|
||
Defaults node environment to 'production'; bugfixes | ||
|
||
- Fix runtime signature cache invalidation | ||
- Provide error messaging for un-downloadable binaries | ||
- Default to NODE_ENV=production for both build and runtime | ||
- https://github.com/heroku/heroku-buildpack-nodejs/issues/60 | ||
|
||
## v77 (2015-07-15) | ||
|
||
Npm bootstrapping skipped when using iojs. | ||
|
||
- Fixes https://github.com/heroku/heroku-buildpack-nodejs/issues/202 | ||
|
||
## v76 (2015-06-23) | ||
|
||
Refactor to bring caching logic to the forefront. | ||
|
||
- Fixes cachDirectories issues | ||
- Addresses https://github.com/heroku/heroku-buildpack-nodejs/pull/231 | ||
- Addresses https://github.com/heroku/heroku-buildpack-nodejs/issues/226 | ||
- Simplifies detect (package.json required) | ||
|
||
## v75 (2015-04-24) | ||
|
||
Updated build failure and help messaging. | ||
|
||
## v74 (2015-04-24) | ||
|
||
Updated messaging. | ||
|
||
## v73 (2015-04-24) | ||
|
||
Disables cache restoration if node_modules already exists. | ||
|
||
## v72 (2015-04-23) | ||
|
||
Accepts `cacheDirectories` array in package.json to override default `node_modules` caching. | ||
|
||
- Documented at https://devcenter.heroku.com/articles/nodejs-support#cache-behavior |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.5.0 | ||
1.5.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
source "https://rubygems.org" | ||
|
||
ruby '2.2.2' | ||
ruby '2.2.3' | ||
|
||
gem 'machete', git: 'https://github.com/cf-buildpacks/machete', tag: 'v0.0.17' | ||
gem 'buildpack-packager', git: 'https://github.com/cloudfoundry-incubator/buildpack-packager', tag: 'v2.2.3' | ||
gem 'machete', git: 'https://github.com/cf-buildpacks/machete', tag: 'v0.0.20' | ||
gem 'buildpack-packager', git: 'https://github.com/cloudfoundry/buildpack-packager', tag: 'v2.2.5' | ||
gem 'rspec' | ||
gem 'rspec-instafail' | ||
gem 'pry' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
"express": "~4.0.0" | ||
}, | ||
"engines" : { | ||
"node" : ">0.12.0" | ||
"node" : "~>0.12.0" | ||
}, | ||
|
||
"repository" : | ||
|
Oops, something went wrong.