All notable changes to this project will be documented in this file. For info on how to format all future additions to this file please reference Keep A Changelog.
[3.0.3] - 2022-12-07
Fixed
Rack::URLMap uses non-deprecated form of Regexp.new. (#1998, @weizheheng)
[3.0.2] -2022-12-05
Fixed
Utils.build_nested_query URL-encodes nested field names including the square brackets.
Allow Rack::Response to pass through streaming bodies. (#1993, [@ioquatix])
[3.0.1] - 2022-11-18
Fixed
MethodOverride does not look for an override if a request does not include form/parseable data.
Rack::Lint::Wrapper correctly handles respond_to? with to_ary, each, call and to_path, forwarding to the body. (#1981, [@ioquatix])
rack.response_finished may be used for executing code after the response has been finished rack/rack#1952
[3.0.0.beta1] - 2022-08-08
Security
Do not use semicolon as GET parameter separator. (#1733, [@jeremyevans])
SPEC Changes
Response array must now be non-frozen.
Response status must now be an integer greater than or equal to 100.
Response headers must now be an unfrozen hash.
Response header keys can no longer include uppercase characters.
Response header values can be an Array to handle multiple values (and no longer supports \n encoded headers).
Response body can now respond to #call (streaming body) instead of #each (enumerable body), for the equivalent of response hijacking in previous versions.
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 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)
@dependabot use these labels will set the current labels as the default for future PRs for this repo and language
@dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
@dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
@dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.
## 📋 Pull Request Information
**Original PR:** https://github.com/plashchynski/crono/pull/117
**Author:** [@dependabot[bot]](https://github.com/apps/dependabot)
**Created:** 1/19/2023
**Status:** ❌ Closed
**Base:** `main` ← **Head:** `dependabot/bundler/rack-2.2.6.2`
---
### 📝 Commits (1)
- [`b50627c`](https://github.com/plashchynski/crono/commit/b50627ce7cff0de7e608e20e8be879abf15df101) Bump rack from 2.2.4 to 2.2.6.2
### 📊 Changes
**1 file changed** (+1 additions, -1 deletions)
<details>
<summary>View changed files</summary>
📝 `Gemfile.lock` (+1 -1)
</details>
### 📄 Description
Bumps [rack](https://github.com/rack/rack) from 2.2.4 to 2.2.6.2.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/rack/rack/blob/main/CHANGELOG.md">rack's changelog</a>.</em></p>
<blockquote>
<h1>Changelog</h1>
<p>All notable changes to this project will be documented in this file. For info on how to format all future additions to this file please reference <a href="https://keepachangelog.com/en/1.0.0/">Keep A Changelog</a>.</p>
<h2>[3.0.3] - 2022-12-07</h2>
<h3>Fixed</h3>
<ul>
<li><code>Rack::URLMap</code> uses non-deprecated form of <code>Regexp.new</code>. (<a href="https://github-redirect.dependabot.com/rack/rack/pull/1998">#1998</a>, <a href="https://github.com/weizheheng"><code>@weizheheng</code></a>)</li>
</ul>
<h2>[3.0.2] -2022-12-05</h2>
<h3>Fixed</h3>
<ul>
<li><code>Utils.build_nested_query</code> URL-encodes nested field names including the square brackets.</li>
<li>Allow <code>Rack::Response</code> to pass through streaming bodies. (<a href="https://github-redirect.dependabot.com/rack/rack/pull/1993">#1993</a>, [<a href="https://github.com/ioquatix"><code>@ioquatix</code></a>])</li>
</ul>
<h2>[3.0.1] - 2022-11-18</h2>
<h3>Fixed</h3>
<ul>
<li><code>MethodOverride</code> does not look for an override if a request does not include form/parseable data.</li>
<li><code>Rack::Lint::Wrapper</code> correctly handles <code>respond_to?</code> with <code>to_ary</code>, <code>each</code>, <code>call</code> and <code>to_path</code>, forwarding to the body. (<a href="https://github-redirect.dependabot.com/rack/rack/pull/1981">#1981</a>, [<a href="https://github.com/ioquatix"><code>@ioquatix</code></a>])</li>
</ul>
<h2>[3.0.0] - 2022-09-06</h2>
<ul>
<li>No changes</li>
</ul>
<h2>[3.0.0.rc1] - 2022-09-04</h2>
<h3>SPEC Changes</h3>
<ul>
<li>Stream argument must implement <code><<</code> <a href="https://github-redirect.dependabot.com/rack/rack/pull/1959">rack/rack#1959</a></li>
<li><code>close</code> may be called on <code>rack.input</code> <a href="https://github-redirect.dependabot.com/rack/rack/pull/1956">rack/rack#1956</a></li>
<li><code>rack.response_finished</code> may be used for executing code after the response has been finished <a href="https://github-redirect.dependabot.com/rack/rack/pull/1952">rack/rack#1952</a></li>
</ul>
<h2>[3.0.0.beta1] - 2022-08-08</h2>
<h3>Security</h3>
<ul>
<li>Do not use semicolon as GET parameter separator. (<a href="https://github-redirect.dependabot.com/rack/rack/pull/1733">#1733</a>, [<a href="https://github.com/jeremyevans"><code>@jeremyevans</code></a>])</li>
</ul>
<h3>SPEC Changes</h3>
<ul>
<li>Response array must now be non-frozen.</li>
<li>Response <code>status</code> must now be an integer greater than or equal to 100.</li>
<li>Response <code>headers</code> must now be an unfrozen hash.</li>
<li>Response header keys can no longer include uppercase characters.</li>
<li>Response header values can be an <code>Array</code> to handle multiple values (and no longer supports <code>\n</code> encoded headers).</li>
<li>Response body can now respond to <code>#call</code> (streaming body) instead of <code>#each</code> (enumerable body), for the equivalent of response hijacking in previous versions.</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/rack/rack/commit/2606ac5d5d180c00a8cbcaa4d634276bab06500e"><code>2606ac5</code></a> bumping version</li>
<li><a href="https://github.com/rack/rack/commit/f6d4f528f2df1318a6612845db0b59adc7fe8fc1"><code>f6d4f52</code></a> Fix ReDoS in Rack::Utils.get_byte_ranges</li>
<li><a href="https://github.com/rack/rack/commit/20bc90c2431d7fabcd1873410543cf3d72f65004"><code>20bc90c</code></a> bump version</li>
<li><a href="https://github.com/rack/rack/commit/3677f170b4ac713defb84cd6a86431623ba0adc0"><code>3677f17</code></a> Update changelog</li>
<li><a href="https://github.com/rack/rack/commit/ee25ab9a7ee981d7578f559701085b0cf39bde77"><code>ee25ab9</code></a> Fix ReDoS vulnerability in multipart parser</li>
<li><a href="https://github.com/rack/rack/commit/19e49f0f185d7e42ed5b402baec6c897a8c48029"><code>19e49f0</code></a> Forbid control characters in attributes</li>
<li><a href="https://github.com/rack/rack/commit/ea39e49442e0008bfce4ad628ce52a4be2a20b5b"><code>ea39e49</code></a> Bump patch version.</li>
<li><a href="https://github.com/rack/rack/commit/c0f9de4844052b7867180c587d1b6969be2f114d"><code>c0f9de4</code></a> Rack::MethodOverride handle QueryParser::ParamsTooDeepError (<a href="https://github-redirect.dependabot.com/rack/rack/issues/2011">#2011</a>)</li>
<li><a href="https://github.com/rack/rack/commit/8312a2fd6aee0950d7b2deb548aaf600cb871d80"><code>8312a2f</code></a> Remove leading dot to fix compatibility with latest cgi gem. (<a href="https://github-redirect.dependabot.com/rack/rack/issues/1988">#1988</a>)</li>
<li><a href="https://github.com/rack/rack/commit/2a82c88f1a468d8f68d9d7640886f5153142c272"><code>2a82c88</code></a> Update tests to work on latest Rubies. (<a href="https://github-redirect.dependabot.com/rack/rack/issues/1999">#1999</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/rack/rack/compare/2.2.4...v2.2.6.2">compare view</a></li>
</ul>
</details>
<br />
[](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 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)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/plashchynski/crono/network/alerts).
</details>
---
<sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
📋 Pull Request Information
Original PR: https://github.com/plashchynski/crono/pull/117
Author: @dependabot[bot]
Created: 1/19/2023
Status: ❌ Closed
Base:
main← Head:dependabot/bundler/rack-2.2.6.2📝 Commits (1)
b50627cBump rack from 2.2.4 to 2.2.6.2📊 Changes
1 file changed (+1 additions, -1 deletions)
View changed files
📝
Gemfile.lock(+1 -1)📄 Description
Bumps rack from 2.2.4 to 2.2.6.2.
Changelog
Sourced from rack's changelog.
... (truncated)
Commits
2606ac5bumping versionf6d4f52Fix ReDoS in Rack::Utils.get_byte_ranges20bc90cbump version3677f17Update changelogee25ab9Fix ReDoS vulnerability in multipart parser19e49f0Forbid control characters in attributesea39e49Bump patch version.c0f9de4Rack::MethodOverride handle QueryParser::ParamsTooDeepError (#2011)8312a2fRemove leading dot to fix compatibility with latest cgi gem. (#1988)2a82c88Update tests to work on latest Rubies. (#1999)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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and languageYou can disable automated security fix PRs for this repo from the Security Alerts page.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.