prompt
stringlengths
24
63.1k
response
stringlengths
296
101k
metadata
stringlengths
143
152
[FEATURE] Implement `AddressInterface` for `MockDb` Spin out from #172. Please refer to that issue for more information.
<think> PR Context: - Title: feat(db): implement `AddressInterface` for `MockDb` - Merged: 2023-05-19T09:40:37Z - Files changed: 4 files - Commits: 6 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [ ] Refactoring ...
{"issue_number": 954, "pr_number": 968, "commits_count": 1, "files_changed": 4, "response_length": 1138, "file_count": 5, "needs_breakdown": false}
fix: impl `Drop` for `RedisConnectionPool` ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix ## Description <!-- Describe your changes in detail --> This fixes #1035 ## Motivation and Context <!-- Why is this change required? What problem does it solve? If it fixes an open issue,...
<think> PR Context: - Title: fix(redis): fix recreation on redis connection pool - Merged: 2023-05-08T09:01:49Z - Files changed: 7 files - Commits: 1 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring ...
{"issue_number": 1051, "pr_number": 1063, "commits_count": 1, "files_changed": 7, "response_length": 1431, "file_count": 8, "needs_breakdown": false}
fix(users): Only use lowercase letters in emails Currently uppercase letters in emails are being using at it is. Ideally we should convert them to lowercase before performing any DB operations with it.
<think> PR Context: - Title: feat(users): Convert emails to lowercase from requests - Merged: 2024-11-20T13:41:03Z - Files changed: 1 files - Commits: 2 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactori...
{"issue_number": 6600, "pr_number": 6601, "commits_count": 1, "files_changed": 1, "response_length": 934, "file_count": 3, "needs_breakdown": false}
bug(auth_methods): Create auth methods is allowing auth methods with same type to be inserted multiple times Currently create will accept and insert auth methods with same type and name, which shouldn't be possible. Create should have checks for this and block these kind of requests.
<think> PR Context: - Title: fix(auth_methods): Add checks for duplicate `auth_method` in create API - Merged: 2024-07-02T08:05:59Z - Files changed: 3 files - Commits: 6 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancement...
{"issue_number": 5160, "pr_number": 5161, "commits_count": 1, "files_changed": 3, "response_length": 1160, "file_count": 5, "needs_breakdown": false}
feat(core): Add kill switch for Unified Connector Service (UCS) # feat(core): Add kill switch for Unified Connector Service (UCS) ## Feature Description We need to implement a kill switch mechanism for the Unified Connector Service (UCS) integration that allows operators to disable UCS immediately without requiring ...
<think> PR Context: - Title: feat(core): Implement UCS kill switch for emergency fallback - Merged: 2025-07-22T09:00:55Z - Files changed: 4 files - Commits: 8 commits Implementation approach: # feat(core): Implement UCS enable/disable configuration for operational control ## Type of Change <!-- Put an `x` in the...
{"issue_number": 8644, "pr_number": 8651, "commits_count": 1, "files_changed": 4, "response_length": 1169, "file_count": 7, "needs_breakdown": false}
feat(users): Add entity type filter in list users and list roles API Currently list users and list roles API is sending all the users and roles respectively for those who are same entity level and less. We need to add filters in these APIs to send users and roles who are only at particular entity level.
<think> PR Context: - Title: feat(users): Add entity type filter in list users and list roles API - Merged: 2024-09-24T14:43:55Z - Files changed: 7 files - Commits: 5 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement -...
{"issue_number": 5996, "pr_number": 5997, "commits_count": 1, "files_changed": 7, "response_length": 1477, "file_count": 9, "needs_breakdown": false}
Use `frunk` deriving mechanisms to reduce boilerplate https://github.com/juspay/orca/blob/dddc9eaf1430adcd1293933e726c2f4f296c805b/crates/router/src/types/transformers.rs#L5-L14 Why not just use [frunk](https://crates.io/crates/frunk)? Here's an example: ```rust use frunk::LabelledGeneric; #[derive(Labelled...
<think> PR Context: - Title: refactor: use frunk deriving mechanisms to reduce boilerplate - Merged: 2022-12-14T10:17:06Z - Files changed: 9 files - Commits: 3 commits Implementation approach: ## Type of Change - [x] Refactoring ## Motivation and Context Closes #122 ## How did you test it? Manual, compiler-g...
{"issue_number": 122, "pr_number": 137, "commits_count": 1, "files_changed": 9, "response_length": 1011, "file_count": 7, "needs_breakdown": false}
Make KV storage flow more generic Model the KV storage flow as a series of common operations (For example, `set in redis -> get sql query -> push query to redis stream`) and define generic utilities that perform these operations for all KV-enabled storage interfaces (as opposed to rewriting code).
<think> PR Context: - Title: refactor: use generic function to push to drainer - Merged: 2023-02-06T11:48:28Z - Files changed: 4 files - Commits: 6 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Refactoring ## Description <!-- Describe your changes in detail ...
{"issue_number": 97, "pr_number": 496, "commits_count": 1, "files_changed": 4, "response_length": 1136, "file_count": 6, "needs_breakdown": false}
[BUG] Certificate decode failed when creating the session token for `applepay` ### Bug Description It bugs out when creating session token for `applepay` if the certificate provided is in the wrong format. ### Expected Behavior If the certificate provided is in the wrong format, then it should error out during crea...
<think> PR Context: - Title: fix: certificate decode failed when creating the session token for applepay - Merged: 2023-06-09T09:59:31Z - Files changed: 4 files - Commits: 3 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix ## Description <!-- Describe ...
{"issue_number": 1373, "pr_number": 1385, "commits_count": 1, "files_changed": 4, "response_length": 1284, "file_count": 6, "needs_breakdown": false}
[REFACTOR]: [Payme] 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): [Payme] Remove Default Case Handling - Merged: 2023-10-31T10:10:48Z - Files changed: 1 files - Commits: 1 commits Implementation approach: ## Type of Change - [x] Refactoring ## Description This PR removes the default case handling and adds error handling for ...
{"issue_number": 2282, "pr_number": 2719, "commits_count": 2, "files_changed": 1, "response_length": 1081, "file_count": 5, "needs_breakdown": false}
[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 support for mandates - Merged: 2024-11-08T13:37:39Z - Files changed: 9 files - Commits: 16 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [x] Enhancement - [ ] Refactorin...
{"issue_number": 6316, "pr_number": 6479, "commits_count": 1, "files_changed": 9, "response_length": 3943, "file_count": 11, "needs_breakdown": false}
[REFACTOR] Enable runtime flag for `s3` feature ### Feature Description Tracking issue for refactoring `s3` to include compile time + runtime time flag Current implementation - We are building 2 docker images, one image contains all the release features including `kms`, `s3`, etc and other without these feature...
<think> PR Context: - Title: refactor: add support for extending file storage to other schemes and provide a runtime flag for the same - Merged: 2024-01-30T08:03:41Z - Files changed: 18 files - Commits: 30 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix ...
{"issue_number": 3338, "pr_number": 3348, "commits_count": 1, "files_changed": 18, "response_length": 3622, "file_count": 13, "needs_breakdown": false}
feat(router): refactor PML response Remove duplicate responses and return bank_names
<think> PR Context: - Title: feat(router): Deduplicate PML response and populate bank details (V2) - Merged: 2025-07-14T12:45:04Z - Files changed: 6 files - Commits: 9 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement ...
{"issue_number": 8582, "pr_number": 8583, "commits_count": 1, "files_changed": 6, "response_length": 2358, "file_count": 7, "needs_breakdown": false}
[FEATURE] return all the `missing_fields` in a request ### Feature Description During address validation, It would be a good experience to have all the missing fields returned at once instead of making many requests to know the missing fields. Referring the discussion here https://github.com/juspay/hyperswitch/p...
<think> PR Context: - Title: refactor(stripe): return all the missing fields in a request - Merged: 2023-05-02T20:46:02Z - Files changed: 9 files - Commits: 25 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Re...
{"issue_number": 451, "pr_number": 935, "commits_count": 1, "files_changed": 9, "response_length": 1977, "file_count": 7, "needs_breakdown": false}
feat(core): implement `NameType` for name validation ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> for card ...
<think> PR Context: - Title: revert: implement `NameType` for name validation (#6734) - Merged: 2025-04-03T16:24:25Z - Files changed: 30 files - Commits: 3 commits Implementation approach: This reverts commit 1100dcc6053990cf832c00cf29db700d77f78480. ## Type of Change <!-- Put an `x` in the boxes that apply --> ...
{"issue_number": 6734, "pr_number": 7718, "commits_count": 0, "files_changed": 30, "response_length": 787, "file_count": 0, "needs_breakdown": false}
fix(mandate): add mandate_id column in payment_attempt table ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [ ] Refactoring - [ ] Dependency updates ## Description This change includes - Adding a new column `mandate_id` in the table `paymen...
<think> PR Context: - Title: feat(payment_link): added display_sdk_only option for displaying only sdk without payment details - Merged: 2024-04-16T13:45:56Z - Files changed: 7 files - Commits: 2 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New ...
{"issue_number": 3, "pr_number": 4363, "commits_count": 1, "files_changed": 7, "response_length": 1198, "file_count": 6, "needs_breakdown": false}
[BUG] Make payment method data accessible for `network_transaction_id` ### Bug Description In the case of `network_transaction_id` some connectors require payment method data. After the new mandate changes a new payment method `MandatePayment` was introduced, which doesn't consider this use case. ### Expected Behavi...
<think> PR Context: - Title: fix(mandate): allow card details to be provided in case of network transaction id - Merged: 2023-05-13T10:04:06Z - Files changed: 3 files - Commits: 1 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] E...
{"issue_number": 1139, "pr_number": 1138, "commits_count": 1, "files_changed": 3, "response_length": 1072, "file_count": 4, "needs_breakdown": false}
[FEATURE] integrate 3DS for Worldpay connector ### Feature Description WorldPay offers 3DS capabilities for a card txn. Same needs to be integrated in HyperSwitch. Flow - https://developer.worldpay.com/products/access/3ds/web ### Possible Implementation Implementing 3DS for WorldPay requires one additional step ...
<think> PR Context: - Title: feat(connector): add 3DS flow for Worldpay - Merged: 2024-10-21T14:14:20Z - Files changed: 8 files - Commits: 30 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] D...
{"issue_number": 6177, "pr_number": 6374, "commits_count": 1, "files_changed": 8, "response_length": 2551, "file_count": 10, "needs_breakdown": false}
[bug]: fix timestamp sent to kafka events rdkafka library expects time in millis but we send seconds. This can be reflected in the kafka-ui at localhost:8090 as well. We can fix this by either truncating the unix_timestamp_nanos or padding the seconds.
<think> PR Context: - Title: fix(kafka): fix kafka timestamps sent from application - Merged: 2024-05-23T09:28:10Z - Files changed: 5 files - Commits: 5 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactori...
{"issue_number": 4706, "pr_number": 4709, "commits_count": 1, "files_changed": 5, "response_length": 1395, "file_count": 7, "needs_breakdown": false}
fix(connector) : Added signifyd to routableconnectors for frm ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> ...
<think> PR Context: - Title: revert: fix(connector): Added signifyd to routableconnectors for frm - Merged: 2023-05-18T12:59:09Z - Files changed: 1 files - Commits: 1 commits Implementation approach: This PR reverts #1182. </think> To implement this, you'll need to modify: **Detailed Implementation:** **Commit 1:...
{"issue_number": 1182, "pr_number": 1203, "commits_count": 1, "files_changed": 1, "response_length": 476, "file_count": 3, "needs_breakdown": false}
feat(authn): Use cookies for authentication Currently we use auth headers and local storage in FE for transfer JWT from FE to BE. Cookies is a better way to do this, as it is handled by browser and JavaScript doesn't have access to. First we will test this in Integ and slowly move it to sandbox and production.
<think> PR Context: - Title: refactor(authn): Enable cookies in Integ - Merged: 2024-11-26T12:42:14Z - Files changed: 11 files - Commits: 7 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dep...
{"issue_number": 6598, "pr_number": 6599, "commits_count": 1, "files_changed": 11, "response_length": 1265, "file_count": 6, "needs_breakdown": false}
[REFACTOR]: [Worldpay] 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): [Worldpay] Remove Default Case Handling - Merged: 2023-10-25T18:27:57Z - Files changed: 1 files - Commits: 5 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Ref...
{"issue_number": 2290, "pr_number": 2488, "commits_count": 1, "files_changed": 1, "response_length": 992, "file_count": 3, "needs_breakdown": false}
[REFACTOR] Unify the `sandbox` and `production` cargo features ### Description After #1349, this is the next step towards using a single Docker image across all our environments (see #1346). The `sandbox` and `production` features would have to be unified into a single `release` feature instead. This change would a...
<think> PR Context: - Title: build: unify `sandbox` and `production` cargo features as `release` - Merged: 2023-06-07T08:34:58Z - Files changed: 4 files - Commits: 3 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - ...
{"issue_number": 1353, "pr_number": 1356, "commits_count": 1, "files_changed": 4, "response_length": 976, "file_count": 3, "needs_breakdown": false}
feat(analytics): refactor and introduce analytics APIs to accommodate OrgLevel, MerchantLevel and ProfileLevel authentication ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/...
<think> PR Context: - Title: revert: feat(analytics): refactor and introduce analytics APIs to accommodate OrgLevel, MerchantLevel and ProfileLevel authentication - Merged: 2024-09-05T11:19:25Z - Files changed: 30 files - Commits: 1 commits Implementation approach: Reverts juspay/hyperswitch#5784 </think> To implemen...
{"issue_number": 5784, "pr_number": 5811, "commits_count": 1, "files_changed": 30, "response_length": 6622, "file_count": 60, "needs_breakdown": true}
feat(connector): [paypal, trustpay] add in feature matrix ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> Adde...
<think> PR Context: - Title: feat(connector): revert [paypal, trustpay] add in feature matrix - Merged: 2025-05-15T14:22:25Z - Files changed: 9 files - Commits: 1 commits Implementation approach: ORIGINAL PR: https://github.com/juspay/hyperswitch/pull/8042 Reverts juspay/hyperswitch#7911 </think> To implement this, ...
{"issue_number": 7911, "pr_number": 8046, "commits_count": 1, "files_changed": 9, "response_length": 1222, "file_count": 4, "needs_breakdown": false}
[FEATURE] scheme error code and messages in /payments API response ### Feature Description If the payment is declined for a card transaction, the card scheme or issuer can send a raw response explaining why. These are the raw acquirer responses which helps in understanding why a card transaction was declined. Some c...
<think> PR Context: - Title: feat: scheme error code and messages in payments api response - Merged: 2025-03-17T15:03:23Z - Files changed: 30 files - Commits: 13 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [ ] ...
{"issue_number": 7467, "pr_number": 7528, "commits_count": 1, "files_changed": 30, "response_length": 14386, "file_count": 162, "needs_breakdown": true}
[BUG] Add metrics in router scheduler flow as it is being ignored now ### Bug Description Router is not maintaining any metrics about the task added in scheduler. this has to be fixed File: crates/router/src/core/payments/helpers.rs Method: add_domain_task_to_pt ### Expected Behavior Metrics has to be added to kn...
<think> PR Context: - Title: fix(metrics): Add TASKS_ADDED_COUNT and TASKS_RESET_COUNT metrics in router scheduler flow - Merged: 2024-01-18T10:29:35Z - Files changed: 8 files - Commits: 9 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix ## Description ...
{"issue_number": 2090, "pr_number": 3189, "commits_count": 1, "files_changed": 8, "response_length": 1485, "file_count": 10, "needs_breakdown": false}
Migrate from cargo2nix to rust-flake Migrate the Nix build/shell system from cargo2nix to rust-flake. **Parent Issue:** #57 **Related PR:** #8503 ## Acceptance Criteria - [x] Migrate from cargo2nix to rust-flake - [x] Verify nix CI/CD compatibility
<think> PR Context: - Title: refactor(nix): Migrate from cargo2nix to rust-flake - Merged: 2025-07-15T08:20:23Z - Files changed: 7 files - Commits: 6 commits Implementation approach: # Migrate Nix Configuration to rust-flake This PR refactors the existing Nix setup by migrating from `cargo2nix` to `rust-flake`. Re...
{"issue_number": 8538, "pr_number": 8503, "commits_count": 0, "files_changed": 7, "response_length": 781, "file_count": 1, "needs_breakdown": false}
fix(connector): [Worldpay] add root CA certificate ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description This PR adds below changes for the Worldpay connector...
<think> PR Context: - Title: revert(connector): [Worldpay] add root CA certificate - Merged: 2025-06-10T08:33:22Z - Files changed: 5 files - Commits: 1 commits Implementation approach: Reverts juspay/hyperswitch#8205 </think> To implement this, you'll need to modify: **Detailed Implementation:** **Commit 1:** rev...
{"issue_number": 8205, "pr_number": 8224, "commits_count": 1, "files_changed": 5, "response_length": 579, "file_count": 4, "needs_breakdown": false}
fix(cards): Return a 200 response indicating that a customer is none ## Type of Change - [x] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description Bug Description CustomerPaymentMethodsListResponse returns 404 when there is no c...
<think> PR Context: - Title: fix(cards): Return a 200 response indicating that a customer is none - Merged: 2024-02-23T10:31:26Z - Files changed: 3 files - Commits: 2 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancement -...
{"issue_number": 3773, "pr_number": 3796, "commits_count": 1, "files_changed": 3, "response_length": 1040, "file_count": 4, "needs_breakdown": false}
[CHORE] Update GlobalPay production endpoint at present, production endpoint points to sandbox and we need to point to production url
<think> PR Context: - Title: chore: update production endpoint url for globalPay - Merged: 2025-03-24T08:11:04Z - Files changed: 4 files - Commits: 6 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring ...
{"issue_number": 7587, "pr_number": 7588, "commits_count": 1, "files_changed": 4, "response_length": 988, "file_count": 3, "needs_breakdown": false}
[REFACTOR] The `Drop` implementation on `RedisConnectionPool` seems unnecessary ### Description I'll keep this issue as a source of documentation and decisions taken regarding the graceful shutdown of Redis connections. When I was working on #1743, I noticed that the `Drop` implementation on `RedisConnectionPool...
<think> PR Context: - Title: refactor(redis_interface): remove the `Drop` implementation on `RedisConnectionPool` - Merged: 2023-07-25T10:11:56Z - Files changed: 2 files - Commits: 3 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ...
{"issue_number": 1782, "pr_number": 1786, "commits_count": 1, "files_changed": 2, "response_length": 1151, "file_count": 4, "needs_breakdown": false}
fix(router): handle JSON connector response parse error ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> Certai...
<think> PR Context: - Title: fix(connector): [Braintree] add merchant_account_id field in authorize request - Merged: 2023-08-10T18:11:39Z - Files changed: 5 files - Commits: 7 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [x] Enha...
{"issue_number": 1892, "pr_number": 1913, "commits_count": 1, "files_changed": 5, "response_length": 1585, "file_count": 7, "needs_breakdown": false}
[CI] cypress checks for wise failing wise is returning status as `forbidden`. it is better to replace that with adyen payouts
<think> PR Context: - Title: ci(cypress-ci): remove wise payout from running in github ci - Merged: 2025-04-08T08:31:18Z - Files changed: 1 files - Commits: 2 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Ref...
{"issue_number": 7755, "pr_number": 7756, "commits_count": 0, "files_changed": 1, "response_length": 790, "file_count": 0, "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: add basic nix support - Merged: 2022-12-07T11:58:55Z - Files changed: 2 files - Commits: 4 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [ ] Refactoring - [ ] Dependency update...
{"issue_number": 57, "pr_number": 63, "commits_count": 0, "files_changed": 2, "response_length": 757, "file_count": 0, "needs_breakdown": false}
fix: print x request id for user postman tests Console log x request id for users postman tests, - it will help to debug failed tests for user collection
<think> PR Context: - Title: ci(postman): log request id for user tests - Merged: 2024-06-28T14:07:35Z - Files changed: 6 files - Commits: 2 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [ ] Refactoring - [ ] De...
{"issue_number": 5158, "pr_number": 5159, "commits_count": 0, "files_changed": 6, "response_length": 772, "file_count": 0, "needs_breakdown": false}
feat: add env variable for enable key manager service ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description This PR adds env variable for enabling encryption ...
<think> PR Context: - Title: feat: add env variable for enable key manager service - Merged: 2024-07-29T11:23:54Z - Files changed: 7 files - Commits: 1 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactorin...
{"issue_number": 5442, "pr_number": 5465, "commits_count": 1, "files_changed": 7, "response_length": 1361, "file_count": 8, "needs_breakdown": false}
feat(events): allow listing webhook events and webhook delivery attempts by business profile ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- De...
<think> PR Context: - Title: refactor: use business profile domain models instead of diesel models - Merged: 2024-08-08T10:37:52Z - Files changed: 30 files - Commits: 5 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement ...
{"issue_number": 4159, "pr_number": 5566, "commits_count": 1, "files_changed": 30, "response_length": 6772, "file_count": 70, "needs_breakdown": true}
Adding contributors guide Adding contributors guide
<think> PR Context: - Title: docs(README): Adding Contributors guide - Merged: 2024-08-22T12:46:04Z - Files changed: 2 files - Commits: 17 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Depe...
{"issue_number": 5344, "pr_number": 5184, "commits_count": 0, "files_changed": 2, "response_length": 770, "file_count": 0, "needs_breakdown": false}
[FEATURE]: [Rapyd] 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 transa...
<think> PR Context: - Title: feat(connector): [Rapyd] Use connector_response_reference_id - Merged: 2024-10-25T08:40:20Z - Files changed: 1 files - Commits: 5 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Ref...
{"issue_number": 2346, "pr_number": 6302, "commits_count": 1, "files_changed": 1, "response_length": 989, "file_count": 3, "needs_breakdown": false}
fix: trustpay eps redirection in cypress fix: trustpay eps redirection in cypress they changed it again
<think> PR Context: - Title: fix: trustpay `eps` redirection in cypress - Merged: 2024-11-12T07:17:51Z - Files changed: 1 files - Commits: 1 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] De...
{"issue_number": 6528, "pr_number": 6529, "commits_count": 0, "files_changed": 1, "response_length": 772, "file_count": 0, "needs_breakdown": false}
[FEATURE]: [Iatapay] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of uniformity in ...
<think> PR Context: - Title: refactor(connector): Use connector_request_reference_id for Iatapay - Merged: 2023-10-28T18:06:17Z - Files changed: 1 files - Commits: 2 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - ...
{"issue_number": 2302, "pr_number": 2692, "commits_count": 2, "files_changed": 1, "response_length": 1162, "file_count": 5, "needs_breakdown": false}
refactor(router): add revenue_recovery_metadata to payment intent in diesel and api model for v2 flow Add the following fields to the api and diesel models Feature meta data retry_count: Total number of billing connector + recovery retries for a payment intent. payment_connector_transmission: It's supposed to tell i...
<think> PR Context: - Title: refactor(router): add revenue_recovery_metadata to payment intent in diesel and api model for v2 flow - Merged: 2025-02-14T11:41:35Z - Files changed: 6 files - Commits: 23 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ...
{"issue_number": 7177, "pr_number": 7176, "commits_count": 1, "files_changed": 6, "response_length": 2069, "file_count": 7, "needs_breakdown": false}
[FEATURE]: Add support for merchant order reference id ### Feature Description Add support for merchant order reference id ### Possible Implementation Add support for merchant order reference id ### Have you spent some time checking if this feature request has been raised before? - [X] I checked and didn't find a...
<think> PR Context: - Title: feat(core): add merchant order reference id - Merged: 2024-07-04T13:05:00Z - Files changed: 22 files - Commits: 9 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] ...
{"issue_number": 5198, "pr_number": 5197, "commits_count": 1, "files_changed": 22, "response_length": 2364, "file_count": 21, "needs_breakdown": true}
DB changes for split payments (v2) The following DB changes need to be made to support split payments: In PaymentIntent: - Add `active_attempts_group_id` column - Add `active_attempt_id_type` column In PaymentAttempt: - Add `attempts_group_id` column While currently a `payment_intent` can have only a single `activ...
<think> PR Context: - Title: feat(router): Add attempts_group DB changes for split payments (v2) - Merged: 2025-09-24T08:41:25Z - Files changed: 13 files - Commits: 2 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement -...
{"issue_number": 9465, "pr_number": 9466, "commits_count": 1, "files_changed": 13, "response_length": 1777, "file_count": 13, "needs_breakdown": false}
Support to inject TLS certificate inside Hyperswith App Server
<think> PR Context: - Title: feat(tls): add support for https in actix web - Merged: 2024-07-01T10:50:57Z - Files changed: 7 files - Commits: 13 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [ ] Refactoring - [ ...
{"issue_number": 3475, "pr_number": 5089, "commits_count": 1, "files_changed": 7, "response_length": 1075, "file_count": 5, "needs_breakdown": false}
[FEATURE] Add Facilitapay connector Facilitapay connector is yet another payment processor. Docs: https://sandbox-portal.facilitapay.com/#/docs
<think> PR Context: - Title: feat(connector): Introduce connector template code for Facilitapay - Merged: 2025-03-27T13:33:42Z - Files changed: 24 files - Commits: 3 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - ...
{"issue_number": 7630, "pr_number": 7631, "commits_count": 1, "files_changed": 24, "response_length": 9052, "file_count": 18, "needs_breakdown": true}
[BUG] 5xx in PayPal when cancelling the Payment we're getting 5xx when you try to cancel the payment express checkout page. and this is not intended.
<think> PR Context: - Title: fix(connector): [GlobalPay] Address `5xx` when cancelling a paypal transaction - Merged: 2025-03-26T10:26:02Z - Files changed: 4 files - Commits: 7 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enha...
{"issue_number": 7607, "pr_number": 7605, "commits_count": 1, "files_changed": 4, "response_length": 1466, "file_count": 6, "needs_breakdown": false}
fix cybersource cypress redirection address ci inconsistency. cybersource cypress test in github has been failing randomly left right and center for no good reason.
<think> PR Context: - Title: fix(cypress): address cybersource redirection inconsistency - Merged: 2025-01-21T07:06:52Z - Files changed: 6 files - Commits: 24 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Ref...
{"issue_number": 7058, "pr_number": 7057, "commits_count": 0, "files_changed": 6, "response_length": 790, "file_count": 0, "needs_breakdown": false}
[FEATURE] separate payments_session from payments core ### Feature Description In the current implementation, the [payments_session](https://github.com/juspay/hyperswitch/blob/main/crates/router/src/core/payments/operations/payment_session.rs) is a part of [payments core](https://github.com/juspay/hyperswitch/blob/...
<think> PR Context: - Title: refactor(core): move update trackers after build request - Merged: 2023-06-19T07:59:57Z - Files changed: 30 files - Commits: 8 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Refactoring ## Description <!-- Describe your changes ...
{"issue_number": 888, "pr_number": 1472, "commits_count": 1, "files_changed": 30, "response_length": 3446, "file_count": 34, "needs_breakdown": true}
fix(connector): [Peach Payments] fix connector metadata deserialization ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in d...
<think> PR Context: - Title: fix(connector): [Peach Payments] fix connector metadata deserialization - Merged: 2025-10-14T11:48:24Z - Files changed: 1 files - Commits: 2 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancemen...
{"issue_number": 9826, "pr_number": 9827, "commits_count": 1, "files_changed": 1, "response_length": 1026, "file_count": 3, "needs_breakdown": false}
refactor: fix auth select flow for default users When no `id` is passed to auth_select request is should consider default case for user authentication method and give `totp` as the next SPT.
<think> PR Context: - Title: refactor(user_auth_method): populate default user auth method - Merged: 2024-07-10T19:23:56Z - Files changed: 3 files - Commits: 6 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Re...
{"issue_number": 5256, "pr_number": 5257, "commits_count": 1, "files_changed": 3, "response_length": 1128, "file_count": 5, "needs_breakdown": false}
[FEATURE]: [Worldpay] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of uniformity in...
<think> PR Context: - Title: feat(connector): [Worldpay] Use connector_request_reference_id as reference to the connector - Merged: 2023-10-19T07:16:08Z - Files changed: 1 files - Commits: 12 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feat...
{"issue_number": 2321, "pr_number": 2553, "commits_count": 1, "files_changed": 1, "response_length": 1025, "file_count": 3, "needs_breakdown": false}
refactor(router): api-key routes refactoring ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [X] Refactoring - [ ] Dependency updates ## Description - Refactored API keys routes to use `/api_keys/{merchant_id}`. - Refactored authentication e...
<think> PR Context: - Title: docs(openapi): document path parameters for API keys endpoints - Merged: 2023-03-05T15:52:43Z - Files changed: 1 files - Commits: 1 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [ ] R...
{"issue_number": 600, "pr_number": 702, "commits_count": 1, "files_changed": 1, "response_length": 947, "file_count": 3, "needs_breakdown": false}
[FEATURE] Kv Redis feature for V2 models ### Feature Description Extend kv support for v2 models ### Possible Implementation Use existing construct to extend to v2 models ### Have you spent some time checking if this feature request has been raised before? - [x] I checked and didn't find a similar issue ### Hav...
<think> PR Context: - Title: feat: Kv changes for V2 feature - Merged: 2025-06-26T14:22:59Z - Files changed: 15 files - Commits: 26 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [ ] Refactoring - [ ] Dependency ...
{"issue_number": 8389, "pr_number": 8198, "commits_count": 1, "files_changed": 15, "response_length": 2397, "file_count": 15, "needs_breakdown": false}
[BUG] : [Bambora] bad request error for non-three-ds card payment ### Bug Description Bambora expects browser information regardless of type of card payment (3ds or not). But we are not passing this browser details in non 3ds card. This results in a bad request response from bambora. ### Expected Behavior Pass brow...
<think> PR Context: - Title: refactor(connectors): [Bambora] data masking - Merged: 2024-02-20T14:27:53Z - Files changed: 2 files - Commits: 5 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [x] Refactoring - [ ] ...
{"issue_number": 3701, "pr_number": 3695, "commits_count": 1, "files_changed": 2, "response_length": 1042, "file_count": 4, "needs_breakdown": false}
feat(redis_interface): implement functions for `HGET`, `HSET`, `HSETNX` commands ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [ ] Refactoring - [ ] Dependency updates ## Description <!-- Describe your changes in detail --> This PR adds wr...
<think> PR Context: - Title: fix(redis_interface): fix derps in `HSET` and `HSETNX` command wrappers - Merged: 2022-12-13T12:44:19Z - Files changed: 7 files - Commits: 3 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancement...
{"issue_number": 114, "pr_number": 129, "commits_count": 1, "files_changed": 7, "response_length": 1312, "file_count": 7, "needs_breakdown": false}
feat: change list roles, get role, info api to respond with groups
<think> PR Context: - Title: feat(roles): Change list roles, get role and authorization info api to respond with groups - Merged: 2024-02-27T13:11:55Z - Files changed: 13 files - Commits: 9 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New featur...
{"issue_number": 3836, "pr_number": 3837, "commits_count": 1, "files_changed": 13, "response_length": 2280, "file_count": 15, "needs_breakdown": false}
feat(user_roles): Update both V1 and V2 user roles Since we are introducing V2 user_roles. Before we start inserting V2 data, we should complete the other operations (update, delete and read). This issue tracks the progress of changes for update.
<think> PR Context: - Title: feat(user_role): Add update by lineage DB function - Merged: 2024-08-22T05:24:51Z - Files changed: 9 files - Commits: 8 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring ...
{"issue_number": 5650, "pr_number": 5651, "commits_count": 1, "files_changed": 9, "response_length": 1893, "file_count": 11, "needs_breakdown": false}
refactor: raise appropriate errors instead of `ValidateError` ## Type of Change Refactoring ## Description <!-- Describe your changes in detail --> To describe briefly, this PR raises appropriate errors instead of `ValidateError` and removes `ValidateError` in favor of `ValidationError`. A better understanding o...
<think> PR Context: - Title: fix(connector-template): raise `ConnectorError` instead of `ValidateError` - Merged: 2022-12-08T14:37:40Z - Files changed: 1 files - Commits: 1 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancem...
{"issue_number": 71, "pr_number": 94, "commits_count": 1, "files_changed": 1, "response_length": 968, "file_count": 3, "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: feat(payment-link): add config for enabling form button only when form is complete - Merged: 2025-03-17T15:05:30Z - Files changed: 16 files - Commits: 2 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ]...
{"issue_number": 3264, "pr_number": 7517, "commits_count": 1, "files_changed": 16, "response_length": 1528, "file_count": 11, "needs_breakdown": false}
[REFACTOR]: [Noon] 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): [Noon] Remove Default Case Handling - Merged: 2023-10-30T14:10:51Z - Files changed: 1 files - Commits: 7 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refacto...
{"issue_number": 2277, "pr_number": 2677, "commits_count": 2, "files_changed": 1, "response_length": 1123, "file_count": 5, "needs_breakdown": false}
Properly Handle encoded_data in PSync flow [v2] PSync is failing for adyen with error: `validate_psync_reference_id failed`. We need to pass the `encoded_data` in payment_attempt
<think> PR Context: - Title: fix(router): Handle encoded_data in PSync [V2] - Merged: 2025-06-02T10:26:16Z - Files changed: 1 files - Commits: 1 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ...
{"issue_number": 8176, "pr_number": 8177, "commits_count": 1, "files_changed": 1, "response_length": 937, "file_count": 3, "needs_breakdown": false}
fix(connector): [NMI] Handle empty response in psync and error response in complete authorize ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Descr...
<think> PR Context: - Title: fix(connector): [NMI] Handle empty response in psync and error response in complete authorize - Merged: 2024-02-05T12:55:57Z - Files changed: 2 files - Commits: 2 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feat...
{"issue_number": 3548, "pr_number": 3550, "commits_count": 1, "files_changed": 2, "response_length": 1105, "file_count": 4, "needs_breakdown": false}
refactor: deprecate V1 signin, verify email and invite APIs Currently the following endpoints are not being used by the dashboard `/user/signin` `/user/verify_email` `/user/invite` New APIs are created for the above APIs which are `/user/v2/signin` `/user/v2/verify_email` `/user/invite_multiple` The old APIs are kep...
<think> PR Context: - Title: refactor(user): Deprecate Signin, Verify email and Invite v1 APIs - Merged: 2024-04-30T10:12:31Z - Files changed: 7 files - Commits: 4 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x...
{"issue_number": 4464, "pr_number": 4465, "commits_count": 1, "files_changed": 7, "response_length": 1607, "file_count": 9, "needs_breakdown": false}
Add onboarding flow for VSAAS - Support for endpoint to create a platform - Create platform org and platform merchant account - Support to create connected merchant account inside platform org - Modify existing list responses for org and merchant, to distinguish platform from standard.
<think> PR Context: - Title: feat(vsaas): integrate onboarding flow for vertical saas - Merged: 2025-05-12T15:02:09Z - Files changed: 22 files - Commits: 11 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [x] Enhancement - [x] Refac...
{"issue_number": 7889, "pr_number": 7884, "commits_count": 1, "files_changed": 22, "response_length": 2696, "file_count": 22, "needs_breakdown": true}
[FEATURE]: [Tsys] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of uniformity in thi...
<think> PR Context: - Title: feat(connector): [Tsys] Use connector_request_reference_id as reference to the connector - Merged: 2023-10-18T14:25:59Z - Files changed: 1 files - Commits: 1 commits Implementation approach: ## Type of Change - [x] New feature ## Description The `connector_request_reference_id` ...
{"issue_number": 2319, "pr_number": 2631, "commits_count": 1, "files_changed": 1, "response_length": 1012, "file_count": 4, "needs_breakdown": false}
refactor(routing): update configs on updation of mca ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description https://github.com/juspay/hyperswitch/pull/9659 Th...
<think> PR Context: - Title: revert(routing): update configs on updation of mca - Merged: 2025-10-08T08:46:29Z - Files changed: 3 files - Commits: 1 commits Implementation approach: Reverts juspay/hyperswitch#9689 </think> To implement this, you'll need to modify: **Detailed Implementation:** **Commit 1:** revert...
{"issue_number": 9689, "pr_number": 9740, "commits_count": 1, "files_changed": 3, "response_length": 711, "file_count": 5, "needs_breakdown": false}
[FEATURE]: [Mollie] 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): [Mollie] Currency Unit Conversion - Merged: 2023-10-27T12:03:58Z - Files changed: 2 files - Commits: 10 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring ...
{"issue_number": 2231, "pr_number": 2671, "commits_count": 2, "files_changed": 2, "response_length": 1804, "file_count": 7, "needs_breakdown": false}
[FEATURE]: [Worldline] 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 ...
<think> PR Context: - Title: refactor(connector): [Worldline] Currency Unit Conversion - Merged: 2023-10-13T10:22:23Z - Files changed: 2 files - Commits: 3 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refact...
{"issue_number": 2249, "pr_number": 2569, "commits_count": 1, "files_changed": 2, "response_length": 1269, "file_count": 4, "needs_breakdown": false}
Update broken readme icon Updating broken readme icon along with reposition of the hero image
<think> PR Context: - Title: docs(README): Updated the icon and repositioned the hero image - Merged: 2024-11-03T14:12:33Z - Files changed: 1 files - Commits: 2 commits Implementation approach: TOC icon and reposition of the hero image in readme ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ...
{"issue_number": 6449, "pr_number": 6445, "commits_count": 0, "files_changed": 1, "response_length": 792, "file_count": 0, "needs_breakdown": false}
refactor: [Noon] adding new field max_amount to mandate request ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail -->...
<think> PR Context: - Title: Refactor(Router): [Noon] revert adding new field max_amount to mandate request - Merged: 2024-01-24T10:55:57Z - Files changed: 1 files - Commits: 2 commits Implementation approach: Reverts juspay/hyperswitch#3209 Resolves [#3445](https://github.com/juspay/hyperswitch/issues/3445) Depe...
{"issue_number": 3209, "pr_number": 3435, "commits_count": 1, "files_changed": 1, "response_length": 624, "file_count": 3, "needs_breakdown": false}
feat(connector): [ZSL] add connector template code ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> Zsl only ...
<think> PR Context: - Title: refactor(core): add cache redaction for cgraph - Merged: 2025-10-01T08:33:13Z - Files changed: 3 files - Commits: 9 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ...
{"issue_number": 4285, "pr_number": 9629, "commits_count": 1, "files_changed": 3, "response_length": 1157, "file_count": 5, "needs_breakdown": false}
enhance(storage_models): delete client secret when status is succeeded, failed, cancelled ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [ ] Refactoring - [ ] Dependency updates ## Description <!-- Describe your changes in detail --> Previo...
<think> PR Context: - Title: feat(pm_list): handle client secret check - Merged: 2023-03-21T12:10:59Z - Files changed: 3 files - Commits: 7 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] New feature ## Description <!-- Describe your changes in detail --> I...
{"issue_number": 724, "pr_number": 759, "commits_count": 1, "files_changed": 3, "response_length": 1068, "file_count": 5, "needs_breakdown": false}
fix(connector): [Cybersource] change commerce indicator for applepay ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detai...
<think> PR Context: - Title: fix(connector): [Cybersource] change commerce indicator for applepay - Merged: 2024-11-22T12:26:57Z - Files changed: 1 files - Commits: 1 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancement -...
{"issue_number": 6634, "pr_number": 6641, "commits_count": 1, "files_changed": 1, "response_length": 979, "file_count": 3, "needs_breakdown": false}
feat(connector): [Authorizedotnet] implement payment and refund webhook flow for Authorizedotnet ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- D...
<think> PR Context: - Title: feat(connector): [Authorizedotnet] implement Capture flow and webhooks for Authorizedotnet - Merged: 2023-05-18T15:05:33Z - Files changed: 3 files - Commits: 13 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New featur...
{"issue_number": 1176, "pr_number": 1171, "commits_count": 1, "files_changed": 3, "response_length": 2798, "file_count": 6, "needs_breakdown": false}
[FEATURE]: [Nuvei] 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 transa...
<think> PR Context: - Title: feat(connector): [Nuvei] Add order id as the reference id - Merged: 2023-10-02T13:11:50Z - Files changed: 1 files - Commits: 1 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refact...
{"issue_number": 2340, "pr_number": 2408, "commits_count": 1, "files_changed": 1, "response_length": 951, "file_count": 3, "needs_breakdown": false}
feat(core): add backwards compatibility for multiple mca ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] New feature ## Description <!-- Describe your changes in detail --> This will use default values if not passed in the request if feature `backwards_compatibality` is enabled. If not the...
<think> PR Context: - Title: Changelog for release v0.5.6 - Merged: 2023-04-17T06:54:49Z - Files changed: 1 files - Commits: 10 commits Implementation approach: # 0.5.6 2023-04-14 ## Build System / Dependencies * **deps:** bump `fred` from `5.2.0` to `6.0.0` (#869) (01bc162d) ## Continuous Integration * *...
{"issue_number": 866, "pr_number": 859, "commits_count": 0, "files_changed": 1, "response_length": 759, "file_count": 4, "needs_breakdown": false}
feat(connector): [ACI, AUTHORIZEDOTNET, BRAINTREE, FIUU, FORTE, PLACETOPAY] Supported features for feature matrix ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## D...
<think> PR Context: - Title: fix(connector): Added Paypal in feature matrix for authorizedotnet - Merged: 2025-05-21T10:23:21Z - Files changed: 1 files - Commits: 7 commits Implementation approach: ## Type of Change Added paypal in feature matrix for authorizedotnet - [x] Bugfix - [ ] New feature - [ ] Enhanceme...
{"issue_number": 7854, "pr_number": 8072, "commits_count": 1, "files_changed": 1, "response_length": 1009, "file_count": 3, "needs_breakdown": false}
feat(router): Add `psp_tokenization_enabled` field in Customer Saved Payment Methods List Required to show whether `psp_tokenization` is enabled for a saved payment method
<think> PR Context: - Title: feat(router): Return psp_tokenization_enabled in Customer PML - Merged: 2025-03-20T10:04:56Z - Files changed: 8 files - Commits: 7 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [x] Enhancement - [ ] Re...
{"issue_number": 7518, "pr_number": 7519, "commits_count": 1, "files_changed": 8, "response_length": 1283, "file_count": 8, "needs_breakdown": false}
docs(openapi): document path parameters for API keys endpoints ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [ ] Refactoring - [ ] Dependency updates ## Description <!-- Describe your changes in detail --> This PR documents the path parame...
<think> PR Context: - Title: release: Update CHANGELOG for release v0.5.0 - Merged: 2023-03-21T09:28:58Z - Files changed: 1 files - Commits: 1 commits Implementation approach: # 0.5.0 (2023-03-21) ## Build System / Dependencies * **deps:** update deps (#734) (16bc886c) ## Chores * **merchant_account:** r...
{"issue_number": 702, "pr_number": 788, "commits_count": 0, "files_changed": 1, "response_length": 774, "file_count": 4, "needs_breakdown": false}
fix(connector): [noon] address `next_action_url` being `null` for cards in 3ds payment ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe you...
<think> PR Context: - Title: revert: fix(connector): [noon] address `next_action_url` being `null` for cards in 3ds payment - Merged: 2025-04-21T17:24:14Z - Files changed: 2 files - Commits: 1 commits Implementation approach: Reverts juspay/hyperswitch#7832 </think> To implement this, you'll need to modify: **Detai...
{"issue_number": 7832, "pr_number": 7859, "commits_count": 1, "files_changed": 2, "response_length": 928, "file_count": 4, "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: refactor(connector): [Stripebilling] change Billing Connector Payment Sync url from charges to payment intents api - Merged: 2025-05-02T12:12:23Z - Files changed: 2 files - Commits: 1 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ]...
{"issue_number": 7461, "pr_number": 7893, "commits_count": 1, "files_changed": 2, "response_length": 1214, "file_count": 4, "needs_breakdown": false}
Fix UCS address precedence order for payment method billing addresses ## Problem The current implementation in the UCS (Unified Connector Service) transformers has incorrect precedence order when handling addresses. The unified payment method billing address should take priority over the shipping/billing addresses fr...
<think> PR Context: - Title: fix: change precedence order in address that we send to ucs - Merged: 2025-09-03T17:28:26Z - Files changed: 1 files - Commits: 3 commits Implementation approach: ## Summary This PR fixes the billing address precedence order in the UCS (Unified Connector Service) transformers to ensure t...
{"issue_number": 9268, "pr_number": 9269, "commits_count": 1, "files_changed": 1, "response_length": 970, "file_count": 3, "needs_breakdown": false}
feat(authz): Make permissions entity and scope aware Currently the permissions we use doesn't have any entity level context. But some of our APIs need that context. For example, 1. `payment/list` - This can only be accessible by merchant level users or higher. Profile level users should not be able to access it. 2. `p...
<think> PR Context: - Title: feat(authz): Create a permission generator - Merged: 2024-10-24T14:36:07Z - Files changed: 30 files - Commits: 11 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [ ] Refactoring - [ ] ...
{"issue_number": 6391, "pr_number": 6394, "commits_count": 1, "files_changed": 30, "response_length": 3882, "file_count": 34, "needs_breakdown": true}
[BUGFIX] Replacing the occurrences of `gen_range` with a safe alternative ## Description Following up with the issue https://github.com/rust-random/rand/issues/1326 created by @lsampras. The function `gen_range` in itself can cause panics and error handling isn't done for some cases. This is a unpredictable behavio...
<think> PR Context: - Title: fix(router/scheduler): replace the occurrences of gen_range with a safer alternative - Merged: 2023-09-12T09:11:47Z - Files changed: 4 files - Commits: 5 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ...
{"issue_number": 1754, "pr_number": 2126, "commits_count": 1, "files_changed": 4, "response_length": 1127, "file_count": 5, "needs_breakdown": false}
[FEATURE] add cypress tests for void payment in v2 ### Feature Description This implementation adds comprehensive V2 API testing for payment void/cancel operations across different payment states. The feature introduces a new Cypress test suite that validates three critical scenarios: successfully voiding a payment i...
<think> PR Context: - Title: test(cypress): add cypress tests for void payment in v2 - Merged: 2025-10-07T17:28:46Z - Files changed: 9 files - Commits: 7 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [X] New feature - [ ] Enhancement - [ ] Refactor...
{"issue_number": 9638, "pr_number": 9646, "commits_count": 0, "files_changed": 9, "response_length": 785, "file_count": 0, "needs_breakdown": false}
[FEATURE]: [Rapyd] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of uniformity in th...
<think> PR Context: - Title: feat(connector): [Rapyd] Use connector_request_reference_id - Merged: 2024-10-25T08:41:35Z - Files changed: 1 files - Commits: 7 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refa...
{"issue_number": 2315, "pr_number": 6296, "commits_count": 1, "files_changed": 1, "response_length": 988, "file_count": 3, "needs_breakdown": false}
fix(connector): [CYBERSOURCE] fix CartesBancaires card_type for Cybersource ## Type of Change <!-- Put an `x` in the boxes that apply --> - [X] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description Payment via CartesBancaires ...
<think> PR Context: - Title: fix(connector): [CYBERSOURCE] fix CartesBancaires card_type for Cybersource - Merged: 2025-05-22T09:47:47Z - Files changed: 6 files - Commits: 1 commits Implementation approach: …source (#8031) ## Type of Change <!-- Put an `x` in the boxes that apply --> Hotfix for [8031](https://git...
{"issue_number": 8031, "pr_number": 8108, "commits_count": 1, "files_changed": 6, "response_length": 1488, "file_count": 8, "needs_breakdown": false}
Add audit events for PaymentUpdate update Created from #4525 This covers adding events for PaymentUpdate 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...
<think> PR Context: - Title: feat(payments): Add audit events for PaymentUpdate update - Merged: 2024-11-08T13:37:22Z - Files changed: 2 files - Commits: 6 commits Implementation approach: ## Type of Change - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Docume...
{"issue_number": 4682, "pr_number": 6426, "commits_count": 1, "files_changed": 2, "response_length": 1031, "file_count": 4, "needs_breakdown": false}
refactor(authentication): authenticate merchant by API keys from API keys table ## 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 updates ...
<think> PR Context: - Title: chore(merchant_account): remove `api_key` field - Merged: 2023-03-13T09:20:25Z - Files changed: 14 files - Commits: 6 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - ...
{"issue_number": 712, "pr_number": 713, "commits_count": 1, "files_changed": 14, "response_length": 1738, "file_count": 13, "needs_breakdown": false}
[BUG] : [Bambora] bad request error for non-three-ds card payment ### Bug Description Bambora expects browser information regardless of type of card payment (3ds or not). But we are not passing this browser details in non 3ds card. This results in a bad request response from bambora. ### Expected Behavior Pass brow...
<think> PR Context: - Title: feat(pm_list): add required fields for Ideal - Merged: 2024-01-09T15:28:40Z - Files changed: 0 files - Commits: 0 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [ ] Refactoring - [ ...
{"issue_number": 3701, "pr_number": 3183, "commits_count": 1, "files_changed": 0, "response_length": 1590, "file_count": 9, "needs_breakdown": false}
[FIX] batch encrypt decrypt for mca fetch/insert/update This adds batch encryption/decryption support for fetch/insert/update of the Merchant Connector Account.
<think> PR Context: - Title: fix: batch encrypt/decrypt on merchant connector account - Merged: 2024-10-04T13:50:35Z - Files changed: 3 files - Commits: 3 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Enhancement ## Description <!-- Describe your changes in ...
{"issue_number": 6205, "pr_number": 6206, "commits_count": 1, "files_changed": 3, "response_length": 1860, "file_count": 5, "needs_breakdown": false}
[REFACTOR]: [TSYS] Add amount conversion framework to Tsys ### :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 tsys - Merged: 2024-10-25T11:31:47Z - Files changed: 4 files - Commits: 8 commits Implementation approach: ## Type of Change - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] D...
{"issue_number": 6097, "pr_number": 6282, "commits_count": 1, "files_changed": 4, "response_length": 1415, "file_count": 6, "needs_breakdown": false}
[BUG] using FRM with Signifyd throws 5xx ### Bug Description Enabling Signifyd FRM connector for payments, and using this for a payment throws 5xx. This is due to Signifyd sending 303 which is not handled in HyperSwitch. Signifyd throws 303 as the URL is malformed. https://api.signifyd.com//v3/orders/events/sale...
<think> PR Context: - Title: fix(connector): update API endpoints for signifyd - Merged: 2024-09-30T10:41:48Z - Files changed: 1 files - Commits: 1 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring -...
{"issue_number": 5956, "pr_number": 5957, "commits_count": 1, "files_changed": 1, "response_length": 925, "file_count": 3, "needs_breakdown": false}
[FEATURE] [DEUTSCHEBANK] Integrate SEPA Payments ### Feature Description Integrate SEPA Payments for connector Deutsche Bank ### Possible Implementation https://testmerch.directpos.de/rest-api/apidoc/v2.1/index.html#chap_sdd ### Have you spent some time checking if this feature request has been raised before? - [...
<think> PR Context: - Title: feat(payments): propagate additional payment method data for google pay during MIT - Merged: 2024-11-26T14:14:16Z - Files changed: 5 files - Commits: 3 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [x] ...
{"issue_number": 5858, "pr_number": 6644, "commits_count": 1, "files_changed": 5, "response_length": 1748, "file_count": 7, "needs_breakdown": false}
refactor(users): Remove v1 insertions for user_roles Currently, we are inserting user_roles in v1 version and v2 version. Since we moved all the APIs to work with v2 data, we can stop inserting v1 data. This will also help in migrating v1 data to v2.
<think> PR Context: - Title: refactor(user_role): Remove V1 insertion for `user_roles` and allow Invites for `org_admins` - Merged: 2024-10-04T11:58:49Z - Files changed: 6 files - Commits: 1 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New featu...
{"issue_number": 6184, "pr_number": 6185, "commits_count": 1, "files_changed": 6, "response_length": 1952, "file_count": 8, "needs_breakdown": false}
refactor(core): restrict requires_customer_action in confirm ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Refactoring ## Description <!-- Describe your changes in detail --> This PR will restrict a payment to be confirmed again if the status is `requires_customer_action`. <!-- Provi...
<think> PR Context: - Title: ci: add test cases for restricting customer action in confirm flow - Merged: 2024-01-31T06:45:44Z - Files changed: 9 files - Commits: 4 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] CI/CD ## Description <!-- Describe your chang...
{"issue_number": 3235, "pr_number": 3499, "commits_count": 0, "files_changed": 9, "response_length": 796, "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: feat(payment_link): expose payment link configs for SDK UI rules and payment button - Merged: 2025-03-05T17:28:25Z - Files changed: 16 files - Commits: 5 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x...
{"issue_number": 3264, "pr_number": 7427, "commits_count": 1, "files_changed": 16, "response_length": 1675, "file_count": 13, "needs_breakdown": false}
ci: add tests that make use of locker ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [x] CI/CD ## Description <!-- Describe your changes in detail --> This PR introduces nec...
<think> PR Context: - Title: fix(connector): add expiry year conversion for adyen mit transactions - Merged: 2024-12-17T11:32:24Z - Files changed: 1 files - Commits: 1 commits Implementation approach: ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancement ...
{"issue_number": 6735, "pr_number": 6851, "commits_count": 1, "files_changed": 1, "response_length": 975, "file_count": 3, "needs_breakdown": false}