prompt
stringlengths
24
63.1k
response
stringlengths
180
101k
metadata
stringlengths
143
152
[FEATURE]: [NMI] 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 this...
<think> PR Context: - Title: feat(connector): [NMI] add orderid to PaymentRequest - Merged: 2023-10-31T10:46:10Z - Files changed: 1 files - Commits: 1 commits Implementation approach: Add orderid with value of connector_request_reference_id in NMI transformers. Fixes #2306 ## Description <!-- Describe your cha...
{"issue_number": 2306, "pr_number": 2727, "commits_count": 2, "files_changed": 1, "response_length": 1109, "file_count": 5, "needs_breakdown": false}
[FEATURE] Generate Random Disputes for sample data ### Feature Description The issue is sub part of issue: #5991 (Please refer to this First) The current implementation of the generate_sample_data_for_user function generates sample data for payments and refunds. However, there is no functionality to generate sampl...
<think> PR Context: - Title: feat(sample_data): generate random disputes for sample data - Merged: 2024-10-25T08:45:37Z - Files changed: 2 files - Commits: 22 commits Implementation approach: ## Description <!-- Describe your changes in detail --> I added dispute generation to function `generate_sample_data` in `ut...
{"issue_number": 6117, "pr_number": 6341, "commits_count": 1, "files_changed": 2, "response_length": 1021, "file_count": 4, "needs_breakdown": false}
[FEATURE] Create a dummy connector for internal and external testing of payments and refunds flows ### Feature Description A dummy test connector needs to be created with the ability to process all the payment methods available on Hyperswitch. This dummy connector will be useful for internal and external testing an...
<think> PR Context: - Title: feat(router): add payment, refund routes for dummy connector - Merged: 2023-05-11T19:26:15Z - Files changed: 10 files - Commits: 18 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Add payment, payment sync, refund, refund sync routes for the dumm...
{"issue_number": 726, "pr_number": 1071, "commits_count": 1, "files_changed": 10, "response_length": 1661, "file_count": 8, "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(core): add is_click_to_pay_enabled in business profile - Merged: 2024-12-05T13:04:29Z - Files changed: 11 files - Commits: 9 commits Implementation approach: ## Description <!-- Describe your changes in detail --> add is_click_to_pay_enabled in business profile ## How did you te...
{"issue_number": 3, "pr_number": 6736, "commits_count": 1, "files_changed": 11, "response_length": 1382, "file_count": 9, "needs_breakdown": false}
Deep health check for outgoing request in scheduler
<think> PR Context: - Title: fix: add outgoing checks for scheduler - Merged: 2024-02-02T10:03:33Z - Files changed: 2 files - Commits: 1 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Closes #3524 . Add an outgoing request check for scheduler. ## Motivation and Context ...
{"issue_number": 3524, "pr_number": 3526, "commits_count": 1, "files_changed": 2, "response_length": 964, "file_count": 4, "needs_breakdown": false}
chore: address Rust 1.66 clippy lints ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates ## Description <!-- Describe your changes in detail --> This PR addresses new `clippy` lints stabilized in Rust 1....
<think> PR Context: - Title: fix: set thread stack size to 4 MiB for debug builds - Merged: 2022-12-16T10:05:50Z - Files changed: 2 files - Commits: 3 commits Implementation approach: ## Description <!-- Describe your changes in detail --> This PR sets the thread stack size to 4 MiB for debug builds. ## Motivati...
{"issue_number": 162, "pr_number": 163, "commits_count": 1, "files_changed": 2, "response_length": 958, "file_count": 3, "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: fix: consume profile_id throughout payouts flow - Merged: 2023-10-12T07:51:49Z - Files changed: 6 files - Commits: 1 commits Implementation approach: ## Description This PR modifies logic used for fetching connector and storing customer's details using a profile_id. This had already been...
{"issue_number": 1, "pr_number": 2501, "commits_count": 1, "files_changed": 6, "response_length": 1204, "file_count": 7, "needs_breakdown": false}
fix(admin): jwt added for organization update and retrieve Previously, updating and retrieving organization details required authentication using the admin API key. With the recent change, the dashboard JWT can now be used to update the org_name directly through the dashboard.
<think> PR Context: - Title: fix(admin): Add JWT Auth for Org Read and Update APIs - Merged: 2024-09-29T13:06:45Z - Files changed: 2 files - Commits: 3 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Previously, updating and retrieving organization details required authentic...
{"issue_number": 6141, "pr_number": 6140, "commits_count": 1, "files_changed": 2, "response_length": 1000, "file_count": 4, "needs_breakdown": false}
[FIX]: Make v2 endpoints follow standard API conventions There are a lot of minor inconsistencies in v2 endpoints. Fix them in accordance with https://google.aip.dev/general
<think> PR Context: - Title: fix(router): Make v2 endpoints follow standard naming conventions - Merged: 2025-07-21T15:41:20Z - Files changed: 24 files - Commits: 6 commits Implementation approach: ## Description <!-- Describe your changes in detail --> - Consistently use kebab case in endpoint URLs - Use plural f...
{"issue_number": 8629, "pr_number": 8630, "commits_count": 1, "files_changed": 24, "response_length": 1732, "file_count": 11, "needs_breakdown": false}
[FEATURE] Refactor Stripe compatibility routes ### Feature Description Use `web::resource` to specify the paths in [`/crates/router/src/compatibility/stripe/app.rs`](https://github.com/juspay/hyperswitch/blob/main/crates/router/src/compatibility/stripe/app.rs) ### Possible Implementation Refer this file https://git...
<think> PR Context: - Title: refactor(compatibility): refactor stripe compatibility routes using `web::resource` - Merged: 2023-05-04T14:24:44Z - Files changed: 5 files - Commits: 9 commits Implementation approach: ## Description <!-- Describe your changes in detail --> - fixes #961 ### Additional Changes - ...
{"issue_number": 961, "pr_number": 1022, "commits_count": 1, "files_changed": 5, "response_length": 1327, "file_count": 7, "needs_breakdown": false}
refactor: remove permissions from files and forex apis
<think> PR Context: - Title: refactor(permissions): Remove permissions for utility APIs - Merged: 2024-02-21T07:34:49Z - Files changed: 18 files - Commits: 6 commits Implementation approach: ## Description <!-- Describe your changes in detail --> This PR will remove permissions for Files and Forex apis. It also ad...
{"issue_number": 3729, "pr_number": 3730, "commits_count": 1, "files_changed": 18, "response_length": 2546, "file_count": 20, "needs_breakdown": true}
Add audit events for PaymentApprove update Created from #4525 This covers adding events for PaymentApprove 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 payme...
<think> PR Context: - Title: feat(payments): Add audit events for PaymentApprove update - Merged: 2024-11-08T10:20:37Z - Files changed: 2 files - Commits: 4 commits Implementation approach: ## Description This PR adds an Audit event for the PaymentApprove operation. ### Additional Changes - [x] This PR modif...
{"issue_number": 4680, "pr_number": 6432, "commits_count": 1, "files_changed": 2, "response_length": 1034, "file_count": 4, "needs_breakdown": false}
[BUG]: [TSYS] Payments Failing Across All Flows ### Feature Description/Summary TSYS (Total System Services) is a global payment processing platform that provides payment gateway services for merchants, payment facilitators, and acquirers. It enables businesses to accept credit and debit card payments securely across...
<think> PR Context: - Title: fix(connectors): [TSYS] change order of order_number in tsys auth request body - Merged: 2025-10-08T15:39:41Z - Files changed: 1 files - Commits: 2 commits Implementation approach: ## Description This PR fixes the request body order of the TSYS contract for the auth request ### Addi...
{"issue_number": 9375, "pr_number": 9579, "commits_count": 1, "files_changed": 1, "response_length": 1009, "file_count": 3, "needs_breakdown": false}
ci(cypress): Add bank redirects for stripe ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [x] CI/CD ## Description Add Bank redirects payment methods for stripe in cypress auto...
<think> PR Context: - Title: feat(cypress): add trustpay, adyen bank redirects and corresponding refactor - Merged: 2024-05-31T09:52:13Z - Files changed: 12 files - Commits: 19 commits Implementation approach: ## Description <!-- Describe your changes in detail --> This PR is same as https://github.com/juspay/hyp...
{"issue_number": 4772, "pr_number": 4766, "commits_count": 0, "files_changed": 12, "response_length": 808, "file_count": 0, "needs_breakdown": false}
[BUG] : [Adyen] Production URL endpoint ### Bug Description For Adyen production URL endpoint is not correctly configured as compared to how it is used ### Expected Behavior `/` is missing in the end for production endpoint ### Actual Behavior For Adyen production URL endpoint is not correctly configured as compa...
<think> PR Context: - Title: fix(connector): [Adyen] update config and add required fields - Merged: 2024-03-12T13:58:19Z - Files changed: 3 files - Commits: 2 commits Implementation approach: ## Description <!-- Describe your changes in detail --> - Update Prod URL endpoint - Handle refunds webhooks using hyper...
{"issue_number": 4047, "pr_number": 4046, "commits_count": 2, "files_changed": 3, "response_length": 1270, "file_count": 7, "needs_breakdown": false}
enhance(router): release candidate pr for webhooks enhancement (#637) ## 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 --> #637 ### Additional Ch...
<think> PR Context: - Title: Release v0.3.0 - Merged: 2023-02-26T09:57:23Z - Files changed: 30 files - Commits: 30 commits Implementation approach: # 0.3.0 (2023-02-25) ## Build System / Dependencies * **docker-compose:** increase docker health check interval for hyperswitch-server (#534) (1ba6b8c9) ## Chore...
{"issue_number": 641, "pr_number": 647, "commits_count": 0, "files_changed": 30, "response_length": 746, "file_count": 4, "needs_breakdown": false}
[FEATURE]: [Stax] 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 ex...
<think> PR Context: - Title: refactor(connector): [Stax] Currency Unit Conversion - Merged: 2023-11-05T11:59:15Z - Files changed: 2 files - Commits: 30 commits Implementation approach: ## Description <!-- Describe your changes in detail --> This PR solves the Currency Unit Conversion for STAX Connector and fixes is...
{"issue_number": 2246, "pr_number": 2711, "commits_count": 1, "files_changed": 2, "response_length": 1280, "file_count": 4, "needs_breakdown": false}
FEATURE(connector): [Facilitapay] Add support for Pix Bank transfer Documentation: https://sandbox-portal.facilitapay.com/#/docs
<think> PR Context: - Title: feat(connector): [Facilitapay] Add support for Pix Bank Transfers - Merged: 2025-04-23T08:48:37Z - Files changed: 30 files - Commits: 30 commits Implementation approach: ## Description <!-- Describe your changes in detail --> This PR does the following: - Adds Facilitapay Connector...
{"issue_number": 7732, "pr_number": 7704, "commits_count": 1, "files_changed": 30, "response_length": 4360, "file_count": 22, "needs_breakdown": true}
[FEATURE] Implement `ReverseLookupInterface` for `MockDb` Spin out from https://github.com/juspay/hyperswitch/issues/172. Please refer to that issue for more information.
<think> PR Context: - Title: feat(db): Implement `ReverseLookupInterface` for `MockDb` - Merged: 2023-09-12T09:53:45Z - Files changed: 4 files - Commits: 4 commits Implementation approach: Implement the missing implementation of `MockDb` for `ReverseLookup` Closes #1115 ## Description <!-- Describe your change...
{"issue_number": 1115, "pr_number": 2119, "commits_count": 1, "files_changed": 4, "response_length": 1146, "file_count": 5, "needs_breakdown": false}
feat(config): update vector config # Current Behaviour - Sdk logs pushes `publishable_key` in the `merchant_id` field. - open search logs have some irrelevant fields. # Proposed Changes - transform sdk logs and update the correct corresponding `merchant_id` of the pre-existing `publishable_key` value - add some more ...
<think> PR Context: - Title: feat(config): update vector config - Merged: 2024-11-05T07:38:03Z - Files changed: 1 files - Commits: 3 commits Implementation approach: ## Fixes #6364 ## Description <!-- Describe your changes in detail --> - adding a transform for `sdk` logs that fetches a value from an enrichme...
{"issue_number": 6364, "pr_number": 6365, "commits_count": 0, "files_changed": 1, "response_length": 764, "file_count": 0, "needs_breakdown": false}
feat: Begin TOTP API There should be an API which should tell whether the TOTP for the user is set or not, if not, the API should respond back with TOTP secrets (url, recovery_codes and secret) which FE uses to help user to setup TOTP in their authenticator application. This API should work with the Decision manager ...
<think> PR Context: - Title: feat(users): Create `user_key_store` table and `begin_totp` API - Merged: 2024-05-08T13:10:09Z - Files changed: 30 files - Commits: 12 commits Implementation approach: ## Description <!-- Describe your changes in detail --> - This PR adds a new table `user_key_store`, which stores the e...
{"issue_number": 4576, "pr_number": 4577, "commits_count": 1, "files_changed": 30, "response_length": 3667, "file_count": 26, "needs_breakdown": true}
[BUG]: connector request is being built twice ### Bug Description When a payment is confirmed, the `connector_request` log is being printed twice ### Expected Behavior It should be printed only once ### Actual Behavior Two instances of the log line can be found ### Steps To Reproduce - Create a payment with `c...
<think> PR Context: - Title: fix(core): do not construct request if it is already available - Merged: 2024-02-26T14:15:43Z - Files changed: 1 files - Commits: 2 commits Implementation approach: ## Description <!-- Describe your changes in detail --> This PR fixes the duplicate request that was being constructed eve...
{"issue_number": 3799, "pr_number": 3826, "commits_count": 1, "files_changed": 1, "response_length": 945, "file_count": 3, "needs_breakdown": false}
[FEATURE] Extend the BatchSampleDataInterface Trait for Disputes ### Feature Description The issue is sub part of issue: #5991 We currently have a feature for generating sample data, which includes batch insertion of payments and refunds. The feature inserts payments and refunds in batches using the BatchSample...
<think> PR Context: - Title: feat(sample_data): extend the batch sample data interface trait for disputes - Merged: 2024-10-16T07:09:02Z - Files changed: 4 files - Commits: 22 commits Implementation approach: ## Description <!-- Describe your changes in detail --> I've extended the interface for `BatchSampleDataInt...
{"issue_number": 6111, "pr_number": 6293, "commits_count": 1, "files_changed": 4, "response_length": 1598, "file_count": 6, "needs_breakdown": false}
[FEATURE] Implement `EventInterface` for `MockDb` Spin out from https://github.com/juspay/hyperswitch/issues/172. Please refer to that issue for more information.
<think> PR Context: - Title: feat(db): implement `EventInterface` for `MockDb` - Merged: 2023-05-31T15:21:48Z - Files changed: 2 files - Commits: 4 commits Implementation approach: ## Description <!-- Describe your changes in detail --> ### Additional Changes - [ ] This PR modifies the API contract - [ ] ...
{"issue_number": 1116, "pr_number": 1289, "commits_count": 1, "files_changed": 2, "response_length": 1013, "file_count": 4, "needs_breakdown": false}
[FEATURE]: [Payeezy] 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): [Payeezy] Currency Unit Conversion - Merged: 2023-11-05T13:36:23Z - Files changed: 2 files - Commits: 30 commits Implementation approach: ## Description <!-- Describe your changes in detail --> ### Additional Changes - [ ] This PR modifies the API contract - [ ]...
{"issue_number": 2241, "pr_number": 2710, "commits_count": 1, "files_changed": 2, "response_length": 1291, "file_count": 4, "needs_breakdown": false}
fix(middleware): include `x-request-id` header in `access-control-expose-headers` header value ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Desc...
<think> PR Context: - Title: fix(cors): expose all headers set by application in `access-control-expose-headers` header value - Merged: 2024-12-24T07:04:04Z - Files changed: 1 files - Commits: 1 commits Implementation approach: ## Description <!-- Describe your changes in detail --> This PR exposes all headers se...
{"issue_number": 1673, "pr_number": 6877, "commits_count": 1, "files_changed": 1, "response_length": 1001, "file_count": 3, "needs_breakdown": false}
[FEATURE] Payment void endpoint for v2 ### Feature Description Add support for Payment Cancel in V2. ### Possible Implementation Add V2 payments_cancel flow by completing GetTracker, UpdateTracker, and Domain traits for payment cancel endpoint. ### Have you spent some time checking if this feature request has be...
<think> PR Context: - Title: feat(router): Add v2 payment cancellation flow - Merged: 2025-09-22T18:39:33Z - Files changed: 17 files - Commits: 14 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Add V2 payments_cancel flow by endpoint `{{baseUrl}}/v2/payments/:payment_id/can...
{"issue_number": 9082, "pr_number": 9083, "commits_count": 1, "files_changed": 17, "response_length": 9004, "file_count": 18, "needs_breakdown": true}
Adding Contributors Guide to the Readme of the repository Being an open source project, we look forward to contributors from across the world. For that we have outlined few changes which will make it easier for contributors to navigate through the project with more ease, and quickly develop a better understanding of t...
<think> PR Context: - Title: docs: upload new logos - Merged: 2024-10-18T14:34:22Z - Files changed: 5 files - Commits: 9 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Closes - #5175 ### Additional Changes - [ ] This PR modifies the API contract - [ ] This PR modifi...
{"issue_number": 5175, "pr_number": 6368, "commits_count": 0, "files_changed": 5, "response_length": 752, "file_count": 0, "needs_breakdown": false}
fix(payments): remove time range filter from payment attempt We don't need time range filters since created at is not indexed in payments attempts, we are already getting filtered payments intents and using its active attempt ids. It is further slowing down 'IN' query performance.
<think> PR Context: - Title: fix(payments_list): remove time range to filter payments attempts - Merged: 2024-09-30T15:02:13Z - Files changed: 6 files - Commits: 1 commits Implementation approach: ## Description Currently `created_at` is not indexed in payment attempt table, when applying filtering with active attem...
{"issue_number": 6160, "pr_number": 6159, "commits_count": 1, "files_changed": 6, "response_length": 1346, "file_count": 8, "needs_breakdown": false}
refactor: [Noon] add 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 --> R...
<think> PR Context: - Title: refactor: [Noon] add new field max_amount to mandate request - Merged: 2024-02-08T09:24:08Z - Files changed: 2 files - Commits: 2 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Resolves #3445 Original PR: #3481 _Note 1.While connector crea...
{"issue_number": 3481, "pr_number": 3591, "commits_count": 1, "files_changed": 2, "response_length": 1048, "file_count": 4, "needs_breakdown": false}
[BUG] remove redundant DB calls when FRM feature is not enabled ### Bug Description FRM is a payment feature which is integrated in HyperSwitch behind `frm` feature flag. There are some DB queries (which are generally not behind a feature flag) which are being executed even when `frm` feature is disabled. ### Expect...
<think> PR Context: - Title: fix(frm): add feature flag for querying FRM data - Merged: 2024-09-17T11:24:17Z - Files changed: 3 files - Commits: 1 commits Implementation approach: ## Description Described in #5888 ### Additional Changes - [x] This PR modifies the API contract - [ ] This PR modifies the datab...
{"issue_number": 5888, "pr_number": 5889, "commits_count": 1, "files_changed": 3, "response_length": 1123, "file_count": 5, "needs_breakdown": false}
feat(router): Unify Auth in single layer (V2) In-efficiency in design * Currently we have many types of auth and auth is evaluated in multiple places, with multiple ways. * This indeed required multiple approaches and solution needs to be maintained * More cognitive load * We can’t authenticate a request in one ...
<think> PR Context: - Title: feat(router): [V2] Introduce V2Auth and use it for payment_methods_list_enabled - Merged: 2025-01-31T08:37:18Z - Files changed: 30 files - Commits: 11 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Added an enum `V2Auth` (name subject to change)...
{"issue_number": 7037, "pr_number": 7038, "commits_count": 1, "files_changed": 30, "response_length": 4938, "file_count": 31, "needs_breakdown": true}
[CHORE] Bump Cypress Dependencies Current versions are outdated. <img width="469" height="327" alt="Image" src="https://github.com/user-attachments/assets/507dfa9e-754c-4cb5-9f86-41558769f513" />
<think> PR Context: - Title: chore: update devDependencies for cypress - Merged: 2025-07-28T07:44:58Z - Files changed: 3 files - Commits: 6 commits Implementation approach: ## Description <!-- Describe your changes in detail --> This PR bumps Cypress and its dependencies to its latest versions. ### Additional ...
{"issue_number": 8736, "pr_number": 8735, "commits_count": 0, "files_changed": 3, "response_length": 771, "file_count": 0, "needs_breakdown": false}
[FEATURE] :(hotfix) 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. #...
<think> PR Context: - Title: fix(wasm): [Adyen] update connector account configs and integration bugs - Merged: 2024-03-01T13:53:46Z - Files changed: 10 files - Commits: 1 commits Implementation approach: ## Description <!-- Describe your changes in detail --> - Update Connector Account configs for WASM build - Up...
{"issue_number": 3917, "pr_number": 3916, "commits_count": 1, "files_changed": 10, "response_length": 1429, "file_count": 9, "needs_breakdown": false}
[chore]: use crates.io version of async-bb8-diesel crate Currently we are using a [forked](https://github.com/jarnura/async-bb8-diesel) version of this dependency. We need to migrate to the crates.io version
<think> PR Context: - Title: chore: Move async-bb8-diesel crate to crates.io version - Merged: 2025-05-15T12:05:55Z - Files changed: 5 files - Commits: 1 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Changed `async-bb8-diesel crate from custom [fork](https://github.com/jar...
{"issue_number": 8026, "pr_number": 8028, "commits_count": 0, "files_changed": 5, "response_length": 785, "file_count": 0, "needs_breakdown": false}
[FEATURE]: [Noon] 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): [Noon] Use connector_response_reference_id as reference - Merged: 2023-10-04T17:45:59Z - Files changed: 1 files - Commits: 5 commits Implementation approach: ## Description I have added `reference` that's sent to noon payments order to the `TransactionResponse` in `t...
{"issue_number": 2339, "pr_number": 2442, "commits_count": 1, "files_changed": 1, "response_length": 980, "file_count": 3, "needs_breakdown": false}
[FEATURE]: [IataPay] 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): [Iatapay] currency unit conversion - Merged: 2023-10-31T11:53:49Z - Files changed: 2 files - Commits: 10 commits Implementation approach: ## Description - Addresses issue #2229 - Modified the files `hyperswitch/crates/router/src/connector/iatapay/transformers.rs` and ...
{"issue_number": 2229, "pr_number": 2592, "commits_count": 2, "files_changed": 2, "response_length": 1813, "file_count": 7, "needs_breakdown": false}
[FEATURE] add payment method filter in v2 ### Feature Description List all the available currencies and countries for the given connector and payment method type. ### Possible Implementation Add the filter route to the V2 PaymentMethods implementation. ### Have you spent some time checking if this feature request ...
<think> PR Context: - Title: feat(payment_methods): add payment-methods/filter endpoint to list countries and currencies for connector payment method in v2 - Merged: 2025-08-22T13:26:14Z - Files changed: 2 files - Commits: 4 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Ad...
{"issue_number": 8977, "pr_number": 8978, "commits_count": 1, "files_changed": 2, "response_length": 1169, "file_count": 4, "needs_breakdown": false}
fix(connector): [Trustpay] add merchant_id in gpay session response for trustpay ## 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 chan...
<think> PR Context: - Title: fix(connector): [Trustpay] add merchant_id in gpay session response for trustpay - Merged: 2024-02-02T09:40:03Z - Files changed: 1 files - Commits: 1 commits Implementation approach: ## Description <!-- Describe your changes in detail --> add merchant_id in gpay session response for tru...
{"issue_number": 3471, "pr_number": 3532, "commits_count": 1, "files_changed": 1, "response_length": 1000, "file_count": 3, "needs_breakdown": false}
feat(disputes): support filters in disputes list Support filters in disputes list - Get list of filters to be applied on disputes list - It can be multi-select for options like status and connector - `get` api to be used to pass filters which to be applied on list API - Implement parsing logic for get api, (to be used...
<think> PR Context: - Title: feat(disputes): add filters for disputes list - Merged: 2024-09-22T18:35:30Z - Files changed: 14 files - Commits: 25 commits Implementation approach: ## Description Add filters for disputes list ### Additional Changes - [ ] This PR modifies the API contract - [ ] This PR modifies ...
{"issue_number": 5626, "pr_number": 5637, "commits_count": 1, "files_changed": 14, "response_length": 2428, "file_count": 16, "needs_breakdown": true}
fix(invite): set user status to invitation sent if a registered user is invited
<think> PR Context: - Title: feat(invite_multiple): Set status of user as `InvitationSent` if `email` feature flag is enabled - Merged: 2024-02-21T14:52:33Z - Files changed: 1 files - Commits: 1 commits Implementation approach: ## Description <!-- Describe your changes in detail --> This PR will set the status of...
{"issue_number": 3756, "pr_number": 3757, "commits_count": 1, "files_changed": 1, "response_length": 1006, "file_count": 3, "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(cypress-test): include worldpay's request / response structure for test suite - Merged: 2024-10-30T10:11:29Z - Files changed: 9 files - Commits: 6 commits Implementation approach: ## Description Described in #6316 point # 4 (read comments) ### Additional Changes - [ ] This P...
{"issue_number": 6316, "pr_number": 6420, "commits_count": 0, "files_changed": 9, "response_length": 812, "file_count": 0, "needs_breakdown": false}
[FEATURE]: [Shift4] 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 t...
<think> PR Context: - Title: refactor(connector): Use connector_response_reference_id for Shift4 - Merged: 2023-10-21T12:33:01Z - Files changed: 1 files - Commits: 1 commits Implementation approach: ## Description <!-- Describe your changes in detail --> fixes #2316 ### Additional Changes - [ ] This PR mo...
{"issue_number": 2316, "pr_number": 2492, "commits_count": 1, "files_changed": 1, "response_length": 998, "file_count": 3, "needs_breakdown": false}
fix : update payment with PM and PMD giving requires_payment_method instead of requires_confirmation ## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix ## Description <!-- Describe your changes in detail --> Creating a payment with confirm false and no payment method and payment method...
<think> PR Context: - Title: Release v0.2.1 - Merged: 2023-02-20T08:26:27Z - Files changed: 22 files - Commits: 19 commits Implementation approach: ### Release v0.2.1 #### Addresses some of the bug fixes we found in testing - fix payment_status not updated when adding payment method ([#446]) - Decide connector on...
{"issue_number": 446, "pr_number": 611, "commits_count": 0, "files_changed": 22, "response_length": 746, "file_count": 0, "needs_breakdown": false}
fix(users): Accepting invite for org_admins Currently, when email feature flag is enabled and invite a org_admin, it throws error saying `InvalidRoleId`. When we try to accept invite for `org_admin`s, it again throws `InvalidRoleId`. This should not be the case, error should not be throws and invite should be accept...
<think> PR Context: - Title: fix(users): Allow accepting invites for `org_admin`s - Merged: 2024-10-08T11:43:23Z - Files changed: 6 files - Commits: 4 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Currently accepting invites for org_admin will not work. This PR fixes it. ...
{"issue_number": 6254, "pr_number": 6253, "commits_count": 1, "files_changed": 6, "response_length": 1249, "file_count": 8, "needs_breakdown": false}
[FEATURE]: Add support for updating elimination config ### Feature Description Add a new route for updating elimination config in the database when it is toggled. ### Possible Implementation Add a new route for updating elimination config in the database when it is toggled. ### Have you spent some time checking if...
<think> PR Context: - Title: feat(routing): Add support to update config for elimination routing - Merged: 2025-05-12T16:26:29Z - Files changed: 5 files - Commits: 8 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Add a new route for updating the elimination routing config w...
{"issue_number": 7939, "pr_number": 7938, "commits_count": 1, "files_changed": 5, "response_length": 1547, "file_count": 7, "needs_breakdown": false}
[FEATURE] add domain type for client secret ### Feature Description Create domain type for client secret ### Possible Implementation Make type `ClietSecret(String)` and use it wherever applicable ### Have you spent some time to check if this feature request has been raised before? - [X] I checked and didn't find...
<think> PR Context: - Title: fix(payments): fix client secret parsing - Merged: 2023-06-21T07:20:53Z - Files changed: 1 files - Commits: 6 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Client secret parsing logic could create bugs changed it to avoid them. Ideally , ...
{"issue_number": 1357, "pr_number": 1358, "commits_count": 1, "files_changed": 1, "response_length": 969, "file_count": 3, "needs_breakdown": false}
feat: add support to verify using recovery code Create a new endpoint that adds, - support to verify 2FA with recovery code - the provided recovery code can be used only once - then verification can be done with the remaining recovery codes only next time ( there are total 8 set of recovery codes that are being gener...
<think> PR Context: - Title: feat(users): add support to verify 2FA using recovery code - Merged: 2024-05-23T13:56:26Z - Files changed: 20 files - Commits: 12 commits Implementation approach: ## Description The PR adds support to verify 2FA using recovery code, in case TOTP is lost ### Additional Changes - [x...
{"issue_number": 4736, "pr_number": 4737, "commits_count": 1, "files_changed": 20, "response_length": 1909, "file_count": 15, "needs_breakdown": false}
feat(events): add APIs to list webhook events and webhook delivery attempts ## 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 chang...
<think> PR Context: - Title: feat(events): allow listing webhook events and webhook delivery attempts by business profile - Merged: 2024-03-22T11:46:44Z - Files changed: 9 files - Commits: 3 commits Implementation approach: ## Description <!-- Describe your changes in detail --> This PR extends the events list ...
{"issue_number": 4131, "pr_number": 4159, "commits_count": 1, "files_changed": 9, "response_length": 1805, "file_count": 10, "needs_breakdown": false}
chore: address Rust 1.77 clippy lints ## 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 detail --> This PR addresses the cl...
<think> PR Context: - Title: refactor(router): add parent caller function for DB - Merged: 2024-02-29T08:12:23Z - Files changed: 30 files - Commits: 26 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Currently Event tag for Db level logs are generic stating function names li...
{"issue_number": 4172, "pr_number": 3838, "commits_count": 1, "files_changed": 30, "response_length": 5846, "file_count": 73, "needs_breakdown": true}
feat(core): Add V2 Authentication to all available endpoints ## Type of Change - [ ] Bugfix - [ ] New feature - [x] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description This commit introduces V2 authentication mechanisms for various admin and client-side ...
<think> PR Context: - Title: feat: remove client_secret from payment_intent and update related code - Merged: 2025-04-10T13:34:30Z - Files changed: 24 files - Commits: 21 commits Implementation approach: Your PR Description ## Description 1. This commit changes how the client secret is generated 2. Change how cli...
{"issue_number": 7487, "pr_number": 7648, "commits_count": 1, "files_changed": 24, "response_length": 4053, "file_count": 23, "needs_breakdown": true}
fix(payment_methods): delete token when a payment reaches terminal state ## 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(payment_methods): delete token when a payment reaches terminal state - Merged: 2023-08-11T11:56:41Z - Files changed: 4 files - Commits: 1 commits Implementation approach: ## Description <!-- Describe your changes in detail --> The function call responsible for deleting card details ...
{"issue_number": 1818, "pr_number": 1929, "commits_count": 1, "files_changed": 4, "response_length": 1409, "file_count": 6, "needs_breakdown": false}
chore(analytics): create a seperate flow for a force sync Currently we use PaymentRetrieve for GET /payment/:id call, for force_sync use cases we should have a separate flow since the underlying execution differs significantly...
<think> PR Context: - Title: feat(analytics): add force retrieve call for force retrieve calls - Merged: 2024-02-28T13:54:43Z - Files changed: 7 files - Commits: 12 commits Implementation approach: Currently we use PaymentRetrieve for GET /payment/:id call, for force_sync use cases we should have a separate flow since...
{"issue_number": 3562, "pr_number": 3565, "commits_count": 1, "files_changed": 7, "response_length": 1427, "file_count": 9, "needs_breakdown": false}
[REFACTOR] : [NMI] 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 payment...
<think> PR Context: - Title: refactor(connector): [NMI] change error message from not supported to not implemented - Merged: 2024-01-31T11:51:43Z - Files changed: 1 files - Commits: 3 commits Implementation approach: ## Description <!-- Describe your changes in detail --> ### Additional Changes - [ ] This PR...
{"issue_number": 2843, "pr_number": 2848, "commits_count": 1, "files_changed": 1, "response_length": 1012, "file_count": 3, "needs_breakdown": false}
Refactor Nexi Nets: Remove Default Case Handling (Fixes #2275) ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Addresses Issue https://github.com/j...
<think> PR Context: - Title: fix(connector): [Forte] Response Handling for Verify Action - Merged: 2023-10-27T09:48:48Z - Files changed: 11 files - Commits: 4 commits Implementation approach: ## Description <!-- Describe your changes in detail --> Closes - [#2638](https://github.com/juspay/hyperswitch-cloud/issues/...
{"issue_number": 2638, "pr_number": 2601, "commits_count": 2, "files_changed": 11, "response_length": 1201, "file_count": 5, "needs_breakdown": false}