Skip to content

Commit 7f53478

Browse files
Bump puma from 5.6.5 to 5.6.7 in /examples/stacks/rails/blog (#1409)
Bumps [puma](https://github.com/puma/puma) from 5.6.5 to 5.6.7. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/puma/puma/releases">puma's releases</a>.</em></p> <blockquote> <h2>5.6.7</h2> <p>Security Address HTTP request smuggling vulnerabilities with zero-length Content Length header and trailer fields (<a href="https://github.com/puma/puma/security/advisories/GHSA-68xg-gqqm-vgj8">GHSA-68xg-gqqm-vgj8</a>)</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/puma/puma/blob/master/History.md">puma's changelog</a>.</em></p> <blockquote> <h2>5.6.7 / 2023-08-18</h2> <ul> <li>Security <ul> <li>Address HTTP request smuggling vulnerabilities with zero-length Content Length header and trailer fields (<a href="https://github.com/puma/puma/security/advisories/GHSA-68xg-gqqm-vgj8">GHSA-68xg-gqqm-vgj8</a>)</li> </ul> </li> </ul> <h2>5.6.6 / 2023-06-21</h2> <ul> <li>Bugfix <ul> <li>Prevent loading with rack 3 (<a href="https://redirect.github.com/puma/puma/issues/3166">#3166</a>)</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/puma/puma/commit/78393bf2c58bf293860fa9cdc73938ac58c18afb"><code>78393bf</code></a> 5.6.7</li> <li><a href="https://github.com/puma/puma/commit/7405a219801dcebc0ad6e0aa108d4319ca23f662"><code>7405a21</code></a> Merge pull request from GHSA-68xg-gqqm-vgj8</li> <li><a href="https://github.com/puma/puma/commit/d33424b560eab163d8869d90341d57795d63bb99"><code>d33424b</code></a> 5.6.7 release note [ci skip]</li> <li><a href="https://github.com/puma/puma/commit/f8c7b235f971ed6b290cc4733fe7bce840037ede"><code>f8c7b23</code></a> 5.6.6</li> <li><a href="https://github.com/puma/puma/commit/08af1b5d797ab49f9d594a71f0c1f88bbff7915a"><code>08af1b5</code></a> 5.6.6 release note</li> <li><a href="https://github.com/puma/puma/commit/6dac5d930d04e617b0fd8cd4e5947cd2586b7502"><code>6dac5d9</code></a> Prevent loading with rack 3 (<a href="https://redirect.github.com/puma/puma/issues/3166">#3166</a>)</li> <li><a href="https://github.com/puma/puma/commit/08925580e41734b4a8f063b9b401085476d5e9b9"><code>0892558</code></a> Fix and update 5-6-stable CI, two backports (<a href="https://redirect.github.com/puma/puma/issues/3167">#3167</a>)</li> <li><a href="https://github.com/puma/puma/commit/3a6ea4f4327dfe2e6e1cd16f2e093b3c43ad9951"><code>3a6ea4f</code></a> Release note fix for 5.6.5</li> <li>See full diff in <a href="https://github.com/puma/puma/compare/v5.6.5...v5.6.7">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=puma&package-manager=bundler&previous-version=5.6.5&new-version=5.6.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 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) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/jetpack-io/devbox/network/alerts). </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent e120bf9 commit 7f53478

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/stacks/rails/blog/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ gem "sprockets-rails"
1313
gem "sqlite3", "~> 1.4"
1414

1515
# Use the Puma web server [https://github.com/puma/puma]
16-
gem "puma", "~> 5.0"
16+
gem "puma", "~> 5.6"
1717

1818
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
1919
gem "importmap-rails"

examples/stacks/rails/blog/Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ GEM
132132
nokogiri (1.14.3-x86_64-linux)
133133
racc (~> 1.4)
134134
public_suffix (5.0.1)
135-
puma (5.6.5)
135+
puma (5.6.7)
136136
nio4r (~> 2.0)
137137
racc (1.6.2)
138138
rack (2.2.6.4)
@@ -225,7 +225,7 @@ DEPENDENCIES
225225
debug
226226
importmap-rails
227227
jbuilder
228-
puma (~> 5.0)
228+
puma (~> 5.6)
229229
rails (~> 7.0.4)
230230
selenium-webdriver
231231
sprockets-rails

0 commit comments

Comments
 (0)