Skip to content

Bump the bundler group across 1 directory with 8 updates#1

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/bundler/bundler-e604686bf3
Open

Bump the bundler group across 1 directory with 8 updates#1
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/bundler/bundler-e604686bf3

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot bot commented on behalf of github Jul 29, 2024

Bumps the bundler group with 5 updates in the / directory:

Package From To
rack 1.4.1 3.1.7
sinatra 1.3.2 4.0.0
sinatra-contrib 1.3.1 4.0.0
sinatra-jsonp 0.3.2 0.5.0
pdfkit 0.5.2 0.8.7.2

Updates rack from 1.4.1 to 3.1.7

Release notes

Sourced from rack's releases.

v3.0.9.1

What's Changed

Full Changelog: rack/rack@v3.0.9...v3.0.9.1

v3.0.9

What's Changed

  • Fix content-length calcuation in Rack:Response#write #2150

Full Changelog: rack/rack@v3.0.8...v3.0.9

v3.0.8

What's Changed

New Contributors

Full Changelog: rack/rack@v3.0.7...v3.0.8

v3.0.7

What's Changed

Full Changelog: rack/rack@v3.0.6.1...v3.0.7

v3.0.6.1

No release notes provided.

v3.0.4.1

Full Changelog: rack/rack@v3.0.4...v3.0.4.1

v3.0.4

Full Changelog: rack/rack@v3.0.3...v3.0.4

v3.0.3

What's Changed

Full Changelog: rack/rack@v3.0.2...v3.0.3

v3.0.2

Full Changelog: rack/rack@v3.0.1...v3.0.2

... (truncated)

Changelog

Sourced from rack's changelog.

[3.1.7] - 2024-07-11

Fixed

[3.1.6] - 2024-07-03

Fixed

  • Fix several edge cases in Rack::Request#parse_http_accept_header's implementation. (#2226, [@​ioquatix])

[3.1.5] - 2024-07-02

Security

[3.1.4] - 2024-06-22

