Dataset Viewer
Auto-converted to Parquet Duplicate
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}
End of preview. Expand in Data Studio

Rust Commit Dataset - Hyperswitch

Dataset Description

This dataset contains Rust commit messages paired with their corresponding code patches from the Hyperswitch repository.

Dataset Summary

  • Total Examples: 900
  • Language: Rust
  • Source: Hyperswitch GitHub repository
  • Format: Prompt-response pairs for supervised fine-tuning (SFT)

Data Fields

  • prompt: The commit message describing the change
  • response: The git patch/diff showing the actual code changes

Example

{
  "prompt": "fix: update payment status handling",
  "response": "diff --git a/src/payment.rs b/src/payment.rs\n..."
}

Usage

from datasets import load_dataset

# Load dataset
dataset = load_dataset("archit11/hyperswitch-issue-to-code_v3")

# Access train/test splits
train_data = dataset['train']
test_data = dataset['test']

# Example
print(train_data[0]['prompt'])
print(train_data[0]['response'])

Training

This dataset is designed for fine-tuning code generation models on Rust commit-to-patch generation tasks.

Example training command:

python train_sft.py \
    --dataset archit11/hyperswitch-issue-to-code_v3 \
    --model Qwen/Qwen3-4B \
    --output_dir ./qwen-rust-sft \
    --use_4bit \
    --use_lora

Data Collection

The data was collected using PyDriller and tree-sitter for parsing Rust identifiers:

  • Only commits with 20+ lines changed are included
  • Rust-specific identifier tracking (functions, structs, enums, traits, impls, modules)

Citation

If you use this dataset, please cite the Hyperswitch repository:

@misc{hyperswitch2024,
  title={Hyperswitch},
  author={Juspay},
  year={2024},
  url={https://github.com/juspay/hyperswitch}
}

License

This dataset follows the same license as the Hyperswitch project.

Downloads last month
25