fix: Updated path param char limit from 32 to 128.#299
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #299 +/- ##
=======================================
Coverage 65.07% 65.07%
=======================================
Files 25 25
Lines 3204 3204
=======================================
Hits 2085 2085
Misses 905 905
Partials 214 214 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
harshadixit12
approved these changes
Jun 12, 2026
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.
FTI: https://konghq.atlassian.net/browse/FTI-7580
Summary:
We encountered an issue where path parameters longer than 32 characters failed to parse. This limitation existed because, prior to Kong Gateway 3.8, regex parsing used PCRE2, which imposed a hardcoded 32-character limit on named capture groups.
Since Kong Gateway has upgraded to PCRE2 version 10.44, and now supports up to 128 characters, and because our minimum supported version will soon be 3.10, we have updated the validation limit from 32 characters to 128 characters.
more details: https://kongstrong.slack.com/archives/C04349E4KRC/p1779388617009859