fix: accept a comma-delimited list in req.acceptsCharsets - #7451
Closed
marceli1404 wants to merge 1 commit into
Closed
marceli1404 wants to merge 1 commit into
marceli1404 wants to merge 1 commit into
Conversation
3 tasks
Contributor
|
As far as I can tell, the docs are wrong. Comma delimited string has not been supported since cec0c06, according to #6936 (comment). You'll find more details and an attempt at fixing the docs in #7452. |
stvwng
added a commit
to stvwng/cd14715-claude-code-classroom-1
that referenced
this pull request
Sep 6, 2026
Every report in reports/ is now produced by the current orchestrator, which no longer bypasses SDK permissions. Previously the four expressjs/express reports predated that change; only the octocat one had been refreshed by the verification run. This also serves as a broader check that removing permissionMode 'bypassPermissions' and allowDangerouslySkipPermissions did not degrade behaviour across a range of pull requests. It did not: all four runs completed normally, each spawned all three subagents through the Task tool, and no run stalled waiting on a permission prompt. octocat/Hello-World#1 59/100 1 file 3 subagent runs expressjs/express#7453 88/100 1 file 3 subagent runs clean fix expressjs/express#7451 82/100 2 files 6 subagent runs fix with tests expressjs/express#7446 72/100 1 file 3 subagent runs error handling expressjs/express#7435 65/100 3 files 9 subagent runs multi-file feature Scores shifted from the previous set (90/64/66/71) because agent output is non-deterministic; the spread is normal run-to-run variance, not a behavioural change. #7435 selected three files this time rather than five, which is within the --max-files 5 cap. README and SUBMISSION_NOTES tables updated to match. Verified across all 18 files: valid JSON, every finding carries a positive integer line number, all three subagents present in every trace, HTML parses with balanced tags, Markdown fences balanced, Mermaid trace embedded throughout. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01AssyVR3HQdtvVAFZ8pRVP3
This file contains hidden or 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
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.
Bug
req.acceptsCharsets()silently ignores the documented comma-delimited form. The jsdoc (added by merged PR #6088) documents:...but the implementation passes the arguments straight through to
accepts().charsets(...), which never splits commas. So a client following the documented API gets a hardfalse:Fix
Expand comma-delimited args before passing them along, so
req.acceptsCharsets('iso-8859-1, utf-8')behaves like the documented multi-arg form:Verification
npm test(mocha, full suite): 1262 passing, 0 failing.eslintclean on the changed files.