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
Fix Regexp deprecated third argument with Regexp::NOENCODING #1998
Merged
ioquatix
merged 1 commit into
rack:main
from
weizheheng:fix-regexp-deprecated-third-argument
Dec 26, 2022
Merged
Fix Regexp deprecated third argument with Regexp::NOENCODING #1998
ioquatix
merged 1 commit into
rack:main
from
weizheheng:fix-regexp-deprecated-third-argument
Dec 26, 2022
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6f5267f
to
7877a35
Compare
ioquatix
approved these changes
Dec 26, 2022
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
ioquatix
pushed a commit
that referenced
this pull request
Dec 26, 2022
ioquatix
pushed a commit
that referenced
this pull request
Dec 26, 2022
This was released in v2.2.5 and v3.0.3. |
tnir
added a commit
to rubygems/bundler-site
that referenced
this pull request
Jan 1, 2023
See rack/rack#1998 for Ruby 3.2.0 Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
tnir
added a commit
to rubygems/bundler-site
that referenced
this pull request
Jan 1, 2023
See rack/rack#1998 for Ruby 3.2.0 Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
expressd3v
added a commit
to expressd3v/bundler-site
that referenced
this pull request
Jan 13, 2023
See rack/rack#1998 for Ruby 3.2.0 Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
tenderlove
added a commit
that referenced
this pull request
Jan 17, 2023
* 3-0-sec: (24 commits) bump version Update changelog Fix ReDoS vulnerability in multipart parser Fix ReDoS in Rack::Utils.get_byte_ranges Forbid control characters in attributes Bump patch version. `Rack::Request#POST` should consistently raise errors. (#2010) Fix Rack::Lint error message for HTTP_CONTENT_TYPE and HTTP_CONTENT_LENGTH (#2007) Rack::MethodOverride handle QueryParser::ParamsTooDeepError (#2006) Bump patch version. Fix Regexp deprecated third argument with Regexp::NOENCODING (#1998) Update tests to work on latest Rubies. (#1999) Bump patch version. Allow passing through streaming bodies. (#1993) Remove unnecessary executable bit from test files (#1992) Fix Utils.build_nested_query to URL-encode all query string fields (#1989) Trim trailing white space throughout the project (#1990) Fix some typos (#1991) Remove leading dot to fix compatibility with latest cgi gem. (#1988) Fix outdated Rack::Builder rdocs and remove Lobster references (#1986) ...
7 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Just upgraded to Ruby 3.2.0 and started seeing this deprecated warning message in my tests.
Related: