Skip to content

Commit

Permalink
chore: Update sqlite3 gem
Browse files Browse the repository at this point in the history
  • Loading branch information
julianrubisch committed Oct 29, 2024
1 parent 4496311 commit 049f4d1
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ gem "rails", "~> 7.2"
gem "propshaft"

# Use sqlite3 as the database for Active Record
gem "sqlite3", "~> 1.4"
gem "sqlite3", ">= 2.1"

# Use the Puma web server [https://github.com/puma/puma]
gem "puma", ">= 5.0"
Expand Down Expand Up @@ -87,7 +87,7 @@ gem "meta-tags", "~> 2.21"
# Ensure all SQLite connections are properly configured
gem "activerecord-enhancedsqlite3-adapter", "~> 0.8.0"
# Add Solid Queue for background jobs
gem "solid_queue", "~> 0.9"
gem "solid_queue", "~> 1.0"
# Add a web UI for Solid Queue
gem "mission_control-jobs", "~> 0.3"
# Add Solid Cache as an Active Support cache store
Expand Down
18 changes: 9 additions & 9 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ GEM
activerecord (>= 7.0)
activesupport (>= 7.0)
railties (>= 7.0)
solid_queue (0.9.0)
solid_queue (1.0.0)
activejob (>= 7.1)
activerecord (>= 7.1)
concurrent-ruby (>= 1.3.1)
Expand All @@ -299,12 +299,12 @@ GEM
actionpack (>= 5.2)
activesupport (>= 5.2)
sprockets (>= 3.0.0)
sqlite3 (1.7.3-aarch64-linux)
sqlite3 (1.7.3-arm-linux)
sqlite3 (1.7.3-arm64-darwin)
sqlite3 (1.7.3-x86-linux)
sqlite3 (1.7.3-x86_64-darwin)
sqlite3 (1.7.3-x86_64-linux)
sqlite3 (2.1.1-aarch64-linux-gnu)
sqlite3 (2.1.1-arm-linux-gnu)
sqlite3 (2.1.1-arm64-darwin)
sqlite3 (2.1.1-x86-linux-gnu)
sqlite3 (2.1.1-x86_64-darwin)
sqlite3 (2.1.1-x86_64-linux-gnu)
stimulus-rails (1.3.3)
railties (>= 6.0.0)
stringio (3.1.1)
Expand Down Expand Up @@ -364,8 +364,8 @@ DEPENDENCIES
solid_cable (~> 3.0)
solid_cache (~> 1.0)
solid_errors (~> 0.5)
solid_queue (~> 0.9)
sqlite3 (~> 1.4)
solid_queue (~> 1.0)
sqlite3 (>= 2.1)
stimulus-rails
turbo-rails
tzinfo-data
Expand Down
9 changes: 9 additions & 0 deletions config/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,3 +98,12 @@ asset_path: /rails/public/assets
# useful for more complex deploy configurations.
#
# allow_empty_roles: false

# Aliases are triggered with "bin/kamal <alias>". You can overwrite arguments on invocation:
# "bin/kamal logs -r job" will tail logs from the first server in the job section.

aliases:
console: app exec --interactive --reuse "bin/rails console"
shell: app exec --interactive --reuse "bash"
logs: app logs -f
dbc: app exec --interactive --reuse "bin/rails dbconsole"

0 comments on commit 049f4d1

Please sign in to comment.