cloudfoundry / ruby-buildpack

Cloud Foundry buildpack for Ruby, Sinatra and Rails
http://docs.cloudfoundry.org/buildpacks/
Apache License 2.0
65 stars 160 forks source link

Ruby app choosing node 14.16.1 instead of 10.24.1 #252

Closed tmobaird closed 3 years ago

tmobaird commented 3 years ago

What version of Cloud Foundry and CF CLI are you using? (i.e. What is the output of running cf curl /v2/info && cf version? cf version 6.50.0+4f0c3a2ce.2020-03-03

What version of the buildpack you are using? v1.8.38

If you were attempting to accomplish a task, what was it you were attempting to do? Cf push rails app with webpacker

What did you expect to happen? The app to compile assets successfully (build webpacker succuessfully) and start the app.

What was the actual behavior? The app failed to compile assets and raised this error while doing so:

error The engine "node" is incompatible with this module. Expected version "^10.22.1". Got "14.16.1"
error Found incompatible module.

The app has a package.json with engine "node": "^10.22.1",, which should match node 10.24.1 that is included in the buildpack. My assumption is that this is not being honored by the buildpack and is just installing the latest 14.6.1 that is on the buildpack. I'm not sure if this is what is expected. Curious if there is anything like a .node-version file or anything that is honored instead.

Also wondering if this is even relevant given (https://github.com/cloudfoundry/ruby-buildpack/issues/239) coming at the end of the month.

Full Stacktrace:

2021-05-12T17:03:58.873-04:00 [STG/0] [OUT] -----> Ruby Buildpack version 1.8.38
2021-05-12T17:03:58.873-04:00 [STG/0] [OUT] -----> Supplying Ruby
2021-05-12T17:03:59.273-04:00 [STG/0] [OUT] -----> Installing bundler 2.2.17
2021-05-12T17:03:59.273-04:00 [STG/0] [OUT] Copy [/tmp/buildpacks/d8c4951afadd5cc67f9f1262b60e686d/dependencies/8a698842dbc3aaf16385a5f5d669e576/bundler_2.2.17_linux_noarch_any-stack_9ed25e04.tgz]
2021-05-12T17:03:59.558-04:00 [STG/0] [OUT] -----> Installing ruby 2.7.2
2021-05-12T17:03:59.558-04:00 [STG/0] [OUT] Copy [/tmp/buildpacks/d8c4951afadd5cc67f9f1262b60e686d/dependencies/7d5aa035a78edc64950d592bc4e198ce/ruby_2.7.2_linux_x64_cflinuxfs3_f675ceed.tgz]
2021-05-12T17:03:59.652-04:00 [STG/0] [OUT] **WARNING** A newer version of ruby is available in this buildpack. Please adjust your app to use version 2.7.3 instead of version 2.7.2 as soon as possible. Old versions of ruby are only provided to assist in migrating to newer versions.
2021-05-12T17:04:01.019-04:00 [STG/0] [OUT] -----> Update rubygems from 3.1.4 to 3.2.17
2021-05-12T17:04:01.019-04:00 [STG/0] [OUT] -----> Installing rubygems 3.2.17
2021-05-12T17:04:01.019-04:00 [STG/0] [OUT] Copy [/tmp/buildpacks/d8c4951afadd5cc67f9f1262b60e686d/dependencies/590e1794ef765f808e33f9d39e2d4dce/rubygems_3.2.17_linux_noarch_any-stack_8c2e6667.tgz]
2021-05-12T17:04:04.480-04:00 [STG/0] [OUT] -----> Installing node 14.16.1
2021-05-12T17:04:04.480-04:00 [STG/0] [OUT] Copy [/tmp/buildpacks/d8c4951afadd5cc67f9f1262b60e686d/dependencies/2b7864362b97b025af822d2977a49574/node_14.16.1_linux_x64_cflinuxfs3_e733b241.tgz]
2021-05-12T17:04:05.908-04:00 [STG/0] [OUT] -----> Installing yarn 1.22.10
2021-05-12T17:04:05.908-04:00 [STG/0] [OUT] Copy [/tmp/buildpacks/d8c4951afadd5cc67f9f1262b60e686d/dependencies/b7482b661544755fef03e2ceeb19057a/yarn_1.22.10_linux_noarch_any-stack_0057c1c9.tgz]
2021-05-12T17:04:07.139-04:00 [STG/0] [OUT] -----> Installing dependencies using bundler 2.2.17
2021-05-12T17:04:07.139-04:00 [STG/0] [OUT] Running: bundle install --jobs=4 --retry=4
2021-05-12T17:04:07.531-04:00 [STG/0] [OUT] Fetching gem metadata from <private-repo>
2021-05-12T17:04:16.385-04:00 [STG/0] [OUT] Fetching gem metadata from <private-repo>............
2021-05-12T17:04:16.439-04:00 [STG/0] [OUT] Fetching rake 12.3.3
2021-05-12T17:04:16.484-04:00 [STG/0] [OUT] Installing rake 12.3.3
2021-05-12T17:04:16.693-04:00 [STG/0] [OUT] Fetching zeitwerk 2.4.2
2021-05-12T17:04:16.693-04:00 [STG/0] [OUT] Fetching minitest 5.14.4
2021-05-12T17:04:16.693-04:00 [STG/0] [OUT] Fetching concurrent-ruby 1.1.8
2021-05-12T17:04:16.694-04:00 [STG/0] [OUT] Fetching thread_safe 0.3.6
2021-05-12T17:04:16.736-04:00 [STG/0] [OUT] Installing zeitwerk 2.4.2
2021-05-12T17:04:16.749-04:00 [STG/0] [OUT] Installing minitest 5.14.4
2021-05-12T17:04:16.763-04:00 [STG/0] [OUT] Installing thread_safe 0.3.6
2021-05-12T17:04:16.786-04:00 [STG/0] [OUT] Installing concurrent-ruby 1.1.8
2021-05-12T17:04:16.831-04:00 [STG/0] [OUT] Fetching builder 3.2.4
2021-05-12T17:04:16.868-04:00 [STG/0] [OUT] Installing builder 3.2.4
2021-05-12T17:04:16.892-04:00 [STG/0] [OUT] Fetching erubi 1.10.0
2021-05-12T17:04:16.928-04:00 [STG/0] [OUT] Installing erubi 1.10.0
2021-05-12T17:04:16.965-04:00 [STG/0] [OUT] Fetching mini_portile2 2.5.0
2021-05-12T17:04:16.992-04:00 [STG/0] [OUT] Fetching racc 1.5.2
2021-05-12T17:04:17.006-04:00 [STG/0] [OUT] Installing mini_portile2 2.5.0
2021-05-12T17:04:17.019-04:00 [STG/0] [OUT] Fetching crass 1.0.6
2021-05-12T17:04:17.052-04:00 [STG/0] [OUT] Installing crass 1.0.6
2021-05-12T17:04:17.094-04:00 [STG/0] [OUT] Installing racc 1.5.2 with native extensions
2021-05-12T17:04:17.128-04:00 [STG/0] [OUT] Fetching rack 2.2.3
2021-05-12T17:04:17.152-04:00 [STG/0] [OUT] Fetching nio4r 2.5.7
2021-05-12T17:04:17.180-04:00 [STG/0] [OUT] Installing rack 2.2.3
2021-05-12T17:04:17.192-04:00 [STG/0] [OUT] Installing nio4r 2.5.7 with native extensions
2021-05-12T17:04:17.483-04:00 [STG/0] [OUT] Fetching websocket-extensions 0.1.5
2021-05-12T17:04:17.511-04:00 [STG/0] [OUT] Fetching mini_mime 1.1.0
2021-05-12T17:04:17.516-04:00 [STG/0] [OUT] Installing websocket-extensions 0.1.5
2021-05-12T17:04:17.536-04:00 [STG/0] [OUT] Installing mini_mime 1.1.0
2021-05-12T17:04:17.560-04:00 [STG/0] [OUT] Fetching public_suffix 4.0.6
2021-05-12T17:04:17.597-04:00 [STG/0] [OUT] Installing public_suffix 4.0.6
2021-05-12T17:04:17.604-04:00 [STG/0] [OUT] Fetching ansi 1.5.0
2021-05-12T17:04:17.640-04:00 [STG/0] [OUT] Installing ansi 1.5.0
2021-05-12T17:04:17.707-04:00 [STG/0] [OUT] Fetching api-auth 2.4.1
2021-05-12T17:04:17.726-04:00 [STG/0] [OUT] Fetching execjs 2.7.0
2021-05-12T17:04:17.735-04:00 [STG/0] [OUT] Installing api-auth 2.4.1
2021-05-12T17:04:17.753-04:00 [STG/0] [OUT] Installing execjs 2.7.0
2021-05-12T17:04:17.803-04:00 [STG/0] [OUT] Using bundler 2.2.17
2021-05-12T17:04:17.809-04:00 [STG/0] [OUT] Fetching method_source 1.0.0
2021-05-12T17:04:17.826-04:00 [STG/0] [OUT] Installing method_source 1.0.0
2021-05-12T17:04:17.837-04:00 [STG/0] [OUT] Fetching thor 1.1.0
2021-05-12T17:04:17.857-04:00 [STG/0] [OUT] Fetching bindex 0.8.1
2021-05-12T17:04:17.861-04:00 [STG/0] [OUT] Installing thor 1.1.0
2021-05-12T17:04:17.891-04:00 [STG/0] [OUT] Installing bindex 0.8.1 with native extensions
2021-05-12T17:04:17.940-04:00 [STG/0] [OUT] Fetching msgpack 1.4.2
2021-05-12T17:04:17.963-04:00 [STG/0] [OUT] Installing msgpack 1.4.2 with native extensions
2021-05-12T17:04:18.209-04:00 [STG/0] [OUT] Fetching ffi 1.15.0
2021-05-12T17:04:18.306-04:00 [STG/0] [OUT] Installing ffi 1.15.0 with native extensions
2021-05-12T17:04:18.708-04:00 [STG/0] [OUT] Fetching cancancan 3.2.1
2021-05-12T17:04:18.889-04:00 [STG/0] [OUT] Installing cancancan 3.2.1
2021-05-12T17:04:18.939-04:00 [STG/0] [OUT] Fetching regexp_parser 2.1.1
2021-05-12T17:04:19.006-04:00 [STG/0] [OUT] Installing regexp_parser 2.1.1
2021-05-12T17:04:19.124-04:00 [STG/0] [OUT] Fetching cf-app-utils 0.6
2021-05-12T17:04:19.216-04:00 [STG/0] [OUT] Installing cf-app-utils 0.6
2021-05-12T17:04:19.232-04:00 [STG/0] [OUT] Fetching colorize 0.8.1
2021-05-12T17:04:19.265-04:00 [STG/0] [OUT] Installing colorize 0.8.1
2021-05-12T17:04:19.285-04:00 [STG/0] [OUT] Fetching corelib_ruby 1.2.0
2021-05-12T17:04:19.324-04:00 [STG/0] [OUT] Installing corelib_ruby 1.2.0
2021-05-12T17:04:19.371-04:00 [STG/0] [OUT] Fetching cri 2.15.11
2021-05-12T17:04:19.404-04:00 [STG/0] [OUT] Installing cri 2.15.11
2021-05-12T17:04:19.445-04:00 [STG/0] [OUT] Fetching json 2.5.1
2021-05-12T17:04:19.479-04:00 [STG/0] [OUT] Installing json 2.5.1 with native extensions
2021-05-12T17:04:20.196-04:00 [STG/0] [OUT] Fetching http-accept 1.7.0
2021-05-12T17:04:20.232-04:00 [STG/0] [OUT] Installing http-accept 1.7.0
2021-05-12T17:04:20.259-04:00 [STG/0] [OUT] Fetching unf_ext 0.0.7.7
2021-05-12T17:04:20.312-04:00 [STG/0] [OUT] Installing unf_ext 0.0.7.7 with native extensions
2021-05-12T17:04:22.081-04:00 [STG/0] [OUT] Fetching mime-types-data 3.2021.0225
2021-05-12T17:04:22.121-04:00 [STG/0] [OUT] Installing mime-types-data 3.2021.0225
2021-05-12T17:04:22.175-04:00 [STG/0] [OUT] Fetching netrc 0.11.0
2021-05-12T17:04:22.205-04:00 [STG/0] [OUT] Installing netrc 0.11.0
2021-05-12T17:04:22.236-04:00 [STG/0] [OUT] Fetching hashie 4.1.0
2021-05-12T17:04:22.274-04:00 [STG/0] [OUT] Installing hashie 4.1.0
2021-05-12T17:04:22.326-04:00 [STG/0] [OUT] Fetching systemu 2.6.5
2021-05-12T17:04:22.358-04:00 [STG/0] [OUT] Installing systemu 2.6.5
2021-05-12T17:04:22.377-04:00 [STG/0] [OUT] Fetching ruby-progressbar 1.11.0
2021-05-12T17:04:22.408-04:00 [STG/0] [OUT] Installing ruby-progressbar 1.11.0
2021-05-12T17:04:22.436-04:00 [STG/0] [OUT] Fetching rspec-support 3.10.2
2021-05-12T17:04:22.480-04:00 [STG/0] [OUT] Installing rspec-support 3.10.2
2021-05-12T17:04:22.530-04:00 [STG/0] [OUT] Fetching os 1.1.1
2021-05-12T17:04:22.547-04:00 [STG/0] [OUT] Installing os 1.1.1
2021-05-12T17:04:22.573-04:00 [STG/0] [OUT] Fetching tilt 2.0.10
2021-05-12T17:04:22.601-04:00 [STG/0] [OUT] Installing tilt 2.0.10
2021-05-12T17:04:22.654-04:00 [STG/0] [OUT] Fetching multi_xml 0.6.0
2021-05-12T17:04:22.677-04:00 [STG/0] [OUT] Installing multi_xml 0.6.0
2021-05-12T17:04:22.703-04:00 [STG/0] [OUT] Fetching newrelic_rpm 6.15.0
2021-05-12T17:04:22.726-04:00 [STG/0] [OUT] Fetching pg 1.2.3
2021-05-12T17:04:22.755-04:00 [STG/0] [OUT] Installing newrelic_rpm 6.15.0
2021-05-12T17:04:22.770-04:00 [STG/0] [OUT] Installing pg 1.2.3 with native extensions
2021-05-12T17:04:23.096-04:00 [STG/0] [OUT] Fetching rubyzip 2.3.0
2021-05-12T17:04:23.119-04:00 [STG/0] [OUT] Installing rubyzip 2.3.0
2021-05-12T17:04:23.172-04:00 [STG/0] [OUT] Fetching semantic_range 3.0.0
2021-05-12T17:04:23.188-04:00 [STG/0] [OUT] Installing semantic_range 3.0.0
2021-05-12T17:04:23.210-04:00 [STG/0] [OUT] Fetching will_paginate 3.1.8
2021-05-12T17:04:23.248-04:00 [STG/0] [OUT] Installing will_paginate 3.1.8
2021-05-12T17:04:23.302-04:00 [STG/0] [OUT] Fetching tzinfo 1.2.9
2021-05-12T17:04:23.348-04:00 [STG/0] [OUT] Installing tzinfo 1.2.9
2021-05-12T17:04:23.483-04:00 [STG/0] [OUT] Fetching i18n 1.6.0
2021-05-12T17:04:23.517-04:00 [STG/0] [OUT] Installing i18n 1.6.0
2021-05-12T17:04:23.586-04:00 [STG/0] [OUT] Fetching rack-test 1.1.0
2021-05-12T17:04:23.613-04:00 [STG/0] [OUT] Installing rack-test 1.1.0
2021-05-12T17:04:23.641-04:00 [STG/0] [OUT] Fetching sprockets 3.7.2
2021-05-12T17:04:23.678-04:00 [STG/0] [OUT] Installing sprockets 3.7.2
2021-05-12T17:04:23.753-04:00 [STG/0] [OUT] Fetching rack-cache 1.12.1
2021-05-12T17:04:23.772-04:00 [STG/0] [OUT] Installing rack-cache 1.12.1
2021-05-12T17:04:23.870-04:00 [STG/0] [OUT] Fetching rack-proxy 0.6.5
2021-05-12T17:04:23.889-04:00 [STG/0] [OUT] Installing rack-proxy 0.6.5
2021-05-12T17:04:23.920-04:00 [STG/0] [OUT] Fetching websocket-driver 0.7.3
2021-05-12T17:04:23.943-04:00 [STG/0] [OUT] Installing websocket-driver 0.7.3 with native extensions
2021-05-12T17:04:24.228-04:00 [STG/0] [OUT] Fetching mail 2.7.1
2021-05-12T17:04:24.275-04:00 [STG/0] [OUT] Installing mail 2.7.1
2021-05-12T17:04:24.681-04:00 [STG/0] [OUT] Fetching addressable 2.7.0
2021-05-12T17:04:24.705-04:00 [STG/0] [OUT] Installing addressable 2.7.0
2021-05-12T17:04:24.749-04:00 [STG/0] [OUT] Fetching autoprefixer-rails 10.2.4.0
2021-05-12T17:04:24.813-04:00 [STG/0] [OUT] Installing autoprefixer-rails 10.2.4.0
2021-05-12T17:04:24.999-04:00 [STG/0] [OUT] Fetching uglifier 4.2.0
2021-05-12T17:04:25.027-04:00 [STG/0] [OUT] Installing uglifier 4.2.0
2021-05-12T17:04:25.071-04:00 [STG/0] [OUT] Fetching nokogiri 1.11.3 (x86_64-linux)
2021-05-12T17:04:25.116-04:00 [STG/0] [OUT] Fetching didit_icam_endpoints 1.8.1
2021-05-12T17:04:25.136-04:00 [STG/0] [OUT] Installing didit_icam_endpoints 1.8.1
2021-05-12T17:04:25.207-04:00 [STG/0] [OUT] Fetching puma 5.2.2
2021-05-12T17:04:25.245-04:00 [STG/0] [OUT] Installing puma 5.2.2 with native extensions
2021-05-12T17:04:25.362-04:00 [STG/0] [OUT] Installing nokogiri 1.11.3 (x86_64-linux)
2021-05-12T17:04:25.609-04:00 [STG/0] [OUT] Fetching mime-types 3.3.1
2021-05-12T17:04:25.653-04:00 [STG/0] [OUT] Installing mime-types 3.3.1
2021-05-12T17:04:25.717-04:00 [STG/0] [OUT] Fetching omniauth 1.9.1
2021-05-12T17:04:25.751-04:00 [STG/0] [OUT] Installing omniauth 1.9.1
2021-05-12T17:04:25.817-04:00 [STG/0] [OUT] Fetching macaddr 1.7.2
2021-05-12T17:04:25.840-04:00 [STG/0] [OUT] Installing macaddr 1.7.2
2021-05-12T17:04:25.867-04:00 [STG/0] [OUT] Fetching minitest-reporters 1.4.3
2021-05-12T17:04:25.872-04:00 [STG/0] [OUT] Fetching rspec-core 3.10.1
2021-05-12T17:04:25.901-04:00 [STG/0] [OUT] Installing minitest-reporters 1.4.3
2021-05-12T17:04:25.918-04:00 [STG/0] [OUT] Installing rspec-core 3.10.1
2021-05-12T17:04:26.011-04:00 [STG/0] [OUT] Fetching unf 0.1.4
2021-05-12T17:04:26.040-04:00 [STG/0] [OUT] Installing unf 0.1.4
2021-05-12T17:04:26.093-04:00 [STG/0] [OUT] Fetching activesupport 6.0.3.5
2021-05-12T17:04:26.109-04:00 [STG/0] [OUT] Fetching launchy 2.5.0
2021-05-12T17:04:26.134-04:00 [STG/0] [OUT] Installing launchy 2.5.0
2021-05-12T17:04:26.148-04:00 [STG/0] [OUT] Installing activesupport 6.0.3.5
2021-05-12T17:04:26.212-04:00 [STG/0] [OUT] Fetching bootsnap 1.4.8
2021-05-12T17:04:26.233-04:00 [STG/0] [OUT] Installing bootsnap 1.4.8 with native extensions
2021-05-12T17:04:26.505-04:00 [STG/0] [OUT] Fetching sassc 2.4.0
2021-05-12T17:04:26.551-04:00 [STG/0] [OUT] Installing sassc 2.4.0 with native extensions
2021-05-12T17:04:26.769-04:00 [STG/0] [OUT] Fetching httparty 0.17.3
2021-05-12T17:04:26.793-04:00 [STG/0] [OUT] Installing httparty 0.17.3
2021-05-12T17:04:26.883-04:00 [STG/0] [OUT] Fetching didit_omniauth-saml 0.1.0
2021-05-12T17:04:26.897-04:00 [STG/0] [OUT] Installing didit_omniauth-saml 0.1.0
2021-05-12T17:04:26.911-04:00 [STG/0] [OUT] Fetching loofah 2.9.1
2021-05-12T17:04:26.929-04:00 [STG/0] [OUT] Installing loofah 2.9.1
2021-05-12T17:04:26.956-04:00 [STG/0] [OUT] Fetching mimemagic 0.3.10
2021-05-12T17:04:26.972-04:00 [STG/0] [OUT] Installing mimemagic 0.3.10 with native extensions
2021-05-12T17:04:27.170-04:00 [STG/0] [OUT] Fetching xpath 3.2.0
2021-05-12T17:04:27.188-04:00 [STG/0] [OUT] Installing xpath 3.2.0
2021-05-12T17:04:27.263-04:00 [STG/0] [OUT] Fetching sablon 0.3.2
2021-05-12T17:04:27.403-04:00 [STG/0] [OUT] Installing sablon 0.3.2
2021-05-12T17:04:27.703-04:00 [STG/0] [OUT] Fetching uuid 2.3.9
2021-05-12T17:04:27.725-04:00 [STG/0] [OUT] Installing uuid 2.3.9
2021-05-12T17:04:27.742-04:00 [STG/0] [OUT] Fetching domain_name 0.5.20190701
2021-05-12T17:04:27.780-04:00 [STG/0] [OUT] Installing domain_name 0.5.20190701
2021-05-12T17:04:27.813-04:00 [STG/0] [OUT] Fetching rspec_junit_formatter 0.4.1
2021-05-12T17:04:27.838-04:00 [STG/0] [OUT] Installing rspec_junit_formatter 0.4.1
2021-05-12T17:04:27.859-04:00 [STG/0] [OUT] Fetching rails-dom-testing 2.0.3
2021-05-12T17:04:27.883-04:00 [STG/0] [OUT] Installing rails-dom-testing 2.0.3
2021-05-12T17:04:27.908-04:00 [STG/0] [OUT] Fetching globalid 0.4.2
2021-05-12T17:04:27.930-04:00 [STG/0] [OUT] Installing globalid 0.4.2
2021-05-12T17:04:27.952-04:00 [STG/0] [OUT] Fetching activemodel 6.0.3.5
2021-05-12T17:04:27.979-04:00 [STG/0] [OUT] Installing activemodel 6.0.3.5
2021-05-12T17:04:28.056-04:00 [STG/0] [OUT] Fetching rspec_starter 1.8.1
2021-05-12T17:04:28.076-04:00 [STG/0] [OUT] Installing rspec_starter 1.8.1
2021-05-12T17:04:28.132-04:00 [STG/0] [OUT] Fetching jbuilder 2.11.2
2021-05-12T17:04:28.151-04:00 [STG/0] [OUT] Installing jbuilder 2.11.2
2021-05-12T17:04:28.188-04:00 [STG/0] [OUT] Fetching rails-html-sanitizer 1.3.0
2021-05-12T17:04:28.208-04:00 [STG/0] [OUT] Installing rails-html-sanitizer 1.3.0
2021-05-12T17:04:28.227-04:00 [STG/0] [OUT] Fetching marcel 0.3.3
2021-05-12T17:04:28.242-04:00 [STG/0] [OUT] Installing marcel 0.3.3
2021-05-12T17:04:28.257-04:00 [STG/0] [OUT] Fetching capybara 3.35.3
2021-05-12T17:04:28.318-04:00 [STG/0] [OUT] Installing capybara 3.35.3
2021-05-12T17:04:28.358-04:00 [STG/0] [OUT] Fetching didit_ruby-saml 0.1.0
2021-05-12T17:04:28.382-04:00 [STG/0] [OUT] Installing didit_ruby-saml 0.1.0
2021-05-12T17:04:28.551-04:00 [STG/0] [OUT] Fetching http-cookie 1.0.3
2021-05-12T17:04:28.571-04:00 [STG/0] [OUT] Installing http-cookie 1.0.3
2021-05-12T17:04:28.623-04:00 [STG/0] [OUT] Fetching activejob 6.0.3.5
2021-05-12T17:04:28.642-04:00 [STG/0] [OUT] Installing activejob 6.0.3.5
2021-05-12T17:04:28.762-04:00 [STG/0] [OUT] Fetching activerecord 6.0.3.5
2021-05-12T17:04:28.820-04:00 [STG/0] [OUT] Installing activerecord 6.0.3.5
2021-05-12T17:04:28.921-04:00 [STG/0] [OUT] Fetching actionview 6.0.3.5
2021-05-12T17:04:28.953-04:00 [STG/0] [OUT] Installing actionview 6.0.3.5
2021-05-12T17:04:29.204-04:00 [STG/0] [OUT] Fetching rest-client 2.1.0
2021-05-12T17:04:29.234-04:00 [STG/0] [OUT] Installing rest-client 2.1.0
2021-05-12T17:04:29.355-04:00 [STG/0] [OUT] Fetching capybara-screenshot 1.0.25
2021-05-12T17:04:29.374-04:00 [STG/0] [OUT] Installing capybara-screenshot 1.0.25
2021-05-12T17:04:29.627-04:00 [STG/0] [OUT] Fetching actionpack 6.0.3.5
2021-05-12T17:04:29.631-04:00 [STG/0] [OUT] Fetching rest-client-components 1.5.0
2021-05-12T17:04:29.653-04:00 [STG/0] [OUT] Installing rest-client-components 1.5.0
2021-05-12T17:04:29.681-04:00 [STG/0] [OUT] Installing actionpack 6.0.3.5
2021-05-12T17:04:29.778-04:00 [STG/0] [OUT] Fetching junit_screenshot_glue 1.0.1
2021-05-12T17:04:29.808-04:00 [STG/0] [OUT] Installing junit_screenshot_glue 1.0.1
2021-05-12T17:04:29.963-04:00 [STG/0] [OUT] Fetching actioncable 6.0.3.5
2021-05-12T17:04:29.963-04:00 [STG/0] [OUT] Fetching activestorage 6.0.3.5
2021-05-12T17:04:29.995-04:00 [STG/0] [OUT] Installing activestorage 6.0.3.5
2021-05-12T17:04:29.997-04:00 [STG/0] [OUT] Installing actioncable 6.0.3.5
2021-05-12T17:04:30.146-04:00 [STG/0] [OUT] Fetching railties 6.0.3.5
2021-05-12T17:04:30.147-04:00 [STG/0] [OUT] Fetching actionmailer 6.0.3.5
2021-05-12T17:04:30.176-04:00 [STG/0] [OUT] Installing actionmailer 6.0.3.5
2021-05-12T17:04:30.224-04:00 [STG/0] [OUT] Installing railties 6.0.3.5
2021-05-12T17:04:30.231-04:00 [STG/0] [OUT] Fetching sprockets-rails 3.2.2
2021-05-12T17:04:30.258-04:00 [STG/0] [OUT] Installing sprockets-rails 3.2.2
2021-05-12T17:04:30.290-04:00 [STG/0] [OUT] Fetching actionmailbox 6.0.3.5
2021-05-12T17:04:30.320-04:00 [STG/0] [OUT] Installing actionmailbox 6.0.3.5
2021-05-12T17:04:30.436-04:00 [STG/0] [OUT] Fetching actiontext 6.0.3.5
2021-05-12T17:04:30.455-04:00 [STG/0] [OUT] Installing actiontext 6.0.3.5
2021-05-12T17:04:30.708-04:00 [STG/0] [OUT] Fetching rails 6.0.3.5
2021-05-12T17:04:30.709-04:00 [STG/0] [OUT] Fetching font-awesome-rails 4.7.0.7
2021-05-12T17:04:30.731-04:00 [STG/0] [OUT] Installing rails 6.0.3.5
2021-05-12T17:04:30.779-04:00 [STG/0] [OUT] Fetching didit_rails_paas_utils 2.0.0
2021-05-12T17:04:30.795-04:00 [STG/0] [OUT] Installing didit_rails_paas_utils 2.0.0
2021-05-12T17:04:30.806-04:00 [STG/0] [OUT] Installing font-awesome-rails 4.7.0.7
2021-05-12T17:04:30.834-04:00 [STG/0] [OUT] Fetching web-console 4.1.0
2021-05-12T17:04:30.853-04:00 [STG/0] [OUT] Installing web-console 4.1.0
2021-05-12T17:04:30.979-04:00 [STG/0] [OUT] Fetching webpacker 5.1.1
2021-05-12T17:04:30.980-04:00 [STG/0] [OUT] Fetching autorequire_rails 1.0.2
2021-05-12T17:04:30.998-04:00 [STG/0] [OUT] Installing autorequire_rails 1.0.2
2021-05-12T17:04:31.026-04:00 [STG/0] [OUT] Installing webpacker 5.1.1
2021-05-12T17:04:31.081-04:00 [STG/0] [OUT] Fetching didit_clients 2.1.0
2021-05-12T17:04:31.100-04:00 [STG/0] [OUT] Installing didit_clients 2.1.0
2021-05-12T17:04:31.160-04:00 [STG/0] [OUT] Fetching didit_jquery_rails 3.3.1
2021-05-12T17:04:31.204-04:00 [STG/0] [OUT] Installing didit_jquery_rails 3.3.1
2021-05-12T17:04:31.293-04:00 [STG/0] [OUT] Fetching didit_rake_tasks_rails 1.1.2
2021-05-12T17:04:31.313-04:00 [STG/0] [OUT] Installing didit_rake_tasks_rails 1.1.2
2021-05-12T17:06:35.111-04:00 [STG/0] [OUT] Fetching bootstrap-sass 3.4.1
2021-05-12T17:06:35.111-04:00 [STG/0] [OUT] Fetching sassc-rails 2.1.2
2021-05-12T17:06:35.138-04:00 [STG/0] [OUT] Installing sassc-rails 2.1.2
2021-05-12T17:06:35.162-04:00 [STG/0] [OUT] Installing bootstrap-sass 3.4.1
2021-05-12T17:06:35.341-04:00 [STG/0] [OUT] Fetching didit_rails_framework 6.0.3.0
2021-05-12T17:06:35.456-04:00 [STG/0] [OUT] Installing didit_rails_framework 6.0.3.0
2021-05-12T17:06:35.868-04:00 [STG/0] [OUT] Bundle complete! 35 Gemfile dependencies, 117 gems now installed.
2021-05-12T17:06:35.868-04:00 [STG/0] [OUT] Gems in the groups 'development' and 'test' were not installed.
2021-05-12T17:06:35.868-04:00 [STG/0] [OUT] Bundled gems are installed into `/tmp/contents738961428/deps/0/vendor_bundle`
2021-05-12T17:06:35.868-04:00 [STG/0] [OUT] Post-install message from i18n:
2021-05-12T17:06:35.868-04:00 [STG/0] [OUT]
2021-05-12T17:06:35.869-04:00 [STG/0] [OUT] HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
2021-05-12T17:06:35.869-04:00 [STG/0] [OUT] But that may break your application.
2021-05-12T17:06:35.869-04:00 [STG/0] [OUT]
2021-05-12T17:06:35.869-04:00 [STG/0] [OUT] Please check your Rails app for 'config.i18n.fallbacks = true'.
2021-05-12T17:06:35.869-04:00 [STG/0] [OUT] If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
2021-05-12T17:06:35.869-04:00 [STG/0] [OUT] 'config.i18n.fallbacks = [I18n.default_locale]'.
2021-05-12T17:06:35.869-04:00 [STG/0] [OUT] If not, fallbacks will be broken in your app by I18n 1.1.x.
2021-05-12T17:06:35.869-04:00 [STG/0] [OUT]
2021-05-12T17:06:35.869-04:00 [STG/0] [OUT] For more info see:
2021-05-12T17:06:35.870-04:00 [STG/0] [OUT] https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
2021-05-12T17:06:35.870-04:00 [STG/0] [OUT]
2021-05-12T17:06:35.870-04:00 [STG/0] [OUT] Post-install message from httparty:
2021-05-12T17:06:35.870-04:00 [STG/0] [OUT] When you HTTParty, you must party hard!
2021-05-12T17:06:36.293-04:00 [STG/0] [OUT] -----> Regenerating bundler binstubs...
2021-05-12T17:06:36.973-04:00 [STG/0] [OUT] **WARNING** Your Gemfile.lock was bundled with bundler 2.1.4, which is incompatible with the current bundler version (2.2.17).
2021-05-12T17:06:36.973-04:00 [STG/0] [OUT] **WARNING** Deleting "Bundled With" from the Gemfile.lock
2021-05-12T17:06:36.973-04:00 [STG/0] [OUT] Cleaning up the bundler cache.
2021-05-12T17:06:38.163-04:00 [STG/0] [OUT] -----> Creating runtime environment
2021-05-12T17:06:41.539-04:00 [STG/0] [OUT] -----> Saving vendor_bundle to cache
2021-05-12T17:06:42.427-04:00 [STG/0] [OUT] -----> Finalizing Ruby
2021-05-12T17:06:42.673-04:00 [STG/0] [OUT] -----> Copy binaries to app/bin directory
2021-05-12T17:06:44.058-04:00 [STG/0] [OUT] -----> Precompiling assets
2021-05-12T17:06:46.987-04:00 [STG/0] [OUT] yarn install v1.22.10
2021-05-12T17:06:47.094-04:00 [STG/0] [OUT] [1/5] Validating package.json...
2021-05-12T17:06:47.099-04:00 [STG/0] [ERR] error asylum-assessment-generator@: The engine "node" is incompatible with this module. Expected version "^10.22.1". Got "14.16.1"
2021-05-12T17:06:47.108-04:00 [STG/0] [ERR] error Found incompatible module.

Please confirm where necessary:

cf-gitbot commented 3 years ago

We have created an issue in Pivotal Tracker to manage this:

https://www.pivotaltracker.com/story/show/178138764

The labels on this github issue will be updated when the story is started.

shanks3012 commented 3 years ago

Upstream Node has deprecated the 10.x version line and thus the Ruby buildpack will be removing support for Node 10.x after May 27th, 2021. see issue #239

This is expected behavior at this time as we introduced the 14.x.x version line of Node.js into the Ruby buildpack to allow folks time to ensure apps can build using 14.x.x prior to removing the 10.x.x Node.js version line from the buildpack.

We follow the node LTS schedule found here for future reference on when to expect version lines to be removed: https://nodejs.org/en/about/releases/

Closing the issue for now, but feel free to re-open should you have further concerns!