Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump solid_queue from 1.1.3 to 1.1.4 #17

Merged
merged 1 commit into from
Mar 25, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -161,7 +161,7 @@ GEM
marcel (1.0.4)
matrix (0.4.2)
mini_mime (1.1.5)
minitest (5.25.4)
minitest (5.25.5)
monetize (1.13.0)
money (~> 6.12)
money (6.19.0)
@@ -188,21 +188,21 @@ GEM
net-protocol
net-ssh (7.3.0)
nio4r (2.7.4)
nokogiri (1.18.2-aarch64-linux-gnu)
nokogiri (1.18.4-aarch64-linux-gnu)
racc (~> 1.4)
nokogiri (1.18.2-aarch64-linux-musl)
nokogiri (1.18.4-aarch64-linux-musl)
racc (~> 1.4)
nokogiri (1.18.2-arm-linux-gnu)
nokogiri (1.18.4-arm-linux-gnu)
racc (~> 1.4)
nokogiri (1.18.2-arm-linux-musl)
nokogiri (1.18.4-arm-linux-musl)
racc (~> 1.4)
nokogiri (1.18.2-arm64-darwin)
nokogiri (1.18.4-arm64-darwin)
racc (~> 1.4)
nokogiri (1.18.2-x86_64-darwin)
nokogiri (1.18.4-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.18.2-x86_64-linux-gnu)
nokogiri (1.18.4-x86_64-linux-gnu)
racc (~> 1.4)
nokogiri (1.18.2-x86_64-linux-musl)
nokogiri (1.18.4-x86_64-linux-musl)
racc (~> 1.4)
ostruct (0.6.1)
pagy (9.3.3)
@@ -221,7 +221,7 @@ GEM
nio4r (~> 2.0)
raabro (1.4.0)
racc (1.8.1)
rack (3.1.10)
rack (3.1.12)
rack-proxy (0.7.7)
rack
rack-session (2.1.0)
@@ -314,7 +314,7 @@ GEM
activejob (>= 7.2)
activerecord (>= 7.2)
railties (>= 7.2)
solid_queue (1.1.3)
solid_queue (1.1.4)
activejob (>= 7.1)
activerecord (>= 7.1)
concurrent-ruby (>= 1.3.1)
@@ -336,7 +336,7 @@ GEM
net-sftp (>= 2.1.2)
net-ssh (>= 2.8.0)
ostruct
stringio (3.1.2)
stringio (3.1.5)
thor (1.3.2)
thruster (0.1.11)
thruster (0.1.11-aarch64-linux)

Unchanged files with check annotations Beta

class SessionsController < ApplicationController
allow_unauthenticated_access only: %i[ new create ]
before_action :resume_session, only: [:new]

Check failure on line 3 in app/controllers/sessions_controller.rb

GitHub Actions / lint

Layout/SpaceInsideArrayLiteralBrackets: Use space inside array brackets.
rate_limit to: 10, within: 3.minutes, only: :create, with: -> { redirect_to new_session_url, alert: "Try again later." }
def new
user.update!(profile_params)
redirect_to profile_path, notice: "Profile updated successfully"
else
redirect_to profile_path, inertia: {errors: "There was an issue updating your profile. Try again."}

Check failure on line 14 in app/controllers/profiles_controller.rb

GitHub Actions / lint

Layout/SpaceInsideHashLiteralBraces: Space inside } missing.

Check failure on line 14 in app/controllers/profiles_controller.rb

GitHub Actions / lint

Layout/SpaceInsideHashLiteralBraces: Space inside { missing.
end
end
class PagesController < ApplicationController
allow_unauthenticated_access only: :home
before_action :resume_session, only: :home

Check failure on line 4 in app/controllers/pages_controller.rb

GitHub Actions / lint

Layout/TrailingWhitespace: Trailing whitespace detected.
def home
render inertia: "Home"
end
category = Current.user.categories.new(category_params)
if category.save
redirect_to categories_url, notice: 'Category created successfully'

Check failure on line 17 in app/controllers/categories_controller.rb

GitHub Actions / lint

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.
else
redirect_to categories_url, inertia: { errors: category.errors }
end
id: current_user.try(:id),
email: current_user.try(:email_address),
username: current_user.try(:username),
avatar_url: current_user.try(:avatar_url),

Check failure on line 19 in app/controllers/application_controller.rb

GitHub Actions / lint

Style/TrailingCommaInHashLiteral: Avoid comma after the last item of a hash.
}
end
end
gem "vite_rails", "~> 3.0"
gem "action_policy"
gem 'friendly_id', '~> 5.5.0'

Check failure on line 45 in Gemfile

GitHub Actions / lint

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.

Check failure on line 45 in Gemfile

GitHub Actions / lint

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.
gem "groupdate"
gem 'pagy'

Check failure on line 47 in Gemfile

GitHub Actions / lint

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.
gem 'money-rails'

Check failure on line 48 in Gemfile

GitHub Actions / lint

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.