Skip to content

Commit

Permalink
Update dependencies.
Browse files Browse the repository at this point in the history
* Updates Node version to 20.10.0.
* Updates brakeman, cacheflow, factory_bot_rails, oj, rack-mini-profiler,
  rubocop, and selenium-webdriver in Ruby.
* Updates @babel/core, @babel/preset-env, @hotwired/turbo-rails, esbuild,
  eslint, and jsdom in JavaScript.
  • Loading branch information
tristandunn committed Dec 9, 2023
1 parent 79212ba commit 34676e4
Show file tree
Hide file tree
Showing 5 changed files with 396 additions and 564 deletions.
14 changes: 7 additions & 7 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ gem "bootsnap", "1.17.0", require: false
gem "hotwire-rails", "0.1.3"
gem "indefinite_article", "0.2.5"
gem "jsbundling-rails", "1.2.1"
gem "oj", "3.16.1"
gem "oj", "3.16.2"
gem "pg", "1.5.4"
gem "puma", "6.4.0"
gem "rack-attack", "6.7.0"
Expand All @@ -24,19 +24,19 @@ gem "tailwindcss-rails", "2.0.32"
gem "turbo-rails", "1.5.0"

group :development, :test do
gem "cacheflow", "0.3.1"
gem "cacheflow", "0.3.2"
gem "dotenv-rails", "2.8.1"
gem "pg_query", "4.2.3"
gem "prosopite", "1.4.1"
gem "rspec-rails", "6.1.0"
end

group :development do
gem "brakeman", "6.0.1", require: false
gem "brakeman", "6.1.0", require: false
gem "erb_lint", "0.5.0", require: false
gem "listen", "3.8.0"
gem "rack-mini-profiler", "3.1.1"
gem "rubocop", "1.57.2", require: false
gem "rack-mini-profiler", "3.3.0"
gem "rubocop", "1.58.0", require: false
gem "rubocop-capybara", "2.19.0", require: false
gem "rubocop-factory_bot", "2.24.0", require: false
gem "rubocop-performance", "1.19.1", require: false
Expand All @@ -50,11 +50,11 @@ group :test do
gem "capybara", "3.39.2"
gem "climate_control", "1.2.0"
gem "database_cleaner", "2.0.2"
gem "factory_bot_rails", "6.2.0"
gem "factory_bot_rails", "6.4.2"
gem "faker", "3.2.2"
gem "mock_redis", "0.40.0"
gem "rails-controller-testing", "1.0.5"
gem "selenium-webdriver", "4.15.0"
gem "selenium-webdriver", "4.16.0"
gem "shoulda-matchers", "5.3.0"
gem "simplecov-console", "0.9.1", require: false
end
46 changes: 24 additions & 22 deletions Gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/services/command/parser.rb
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def module_classes
#
# @return [String]
def name
@name ||= (input.match(MATCHER)&.captures&.first || DEFAULT_NAME)
@name ||= input.match(MATCHER)&.captures&.first || DEFAULT_NAME
end

# Returns the command class for unknown commands.
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@
},
"dependencies": {
"@hotwired/stimulus": "3.2.2",
"@hotwired/turbo-rails": "7.3.0",
"esbuild": "0.19.7"
"@hotwired/turbo-rails": "8.0.0-beta.1",
"esbuild": "0.19.8"
},
"devDependencies": {
"@babel/core": "7.23.3",
"@babel/core": "7.23.5",
"@babel/eslint-parser": "7.23.3",
"@babel/preset-env": "7.23.3",
"@babel/preset-env": "7.23.5",
"@babel/register": "7.22.15",
"babel-plugin-dynamic-import-node": "2.3.3",
"babel-plugin-istanbul": "6.1.1",
"chai": "4.3.10",
"eslint": "8.54.0",
"jsdom": "22.1.0",
"eslint": "8.55.0",
"jsdom": "23.0.1",
"mocha": "10.2.0",
"nyc": "15.1.0",
"sinon": "17.0.1",
Expand All @@ -34,7 +34,7 @@
"stylelint-config-standard": "34.0.0"
},
"engines": {
"node": "20.9.0"
"node": "20.10.0"
},
"packageManager": "[email protected]"
}
Loading

0 comments on commit 34676e4

Please sign in to comment.