Dataset Viewer
Auto-converted to Parquet Duplicate
repo
stringclasses
1 value
instance_id
stringlengths
22
24
problem_statement
stringlengths
24
24.1k
patch
stringlengths
0
1.9M
test_patch
stringclasses
1 value
created_at
stringdate
2022-11-25 05:12:07
2025-10-09 08:44:51
hints_text
stringlengths
11
235k
base_commit
stringlengths
40
40
test_instructions
stringlengths
0
232k
patch_line_additions
listlengths
0
217
patch_line_deletions
listlengths
0
218
file_extensions
listlengths
0
7
total_file_changes
int64
0
293
juspay/hyperswitch
juspay__hyperswitch-9755
Bug: [BUG] Migration runner fails due to Just already present ### Description: In `docker-compose.yml`, the `migration-runner` service fails if we run `docker compose up` more than once, because, the `just` installer doesn't handle the case where just is already installed. ### Solution: Add a conditional check to...
diff --git a/docker-compose.yml b/docker-compose.yml index e16dd74466b..4e2600c8344 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -63,7 +63,9 @@ services: bash -c " apt-get update && apt-get install -y curl xz-utils && curl --proto '=https' --tlsv1.2 -LsSf https://github.com/diesel-rs...
2025-10-08T10:15:48Z
## 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 --> The migration-runner service in the `docker-compose.yml` file f...
b52aafa8873fc4704bd69014cc457daf32d5523c
Ran `docker compose up -d` twice. <img width="476" height="491" alt="Screenshot 2025-10-08 at 3 44 53 PM" src="https://github.com/user-attachments/assets/c9de99cd-ac3a-4ab9-8c4e-5a1bb8d48d84" />
[ { "file_path": "docker-compose.yml", "lines": [ " if ! command -v just >/dev/null 2>&1; then\n", " curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to /usr/local/bin\n", " fi &&\n" ] } ]
[ { "file_path": "docker-compose.yml", "lines": [ " curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to /usr/local/bin &&\n" ] } ]
[ "yml" ]
1
juspay/hyperswitch
juspay__hyperswitch-9715
Bug: Create indexes for tracker tables in v2_compatible_migrations
diff --git a/v2_compatible_migrations/2025-10-07-131000_add_indexes_on_id_columns/down.sql b/v2_compatible_migrations/2025-10-07-131000_add_indexes_on_id_columns/down.sql new file mode 100644 index 00000000000..fb18e635e20 --- /dev/null +++ b/v2_compatible_migrations/2025-10-07-131000_add_indexes_on_id_columns/down.sql...
2025-10-07T08:02:36Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> Since `id` column is introduced as varchar for a few major trac...
cc4eaed5702dbcaa6c54a32714b52f479dfbe85b
Ran diesel migrations
[ { "file_path": "v2_compatible_migrations/2025-10-07-131000_add_indexes_on_id_columns/down.sql", "lines": [ "-- Drop unique indexes on id columns\n", "-- This will remove the unique indexes created for id column performance optimization and data integrity\n", "\n", "-- tracker tables\...
[]
[ "sql" ]
2
juspay/hyperswitch
juspay__hyperswitch-9761
Bug: [CHORE] add metrics for ignored incoming webhooks In some scenarios, application need to acknowledge webhook requests with 200 even though the resource was not found for avoiding the webhooks to queue in connector systems. For such scenarios, incoming webhook flow can fail and even then the response is 200. A ...
diff --git a/crates/router/src/core/metrics.rs b/crates/router/src/core/metrics.rs index efb463b3a37..4110f470cee 100644 --- a/crates/router/src/core/metrics.rs +++ b/crates/router/src/core/metrics.rs @@ -48,6 +48,7 @@ counter_metric!( WEBHOOK_EVENT_TYPE_IDENTIFICATION_FAILURE_COUNT, GLOBAL_METER ); +counter...
2025-10-09T08:44:51Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description This PR adds a metric `WEBHOOK_FLOW_FAILED_BUT_ACKNOWLEDGED` to track incoming webhooks that failed proce...
35a20f8e4aac0fcfe6c409964391f2222f3c6770
Cannot be tested. Metrics will be visible on Grafana. Can be queried using: ```promql webhook_flow_failed_but_acknowledged_total{connector="adyen",merchant_id="merchant_123"} ```
[ { "file_path": "crates/router/src/core/metrics.rs", "lines": [ "counter_metric!(WEBHOOK_FLOW_FAILED_BUT_ACKNOWLEDGED, GLOBAL_METER);\n" ] }, { "file_path": "crates/router/src/core/webhooks/incoming.rs", "lines": [ " merchant_context.get_merchant_account().get_i...
[ { "file_path": "crates/router/src/core/webhooks/incoming.rs", "lines": [ " let result =\n", " handle_incoming_webhook_error(error, connector, connector_name, request_details);\n", " let result =\n", " handle_incoming_webhook_error(e...
[ "rs" ]
2
juspay/hyperswitch
juspay__hyperswitch-9747
Bug: [FEATURE] Multisafepay wasm changes ### Feature Description Add the following payment methods in wasm for multisafepay TRUSTLY ALIPAY WE CHAT PAY EPS MBway Sofort ### Possible Implementation [ ### Have you spent some time checking if this feature request has been raised before? - ...
diff --git a/crates/connector_configs/toml/development.toml b/crates/connector_configs/toml/development.toml index 027c82e3af8..6729c0add3d 100644 --- a/crates/connector_configs/toml/development.toml +++ b/crates/connector_configs/toml/development.toml @@ -2860,6 +2860,18 @@ api_secret="Merchant Id" api_key="Enter API...
2025-10-08T10:20:42Z
## 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 --> Add the following payment methods in wasm for multisafepay -...
b52aafa8873fc4704bd69014cc457daf32d5523c
[ { "file_path": "crates/connector_configs/toml/development.toml", "lines": [ "[[multisafepay.bank_redirect]]\n", "payment_method_type = \"trustly\"\n", "[[multisafepay.bank_redirect]]\n", "payment_method_type = \"eps\"\n", "[[multisafepay.bank_redirect]]\n", "payment_metho...
[ { "file_path": "crates/connector_configs/toml/production.toml", "lines": [ "\n" ] }, { "file_path": "crates/connector_configs/toml/sandbox.toml", "lines": [ "\n" ] } ]
[ "toml" ]
3
juspay/hyperswitch
juspay__hyperswitch-9705
Bug: [FEATURE] Add Client Auth for Subscriptions APIs ### Feature Description Need to implement auth for client side interactions ### Possible Implementation Subscriptions APIs need to support publishible_key + client_secret auth ### Have you spent some time checking if this feature request has been raised befo...
diff --git a/crates/api_models/src/subscription.rs b/crates/api_models/src/subscription.rs index 2829d58b883..7c89eec5e52 100644 --- a/crates/api_models/src/subscription.rs +++ b/crates/api_models/src/subscription.rs @@ -74,6 +74,12 @@ pub struct SubscriptionResponse { /// Optional customer ID associated with th...
2025-10-07T12:46:18Z
## 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 --> This pull request introduces several enhancements and refactors...
f2c2bd64393f24aaac9081622fde52752ae35593
1. Subscription create ``` curl --location 'http://localhost:8080/subscriptions/create' \ --header 'Content-Type: application/json' \ --header 'X-Profile-Id: pro_CohRshEanxkKSMHgyu6a' \ --header 'api-key: dev_tV0O30052zhBCqdrhGMfQxMN0DerXwnMkNHX6ndCbs0BovewetTaXznBQOCLGAi2' \ --data '{ "customer_id": "cus_...
[ { "file_path": "crates/api_models/src/subscription.rs", "lines": [ "\n", " /// Payment details for the invoice.\n", " pub payment: Option<PaymentResponseData>,\n", "\n", " /// Invoice Details for the subscription.\n", " pub invoice: Option<Invoice>,\n", ...
[ { "file_path": "crates/api_models/src/subscription.rs", "lines": [ " pub client_secret: Option<String>,\n", " pub client_secret: Option<String>,\n", " /// Identifier for customer.\n", " pub customer_id: common_utils::id_type::CustomerId,\n", "\n", " /// Bil...
[ "sql", "rs" ]
13
juspay/hyperswitch
juspay__hyperswitch-9711
Bug: [FEATURE] loonio webhooks ### Feature Description Implement webhook support for loonio ### Possible Implementation Implement Webhook - Payment ### Have you spent some time checking if this feature request has been raised before? - [x] I checked and didn't find a similar issue ### Have you read the Contrib...
diff --git a/crates/hyperswitch_connectors/src/connectors/loonio.rs b/crates/hyperswitch_connectors/src/connectors/loonio.rs index 96ee717b862..1de6f4236d4 100644 --- a/crates/hyperswitch_connectors/src/connectors/loonio.rs +++ b/crates/hyperswitch_connectors/src/connectors/loonio.rs @@ -2,12 +2,13 @@ pub mod transform...
2025-10-07T09:18:54Z
## 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 --> Loomio webhooks for payments ## payment request ```j...
b3beda7d7172396452e34858cb6bd701962f75ab
[ { "file_path": "crates/hyperswitch_connectors/src/connectors/loonio.rs", "lines": [ " crypto::Encryptable,\n", " ext_traits::{ByteSliceExt, BytesExt},\n", "use error_stack::ResultExt;\n", "use masking::{ExposeInterface, Mask, Secret};\n", " let response: loonio::Lo...
[ { "file_path": "crates/hyperswitch_connectors/src/connectors/loonio.rs", "lines": [ " ext_traits::BytesExt,\n", "use error_stack::{report, ResultExt};\n", "use masking::{ExposeInterface, Mask};\n", " let response: loonio::LoonioTransactionSyncResponse = res\n", " ...
[ "rs" ]
2
juspay/hyperswitch
juspay__hyperswitch-9782
Bug: [BUG] Rebilling should be "1" for ntid flow for nuvei ### Bug Description : Make rebilling as "1" in connector request Are you using hyperswitch hosted version? Yes/No If yes, please provide the value of the `x-request-id` response header to help us debug your issue. If not (or if building/running locally)...
diff --git a/config/deployments/integration_test.toml b/config/deployments/integration_test.toml index 11cd0026ea0..522535e3696 100644 --- a/config/deployments/integration_test.toml +++ b/config/deployments/integration_test.toml @@ -563,7 +563,7 @@ ideal = { currency = "EUR" } sofort = { country = "AU,CA,GB,IN,JP,NZ,P...
2025-10-08T06:21:42Z
## 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 --> `is_rebilling` should be sent as `1` always for `NTID` flow in ...
47f7e258bcddad62ef89bb896ae4117b5ac32038
[ { "file_path": "config/deployments/integration_test.toml", "lines": [ "google_pay = { country = \"AF,AX,AL,DZ,AD,AO,AI,AQ,AG,AR,AM,AW,AU,AT,AZ,BS,BH,BD,BB,BY,BE,BZ,BJ,BM,BT,BO,BQ,BA,BW,BV,BR,IO,BN,BG,BF,KH,CM,CA,CV,KY,CF,TD,CL,CN,TW,CX,CC,CO,KM,CG,CK,CR,CI,HR,CW,CY,CZ,DK,DJ,DM,DO,EC,EG,SV,GQ,ER,EE,ET,...
[ { "file_path": "config/deployments/integration_test.toml", "lines": [ "google_pay = { country = \"AF,AX,AL,DZ,AD,AO,AI,AQ,AG,AR,AM,AW,AU,AT,AZ,BS,BH,BD,BB,BY,BE,BZ,BJ,BM,BT,BO,BQ,BA,BW,BV,BR,IO,BN,BG,BF,KH,CM,CA,CV,KY,CF,TD,CL,CN,TW,CX,CC,CO,KM,CG,CK,CR,CI,HR,CW,CY,CZ,DK,DJ,DM,DO,EC,EG,SV,GQ,ER,EE,ET,...
[ "toml", "rs" ]
5
juspay/hyperswitch
juspay__hyperswitch-9733
"Bug: [FEATURE] Finix: Add Google Pay Connector Tokenization Flow\n\n\n\n### Feature Description\n\n(...TRUNCATED)
"diff --git a/config/config.example.toml b/config/config.example.toml\nindex c4eabbb369f..cfaefc600f(...TRUNCATED)
2025-10-07T20:50:17Z
"## Type of Change\r\n<!-- Put an `x` in the boxes that apply -->\r\n\r\n- [ ] Bugfix\r\n- [x] New f(...TRUNCATED)
5c6635be29def50cd64a40a16d906bc21175a381
"\r\n\r\nScreenshot of PMT Flow:\r\n<img width=\"1725\" height=\"303\" alt=\"Screenshot 2025-10-10 a(...TRUNCATED)
[{"file_path":"config/config.example.toml","lines":["[pm_filters.finix]\n","google_pay = { country =(...TRUNCATED)
[{"file_path":"config/deployments/integration_test.toml","lines":["finix= { long_lived_token = false(...TRUNCATED)
[ "toml", "rs" ]
14
juspay/hyperswitch
juspay__hyperswitch-9739
Bug: Add support to create subscription with plans having trial period
"diff --git a/crates/api_models/src/payments.rs b/crates/api_models/src/payments.rs\nindex 5d8c7a3f0(...TRUNCATED)
2025-10-07T15:18:41Z
"## Type of Change\r\n<!-- Put an `x` in the boxes that apply -->\r\n\r\n- [ ] Bugfix\r\n- [ ] New f(...TRUNCATED)
f71090a94c55c421ffffd1d7608c33bac24a84e4
"\r\n1. Create Merchant Account, create API key, create payment processor, create billing processor\(...TRUNCATED)
[{"file_path":"crates/api_models/src/payments.rs","lines":["#[derive(Clone, Debug, Eq, PartialEq, se(...TRUNCATED)
[{"file_path":"crates/api_models/src/payments.rs","lines":["#[derive(Clone, Debug, Eq, PartialEq, se(...TRUNCATED)
[ "sql", "rs" ]
19
juspay/hyperswitch
juspay__hyperswitch-9703
Bug: feat(subscription): domain_model for subscription and invoice
"diff --git a/crates/hyperswitch_domain_models/src/invoice.rs b/crates/hyperswitch_domain_models/src(...TRUNCATED)
2025-10-01T09:39:23Z
"## Type of Change\r\n<!-- Put an `x` in the boxes that apply -->\r\n\r\n- [ ] Bugfix\r\n- [ ] New f(...TRUNCATED)
abcc70be074130827c14f90ff4cc7de964994efa
"Create Billing Connector\r\n\r\n```\r\ncurl --location 'http://localhost:8080/account/merchant_1759(...TRUNCATED)
[{"file_path":"crates/hyperswitch_domain_models/src/invoice.rs","lines":["use std::str::FromStr;\n",(...TRUNCATED)
[{"file_path":"crates/hyperswitch_domain_models/src/subscription.rs","lines":["use common_utils::eve(...TRUNCATED)
[ "rs" ]
15
End of preview. Expand in Data Studio
README.md exists but content is empty.
Downloads last month
12