Skip to content

Merge release/lightspark-sdk-v0.19.1 into main #222

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 30 commits into from
Feb 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
b966c66
Merge pull request #202 from lightsparkdev/release/lightspark-sdk-v0.…
github-actions[bot] Sep 3, 2024
192326f
Add the uma-configuration file to the demo VASP
jklein24 Sep 10, 2024
0ddf5e8
Merge pull request #207 from lightsparkdev/feat/configfile
jklein24 Sep 10, 2024
a7488b2
adding sending / receiving vasp methods for demo
matthappens Sep 4, 2024
9817cd7
change path for requesting invoice
matthappens Sep 9, 2024
ccb0550
adding sending / receiving vasp methods for demo (#204)
matthappens Sep 11, 2024
adbbca9
adding basic receiver vasp methods
matthappens Sep 9, 2024
e6e92e8
remove duplicate code for create invoices
matthappens Sep 9, 2024
4ba4298
change to fetching well known configuration from sending vasp
matthappens Sep 17, 2024
55251cf
revert to previous endpoint
matthappens Sep 17, 2024
e17598e
adding basic receiver vasp methods (#205)
matthappens Sep 17, 2024
f56e771
adding sender vasp demo endpoints
matthappens Sep 9, 2024
c8f8a48
nits and such
matthappens Sep 10, 2024
a93d657
moving parameter to json body
matthappens Sep 10, 2024
119a9e7
Update SendingVasp.kt
matthappens Sep 18, 2024
7acf4da
ms -> s
matthappens Sep 18, 2024
1fffb04
adding sender vasp demo endpoints (#206)
matthappens Sep 18, 2024
0427a3f
Add explicit timeouts to the Requester
jklein24 Sep 23, 2024
8ad4c0b
Merge pull request #208 from lightsparkdev/fix/explicittimeout
jklein24 Sep 23, 2024
a6d5582
Create SECURITY.md
joelweinberger Sep 30, 2024
af198d9
Merge pull request #209 from lightsparkdev/joelweinberger-patch-2
joelweinberger Sep 30, 2024
86e830e
Regenerating SDKs following introspection of schemas.
JasonCWang Oct 10, 2024
4197b84
Merge pull request #210 from lightsparkdev/sdk-regen/6Gzn0g
JasonCWang Oct 10, 2024
6a463b3
Bump ci runners to macos-13. (#214)
jklein24 Feb 12, 2025
8134d17
Expose idempotency keys for operations which allow them. (#212)
jklein24 Feb 12, 2025
993f94d
Add the outgoing_payment_for_idempotency_key query. (#213)
jklein24 Feb 12, 2025
e0e32f7
Merge release/lightspark-sdk-v0.19.0 into develop (#215)
github-actions[bot] Feb 12, 2025
bc4d70c
Remove an extra param for outgoing_payment_for_idempotency_key (#219)
jklein24 Feb 13, 2025
2a67dec
Bump lightspark-sdk to version 0.19.1
Feb 13, 2025
f62e59e
Merge branch 'main' into release/lightspark-sdk-v0.19.1
jklein24 Feb 13, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lightspark-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ Start by installing the SDK from maven:
**build.gradle:**
```groovy
dependencies {
implementation "com.lightspark:lightspark-sdk:0.19.0"
implementation "com.lightspark:lightspark-sdk:0.19.1"
}
```

or with **build.gradle.kts:**
```kotlin
dependencies {
implementation("com.lightspark:lightspark-sdk:0.19.0")
implementation("com.lightspark:lightspark-sdk:0.19.1")
}
```

Expand Down
2 changes: 1 addition & 1 deletion lightspark-sdk/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GROUP=com.lightspark
POM_ARTIFACT_ID=lightspark-sdk
# Don't bump this manually. Run `scripts/versions.main.kt <new_version>` to bump the version instead.
VERSION_NAME=0.19.0
VERSION_NAME=0.19.1

POM_DESCRIPTION=The Lightspark API SDK for Kotlin and Java.
POM_INCEPTION_YEAR=2023
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ query OutgoingPaymentForIdempotencyKey(
${'$'}idempotency_key: String!
) {
outgoing_payment_for_idempotency_key(input: {
idempotency_key: ${'$'}idempotency_key,
statuses: ${'$'}transactionStatuses
idempotency_key: ${'$'}idempotency_key
}) {
payment {
...OutgoingPaymentFragment
Expand Down
Loading