prompt
stringlengths
24
63.1k
response
stringlengths
180
101k
metadata
stringlengths
143
152
[REFACTOR] Worldpay payments integration ### Feature Description WorldPay payments integration currently makes use of modular APIs which gives more control over the integration. This approach is not best compatible with HyperSwitch due to WP's 3DS flows - which requires sending PAN (card numbers) in multiple places. ...
<think> PR Context: - Title: feat(connector): worldpay - add dynamic fields and update terminal status mapping - Merged: 2024-11-28T14:50:09Z - Files changed: 17 files - Commits: 14 commits Implementation approach: ## Description This PR contains changes to - update status mapping for Worldpay - payments and refund...
{"issue_number": 6316, "pr_number": 6468, "commits_count": 1, "files_changed": 17, "response_length": 1780, "file_count": 11, "needs_breakdown": false}
[FEAT] Multiple credential support for a connector in Cypress ## Requirement Execute cypress tests for a connector having **multiple credentials** which can be used for different scenarios (one api key for `cards`, another for `bank redirects` and etc.,). ## Implementation ### Introduce new format for `creds....
<think> PR Context: - Title: feat(cypress): add multiple creds and flags support - Merged: 2024-12-03T11:39:21Z - Files changed: 30 files - Commits: 30 commits Implementation approach: ## Description <!-- Describe your changes in detail --> This PR introduces 2 new features: - Multiple credentials for a connec...
{"issue_number": 6645, "pr_number": 6588, "commits_count": 0, "files_changed": 30, "response_length": 783, "file_count": 0, "needs_breakdown": false}
[BUG] Make get_redis_conn return result in StorageInterface ### Bug Description Currently `get_redis_conn` function in StorageInterface exposes `redis_conn` directly instead use `redis_conn()` function from `Store` and return Result in this function. ### Expected Behavior It should return err in case of redis conne...
<think> PR Context: - Title: refactor(redis): invoke `redis_conn()` method instead of cloning `redis_conn` property in `StorageInterface` - Merged: 2023-08-01T07:44:31Z - Files changed: 13 files - Commits: 17 commits Implementation approach: ## Description Fixes #1497 ## Motivation and Context Please find the d...
{"issue_number": 1497, "pr_number": 1552, "commits_count": 1, "files_changed": 13, "response_length": 1927, "file_count": 15, "needs_breakdown": false}
[FEATURE] Remove special characters from payment attempt ID ### Feature Description Remove special characters from payment attempt_id For some gateways like expresscheckout where attempt_id can be passed as reference to txn, special characters limit the possibility of integrating the apis where such referenceIds ...
<think> PR Context: - Title: refactor: use simple uuid instead of hyphens - Merged: 2023-02-19T14:34:02Z - Files changed: 2 files - Commits: 1 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Since we are passing the attempt id as reference to few connectors, some might not a...
{"issue_number": 603, "pr_number": 605, "commits_count": 1, "files_changed": 2, "response_length": 1033, "file_count": 4, "needs_breakdown": false}
[FEATURE] Implement `MerchantKeyStoreInterface` for `MockDb` ### Feature Description Currently the MerchantKeyStoreInterface is not implemented for MockDb. It is required for merchant account functions. And without this implementation, we cannot write tests for them. ### Possible Implementation Checkout #172 for mo...
<think> PR Context: - Title: test: fix failing unit tests - Merged: 2023-07-20T10:50:21Z - Files changed: 6 files - Commits: 6 commits Implementation approach: ## Description <!-- Describe your changes in detail --> This PR includes the following changes: - Updates the AES-GCM-256 tests to use test vectors provi...
{"issue_number": 1697, "pr_number": 1743, "commits_count": 1, "files_changed": 6, "response_length": 1251, "file_count": 8, "needs_breakdown": false}
Fails to build with rust 1.77.0 ### Bug Description I have the following error with rust 1.77.0: ``` --- stderr thread 'main' panicked at crates/router_env/src/cargo_workspace.rs:57:5: Unknown workspace members package ID form...
<think> PR Context: - Title: build(router_env): obtain workspace member package names from cargo_metadata more deterministically - Merged: 2024-03-26T17:21:00Z - Files changed: 3 files - Commits: 1 commits Implementation approach: ## Description <!-- Describe your changes in detail --> ORIGINAL PR: https://github.c...
{"issue_number": 4137, "pr_number": 4215, "commits_count": 1, "files_changed": 3, "response_length": 1019, "file_count": 3, "needs_breakdown": false}
refactor(authentication): moved cavv storing from table to temp locker ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Refactoring ## Description <!-- Describe your changes in detail --> https://github.com/juspay/hyperswitch/pull/7978 ### Additional Changes - [ ] This PR modifies...
<think> PR Context: - Title: refactor(authentication): moved cavv storing from table to temp locker - Merged: 2025-05-14T07:50:11Z - Files changed: 21 files - Commits: 1 commits Implementation approach: Reverts [juspay/hyperswitch#8005](https://github.com/juspay/hyperswitch/pull/7978) </think> To implement this, yo...
{"issue_number": 8005, "pr_number": 8021, "commits_count": 1, "files_changed": 21, "response_length": 2236, "file_count": 23, "needs_breakdown": true}
bug(user): Magic link is not expiring after being used once When a verified user is using magic link, that magic link is not blacklisted after being used once. User is able to use the same magic link to login to dashboard multiple times.
<think> PR Context: - Title: fix(users): Magic link is not expiring after one usage - Merged: 2024-06-14T09:59:23Z - Files changed: 3 files - Commits: 1 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Currently verify email API will be picked by the decision manager only if ...
{"issue_number": 4970, "pr_number": 4971, "commits_count": 1, "files_changed": 3, "response_length": 1094, "file_count": 5, "needs_breakdown": false}
Missing terms and conditions for the contests. The team should add terms and conditions for the contests like Hacktoberfest.
<think> PR Context: - Title: docs: add terms and conditions - Merged: 2024-09-22T18:37:34Z - Files changed: 4 files - Commits: 3 commits Implementation approach: ## Description <!-- Describe your changes in detail --> ### Additional Changes - [ ] This PR modifies the API contract - [ ] This PR modifies the ...
{"issue_number": 5974, "pr_number": 5975, "commits_count": 1, "files_changed": 4, "response_length": 942, "file_count": 3, "needs_breakdown": false}
[BUG] Docker compose failing because of the web module not having healthcheck ### Bug Description When `docker compose up -d` is ran, it returns the following error message: `dependency failed to start: container hyperswitch-hyperswitch-web-1 has no healthcheck configured` ### Expected Behavior The Web module shoul...
<think> PR Context: - Title: fix: fixes the docker setup to clean up the scarf data - Merged: 2025-05-12T08:26:50Z - Files changed: 2 files - Commits: 3 commits Implementation approach: ## Description <!-- Describe your changes in detail --> The hyperswitch server would run even without the completion of migration ...
{"issue_number": 7945, "pr_number": 7999, "commits_count": 0, "files_changed": 2, "response_length": 784, "file_count": 0, "needs_breakdown": false}
feat(payment_request): add field `amount` to `OrderDetails` and make `order_details` a `Vec` in `payments_create` request ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ...
<think> PR Context: - Title: revert(order_details): revert back `order_details` to be an object, and removing `meta_data` from `PaymentIntent` - Merged: 2023-05-26T07:49:33Z - Files changed: 16 files - Commits: 2 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Order_details ...
{"issue_number": 964, "pr_number": 1279, "commits_count": 1, "files_changed": 16, "response_length": 1975, "file_count": 16, "needs_breakdown": true}
feat(router): added incoming dispute webhooks flow ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates ## Description Added support for incoming dispute webhooks. ### Additional Changes - [x] This ...
<think> PR Context: - Title: Changelog for release v0.5.4 - Merged: 2023-04-04T12:48:00Z - Files changed: 1 files - Commits: 3 commits Implementation approach: # 0.5.4 (2023-04-04) ## New Features * **request:** add `RequestBuilder` method to attach default request headers (#826) (6f61f830) * **middleware:** ...
{"issue_number": 769, "pr_number": 837, "commits_count": 0, "files_changed": 1, "response_length": 758, "file_count": 6, "needs_breakdown": false}
fix(router_env): resolve/remove `FIXME`'s and redundent files ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Enhancement ## Description This PR is regarding the `FIXME`'s and `TODO`'s resolution for the crate `router_env` <!-- Describe your changes in detail --> ### Additional Change...
<think> PR Context: - Title: fix: remove and resolve `FIXME`s and `TODO`s from db module - Merged: 2022-12-20T12:25:25Z - Files changed: 22 files - Commits: 9 commits Implementation approach: ## Description This change addresses `todo!()` in the `MockDb` interface implementation and group them under issue #172 . It ...
{"issue_number": 168, "pr_number": 174, "commits_count": 1, "files_changed": 22, "response_length": 2295, "file_count": 24, "needs_breakdown": true}
fix(docker): fix stack overflow for docker images ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> - Add a defa...
<think> PR Context: - Title: fix(docker): fix stack overflow for docker images - Merged: 2024-05-17T12:01:03Z - Files changed: 1 files - Commits: 1 commits Implementation approach: Hotfix for #4660 </think> To implement this, you'll need to modify: (No detailed commit information available)
{"issue_number": 4660, "pr_number": 4683, "commits_count": 0, "files_changed": 1, "response_length": 296, "file_count": 0, "needs_breakdown": false}
Unable to compile version on ubuntu ### Bug Description getting an error while compiling on node 18.19, please I need the right command to get it working perfectly well. Thanks so much
<think> PR Context: - Title: fix(connector): [Prophetpay] Use refund_id as reference_id for Refund - Merged: 2023-11-23T12:22:30Z - Files changed: 1 files - Commits: 2 commits Implementation approach: ## Description <!-- Describe your changes in detail --> - Replaced connector_request_reference_id with refund_id ...
{"issue_number": 3353, "pr_number": 2966, "commits_count": 1, "files_changed": 1, "response_length": 980, "file_count": 3, "needs_breakdown": false}
fix(connector): [AUTHORIZEDOTNET] customer id population fixed in authorize flow ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your chan...
<think> PR Context: - Title: fix(connector): Revert [AUTHORIZEDOTNET] customer id population fixed in authorize flow - Merged: 2025-09-04T07:19:18Z - Files changed: 1 files - Commits: 1 commits Implementation approach: Reverts juspay/hyperswitch#9079 If a customer profile is not created during the Authorize call, t...
{"issue_number": 9079, "pr_number": 9253, "commits_count": 1, "files_changed": 1, "response_length": 1038, "file_count": 3, "needs_breakdown": false}
Todo redis interface ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Enhancement ## Description This PR is a part of greater refactoring which aims on removing `// TODO: ...` & `// FIXME: ..` from the entire codebase. The objective of this PR is to fix `xgroup_create` by adding a guard or so...
<think> PR Context: - Title: fix(router_env): resolve/remove `FIXME`'s and redundent files - Merged: 2022-12-19T10:11:26Z - Files changed: 7 files - Commits: 5 commits Implementation approach: ## Description This PR is regarding the `FIXME`'s and `TODO`'s resolution for the crate `router_env` <!-- Describe your cha...
{"issue_number": 136, "pr_number": 168, "commits_count": 1, "files_changed": 7, "response_length": 1242, "file_count": 6, "needs_breakdown": false}
[FEATURE] Populate status code and delivery attempt information in outgoing webhooks ClickHouse events ### Description As of opening this issue, the outgoing webhooks ClickHouse events contain a few fields: https://github.com/juspay/hyperswitch/blob/ca61e47585071865cf7df5c05fdbe3f57818ca95/crates/router/src/even...
<think> PR Context: - Title: feat(analytics): populate status_code, initial_attempt_id & delivery_attempt on clickhouse for outgoing webhook events - Merged: 2024-08-12T06:56:25Z - Files changed: 3 files - Commits: 30 commits Implementation approach: ## Description Closes #5070. This PR enhances the outgoing_we...
{"issue_number": 5070, "pr_number": 5383, "commits_count": 1, "files_changed": 3, "response_length": 1120, "file_count": 4, "needs_breakdown": false}
docs(analytics): Instructions to set up `currency_conversion` (third party dependency API) ## Requirements After the changes by [this](#6418) PR, we need to update the documentation for `analytics` crate setup process. ## Reason Due to the third party dependency on `currency_conversion` crate, we need to ensure the p...
<think> PR Context: - Title: docs(analytics): add setup instructions for currency_conversion service - Merged: 2024-11-13T09:54:17Z - Files changed: 1 files - Commits: 1 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Now that `analytics` depends on `currency_conversion` cra...
{"issue_number": 6513, "pr_number": 6516, "commits_count": 0, "files_changed": 1, "response_length": 801, "file_count": 0, "needs_breakdown": false}
Adding Deep health check for Hyperswitch Goal is to create a deep health check endpoint which will verify that the Hyperswitch application is up and running and the connections to all the necessary services are healthy - [x] Failure of health check should emit logs providing evidential data regarding the failure T...
<think> PR Context: - Title: fix(ui): hide visible scrollbar from checkout widget for windows - Merged: 2025-10-01T13:15:54Z - Files changed: 1 files - Commits: 1 commits Implementation approach: ## Description This PR hides the visible scrollbars on payment link's checkout widget. ### Additional Changes - [ ]...
{"issue_number": 3264, "pr_number": 9541, "commits_count": 0, "files_changed": 1, "response_length": 794, "file_count": 0, "needs_breakdown": false}
CI DB Migration consistency checks failing after diesel_cli 2.3.0 update After the release of diesel_cli version `2.3.0`, the CI checks for DB migration consistency are failing due to a formatting difference in the output. diesel_cli version 2.3.0 expects to call rustfmt to format its output. If rustfmt is not instal...
<think> PR Context: - Title: ci(migration-check): install rustfmt to address migration run failures - Merged: 2025-09-15T12:52:03Z - Files changed: 1 files - Commits: 3 commits Implementation approach: ## Description <!-- Describe your changes in detail --> - `diesel_cli` version `2.3.0` expects to call `rustfmt` t...
{"issue_number": 9385, "pr_number": 9386, "commits_count": 0, "files_changed": 1, "response_length": 800, "file_count": 0, "needs_breakdown": false}
feat(roles): add support for roles list - Add support to list all roles for a user. Roles which are equal and below given entity level should be listed - Add support to list roles at a given entity level for a user.
<think> PR Context: - Title: feat(roles): add list support for roles - Merged: 2024-09-02T07:08:19Z - Files changed: 13 files - Commits: 9 commits Implementation approach: ## Description Add support to - List available roles with info for the user - List roles at entity level for the user ### Additional Change...
{"issue_number": 5753, "pr_number": 5754, "commits_count": 1, "files_changed": 13, "response_length": 2301, "file_count": 15, "needs_breakdown": false}
[REFACTOR] : [Square] Error Message For Connector Implementation ### :memo: Feature Description - In terms of errors, we are currently throwing a 'not supported' message, which shouldn't be the case as we are yet to decide on the implementation. ### :hammer: Possible Implementation - In order to manage paym...
<think> PR Context: - Title: refactor(connector): [Square] change error message from NotSupported to NotImplemented - Merged: 2024-02-27T11:37:14Z - Files changed: 1 files - Commits: 4 commits Implementation approach: ## Description Consistent error messages for not implemented payment method. ## Motivation and...
{"issue_number": 2861, "pr_number": 2875, "commits_count": 1, "files_changed": 1, "response_length": 1016, "file_count": 3, "needs_breakdown": false}
feat(auth): Support profile level authentication - After the dashboard is changed to profile level, there will be 3 types of APIs based on the level 1. Merchant Level only - API Keys - Merchant Account - Business profile 2. Profile Level only - Connectors - Routing - Operations (Payment, refund, dispute...
<think> PR Context: - Title: feat(auth): Add `profile_id` in `AuthenticationData` - Merged: 2024-08-01T14:04:04Z - Files changed: 7 files - Commits: 10 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Since we are going to change the dashboard to profile level, we need profil...
{"issue_number": 5491, "pr_number": 5492, "commits_count": 1, "files_changed": 7, "response_length": 1382, "file_count": 9, "needs_breakdown": false}
[REFACTOR]: [Klarna] Remove Default Case Handling ### :memo: Feature Description - We utilize match statements to make pivotal decisions, such as generating requests based on the payment method type and managing responses received from the connector. - These conditions generally go hand in hand with enum variants. ...
<think> PR Context: - Title: refactor(connector): [Klarna] Expand wildcard match arms - Merged: 2023-10-01T18:24:54Z - Files changed: 1 files - Commits: 1 commits Implementation approach: ## Description Match arms using the wildcard patten (`_`) can be dangereous when extending enums since developers may miss loca...
{"issue_number": 2273, "pr_number": 2403, "commits_count": 1, "files_changed": 1, "response_length": 937, "file_count": 3, "needs_breakdown": false}
[FEATURE]: [PayU] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a single transac...
<think> PR Context: - Title: feat(connector): [PayU] Use connector_response_response_id as reference to merchant - Merged: 2023-10-05T19:21:01Z - Files changed: 1 files - Commits: 15 commits Implementation approach: ## Description Fixes #2344 ### Additional Changes - [ ] This PR modifies the API contract -...
{"issue_number": 2344, "pr_number": 2452, "commits_count": 1, "files_changed": 1, "response_length": 1012, "file_count": 3, "needs_breakdown": false}
refactor(connector): [bluesnap] add connector_txn_id fallback for webhook ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [X] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in ...
<think> PR Context: - Title: refactor(connector): [bluesnap] add connector_txn_id fallback for webhook - Merged: 2024-01-10T14:54:49Z - Files changed: 1 files - Commits: 2 commits Implementation approach: ## Description <!-- Describe your changes in detail --> add connector_txn_id fallback for webhook ### Additi...
{"issue_number": 3315, "pr_number": 3317, "commits_count": 1, "files_changed": 1, "response_length": 973, "file_count": 3, "needs_breakdown": false}
refactor: use single purpose token and auth for accept invite - use single purpose JWT auth and single purpose token for accept invite - remove user without merchant JWT auth and user auth token
<think> PR Context: - Title: refactor(user): use single purpose token and auth to accept invite - Merged: 2024-05-02T09:49:50Z - Files changed: 5 files - Commits: 1 commits Implementation approach: ## Description - Use single purpose JWT auth and single purpose token for accept invite - Remove user without merchant...
{"issue_number": 4497, "pr_number": 4498, "commits_count": 1, "files_changed": 5, "response_length": 1646, "file_count": 7, "needs_breakdown": false}
[FEATURE] add tokenization action handling to payment flow in v2 ### Feature Description This feature add connector-level tokenization to Hyperswitch V2, allowing secure storage of card data as tokens at payment connectors like Braintree. ### Possible Implementation For connector-level tokenization: 1.Whe...
<think> PR Context: - Title: feat(payments): add tokenization action handling to payment flow for braintree - Merged: 2025-09-30T08:07:13Z - Files changed: 3 files - Commits: 5 commits Implementation approach: ## Description <!-- Describe your changes in detail --> This feature add connector-level tokenization to H...
{"issue_number": 9501, "pr_number": 9506, "commits_count": 1, "files_changed": 3, "response_length": 1396, "file_count": 5, "needs_breakdown": false}
feat(connector): add template code for recurly add a template code for recurly connector
<think> PR Context: - Title: feat(connector): add template code for recurly - Merged: 2025-03-05T10:40:40Z - Files changed: 24 files - Commits: 13 commits Implementation approach: ## Description <!-- Describe your changes in detail --> connector integration template code for recurly. Issue: This PR closes the is...
{"issue_number": 7283, "pr_number": 7284, "commits_count": 1, "files_changed": 24, "response_length": 8808, "file_count": 17, "needs_breakdown": true}
[BUG]: Decryption failure in chat prevents retrieval of conversation history Internal users are unable to view their past chat conversations through the chat/ai/list endpoint, which is meant to be used for internal users. When attempting to retrieve the chat history, the system fails to decrypt the stored messages, re...
<think> PR Context: - Title: fix(chat): alter encryption logic for ai service - Merged: 2025-10-01T13:05:25Z - Files changed: 1 files - Commits: 2 commits Implementation approach: ## Description This PR addresses an issue where chat conversation history could not be decrypted in the `chat/ai/list` endpoint. The root...
{"issue_number": 9561, "pr_number": 9562, "commits_count": 1, "files_changed": 1, "response_length": 915, "file_count": 3, "needs_breakdown": false}
deps(common_utils): put the async ext trait behind a feature ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [x] Dependency updates ## Description <!-- Describe your changes in detail --> This PR puts the `AsyncExt` trait a...
<think> PR Context: - Title: Changelog for release v0.5.5 - Merged: 2023-04-11T07:30:11Z - Files changed: 1 files - Commits: 1 commits Implementation approach: # 0.5.5 (2023-04-10) ## New Features * **api_models:** derive `strum::Display` for `RefundStatus` (#846) (4524d4f5) * allow (de)serializing countries ...
{"issue_number": 835, "pr_number": 850, "commits_count": 0, "files_changed": 1, "response_length": 758, "file_count": 3, "needs_breakdown": false}
[REFACTOR]: [PAYU] Add amount conversion framework to Payu ### :memo: Feature Description Currently, amounts are represented as `i64` values throughout the application. We want to introduce a `Unit` struct that explicitly states the denomination. A new type, `MinorUnit`, has been added to standardize the flow of am...
<think> PR Context: - Title: refactor(connector): add amount conversion framework to payu - Merged: 2024-10-29T12:10:37Z - Files changed: 4 files - Commits: 8 commits Implementation approach: ## Description This PR adds amount conversion framework to payu, for sending to connector. fixes #5961 ### Additional...
{"issue_number": 5961, "pr_number": 6199, "commits_count": 1, "files_changed": 4, "response_length": 1416, "file_count": 6, "needs_breakdown": false}
Todo redis interface ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Enhancement ## Description This PR is a part of greater refactoring which aims on removing `// TODO: ...` & `// FIXME: ..` from the entire codebase. The objective of this PR is to fix `xgroup_create` by adding a guard or so...
<think> PR Context: - Title: fix: resolve `TODO` comments in storage models crate - Merged: 2022-12-15T13:40:02Z - Files changed: 13 files - Commits: 8 commits Implementation approach: ## Description The PR aims to resolve `TODO`'s and `FIXME`'s from the crate `strorage_models` <!-- Describe your changes in detail ...
{"issue_number": 136, "pr_number": 151, "commits_count": 1, "files_changed": 13, "response_length": 1738, "file_count": 13, "needs_breakdown": false}
feat: create an api to get countries and currencies for a connector and pmt Currently there is no way to set countries and currencies for a particular connector and payment method type. This api should give the list of countries and currencies supported by a given connector and payment method type combination. This wi...
<think> PR Context: - Title: feat(payment_method): API to list countries and currencies supported by a country and payment method type - Merged: 2024-03-28T07:15:34Z - Files changed: 9 files - Commits: 17 commits Implementation approach: ## Description Make a api to fetch the countries and currencies supported by a ...
{"issue_number": 4163, "pr_number": 4126, "commits_count": 1, "files_changed": 9, "response_length": 2015, "file_count": 11, "needs_breakdown": false}
feat(payments): support for card_network filter in payments list - Support for card_network as filters in payments list - Card network values in payments filter values
<think> PR Context: - Title: feat(payments): support for card_network filter in payments list - Merged: 2024-10-14T10:37:03Z - Files changed: 4 files - Commits: 5 commits Implementation approach: ## Description <!-- Describe your changes in detail --> - Support for card_network as filters in payments list - Card ...
{"issue_number": 5995, "pr_number": 5994, "commits_count": 1, "files_changed": 4, "response_length": 1183, "file_count": 6, "needs_breakdown": false}
fix(connector): [ARCHIPEL] Change connector fields that are currently implemented as required in the code to optional … implemented as required in the code to optional ## Type of Change <!-- Put an `x` in the boxes that apply --> - [X] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Depen...
<think> PR Context: - Title: fix(connector): [ARCHIPEL] Change connector fields that are currently implemented as required in the code to optional - Merged: 2025-06-17T09:29:52Z - Files changed: 1 files - Commits: 1 commits Implementation approach: … implemented as required in the code to optional (#8342) ## Descr...
{"issue_number": 8342, "pr_number": 8364, "commits_count": 1, "files_changed": 1, "response_length": 1080, "file_count": 3, "needs_breakdown": false}
docs(openapi): Show API version selection dropdown in API Reference Add a version selection dropdown in API reference to allow exploring v2 APIs
<think> PR Context: - Title: docs(openapi): Show API version selection dropdown in Mintlify - Merged: 2025-06-13T09:03:06Z - Files changed: 30 files - Commits: 7 commits Implementation approach: ## Description <!-- Describe your changes in detail --> - Moved both `v1` and `v2` API docs under `api-reference` directo...
{"issue_number": 8332, "pr_number": 8333, "commits_count": 1, "files_changed": 30, "response_length": 939, "file_count": 3, "needs_breakdown": false}
[FEATURE] VIPPS Payment (Norwegian) ### Feature Description Use vipps as payment. https://developer.vippsmobilepay.com/docs/recommended-flows/online/ ### Possible Implementation User can choose Vipps as payment and will be able to pay with this ### Have you spent some time checking if this feature request has bee...
<think> PR Context: - Title: feat(router): add incoming header request logs - Merged: 2024-03-05T09:43:48Z - Files changed: 9 files - Commits: 10 commits Implementation approach: ## Description <!-- Describe your changes in detail --> added incoming header request logs ### Additional Changes - [ ] This PR mod...
{"issue_number": 4182, "pr_number": 3939, "commits_count": 1, "files_changed": 9, "response_length": 1077, "file_count": 5, "needs_breakdown": false}
[REFACTOR] accept customer details in customer object Currently, for a payment, the `CustomerDetails` such as email, phone, name are accepted in the `PaymentsRequest` struct https://github.com/juspay/hyperswitch/blob/795500797d1061630b5ca493187a4e19d98d26c0/crates/api_models/src/payments.rs#L59 It is not clear th...
<think> PR Context: - Title: refactor(core): accept customer data in customer object - Merged: 2023-06-16T13:53:15Z - Files changed: 11 files - Commits: 8 commits Implementation approach: ## Description <!-- Describe your changes in detail --> This PR will support sending the customer details in the `customers` obj...
{"issue_number": 1446, "pr_number": 1447, "commits_count": 1, "files_changed": 11, "response_length": 2093, "file_count": 13, "needs_breakdown": false}
Use `Self` instead of type names in `impl` blocks Set up `clippy` to warn on [`clippy::use_self`](https://rust-lang.github.io/rust-clippy/master/#use_self) and address the lints thrown. (Originated from https://github.com/juspay/orca/pull/190#discussion_r1054060076)
<think> PR Context: - Title: chore(router): clippy::use_self - Merged: 2022-12-22T05:50:54Z - Files changed: 28 files - Commits: 2 commits Implementation approach: ## Description use Self alias wherever necessary to avoid repetition ## Motivation and Context This PR closes #193 ## Checklist - [x] I forma...
{"issue_number": 193, "pr_number": 203, "commits_count": 1, "files_changed": 28, "response_length": 2696, "file_count": 30, "needs_breakdown": true}
refactor(connector): [Gocardless] Mask PII data ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> Mask pii info...
<think> PR Context: - Title: refactor: [Noon] adding new field max_amount to mandate request - Merged: 2024-01-17T12:06:24Z - Files changed: 1 files - Commits: 10 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Resolves [#3844](https://github.com/juspay/hyperswitch-cloud/is...
{"issue_number": 3844, "pr_number": 3209, "commits_count": 1, "files_changed": 1, "response_length": 992, "file_count": 3, "needs_breakdown": false}
refactor(connector): remove `peek()` on PII info ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [X] Refactoring - [ ] Dependency updates ## Description <!-- Describe your changes in detail --> Closes #308 ### Additional Changes - [ ]...
<think> PR Context: - Title: Changelog for release V0.4.0 - Merged: 2023-03-05T12:57:59Z - Files changed: 1 files - Commits: 3 commits Implementation approach: # 0.3.0 (2023-03-05) ## Chores * **connectors:** log connector request and response at debug level (#624) (6a487b19) ## Continuous Integration * **w...
{"issue_number": 642, "pr_number": 715, "commits_count": 0, "files_changed": 1, "response_length": 758, "file_count": 5, "needs_breakdown": false}
Nix Support Nix support for orca: - Dev shell to include all the required tools, setup - Build with nix flakes - CI/CD with nix flakes
<think> PR Context: - Title: feat(nix): add support for running external services through services-flake - Merged: 2024-11-05T14:07:43Z - Files changed: 4 files - Commits: 7 commits Implementation approach: ## Description Described in #57 ### Additional Changes - [ ] This PR modifies the API contract - [ ] T...
{"issue_number": 57, "pr_number": 6377, "commits_count": 0, "files_changed": 4, "response_length": 805, "file_count": 0, "needs_breakdown": false}
fix(connector): Use `ConnectorError::InvalidConnectorConfig` for an invalid `CoinbaseConnectorMeta` ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!--...
<think> PR Context: - Title: chore: nits and small code improvements found during investigation of PR#3168 - Merged: 2024-01-10T11:44:19Z - Files changed: 4 files - Commits: 1 commits Implementation approach: ## Description <!-- Describe your changes in detail --> While addressing [PR#3168](https://github.com/jus...
{"issue_number": 3168, "pr_number": 3259, "commits_count": 1, "files_changed": 4, "response_length": 1202, "file_count": 6, "needs_breakdown": false}
feat: Create a decision starter API for email flows As we have split the API flows, there is no API to trigger the email specific flows like Verify email, Accept invite from email, etc... For this API to work correctly, email token should have the information about the origin.
<think> PR Context: - Title: feat: Add decision starter API for email flows - Merged: 2024-05-06T07:23:35Z - Files changed: 10 files - Commits: 10 commits Implementation approach: ## Description <!-- Describe your changes in detail --> - Create a new API `from_email` which will take email token and give the token f...
{"issue_number": 4532, "pr_number": 4533, "commits_count": 1, "files_changed": 10, "response_length": 1584, "file_count": 11, "needs_breakdown": false}
[FEATURE]: [Fiserv] Currency Unit Conversion ### :memo: Feature Description - Each currency can be described in terms of base or minor units. - For instance, when dealing with USD currency, the Cent is considered as the minor unit, while the Dollar is considered the base unit. - In Hyperswitch, the amount value is ...
<think> PR Context: - Title: feat(connector): [Fiserv] Currency Unit Conversion - Merged: 2023-11-05T11:11:46Z - Files changed: 2 files - Commits: 9 commits Implementation approach: ## Description - Addressing Issue: #2225 - Modified two files in `hyperswitch/crates/router/src/connector/` - `fiserv.rs` - I...
{"issue_number": 2225, "pr_number": 2715, "commits_count": 1, "files_changed": 2, "response_length": 1243, "file_count": 4, "needs_breakdown": false}
chore(codeowners): add codeowners data for PR reviews ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [ ] Refactoring - [ ] Dependency updates ## Description Adding a CODEOWNERS file for facilitating PR reviews for teams ### Additional...
<think> PR Context: - Title: refactor(router): enable saved payment method for payment link bug fix - Merged: 2024-04-23T10:23:32Z - Files changed: 2 files - Commits: 1 commits Implementation approach: ## Description <!-- Describe your changes in detail --> list saved payment method customer is not working for pa...
{"issue_number": 1, "pr_number": 4435, "commits_count": 1, "files_changed": 2, "response_length": 975, "file_count": 3, "needs_breakdown": false}
[REFACTOR] : [Noon] Error Message For Connector Implementation ### :memo: Feature Description - In terms of errors, we are currently throwing a 'not supported' message, which shouldn't be the case as we are yet to decide on the implementation. ### :hammer: Possible Implementation - In order to manage paymen...
<think> PR Context: - Title: refactor(connector): [Noon] change error message from not supported to not implemented - Merged: 2024-02-02T08:00:07Z - Files changed: 1 files - Commits: 4 commits Implementation approach: ## Description <!-- Describe your changes in detail --> ### Additional Changes - [ ] This P...
{"issue_number": 2844, "pr_number": 2849, "commits_count": 1, "files_changed": 1, "response_length": 1014, "file_count": 3, "needs_breakdown": false}
feat(connector): [ACI] Currency Unit Conversion ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> ### Additi...
<think> PR Context: - Title: feat(connector): [ProphetPay] Template generation - Merged: 2023-10-19T08:02:13Z - Files changed: 16 files - Commits: 4 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Default connector template for prophetpay ### Additional Changes - [ ] T...
{"issue_number": 2750, "pr_number": 2610, "commits_count": 1, "files_changed": 16, "response_length": 8844, "file_count": 12, "needs_breakdown": true}
Get Plan prices **Request to Subscription Povider to get plans prices** api/v2/item_prices?item_id[is]=cbdemo_enterprise-suite' **Response from Subscription Provider** ``` { "list": [ { "item_price": { "id": "cbdemo_enterprise-suite-INR-Daily", "name": "Enterpri...
<think> PR Context: - Title: feat(connector): Add support for get plan prices for Chargebee - Merged: 2025-09-19T08:20:28Z - Files changed: 16 files - Commits: 25 commits Implementation approach: ## Description <!-- Describe your changes in detail --> This PR integrates the get plan prices endpoint for chargebee, r...
{"issue_number": 9054, "pr_number": 9300, "commits_count": 1, "files_changed": 16, "response_length": 4657, "file_count": 18, "needs_breakdown": true}
feat(themes): Setup DB for themes There should a separate table for themes for storing the `theme_id`s for a particular lineage. This should be the schema: | org_id | merchant_id | profile_id | theme_id | | ------ | ----------- | ---------- | -------- | | o1 | m1 | p1 | t1 | | o1 |...
<think> PR Context: - Title: feat(themes): Setup themes table - Merged: 2024-11-14T09:16:40Z - Files changed: 15 files - Commits: 5 commits Implementation approach: ## Description <!-- Describe your changes in detail --> This PR creates a new table named `themes` in the DB. This will be used to store the `theme_id`...
{"issue_number": 6532, "pr_number": 6533, "commits_count": 1, "files_changed": 15, "response_length": 2537, "file_count": 15, "needs_breakdown": false}
fix(list): improve querying time for payments list Quick Fix. Currently payment list is giving intermittent 5xx. After analyzing logs we got to knwo that it is happening for the count query That query need to be called always and we can skip this in most of the cases. Also add the logs around count. This can be a te...
<think> PR Context: - Title: fix(payments_list): skip count query if no filters and add logging - Merged: 2024-10-17T10:51:43Z - Files changed: 9 files - Commits: 7 commits Implementation approach: ## Description - Skip count query if no filters are applied for attempts, in this we don't need to filter attempts as c...
{"issue_number": 6330, "pr_number": 6331, "commits_count": 1, "files_changed": 9, "response_length": 1613, "file_count": 11, "needs_breakdown": false}
fix(user): use mget to check in blocklist ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description Use MGet to check whether role or user is blacklisted in KV. I...
<think> PR Context: - Title: fix(redis_interface): remove mget function from redis interface - Merged: 2024-04-05T12:22:15Z - Files changed: 1 files - Commits: 2 commits Implementation approach: ## Description Getting multiple values from Redis at one time was working fine in local environment but was failing when d...
{"issue_number": 3945, "pr_number": 4303, "commits_count": 1, "files_changed": 1, "response_length": 1062, "file_count": 3, "needs_breakdown": false}
Adding events for Payment Reject Created from #4525 This covers adding events for Payment Reject operation This event should include the payment data similar to [PaymentCancel](https://github.com/juspay/hyperswitch/pull/4166) It should also include any metadata for the event e.g reason for payment rejecti...
<think> PR Context: - Title: feat(events): Add payment reject audit events - Merged: 2024-11-12T07:18:54Z - Files changed: 2 files - Commits: 3 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Pass along request_state to payment_core Modify the UpdateTracker trait to accept ...
{"issue_number": 4669, "pr_number": 6465, "commits_count": 1, "files_changed": 2, "response_length": 1054, "file_count": 4, "needs_breakdown": false}
[BUG] : `connector_name` in `MerchantConnectorCreate` accepts any value ### Bug Description When creating a merchant connector account, the `connector_name` field is of string type. This would mean that any value can be passed to that field. There is no check done to validate whether the connector name given, is actu...
<think> PR Context: - Title: fix(router): use `Connector` enum for `connector_name` field in `MerchantConnectorCreate` - Merged: 2023-07-07T13:29:34Z - Files changed: 3 files - Commits: 6 commits Implementation approach: ## Description When creating a merchant connector account, the connector_name field is of string...
{"issue_number": 1023, "pr_number": 1637, "commits_count": 1, "files_changed": 3, "response_length": 1056, "file_count": 4, "needs_breakdown": false}
ci: run cybersource along with stripe ci: run cybersource along with stripe
<think> PR Context: - Title: ci: introduce `cybersource` cypress test to run in parallel - Merged: 2024-11-14T11:52:04Z - Files changed: 1 files - Commits: 1 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Run Cybersource in parallel along with Stripe. closes #6542 #...
{"issue_number": 6542, "pr_number": 6541, "commits_count": 0, "files_changed": 1, "response_length": 789, "file_count": 0, "needs_breakdown": false}
feat(test_utils): Add custom-headers and custom delay support to rustman ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] New feature - [x] Documentation - [x] CI/CD ## Description <!-- Describe your changes in detail --> Closes #2646 This PR as usual, narrows the main aim of rustman by...
<think> PR Context: - Title: feat(connector): [Multisafepay] add error handling - Merged: 2023-11-02T07:35:55Z - Files changed: 11 files - Commits: 13 commits Implementation approach: ### Description - Resolves [#2636](https://github.com/juspay/hyperswitch-cloud/issues/2636) ### Additional Changes - [ ] This ...
{"issue_number": 2636, "pr_number": 2595, "commits_count": 2, "files_changed": 11, "response_length": 1403, "file_count": 7, "needs_breakdown": false}
feat(user_roles): support tenant_id reads For tenancy support tenant_id in user roles queries - Adding tenant id to reads, deletes and updates queries.
<think> PR Context: - Title: feat(users): add tenant id reads in user roles - Merged: 2024-11-29T10:54:00Z - Files changed: 9 files - Commits: 8 commits Implementation approach: ## Description Support tenant id in user roles queries. ### Additional Changes - [ ] This PR modifies the API contract - [ ] This P...
{"issue_number": 6660, "pr_number": 6661, "commits_count": 1, "files_changed": 9, "response_length": 1609, "file_count": 11, "needs_breakdown": false}
[FEATURE]: [BitPay] Currency Unit Conversion ### :memo: Feature Description - Each currency can be described in terms of base or minor units. - For instance, when dealing with USD currency, the Cent is considered as the minor unit, while the Dollar is considered the base unit. - In Hyperswitch, the amount value is ...
<think> PR Context: - Title: feat(connector): [BitPay] Currency Unit Conversion - Merged: 2023-10-31T14:16:55Z - Files changed: 2 files - Commits: 10 commits Implementation approach: ## Description <!-- Describe your changes in detail --> ### Additional Changes - [ ] This PR modifies the API contract - [ ] ...
{"issue_number": 2220, "pr_number": 2736, "commits_count": 2, "files_changed": 2, "response_length": 1720, "file_count": 7, "needs_breakdown": false}
[FEATURE] replace manual implementation using `from_str` function of strum ### Feature Description In the `convert_connector` function the manual implementation of converting the connector from string can be replaced using the `from_str` function provided by `strum` ### Possible Implementation Use `from_str` funct...
<think> PR Context: - Title: refactor: use `strum::EnumString` implementation for connector name conversions - Merged: 2023-05-19T13:10:14Z - Files changed: 5 files - Commits: 30 commits Implementation approach: ## Description <!-- Describe your changes in detail --> - fixes #1042 - added test cases for type conv...
{"issue_number": 1042, "pr_number": 1052, "commits_count": 1, "files_changed": 5, "response_length": 1265, "file_count": 7, "needs_breakdown": false}
docs: Adding Unified error codes to the API - Ref Adding Unified error codes to the API - Ref
<think> PR Context: - Title: docs(error_codes): add unified error codes - Merged: 2024-10-15T14:02:06Z - Files changed: 1 files - Commits: 2 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Helps closing - #6318 ### Additional Changes - [ ] This PR modifies the API con...
{"issue_number": 6318, "pr_number": 6319, "commits_count": 0, "files_changed": 1, "response_length": 772, "file_count": 0, "needs_breakdown": false}
Required fields absent in PML in case of Gift Card for OnSession (v2) In case of `Adyen` connector and `Givex` payment method subtype, required fields are absent in PML output when `setup_future_usage` is `OnSession` Need to move givex required fields to common in the required fields TOML
<think> PR Context: - Title: fix(config): Set common required fields for Givex (v2) - Merged: 2025-09-18T08:51:00Z - Files changed: 1 files - Commits: 1 commits Implementation approach: ## Description <!-- Describe your changes in detail --> - Moved required fields for `givex` gift card for `Adyen` from `non-mandat...
{"issue_number": 9413, "pr_number": 9414, "commits_count": 0, "files_changed": 1, "response_length": 784, "file_count": 0, "needs_breakdown": false}
Updating logo in API ref
<think> PR Context: - Title: docs: Updating logo for Api ref - Merged: 2024-12-05T11:09:38Z - Files changed: 4 files - Commits: 24 commits Implementation approach: ## Description <!-- Describe your changes in detail --> ### Additional Changes - [X] This PR modifies the API contract - [ ] This PR modifies th...
{"issue_number": 6742, "pr_number": 6741, "commits_count": 0, "files_changed": 4, "response_length": 762, "file_count": 0, "needs_breakdown": false}
[FEAT] [CONNECTOR: NORDEA] Implement SEPA Bank Debit ## Relevant Docs - [Access Authorization API](https://developer.nordeaopenbanking.com/documentation?api=Access%20Authorization%20API) (To get Access Token) - [Payments API SEPA Credit Transfer](https://developer.nordeaopenbanking.com/documentation?api=Payments%20A...
<think> PR Context: - Title: feat(core/connector): introduce authentication token flow and add sepa bankdebit for nordea - Merged: 2025-08-11T07:26:26Z - Files changed: 30 files - Commits: 30 commits Implementation approach: ## Description <!-- Describe your changes in detail --> ### Summary This PR introduces...
{"issue_number": 8134, "pr_number": 8133, "commits_count": 1, "files_changed": 30, "response_length": 9320, "file_count": 51, "needs_breakdown": true}
feat(router): Make `payment_method_subtype` optional We can have situations where we don't know the `payment_method_subtype`. e.g. Frontend doesn't know whether a `card` is `credit` or `debit`. To support such scenarios we need to make `payment_method_subtype` nullable
<think> PR Context: - Title: feat(router): Make payment_method_subtype optional in payment_attempt [V2] - Merged: 2025-03-24T07:53:07Z - Files changed: 16 files - Commits: 3 commits Implementation approach: ## Description <!-- Describe your changes in detail --> - Added diesel migration to make `payment_method_subt...
{"issue_number": 7567, "pr_number": 7568, "commits_count": 1, "files_changed": 16, "response_length": 1885, "file_count": 15, "needs_breakdown": false}
fix(connector): [Trustpay] fix deserialization error for incoming webhook response for trustpay and add error code mapping '800.100.203' ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation...
<think> PR Context: - Title: fix(connector): [Trustpay] fix deserialization error for incoming webhook response for trustpay and add error code mapping '800.100.203' - Merged: 2024-03-27T09:09:21Z - Files changed: 2 files - Commits: 2 commits Implementation approach: ## Description <!-- Describe your changes in deta...
{"issue_number": 4199, "pr_number": 4225, "commits_count": 1, "files_changed": 2, "response_length": 1136, "file_count": 4, "needs_breakdown": false}
refactor(customers_v2): address panics and some bugs in customers v2 endpoints ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your change...
<think> PR Context: - Title: refactor(customers_v2): include minor fixes for customer v2 flows - Merged: 2024-12-20T08:30:05Z - Files changed: 5 files - Commits: 4 commits Implementation approach: ## Description <!-- Describe your changes in detail --> This PR includes minor fixes suggested in my previous PR #683...
{"issue_number": 6836, "pr_number": 6876, "commits_count": 1, "files_changed": 5, "response_length": 1160, "file_count": 6, "needs_breakdown": false}
feat(connector): Add recovery support for stripebilling ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [x] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description Context: In case of some billing connectors we d...
<think> PR Context: - Title: feat(connector): [stripebilling] consume necessary fields in stripe billing from webhooks for transaction monitoring support - Merged: 2025-05-06T07:36:19Z - Files changed: 1 files - Commits: 30 commits Implementation approach: ## Description Consuming the following fields in the webhook...
{"issue_number": 7461, "pr_number": 7722, "commits_count": 1, "files_changed": 1, "response_length": 1430, "file_count": 3, "needs_breakdown": false}
feat: add groups for get_role_from_token api
<think> PR Context: - Title: feat(roles): Add groups for `get_from_token` api - Merged: 2024-02-29T10:23:28Z - Files changed: 4 files - Commits: 2 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Get role from token will respond with groups if asked. ### Additional Changes...
{"issue_number": 3871, "pr_number": 3872, "commits_count": 1, "files_changed": 4, "response_length": 1196, "file_count": 6, "needs_breakdown": false}
[REFACTOR]: [Tsys] Remove Default Case Handling ### :memo: Feature Description - We utilize match statements to make pivotal decisions, such as generating requests based on the payment method type and managing responses received from the connector. - These conditions generally go hand in hand with enum variants. - ...
<think> PR Context: - Title: refactor(router): tsys default case handling - Merged: 2023-10-25T18:25:59Z - Files changed: 1 files - Commits: 2 commits Implementation approach: ## Description <!-- https://github.com/juspay/hyperswitch/issues/2288 --> Resolves: #2288 ### Additional Changes - [ ] This PR modifi...
{"issue_number": 2288, "pr_number": 2672, "commits_count": 1, "files_changed": 1, "response_length": 924, "file_count": 3, "needs_breakdown": false}
[FEATURE] Add x-mcp extension to OpenAPI schema Mintlify supports extracting API endpoints from openAPI json into MCP servers: https://mintlify.com/docs/mcp We need to add: ```json "x-mcp": { "enabled": true }, ``` at the top level of our OpenAPI schema to enable this functionality
<think> PR Context: - Title: feat(openapi): Add x-mcp extension to v1 spec - Merged: 2025-06-27T08:52:30Z - Files changed: 4 files - Commits: 5 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Modified `openapi/src/main.rs` to append `x-mcp` extension to v1 OpenAPI schema ...
{"issue_number": 8442, "pr_number": 8443, "commits_count": 1, "files_changed": 4, "response_length": 951, "file_count": 3, "needs_breakdown": false}
remove mandates from nmi collection and fix assertions in paypal remove mandates from nmi collection and fix assertions in paypal
<think> PR Context: - Title: ci(postman): fix nmi and paypal collection - Merged: 2024-03-21T08:14:43Z - Files changed: 30 files - Commits: 1 commits Implementation approach: ## Description <!-- Describe your changes in detail --> touched 2 collections namely, NMI and PayPal: - fixed assertion in PayPal which ...
{"issue_number": 4127, "pr_number": 4129, "commits_count": 0, "files_changed": 30, "response_length": 773, "file_count": 0, "needs_breakdown": false}
[FEATURE] add support for filtering in `payments_session` ### Feature Description After supporting multiple connector accounts through `business_label` , `business_country` and `business_sub_label`, PaymentsSession flow ( creating session tokens - wallets ) should filter based on this. ### Possible Implementation A...
<think> PR Context: - Title: refactor(session_token): add support for business filtering in payments session - Merged: 2023-05-11T15:34:49Z - Files changed: 13 files - Commits: 7 commits Implementation approach: ## Description <!-- Describe your changes in detail --> - This PR refactors the get connector function o...
{"issue_number": 1091, "pr_number": 1128, "commits_count": 1, "files_changed": 13, "response_length": 2086, "file_count": 15, "needs_breakdown": false}
fix: populate merchant connector id and profile id in payments list Currently in payments list response, merchant connector id and profile id is not getting populated for payments list response, though the value is present in db.
<think> PR Context: - Title: fix(payments): populate merchant connector id and profile id in list - Merged: 2024-03-18T06:57:12Z - Files changed: 1 files - Commits: 2 commits Implementation approach: ## Description `Profile_id` and `merchant_connector_id` is to be populated for payments list response. ### Additio...
{"issue_number": 4103, "pr_number": 4104, "commits_count": 1, "files_changed": 1, "response_length": 971, "file_count": 3, "needs_breakdown": false}
refactor(drainer, router): KMS decrypt database password when `kms` feature is enabled ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates ## Description <!-- Describe your changes in detail --> This PR e...
<think> PR Context: - Title: refactor: extract kms module to `external_services` crate - Merged: 2023-03-24T09:12:47Z - Files changed: 15 files - Commits: 4 commits Implementation approach: ## Description <!-- Describe your changes in detail --> This PR extracts the `kms` module in the `router` crate to a new crate...
{"issue_number": 733, "pr_number": 793, "commits_count": 1, "files_changed": 15, "response_length": 1641, "file_count": 12, "needs_breakdown": false}
[FEATURE] : Add `WASM` support for `endpoint_prefix` in dashboard ### Feature Description Add WASM configs for dashboard to take `endpoint_prefix` as input for Adyen Connector Create. ### Possible Implementation Add WASM configs for dashboard to take `endpoint_prefix` as input for Adyen Connector Create. ### Have ...
<think> PR Context: - Title: fix(wasm): [Adyen] update connector account configs and integration bugs - Merged: 2024-03-01T12:34:05Z - Files changed: 10 files - Commits: 2 commits Implementation approach: ## Description <!-- Describe your changes in detail --> - Update Connector Account configs for WASM build - Up...
{"issue_number": 3911, "pr_number": 3910, "commits_count": 1, "files_changed": 10, "response_length": 1429, "file_count": 9, "needs_breakdown": false}
[FEATURE]: [Authorizedotnet] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a sin...
<think> PR Context: - Title: feat(connector): [Authorizedotnet] use connector_response_reference_id as reference to merchant - Merged: 2023-10-11T11:04:07Z - Files changed: 1 files - Commits: 1 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Implement `connector_response_ref...
{"issue_number": 2323, "pr_number": 2497, "commits_count": 1, "files_changed": 1, "response_length": 1034, "file_count": 3, "needs_breakdown": false}
fix(router_env): fix opentelemetry traces for router_env ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [x] Enhancement - [ ] Refactoring - [ ] Dependency updates ## Description <!-- Describe your changes in detail --> - Add back the git specific dependenc...
<think> PR Context: - Title: fix: fixing tempo & histogram without using custom dependencies - Merged: 2023-01-06T08:07:49Z - Files changed: 5 files - Commits: 1 commits Implementation approach: ## Description INFO: Raising with with base set to `fix_traces`, while merging please change the base to `main` This ...
{"issue_number": 201, "pr_number": 302, "commits_count": 0, "files_changed": 5, "response_length": 793, "file_count": 0, "needs_breakdown": false}
[REFACTOR] Refactor process tracker (scheduler) code to increase code reusability and improve logging ### Description 1. The process tracker (scheduler) code includes some amount of repetitive code, which can be extracted out to functions with suitable parameters to accommodate all usages. One such instance is the ...
<think> PR Context: - Title: refactor(scheduler): improve code reusability and consumer logs - Merged: 2024-02-21T12:37:03Z - Files changed: 17 files - Commits: 16 commits Implementation approach: ## Description <!-- Describe your changes in detail --> This PR contains changes to address the problems listed in #371...
{"issue_number": 3711, "pr_number": 3712, "commits_count": 1, "files_changed": 17, "response_length": 2841, "file_count": 19, "needs_breakdown": true}
[FEATURE] Use empty enums instead of unit structs for PII masking strategies ### Feature Description Currently, we make use of unit structs that implement the `masking::Strategy<T>` trait to represent PII masking strategies. We would like to replace these with empty enums instead (So `struct MyStrategy;` becomes `e...
<think> PR Context: - Title: refactor(masking): use empty enums as masking:Strategy<T> types - Merged: 2023-11-28T08:12:44Z - Files changed: 4 files - Commits: 2 commits Implementation approach: as per #1973 ## Description Use empty enums as strategy type parameter, instead of unit structs, to prevent instantiati...
{"issue_number": 1973, "pr_number": 2874, "commits_count": 1, "files_changed": 4, "response_length": 1701, "file_count": 6, "needs_breakdown": false}
fix(router): change the retrieve's payload to query ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [ ] Refactoring - [ ] Dependency updates ## Description Change the deserialisation method from Json to Query in the payments retrieve function...
<think> PR Context: - Title: fix(core): fix merchant connector account create for v2 - Merged: 2024-08-28T07:56:03Z - Files changed: 1 files - Commits: 2 commits Implementation approach: ## Description fix merchant connector account create for v2 , by handling the case where defaull fallback is null ,while updatin...
{"issue_number": 2, "pr_number": 5716, "commits_count": 1, "files_changed": 1, "response_length": 931, "file_count": 3, "needs_breakdown": false}
doc: add `React demo` app link ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [ ] Refactoring - [ ] Dependency updates ## Description Add new quick start option for trying out hyperswitch, with `React Demo App` <!-- Describe your changes ...
<think> PR Context: - Title: docs: fix quick start guide and update dashboard link - Merged: 2023-01-22T18:46:24Z - Files changed: 5 files - Commits: 3 commits Implementation approach: ## Description <!-- Describe your changes in detail --> - Make the option to three ( it was not updated in this PR #452 ) - Replac...
{"issue_number": 452, "pr_number": 454, "commits_count": 1, "files_changed": 5, "response_length": 921, "file_count": 3, "needs_breakdown": false}
feat: get new filters for payments Currently, /filter api for payments takes times to get list of all available filters, moreover it is dependent on time range. Need to extract all the available filters in less time, and these filters should not be dependent on time range.
<think> PR Context: - Title: feat(payments): get new filters for payments list - Merged: 2024-04-16T10:15:37Z - Files changed: 10 files - Commits: 14 commits Implementation approach: ## Description The api is used to get all the available filters that can be applied on payments list. This is filter_v2 api that perfo...
{"issue_number": 4173, "pr_number": 4174, "commits_count": 1, "files_changed": 10, "response_length": 1725, "file_count": 12, "needs_breakdown": false}
feat(users): Send welcome to community email in magic link signup Send [this](https://www.figma.com/design/lhmTvW2vuc2p5B4ZvsEOTw/Email-Tempalte-Design?node-id=0-1&t=OKWmXqVOsidKUk7y-1) email when user signs up with magic link.
<think> PR Context: - Title: feat(users): Send welcome to community email in magic link signup - Merged: 2024-11-26T09:10:41Z - Files changed: 4 files - Commits: 4 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Magic link will send one more email along with magic link email...
{"issue_number": 6638, "pr_number": 6639, "commits_count": 1, "files_changed": 4, "response_length": 1222, "file_count": 5, "needs_breakdown": false}
Removing mailhog container from the docker setup Removing mailhog container from the docker setup
<think> PR Context: - Title: fix: fixes the docker setup to clean up the scarf data - Merged: 2025-05-12T16:21:53Z - Files changed: 6 files - Commits: 12 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Corrected the docker setup, for demo app, control-center, and removed m...
{"issue_number": 7962, "pr_number": 7963, "commits_count": 0, "files_changed": 6, "response_length": 785, "file_count": 0, "needs_breakdown": false}
[FEATURE] add tests for stripe connector ### Feature Description As part of adding unit tests to existing connectors we are adding test for stripe ### Possible Implementation add a test file for stripe connector in the crates/router/tests folder ### Have you spent some time to check if this feature request has bee...
<think> PR Context: - Title: test(stripe): add unit tests for stripe connector - Merged: 2023-01-30T09:59:28Z - Files changed: 4 files - Commits: 8 commits Implementation approach: ## Description <!-- Describe your changes in detail --> This PR adds tests for stripe connector. ### Additional Changes - [ ] Thi...
{"issue_number": 468, "pr_number": 473, "commits_count": 1, "files_changed": 4, "response_length": 3021, "file_count": 6, "needs_breakdown": false}
feat(users): add schema and apis for org authentication methods Setup table and end points for org authentication methods - This will be used to support SSO login - Orgs can also setup multiple other authentication methods
<think> PR Context: - Title: feat(users): setup user authentication methods schema and apis - Merged: 2024-06-21T11:14:39Z - Files changed: 29 files - Commits: 25 commits Implementation approach: ## Description The PR: - Sets up schema for user authentication methods - adds queries to interact with schema - adds ...
{"issue_number": 4998, "pr_number": 4999, "commits_count": 1, "files_changed": 29, "response_length": 5126, "file_count": 25, "needs_breakdown": true}
[REFACTOR]: [CYBERSOURCE] Add amount conversion framework to Cybersource ### :memo: Feature Description Currently, amounts are represented as `i64` values throughout the application. We want to introduce a `Unit` struct that explicitly states the denomination. A new type, `MinorUnit`, has been added to standardize ...
<think> PR Context: - Title: refactor(connector): add amount conversion framework to cybersource - Merged: 2024-12-04T11:00:45Z - Files changed: 5 files - Commits: 7 commits Implementation approach: ## Description <!-- Describe your changes in detail --> added StringMajorUnit for amount conversion ### Additional...
{"issue_number": 5942, "pr_number": 6335, "commits_count": 1, "files_changed": 5, "response_length": 1377, "file_count": 7, "needs_breakdown": false}
[CHORE] update Cypress creds update cypress creds. wise failing
<think> PR Context: - Title: chore: update creds - Merged: 2025-01-17T10:37:04Z - Files changed: 1 files - Commits: 1 commits Implementation approach: ## Description <!-- Describe your changes in detail --> updates wise creds ### Additional Changes - [ ] This PR modifies the API contract - [ ] This PR modi...
{"issue_number": 7053, "pr_number": 7054, "commits_count": 0, "files_changed": 1, "response_length": 749, "file_count": 0, "needs_breakdown": false}
fix(api_locking): fix the unit interpretation for `LockSettings` expiry ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description Currently, due to variable sha...
<think> PR Context: - Title: fix(api_locking): fix the seconds and millis mismatch while fetching configuration - Merged: 2023-12-13T06:13:44Z - Files changed: 1 files - Commits: 1 commits Implementation approach: ## Description Clones #3121 <!-- Describe your changes in detail --> ### Additional Change...
{"issue_number": 3121, "pr_number": 3122, "commits_count": 1, "files_changed": 1, "response_length": 989, "file_count": 3, "needs_breakdown": false}
feat(verify): add new types for validate API ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates ## Description This part of series of PR's which are aimed at adding ValidateAPI in the core. This PR specif...
<think> PR Context: - Title: feat(stripe): add setup intent in connector integration (stripe) - Merged: 2022-12-07T06:29:41Z - Files changed: 15 files - Commits: 10 commits Implementation approach: ## Description This PR adds a stripe POC for the verify API <!-- Describe your changes in detail --> ### Addition...
{"issue_number": 45, "pr_number": 50, "commits_count": 1, "files_changed": 15, "response_length": 4431, "file_count": 17, "needs_breakdown": true}
bug(events): update the ApiEventsType for `PaymentsSessionResponse` to use payments flow update the `ApiEventMetric` trait for this response to return `ApiEventsType::Payment { payment_id : String}` variant. based on the payment id stored in its body This would help for better structuring and help list this api ca...
<think> PR Context: - Title: fix(event): Updated the ApiEventMetric - Merged: 2024-07-02T15:18:04Z - Files changed: 2 files - Commits: 13 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Updated the `ApiEventMetric` trait to return `ApiEventsType::Payment { payment_id : Strin...
{"issue_number": 5059, "pr_number": 5126, "commits_count": 1, "files_changed": 2, "response_length": 1106, "file_count": 4, "needs_breakdown": false}
Docs: Adding More descriptive details in the Payouts module We have received feedback about the Payout Module in API ref lacking in description of the various fields.
<think> PR Context: - Title: Docs: API-Ref changes for Payouts - Merged: 2024-07-31T07:33:43Z - Files changed: 5 files - Commits: 15 commits Implementation approach: ## Description <!-- Describe your changes in detail --> ### Additional Changes - [ ] This PR modifies the API contract - [ ] This PR modifies ...
{"issue_number": 5235, "pr_number": 5236, "commits_count": 1, "files_changed": 5, "response_length": 1130, "file_count": 6, "needs_breakdown": false}
feat(connector): add template code for stripebilling add a template code for stripe billing connector
<think> PR Context: - Title: feat(connector): add template code for stripebilling - Merged: 2025-03-03T10:35:30Z - Files changed: 24 files - Commits: 12 commits Implementation approach: ## Description connector integration template code for stripe billing. Issue: This PR closes the issue #7212 ### Additiona...
{"issue_number": 7212, "pr_number": 7228, "commits_count": 1, "files_changed": 24, "response_length": 9132, "file_count": 17, "needs_breakdown": true}
feat: new apis for accept invite and list merchant - new JWT auth based api for accept invite api - new SPT auth based api for list merchants - send accept invite from email instead of reset password for newly invited users
<think> PR Context: - Title: feat(users): new routes to accept invite and list merchants - Merged: 2024-05-09T13:24:15Z - Files changed: 10 files - Commits: 11 commits Implementation approach: ## Description This PR: - adds new route to accept invite from dashboard with JWT Auth - adds new routes to get list of me...
{"issue_number": 4590, "pr_number": 4591, "commits_count": 1, "files_changed": 10, "response_length": 2146, "file_count": 12, "needs_breakdown": false}
[BUG] incorrect mapping of connector customer ### Bug Description It bugs out when the merchant connector account credentials are changed, or when multiple connector accounts with the same name ( stripe, adyen ) are created in different countries or with different labels. When creating payment it will be using the...
<think> PR Context: - Title: refactor(connector_customer): incorrect mapping of connector customer - Merged: 2023-05-31T15:18:14Z - Files changed: 5 files - Commits: 12 commits Implementation approach: ## Description <!-- Describe your changes in detail --> This PR adds support for multiple country and business lab...
{"issue_number": 1229, "pr_number": 1275, "commits_count": 1, "files_changed": 5, "response_length": 1268, "file_count": 7, "needs_breakdown": false}
fix(api_models): `wasm` build problems caused by `actix-multipart` `wasm` build is failing because of adding `actix-multipart` dependency in `api-models`. As we cannot change any dependencies in `wasm`, we will have to make changes to `api_models` to fix this.
<think> PR Context: - Title: fix(api_models): Fix `wasm` build problems caused by `actix-multipart` - Merged: 2024-12-05T11:09:38Z - Files changed: 4 files - Commits: 4 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Wasm build is failing because of adding `actix-multipart` ...
{"issue_number": 6748, "pr_number": 6747, "commits_count": 1, "files_changed": 4, "response_length": 1022, "file_count": 4, "needs_breakdown": false}
fix: cover sso nitpicks and todo changes Nitpicks - change parsing login for configs - refactor terminate auth select - clear cookie in rotate and reset password
<think> PR Context: - Title: fix(users): clear cookie and alter parsing for sso - Merged: 2024-06-28T08:03:16Z - Files changed: 2 files - Commits: 5 commits Implementation approach: ## Description The PR - removes cookie after rotate password and reset password - refactor parsing for sso config, now it uses `serde...
{"issue_number": 5146, "pr_number": 5147, "commits_count": 1, "files_changed": 2, "response_length": 1110, "file_count": 4, "needs_breakdown": false}
fix(address): use first_name if last_name is not passed ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix ## Description <!-- Describe your changes in detail --> This PR fixes the issue which arises when creating a payement with cybersource and bank of america connectors where billing...
<think> PR Context: - Title: fix(address): use first_name if last_name is not passed - Merged: 2024-04-16T08:31:44Z - Files changed: 9 files - Commits: 1 commits Implementation approach: ## Description <!-- Describe your changes in detail --> More details can be found in #4360 ## Motivation and Context <!-- ...
{"issue_number": 4360, "pr_number": 4367, "commits_count": 1, "files_changed": 9, "response_length": 1579, "file_count": 11, "needs_breakdown": false}