Fixed

  • Fix Rack::Lint matching some paths incorrectly as authority form. (#2220, [@​ioquatix])

[3.1.3] - 2024-06-12

Fixed

[3.1.2] - 2024-06-11

  • Rack::Response will take in to consideration chunked encoding responses (#2204, [@​tenderlove])

[3.1.1] - 2024-06-11

  • Oops! I shouldn't have shipped that

[3.1.0] - 2024-06-11

⚠️ This release includes several breaking changes. Refer to the Removed section below for the list of deprecated methods that have been removed in this release.

Rack v3.1 is primarily a maintenance release that removes features deprecated in Rack v3.0. Alongside these removals, there are several improvements to the Rack SPEC, mainly focused on enhancing input and output handling. These changes aim to make Rack more efficient and align better with the requirements of server implementations and relevant HTTP specifications.

SPEC Changes

... (truncated)

Commits
  • 4bb2f72 Bump patch version.
  • 1c1e413 Ignore external tests directory.
  • b4a1036 Prepare for 3.1.7 release.
  • d0da91b Add more external tests.
  • f6f1510 Improve Rack::Response content-length header generation. (#2219)
  • fb339e0 Fix encoding setting for non-binary IO-like objects in MockRequest#env_for
  • e21872d Do not remove escaped opening/closing quotes for content-disposition filenames
  • 5c3d79f Synchronize changelog with HEAD.
  • bca33b4 Allow empty PATH_INFO. (#2214) (#2234)
  • 98aa947 Bump patch version.
  • Additional commits viewable in compare view

Updates sinatra from 1.3.2 to 4.0.0

Changelog

Sourced from sinatra's changelog.

4.0.0. / 2024-01-19

  • New: Add support for Rack 3 (#1857)

    • Note: you may want to read the [Rack 3 Upgrade Guide]
  • Require Ruby 2.7.8 as minimum Ruby version (#1993)

  • Breaking change: Drop support for Rack 2 (#1857)

    • Note: when using Sinatra to start the web server, you now need the rackup gem installed
  • Breaking change: Remove the IndifferentHash initializer (#1982)

  • Breaking change: Disable session_hijacking protection by default (#1984)

  • Breaking change: Remove Rack::Protection::EncryptedCookie (#1989)

    • Note: cookies are still encrypted (by [Rack::Session::Cookie])

#1857: sinatra/sinatra#1857 #1993: sinatra/sinatra#1993 #1982: sinatra/sinatra#1982 #1984: sinatra/sinatra#1984 #1989: sinatra/sinatra#1989 [Rack::Session::Cookie]: https://github.com/rack/rack-session [Rack 3 Upgrade Guide]: https://github.com/rack/rack/blob/main/UPGRADE-GUIDE.md

3.2.0 / 2023-12-29

  • New: Add #except method to Sinatra::IndifferentHash (#1940)

  • New: Use Exception#detailed_message to show backtrace (#1952)

  • New: Add Sinatra::HamlHelpers to sinatra-contrib (#1960)

  • Fix: Add base64 to rack-protection runtime dependencies (#1946)

  • Fix: Avoid open-ended dependencies for sinatra-contrib and rack-protection (#1949)

  • Fix: Helpful message when Sinatra::Runner times out (#1975)

  • Fix: Ruby 3.3 + Bundler 2.5 compatibility (#1975)

#1940: sinatra/sinatra#1940 #1946: sinatra/sinatra#1946 #1949: sinatra/sinatra#1949 #1952: sinatra/sinatra#1952 #1960: sinatra/sinatra#1960 #1975: sinatra/sinatra#1975

3.1.0 / 2023-08-07

... (truncated)

Commits
  • b626e2d 4.0.0 release (#1996)
  • e56f657 Require Ruby 2.7.8 as minimum Ruby version (#1993)
  • 9993829 CI: remove rack monkey patches
  • 09f1c2b CI: rdiscount 2.2.7.3 resolved the TruffleRuby issue
  • c43e097 CI: use the released version of childprocess
  • 739eaa0 CI: no need to set RUBY_ENGINE
  • d872057 CI: no need to set Encoding.default_external
  • 9c14764 Remove Rack::Protection::EncryptedCookie (#1989)
  • 667056c CI: allow ruby-head to fail
  • 393bb7c Avoid using deprecated Rack::Response#header
  • Additional commits viewable in compare view

Updates sinatra-contrib from 1.3.1 to 4.0.0

Changelog

Sourced from sinatra-contrib's changelog.

4.0.0. / 2024-01-19

  • New: Add support for Rack 3 (#1857)

    • Note: you may want to read the [Rack 3 Upgrade Guide]
  • Require Ruby 2.7.8 as minimum Ruby version (#1993)

  • Breaking change: Drop support for Rack 2 (#1857)

    • Note: when using Sinatra to start the web server, you now need the rackup gem installed
  • Breaking change: Remove the IndifferentHash initializer (#1982)

  • Breaking change: Disable session_hijacking protection by default (#1984)

  • Breaking change: Remove Rack::Protection::EncryptedCookie (#1989)

    • Note: cookies are still encrypted (by [Rack::Session::Cookie])

#1857: sinatra/sinatra#1857 #1993: sinatra/sinatra#1993 #1982: sinatra/sinatra#1982 #1984: sinatra/sinatra#1984 #1989: sinatra/sinatra#1989 [Rack::Session::Cookie]: https://github.com/rack/rack-session [Rack 3 Upgrade Guide]: https://github.com/rack/rack/blob/main/UPGRADE-GUIDE.md

3.2.0 / 2023-12-29

  • New: Add #except method to Sinatra::IndifferentHash (#1940)

  • New: Use Exception#detailed_message to show backtrace (#1952)

  • New: Add Sinatra::HamlHelpers to sinatra-contrib (#1960)

  • Fix: Add base64 to rack-protection runtime dependencies (#1946)

  • Fix: Avoid open-ended dependencies for sinatra-contrib and rack-protection (#1949)

  • Fix: Helpful message when Sinatra::Runner times out (#1975)

  • Fix: Ruby 3.3 + Bundler 2.5 compatibility (#1975)

#1940: sinatra/sinatra#1940 #1946: sinatra/sinatra#1946 #1949: sinatra/sinatra#1949 #1952: sinatra/sinatra#1952 #1960: sinatra/sinatra#1960 #1975: sinatra/sinatra#1975

3.1.0 / 2023-08-07

... (truncated)

Commits

Updates sinatra-jsonp from 0.3.2 to 0.5.0

Commits

Updates sinatra from 1.3.2 to 4.0.0

Changelog

Sourced from sinatra's changelog.

4.0.0. / 2024-01-19

  • New: Add support for Rack 3 (#1857)

    • Note: you may want to read the [Rack 3 Upgrade Guide]
  • Require Ruby 2.7.8 as minimum Ruby version (#1993)

  • Breaking change: Drop support for Rack 2 (#1857)

    • Note: when using Sinatra to start the web server, you now need the rackup gem installed
  • Breaking change: Remove the IndifferentHash initializer (#1982)

  • Breaking change: Disable session_hijacking protection by default (#1984)

  • Breaking change: Remove Rack::Protection::EncryptedCookie (#1989)

    • Note: cookies are still encrypted (by [Rack::Session::Cookie])

#1857: sinatra/sinatra#1857 #1993: sinatra/sinatra#1993 #1982: sinatra/sinatra#1982 #1984: sinatra/sinatra#1984 #1989: sinatra/sinatra#1989 [Rack::Session::Cookie]: https://github.com/rack/rack-session [Rack 3 Upgrade Guide]: https://github.com/rack/rack/blob/main/UPGRADE-GUIDE.md

3.2.0 / 2023-12-29

  • New: Add #except method to Sinatra::IndifferentHash (#1940)

  • New: Use Exception#detailed_message to show backtrace (#1952)

  • New: Add Sinatra::HamlHelpers to sinatra-contrib (#1960)

  • Fix: Add base64 to rack-protection runtime dependencies (#1946)

  • Fix: Avoid open-ended dependencies for sinatra-contrib and rack-protection (#1949)

  • Fix: Helpful message when Sinatra::Runner times out (#1975)

  • Fix: Ruby 3.3 + Bundler 2.5 compatibility (#1975)

#1940: sinatra/sinatra#1940 #1946: sinatra/sinatra#1946 #1949: sinatra/sinatra#1949 #1952: sinatra/sinatra#1952 #1960: sinatra/sinatra#1960 #1975: sinatra/sinatra#1975

3.1.0 / 2023-08-07

... (truncated)

Commits
  • b626e2d 4.0.0 release (#1996)
  • e56f657 Require Ruby 2.7.8 as minimum Ruby version (#1993)
  • 9993829 CI: remove rack monkey patches
  • 09f1c2b CI: rdiscount 2.2.7.3 resolved the TruffleRuby issue
  • c43e097 CI: use the released version of childprocess
  • 739eaa0 CI: no need to set RUBY_ENGINE
  • d872057 CI: no need to set Encoding.default_external
  • 9c14764 Remove Rack::Protection::EncryptedCookie (#1989)
  • 667056c CI: allow ruby-head to fail
  • 393bb7c Avoid using deprecated Rack::Response#header
  • Additional commits viewable in compare view

Updates pdfkit from 0.5.2 to 0.8.7.2

Release notes

Sourced from pdfkit's releases.

v0.8.7.2

What's Changed

New Contributors

Full Changelog: pdfkit/pdfkit@v0.8.7.1...v0.8.7.2

v0.8.7.1

What's Changed

New Contributors

Full Changelog: pdfkit/pdfkit@v0.8.7...v0.8.7.1

v0.8.7

  • Lowercase the header names for rack 3 changes (#511)
  • Partially escaped URLs should be escaped (#509)

v0.8.6

#499 - Update for new ruby and rails versions

v0.8.4.3.2

  • Bump to 0.8.4.3.2
  • Reduce scope of middleware exception handling (#476)

v0.8.4.3.1

  • Bump to 0.8.4.3
  • Don't override request level Content-Disposition header if it exists (#466)
  • Update rake (#471)
  • Add missing require statements for tempfile (#467)
  • Only grab last line of bundle exec which output (#464)
  • Return 500 status when an exception is caught in middleware (#469)
  • Update Travis CI URL for wkhtmltopf (#473)

v0.8.4.2

Improve Path Detection Feedback - pdfkit/pdfkit#460 Fix typo - pdfkit/pdfkit#444 Update Readme - pdfkit/pdfkit#444

Changelog

Sourced from pdfkit's changelog.

2023-02-27

2022-10-18

  • Bump to 0.8.7.2
  • Call IO.popen with an Array of command arguments (#519)

2022-10-17

  • Bump to 0.8.7.1
  • Support non-lower-case Content-Type header provided by app (#516)

2022-10-02

  • Bump to 0.8.7
  • Lowercase the header names for rack 3 changes (#511)
  • Partially escaped URLs should be escaped (#509)

2022-04-11

  • Bump to 0.8.6
  • Update ruby and rails versions

2021-01-23

  • Bump to 0.8.5
  • Make PDFKit::VERSION public (#484)
  • Fix to render stylesheets as html safe string on Rails 6 (#483)
    • Adds support for Rails 6

2020-08-16

  • Bump to 0.8.4.3.2
  • Reduce scope of middleware exception handling (#476)

2020-07-05

  • Bump to 0.8.4.3.1
  • Don't override request level Content-Disposition header if it exists (#466)
  • Update rake (#471)
  • Add missing require statements for tempfile (#467)
  • Only grab last line of bundle exec which output (#464)
  • Return 500 status when an exception is caught in middleware (#469)
  • Update Travis CI URL for wkhtmltopf (#473)

2020-04-01

... (truncated)

Commits

Updates httparty from 0.8.1 to 0.22.0

Release notes

Sourced from httparty's releases.

v0.22.0

What's Changed

New Contributors

Full Changelog: jnunemaker/httparty@v0.21.0...v0.22.0

v0.17.3

No release notes provided.

v0.17.2

No release notes provided.

Changelog

Sourced from httparty's changelog.

Changelog

All notable changes since 0.22 are documented in GitHub Releases.

0.21.0

0.20.0

Breaking changes

  • Require Ruby >= 2.3.0

Fixes

0.19.1

0.19.0

0.18.1

0.18.0

0.17.3

0.17.2 is broken jnunemaker/httparty#681

0.17.2

... (truncated)

Commits

Updates multi_xml from 0.4.2 to 0.7.1

Changelog

Sourced from multi_xml's changelog.

0.7.0

0.6.0

0.5.5

0.5.4

0.5.3

0.5.2

0.5.1

0.5.0

0.4.4

0.4.3

Commits
  • a3ed024 Bump version to 0.7.1
  • 7d18711 Relax required Ruby version constraint to allow installation on Debian stable
  • f0480bf Bump version to 0.7.0
  • ad4cdad Add bin for development
  • eec72c5 Drop support for Ruby 3.0
  • 1a7e9af Update runtime dependency in gemspec
  • f984436 Update development dependencies in Gemfile
  • 4b87ab2 Clean up code
  • 90df8a7 Update copyright year
  • 3f2dad1 Update name
  • Additional commits viewable in compare view

Updates rack-protection from 1.2.0 to 4.0.0

Changelog

Sourced from rack-protection's changelog.

4.0.0. / 2024-01-19

  • New: Add support for Rack 3 (#1857)

    • Note: you may want to read the [Rack 3 Upgrade Guide]
  • Require Ruby 2.7.8 as minimum Ruby version (#1993)

  • Breaking change: Drop support for Rack 2 (#1857)

    • Note: when using Sinatra to start the web server, you now need the rackup gem installed
  • Breaking change: Remove the IndifferentHash initializer (#1982)

  • Breaking change: Disable session_hijacking protection by default (#1984)

  • Breaking change: Remove Rack::Protection::EncryptedCookie (#1989)

    • Note: cookies are still encrypted (by [Rack::Session::Cookie])

#1857: sinatra/sinatra#1857 #1993: sinatra/sinatra#1993 #1982: sinatra/sinatra#1982 #1984: sinatra/sinatra#1984 #1989: sinatra/sinatra#1989 [Rack::Session::Cookie]: https://github.com/rack/rack-session [Rack 3 Upgrade Guide]: https://github.com/rack/rack/blob/main/UPGRADE-GUIDE.md

3.2.0 / 2023-12-29

  • New: Add #except method to Sinatra::IndifferentHash (#1940)

  • New: Use Exception#detailed_message to show backtrace (#1952)

  • New: Add Sinatra::HamlHelpers to sinatra-contrib (#1960)

  • Fix: Add base64 to rack-protection runtime dependencies (#1946)

  • Fix: Avoid open-ended dependencies for sinatra-contrib and rack-protection (#1949)

  • Fix: Helpful message when Sinatra::Runner times out (#1975)

  • Fix: Ruby 3.3 + Bundler 2.5 compatibility (#1975)

#1940: sinatra/sinatra#1940 #1946: sinatra/sinatra#1946 #1949: sinatra/sinatra#1949 #1952: sinatra/sinatra#1952 #1960: sinatra/sinatra#1960 #1975: sinatra/sinatra#1975

3.1.0 / 2023-08-07

... (truncated)

Commits

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps the bundler group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [rack](https://github.com/rack/rack) | `1.4.1` | `3.1.7` |
| [sinatra](https://github.com/sinatra/sinatra) | `1.3.2` | `4.0.0` |
| [sinatra-contrib](https://github.com/sinatra/sinatra) | `1.3.1` | `4.0.0` |
| [sinatra-jsonp](https://github.com/shtirlic/sinatra-jsonp) | `0.3.2` | `0.5.0` |
| [pdfkit](https://github.com/pdfkit/pdfkit) | `0.5.2` | `0.8.7.2` |



Updates `rack` from 1.4.1 to 3.1.7
- [Release notes](https://github.com/rack/rack/releases)
- [Changelog](https://github.com/rack/rack/blob/main/CHANGELOG.md)
- [Commits](rack/rack@1.4.1...v3.1.7)

Updates `sinatra` from 1.3.2 to 4.0.0
- [Changelog](https://github.com/sinatra/sinatra/blob/main/CHANGELOG.md)
- [Commits](sinatra/sinatra@1.3.2...v4.0.0)

Updates `sinatra-contrib` from 1.3.1 to 4.0.0
- [Changelog](https://github.com/sinatra/sinatra/blob/main/CHANGELOG.md)
- [Commits](sinatra/sinatra@1.3.1...v4.0.0)

Updates `sinatra-jsonp` from 0.3.2 to 0.5.0
- [Commits](https://github.com/shtirlic/sinatra-jsonp/commits/v0.5.0)

Updates `sinatra` from 1.3.2 to 4.0.0
- [Changelog](https://github.com/sinatra/sinatra/blob/main/CHANGELOG.md)
- [Commits](sinatra/sinatra@1.3.2...v4.0.0)

Updates `pdfkit` from 0.5.2 to 0.8.7.2
- [Release notes](https://github.com/pdfkit/pdfkit/releases)
- [Changelog](https://github.com/pdfkit/pdfkit/blob/master/CHANGELOG.md)
- [Commits](pdfkit/pdfkit@v0.5.2...v0.8.7.2)

Updates `httparty` from 0.8.1 to 0.22.0
- [Release notes](https://github.com/jnunemaker/httparty/releases)
- [Changelog](https://github.com/jnunemaker/httparty/blob/main/Changelog.md)
- [Commits](jnunemaker/httparty@v0.8.1...v0.22.0)

Updates `multi_xml` from 0.4.2 to 0.7.1
- [Changelog](https://github.com/sferik/multi_xml/blob/master/CHANGELOG.md)
- [Commits](sferik/multi_xml@v0.4.2...v0.7.1)

Updates `rack-protection` from 1.2.0 to 4.0.0
- [Changelog](https://github.com/sinatra/sinatra/blob/main/CHANGELOG.md)
- [Commits](sinatra/sinatra@1.2.0...v4.0.0)

---
updated-dependencies:
- dependency-name: rack
  dependency-type: direct:production
  dependency-group: bundler
- dependency-name: sinatra
  dependency-type: direct:production
  dependency-group: bundler
- dependency-name: sinatra-contrib
  dependency-type: direct:production
  dependency-group: bundler
- dependency-name: sinatra-jsonp
  dependency-type: direct:production
  dependency-group: bundler
- dependency-name: sinatra
  dependency-type: direct:production
  dependency-group: bundler
- dependency-name: pdfkit
  dependency-type: direct:development
  dependency-group: bundler
- dependency-name: httparty
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: multi_xml
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: rack-protection
  dependency-type: indirect
  dependency-group: bundler
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jul 29, 2024
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants