fix(database): percent-encode spaces in Postgres connection URI#9685
Merged
Gnanasundari24 merged 1 commit intomainfrom Oct 6, 2025
Merged
fix(database): percent-encode spaces in Postgres connection URI#9685Gnanasundari24 merged 1 commit intomainfrom
Gnanasundari24 merged 1 commit intomainfrom
Conversation
Member
SanchithHegde
left a comment
There was a problem hiding this comment.
This seems to be enforced by PostgreSQL 18. Can you confirm if this change works correctly with previous versions of Postgres (13 to 17)?
Contributor
Author
Tried with Postgres@14. attached the screenshots for ref |
Anurag-05-prog
approved these changes
Oct 6, 2025
SanchithHegde
approved these changes
Oct 6, 2025
pixincreate
added a commit
that referenced
this pull request
Oct 7, 2025
…esouro-googlepay * 'main' of github.com:juspay/hyperswitch: feat(connector): [tesouro] apple pay (#9648) fix(payments): update error handling for payment void v2 (#9595) fix(connectors): [Nexixpay] MIT & order_id fix (#9644) chore(version): 2025.10.07.0 fix(database): percent-encode spaces in Postgres connection URI (#9685) chore(version): 2025.10.06.0 feat(subscriptions): Invoice record back workflow (#9529) feat: Implement subscriptions workflow and incoming webhook support (#9400) Feat(Customer): Added search Feature to the Customer Page (#9619) chore(version): 2025.10.02.0 feat(subscription): Add support to call payments microservice from subscription service via payments API client (#9590)
UdayPandey01
pushed a commit
to UdayPandey01/hyperswitch
that referenced
this pull request
Oct 8, 2025
…ay#9685) Co-authored-by: Sayak Bhattacharya <sayak.b@Sayak-Bhattacharya-G092THXJ34.local>
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.
Type of Change
Description
Currently with Postgres@18, db connection fails. Reason being space should be percent encoded as
%20. This encoding standards are followed across all versions of Postgres as mentioned in their docs as well.Additional Changes
Motivation and Context
How did you test it?
Created a API Key using Hyperswitch curls:
cURL:
Response:
Checklist
cargo +nightly fmt --allcargo clippy