Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"packages/core": "0.3.0",
"packages/payments": "1.0.3"
"packages/core": "0.4.0",
"packages/payments": "1.1.0"
}
7 changes: 7 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.4.0](https://github.com/AmbossTech/sdk/compare/core-v0.3.0...core-v0.4.0) (2026-08-20)


### Features

* **payments:** pre-warm the send path with prepareSend [AMB-3038] ([#42](https://github.com/AmbossTech/sdk/issues/42)) ([bd505a3](https://github.com/AmbossTech/sdk/commit/bd505a3d8acd0d2344d254d045872e7de62962be))

## [0.3.0](https://github.com/AmbossTech/sdk/compare/core-v0.2.0...core-v0.3.0) (2026-08-05)


Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ambosstech/core",
"version": "0.3.0",
"version": "0.4.0",
"description": "Shared client and HTTP/GraphQL transport for Amboss SDKs",
"license": "MIT",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type { ClientConfig, FetchLike, ResolvedClientConfig } from './types.js';

const DEFAULT_BASE_URL = 'https://rails.amboss.tech/graphql';
const DEFAULT_TIMEOUT_MS = 30_000;
const SDK_VERSION = '0.3.0'; // x-release-please-version
const SDK_VERSION = '0.4.0'; // x-release-please-version

export class AmbossClient {
protected readonly config: ResolvedClientConfig;
Expand Down
7 changes: 7 additions & 0 deletions packages/payments/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.1.0](https://github.com/AmbossTech/sdk/compare/payments-v1.0.3...payments-v1.1.0) (2026-08-20)


### Features

* **payments:** pre-warm the send path with prepareSend [AMB-3038] ([#42](https://github.com/AmbossTech/sdk/issues/42)) ([bd505a3](https://github.com/AmbossTech/sdk/commit/bd505a3d8acd0d2344d254d045872e7de62962be))

## [1.0.3](https://github.com/AmbossTech/sdk/compare/payments-v1.0.2...payments-v1.0.3) (2026-08-18)


Expand Down
2 changes: 1 addition & 1 deletion packages/payments/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ambosstech/payments",
"version": "1.0.3",
"version": "1.1.0",
"description": "Amboss Payments SDK: webhook verification, environments, wallets, transactions",
"license": "MIT",
"repository": {
Expand Down
Loading