Skip to content

Commit

Permalink
Update Dependencies for December 2021 (#668)
Browse files Browse the repository at this point in the history
* Gemfile.lock: Update nokogiri (1.11.7 to 1.12.5)

  Also update some of nokogiri's dependencies,
  specifically `mini_portile2` and `racc`.

* Gemfile.lock: Update puma (5.3.2 to 5.5.2)

  Also update puma's dependency nio4r (2.5.7 to 2.5.8).

* Gemfile[.lock]: Update better_errors 2.4 to 2.9.1

  Also update better_errors' dependency coderay (1.1.2 to 1.1.3).

* yarn.lock: Update tar (6.1.7 to 6.1.11)

* deps: Resolve ansi-regex to "^5.0.1"

* deps: Resolve ansi-html to ansi-html-community

  Pin to an exact version, 0.0.8, which I have personally verified
  only contains the desired change, plus package.json metadata changes
  and updates to README.md.

  (Pinning means we don't have to trust the independent GitHub user
  who published the fork, just the content of the patch.)

  One can do the following commands to download and inspect the contents
  of the packages themselves, as hosted on the npm package registry...
  - `npm pack [email protected]`
  - `npm pack [email protected]`
  Then extract the tarballs and compare the content.

  See the following for details of the fork and why it was made:
  - github.com/Tjatse[slash]ansi-html/issues/19
  - github.com/Tjatse[slash]ansi-html/issues/19#issuecomment-913119841

* deps: Resolve nth-check to 2.0.1

* ruby: Update Ruby version from 2.7.4 to 2.7.5

* deps: Update swagger-ui from 3.25.0 to 4.1.3
  • Loading branch information
DeeDeeG authored Jan 19, 2022
1 parent 47cd9e5 commit ba3577e
Show file tree
Hide file tree
Showing 7 changed files with 566 additions and 473 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.4
2.7.5
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:2.7.4-slim
FROM ruby:2.7.5-slim

# Add basic binaries
RUN apt-get update \
Expand Down
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source 'https://rubygems.org'
ruby '2.7.4'
ruby '2.7.5'

gem 'rails', '5.2.6'

Expand Down Expand Up @@ -35,7 +35,7 @@ gem 'uglifier', '>= 1.3.0'
gem 'webpacker', '~> 5'

group :development, :test do
gem 'better_errors', '~> 2.4.0'
gem 'better_errors', '~> 2.9.1'
gem 'binding_of_caller'
gem 'dotenv-rails', '~> 2.2.1'
gem 'factory_bot_rails', '~> 4.8.2'
Expand Down
20 changes: 10 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ GEM
autoprefixer-rails (9.7.5)
execjs
bcrypt (3.1.13)
better_errors (2.4.0)
better_errors (2.9.1)
coderay (>= 1.0.0)
erubi (>= 1.0.0)
rack (>= 0.9.0)
Expand All @@ -85,7 +85,7 @@ GEM
regexp_parser (~> 1.5)
xpath (~> 3.2)
cliver (0.3.2)
coderay (1.1.2)
coderay (1.1.3)
coffee-rails (4.2.2)
coffee-script (>= 2.2.0)
railties (>= 4.0.0)
Expand Down Expand Up @@ -222,16 +222,16 @@ GEM
marcel (1.0.1)
method_source (1.0.0)
mini_mime (1.1.0)
mini_portile2 (2.5.3)
mini_portile2 (2.6.1)
minitest (5.14.4)
msgpack (1.3.3)
mustermann (1.1.1)
ruby2_keywords (~> 0.0.1)
mustermann-grape (1.0.1)
mustermann (>= 1.0.0)
nio4r (2.5.7)
nokogiri (1.11.7)
mini_portile2 (~> 2.5.0)
nio4r (2.5.8)
nokogiri (1.12.5)
mini_portile2 (~> 2.6.1)
racc (~> 1.4)
orm_adapter (0.5.0)
parallel (1.19.2)
Expand All @@ -251,9 +251,9 @@ GEM
coderay (~> 1.1)
method_source (~> 1.0)
public_suffix (4.0.6)
puma (5.3.2)
puma (5.5.2)
nio4r (~> 2.0)
racc (1.5.2)
racc (1.6.0)
rack (2.2.3)
rack-accept (0.4.5)
rack (>= 0.4)
Expand Down Expand Up @@ -407,7 +407,7 @@ PLATFORMS

DEPENDENCIES
activeadmin (~> 2.1)
better_errors (~> 2.4.0)
better_errors (~> 2.9.1)
binding_of_caller
bootsnap
bootstrap-sass (>= 3.4.1)
Expand Down Expand Up @@ -457,7 +457,7 @@ DEPENDENCIES
webpacker (~> 5)

RUBY VERSION
ruby 2.7.4p191
ruby 2.7.5p203

BUNDLED WITH
2.1.4
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Please also read our [Code of Conduct](https://github.com/RefugeRestrooms/refuge

## Tech

* Ruby Version - ruby-2.7.4
* Ruby Version - ruby-2.7.5
* Ruby on Rails
* RSpec
* Javascript
Expand Down
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"jquery-ujs": "^1.2.2",
"popper.js": "^1.14.3",
"rails-erb-loader": "^5.5.2",
"swagger-ui": "^3.19.2",
"swagger-ui": "^4.1.3",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"yarn": ">=1.0.2"
Expand All @@ -18,7 +18,11 @@
"resolutions": {
"node-fetch": "^2.6.1",
"**/watchpack-chokidar2/chokidar": "^3.4.1",
"webpack-dev-server/chokidar": "^3.4.1"
"webpack-dev-server/chokidar": "^3.4.1",
"webpack-dev-server/**/ansi-html": "https://registry.yarnpkg.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz#69fbc4d6ccbe383f9736934ae34c3f8290f1bf41",
"webpack-dev-server/**/ansi-regex": "^5.0.1",
"@rails/webpacker/**/ansi-regex": "^5.0.1",
"@rails/webpacker/**/nth-check": "^2.0.1"
},
"engines": {
"yarn": ">=1.0.2"
Expand Down
Loading

0 comments on commit ba3577e

Please sign in to comment.