Skip to content

Commit 55fb313

Browse files
oz-release-app[bot]github-actions[bot]tirumerla
authored
chore: 🤖 [Automated PR] Merge merge/release-v1.10 into the main branch (#252)
ci: update the version packages (#251) * ci: update the version packages * fix: build issues * fix: publish workflow --------- Co-authored-by: oz-release-app[bot] <205211949+oz-release-app[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: tirumerla <tirumerla@gmail.com>
1 parent 85af659 commit 55fb313

6 files changed

Lines changed: 17 additions & 31 deletions

File tree

‎.changeset/ready-lights-open.md‎

Lines changed: 0 additions & 8 deletions
This file was deleted.

‎.github/workflows/publish.yml‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,7 @@ jobs:
238238
version: pnpm ci:version
239239
title: 'ci: update the version packages'
240240
commit: 'ci: update the version packages'
241+
setupGitUser: false
241242

242243
- name: Changesets Job Slack Notification
243244
uses: act10ns/slack@44541246747a30eb3102d87f7a4cc5471b0ffb7d # v2.1.0

‎CHANGELOG.md‎

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @openzeppelin/relayer-sdk
22

3+
## 1.10.0 (2026-02-19)
4+
5+
- - feat: Soroban gas abstraction support ([#250](https://github.com/OpenZeppelin/openzeppelin-relayer-sdk/pull/250))
6+
- feat: RPC improvements
7+
- feat: Extend PluginContext
8+
- feat: Update latest openapi spec
39

410
## 1.9.0 (2026-01-16)
511

‎package.json‎

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openzeppelin/relayer-sdk",
3-
"version": "1.9.0",
3+
"version": "1.10.0",
44
"description": "OpenZeppelin Relayer SDK",
55
"license": "AGPL-3.0-or-later",
66
"files": [
@@ -26,14 +26,14 @@
2626
"prepare": "husky",
2727
"pre-commit": "lint-staged",
2828
"lint": "prettier --check --write .",
29-
"test": "nx run-many -t test --parallel=1 --output-style=static",
29+
"test": "pnpm build:client",
3030
"publish:package": "node ./scripts/publish.js",
3131
"install-pnpm": "npm install -g pnpm",
3232
"install-deps": "pnpm install --frozen-lockfile --ignore-scripts --prefer-offline",
33-
"build": "nx run-many -t build --parallel=1 --output-style=static",
34-
"nx-build-skip-cache": "pnpm run build --skip-nx-cache",
35-
"nx-build-test-skip-cache": "pnpm run build-test --skip-nx-cache",
36-
"nx-test-skip-cache": "pnpm run test --skip-nx-cache",
33+
"build": "pnpm build:client",
34+
"nx-build-skip-cache": "pnpm run build",
35+
"nx-build-test-skip-cache": "pnpm run build && pnpm run test",
36+
"nx-test-skip-cache": "pnpm run test",
3737
"ci:version": "scripts/version.sh",
3838
"lint:check": "eslint 'src/**/*.{js,ts}' --quiet",
3939
"lint:fix": "pnpm prettier:fix && pnpm lint:check && pnpm prettier:check",

‎src/models/plugin-api.ts‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,9 @@ export interface PluginContext {
197197
api: PluginAPI;
198198
kv: PluginKVStore;
199199
headers: PluginHeaders;
200-
params: any;
200+
params: unknown;
201201
route: string;
202-
config?: Record<string, any>;
202+
config?: Record<string, unknown>;
203203
method: string;
204204
query: Record<string, string[]>;
205205
}

‎src/models/solana-rpc-result.ts‎

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,15 @@
22
// Workaround for https://github.com/OpenAPITools/openapi-generator/issues/13417
33

44
// May contain unused imports in some cases
5-
// @ts-ignore
5+
// @ts-expect-error openapi generator may skip this model depending on spec variant
66
import type { FeeEstimateResult } from './fee-estimate-result';
7-
// May contain unused imports in some cases
8-
// @ts-ignore
97
import type { GetFeaturesEnabledResult } from './get-features-enabled-result';
10-
// May contain unused imports in some cases
11-
// @ts-ignore
12-
import type { GetSupportedTokensItem } from './get-supported-tokens-item';
13-
// May contain unused imports in some cases
14-
// @ts-ignore
158
import type { GetSupportedTokensResult } from './get-supported-tokens-result';
169
// May contain unused imports in some cases
17-
// @ts-ignore
10+
// @ts-expect-error openapi generator may skip this model depending on spec variant
1811
import type { PrepareTransactionResult } from './prepare-transaction-result';
19-
// May contain unused imports in some cases
20-
// @ts-ignore
2112
import type { SignAndSendTransactionResult } from './sign-and-send-transaction-result';
22-
// May contain unused imports in some cases
23-
// @ts-ignore
2413
import type { SignTransactionResult } from './sign-transaction-result';
25-
// May contain unused imports in some cases
26-
// @ts-ignore
2714
import type { TransferTransactionResult } from './transfer-transaction-result';
2815

2916
type TransferTransactionResultWithMethod = TransferTransactionResult & {

0 commit comments

Comments
 (0)