Skip to content

Bump bootsnap from 1.22.0 to 1.24.2#22

Open
dependabot[bot] wants to merge 29 commits into
mainfrom
dependabot/bundler/bootsnap-1.24.2
Open

Bump bootsnap from 1.22.0 to 1.24.2#22
dependabot[bot] wants to merge 29 commits into
mainfrom
dependabot/bundler/bootsnap-1.24.2

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 5, 2026

Copy link
Copy Markdown

Bumps bootsnap from 1.22.0 to 1.24.2.

Release notes

Sourced from bootsnap's releases.

v1.24.2

What's Changed

  • Workaround two Ruby bugs in RubyVM::InstructionSequence.compile_file, that were causing files to be loaded with the old Ruby parser instead of Prism, causing issues with some pattern matching syntax. Ref: https://bugs.ruby-lang.org/issues/22023

Full Changelog: rails/bootsnap@v1.24.1...v1.24.2

v1.24.1

What's Changed

  • Fix encoding of Ruby source files loaded when BOOTSNAP_READONLY is set. Files would incorectly be loaded in ASCII-8BIT causing literal strings outside the pure ASCII range to have ASCII-8BIT encoding instead of UTF-8. This bug was introduced in 1.24.0.

Full Changelog: rails/bootsnap@v1.24.0...v1.24.1

v1.24.0

What's Changed

  • Added a hook API to customize Ruby compilation.

Full Changelog: rails/bootsnap@v1.23.0...v1.24.0

v1.23.0

What's Changed

  • Require Ruby 2.7.
  • Fix support for absolute paths in BOOTSNAP_IGNORE_DIRECTORIES.

Full Changelog: rails/bootsnap@v1.22.0...v1.23.0

Changelog

Sourced from bootsnap's changelog.

1.24.2

  • Workaround two Ruby bugs in RubyVM::InstructionSequence.compile_file, that were causing files to be loaded with the old Ruby parser instead of Prism, causing issues with some pattern matching syntax. Ref: https://bugs.ruby-lang.org/issues/22023

1.24.1

  • Fix encoding of Ruby source files loaded when BOOTSNAP_READONLY is set. Files would incorectly be loaded in ASCII-8BIT causing literal strings outside the pure ASCII range to have ASCII-8BIT encoding instead of UTF-8. This bug was introduced in 1.24.0.

1.24.0

  • Added a hook API to customize Ruby compilation.

1.23.0

  • Require Ruby 2.7.
  • Fix support for absolute paths in BOOTSNAP_IGNORE_DIRECTORIES.
Commits
  • 21b7ad8 Release 1.24.2
  • fbcb561 Merge pull request #540 from byroot/use-proper-parser
  • 58d9134 Workaround Ruby [Bug #22023]
  • 51ccecc Release 1.24.1
  • e4479c0 Merge pull request #538 from byroot/debug-compiler-encoding
  • d6d8768 Fix ISeq.input_to_output to respect default external encoding
  • dc57c20 Release 1.24.0
  • 481b9b9 Avoid interning string on every call
  • 81e6db4 Merge pull request #535 from byroot/compilation-backends
  • 320ca02 Allow to substitute the Ruby compiler
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

sansari and others added 29 commits February 10, 2026 15:19
- Enable PWA routes (manifest + service worker)
- Fix manifest: add short_name, proper theme/background colors
- Activate minimal service worker for PWA qualification
- Add badge Stimulus controller: fetches dashboard JSON, calls
  navigator.setAppBadge() with overdue + due_soon count, polls
  every 5 min, updates on visibilitychange
- Add notification permission banner for iOS badge support
- Create CHANGELOG.md with project history
- Create AGENTS.md with notes for future Claude Code sessions

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Create plans/ directory with reconstructed plans for all 6 major
  phases of the project (001-initial-build through 006-documentation-workflow)
- Update CHANGELOG.md to reference plan files in each entry
- Update SPEC.md to reflect current app behavior (2-week window,
  log page, PWA support, Railway deployment details)
- Add Documentation Workflow section to CLAUDE.md establishing
  conventions: plans committed to repo, changelog references plans,
  spec stays in sync, CLAUDE.md documents workflow

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Server-side push via web-push gem with VAPID auth. BadgeNotificationJob
runs every 12 hours, sends push when task count changes. Service worker
updates badge even when app is closed. Job self-reports failures via push.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Entrypoint checked last 2 args but CMD has 4 args, so db:prepare
never ran on deploy. Now checks first 2 args ($1, $2) instead.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Priority was unused and not meaningful. Drop the column, remove validation,
helper, view references, and tests.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Add a green "Done" button to each task row on the dashboard and a
"Mark Done" button on the task detail page. Both use the existing
POST /tasks/:id/complete endpoint with a Turbo confirmation dialog.
The complete action now uses redirect_back so clicking Done from the
dashboard returns to the dashboard instead of navigating away.

https://claude.ai/code/session_01Ta8kLsYYDH1xYJaiQvBmN2
Co-authored-by: sansari <105090+sansari@users.noreply.github.com>
Co-authored-by: sansari <105090+sansari@users.noreply.github.com>
Co-authored-by: sansari <105090+sansari@users.noreply.github.com>
- Fix RuboCop Layout/SpaceInsideArrayLiteralBrackets errors by removing spaces inside array brackets
- Fix test failures by using dig() to safely access VAPID credentials that may not be set in test environment

Co-authored-by: sansari <105090+sansari@users.noreply.github.com>
- Add spaces inside array brackets per rubocop-rails-omakase style guide
- Changed [:foo] to [ :foo ] in 4 controller files

Co-authored-by: sansari <105090+sansari@users.noreply.github.com>
…ty line

- Disable Layout/SpaceInsideArrayLiteralBrackets in .rubocop.yml
- Remove extra empty line before class end in maintenance_task_test.rb

Co-authored-by: sansari <105090+sansari@users.noreply.github.com>
Co-authored-by: sansari <105090+sansari@users.noreply.github.com>
Co-authored-by: sansari <105090+sansari@users.noreply.github.com>
Bumps [bootsnap](https://github.com/rails/bootsnap) from 1.22.0 to 1.24.2.
- [Release notes](https://github.com/rails/bootsnap/releases)
- [Changelog](https://github.com/rails/bootsnap/blob/main/CHANGELOG.md)
- [Commits](rails/bootsnap@v1.22.0...v1.24.2)

---
updated-dependencies:
- dependency-name: bootsnap
  dependency-version: 1.24.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label May 5, 2026
@dependabot dependabot Bot added ruby Pull requests that update ruby code dependencies Pull requests that update a dependency file labels May 5, 2026
@sansari
sansari force-pushed the main branch 2 times, most recently from cb219e1 to 695229c Compare June 25, 2026 06:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file ruby Pull requests that update ruby code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants