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 |
|---|---|---|---|---|---|---|---|---|
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" />
| |
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
| |
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"}
```
| |
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 | ||
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_... | |
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 | ||
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 | ||
juspay/hyperswitch | juspay__hyperswitch-9733 | Bug: [FEATURE] Finix: Add Google Pay Connector Tokenization Flow
### Feature Description
Finix: Add Google Pay Connector Tokenization Flow
### Possible Implementation
Finix: Add Google Pay Connector Tokenization Flow
### Have you spent some time checking if this feature request has been raised before?
- [x] I c... | diff --git a/config/config.example.toml b/config/config.example.toml
index c4eabbb369f..cfaefc600f9 100644
--- a/config/config.example.toml
+++ b/config/config.example.toml
@@ -962,6 +962,9 @@ apple_pay = { country = "US,CA,IL,GB", currency = "ILS,USD,EUR" }
[pm_filters.paysafe]
apple_pay = {country = "AF,AX,AL,DZ,AS... | 2025-10-07T20:50:17Z | ## Type of Change
<!-- Put an `x` in the boxes that apply -->
- [ ] Bugfix
- [x] New feature
- [ ] Enhancement
- [ ] Refactoring
- [ ] Dependency updates
- [ ] Documentation
- [ ] CI/CD
Closes this [issue](https://github.com/juspay/hyperswitch/issues/9733)
## Description
<!-- Describe your changes in d... | 5c6635be29def50cd64a40a16d906bc21175a381 |
Screenshot of PMT Flow:
<img width="1725" height="303" alt="Screenshot 2025-10-10 at 12 35 50 PM" src="https://github.com/user-attachments/assets/073251b3-0a49-45da-ac62-e6e7d741e41c" />
Postman Test
Payments-Create:
Request:
```
curl --location 'http://localhost:8080/payments' \
--header 'Content-... | |
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) | |
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) |
End of preview. Expand in Data Studio
README.md exists but content is empty.
- Downloads last month
- 13