Skip to content

Commit cecaac0

Browse files
authored
chore: release v2.2.0-beta.6 rust + ts-sdk v0.2.0-beta.6 (#397)
Co-authored-by: Jo D <dev-jodee@users.noreply.github.com>
1 parent 56aa4b6 commit cecaac0

File tree

6 files changed

+181
-8
lines changed

6 files changed

+181
-8
lines changed

CHANGELOG.md

Lines changed: 173 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,176 @@
1+
## 2.2.0-beta.6 - 2026-03-20
2+
3+
4+
### Bug Fixes
5+
6+
- harden docker publish workflow run guard (#396)
7+
8+
- harden CPI inner-instruction reconstruction edge cases (#394)
9+
10+
- stabilize bundle, lighthouse header, and transfer-hook tests (#392)
11+
12+
- improve cherry-pick-sync to handle squash-merged sync PRs (#387)
13+
14+
15+
### Features
16+
17+
- add swap_gas plugin + plugin infrastructure (#383)
18+
19+
- add cherry-pick-sync skill (#385)
20+
21+
## 2.0.5 - 2026-03-11
22+
23+
24+
### Bug Fixes
25+
26+
- add repository url for npm trusted publisher provenance (#376)
27+
28+
## ts-sdk-v0.2.0 - 2026-03-09
29+
30+
31+
### Bug Fixes
32+
33+
- add ESLint v9 flat config with @solana/eslint-config-solana (#371)
34+
35+
- update Rust version to 1.88 for time crate compatibility (#364)
36+
37+
- add missing signature field to SignAndSendTransactionResponse (#353)
38+
39+
- grant pull-request write for fork live marker comment (#360)
40+
41+
- guard against null head.repo when fork is deleted (#358)
42+
43+
- handle missing mint in transfer fee calculation and fix program_id checks (#349)
44+
45+
- patch remaining dependabot security vulnerabilities (#348)
46+
47+
- patch 6 dependabot security vulnerabilities (#346)
48+
49+
50+
### Documentation
51+
52+
- add CONTRIBUTING.md and SECURITY.md (#340)
53+
54+
55+
### Features
56+
57+
- implement paymaster client with kit plugin interfaces (#354)
58+
59+
- add kora-client and kora-operator skills (#342)
60+
61+
## 2.0.4 - 2026-02-03
62+
63+
64+
### Bug Fixes
65+
66+
- clear JUPITER_API_KEY env var in jupiter oracle test (#329)
67+
68+
- sign if create ata ix found (cherry-pick from #267) (#327)
69+
70+
71+
### Features
72+
73+
- add Claude skill for automated full release workflow (#330)
74+
75+
76+
### Refactoring
77+
78+
- migrate from jupiter lite API to v3 pro API (#321)
79+
80+
## ts-sdk-v0.1.2 - 2026-01-28
81+
82+
83+
### Documentation
84+
85+
- update sdk readme for release (#314)
86+
87+
- update examples to @solana/kit v5.x and add typechecks (#309)
88+
89+
- update readme with latest release and absolute logo path (#307)
90+
91+
92+
### Features
93+
94+
- add kit plugin with typed responses (#311)
95+
96+
## 2.0.3 - 2026-01-21
97+
98+
99+
### Hotfix
100+
101+
- (PRO-747) Improved Durable Nonce handling & security (#303)
102+
103+
## 2.0.2 - 2026-01-12
104+
105+
106+
### Bug Fixes
107+
108+
- harden sig_verify, oracle staleness, transfer fees, and CPI stubs (#378)
109+
110+
- validate rpc cache redis connection at startup (#375)
111+
112+
- verify required env vars exist during config validation (#374)
113+
114+
- preserve RPC errors in transfer_transaction source ATA lookup (#373)
115+
116+
- add context message to ConfigError variant (#368)
117+
118+
- validate pubkey format in config arrays (#352)
119+
120+
- grant pull-request write for fork live marker comment (#359)
121+
122+
123+
### Cherry-pick
124+
125+
- Hotfix example packages and Jupiter v3 API migration (#326)
126+
127+
128+
### Documentation
129+
130+
- add comprehensive rustdoc for public RPC types (#356)
131+
132+
133+
### Features
134+
135+
- add createKitKoraClient for plugin-based gasless transactions (#388)
136+
137+
- cache blockhash in redis (5s TTL) (#361)
138+
139+
- add Claude skill for automated full release workflow (#328)
140+
141+
142+
### Refactoring
143+
144+
- reduce error boilerplate with a from-impl macro (#362)
145+
146+
147+
### Testing
148+
149+
- migrate TS integration tests to LiteSVM (#389)
150+
151+
- complete FeePayerPolicy unit test matrix (#365)
152+
153+
- add missing retry and price bounds test coverage (#370)
154+
155+
- add comprehensive unit tests for instruction parsing (System, SPL, Token-2022) (#355)
156+
157+
158+
### Hotfix
159+
160+
- (PRO-639) Fix big transaction causing error when using v0 transaction (#297)
161+
162+
## ts-sdk-v0.2.0-beta.4 - 2026-01-29
163+
164+
165+
### Documentation
166+
167+
- update sdk readme for release (#314)
168+
169+
170+
### Features
171+
172+
- add reCAPTCHA support to TypeScript client (#317)
173+
1174
## 2.2.0-beta.5 - 2026-02-03
2175

3176

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ all = { level = "deny", priority = -1 }
1313
module_inception = { level = "allow", priority = 0 }
1414

1515
[workspace.package]
16-
version = "2.2.0-beta.5"
16+
version = "2.2.0-beta.6"
1717
edition = "2021"
1818
license = "MIT"
1919
repository = "https://github.com/solana-foundation/kora"
2020

2121
[workspace.dependencies]
22-
kora-lib = { path = "crates/lib", version = "2.2.0-beta.5" }
22+
kora-lib = { path = "crates/lib", version = "2.2.0-beta.6" }
2323
serde = { version = "1.0", features = ["derive"] }
2424
serde_json = "1.0"
2525
anyhow = "1.0.95"

crates/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kora-cli"
3-
version = "2.2.0-beta.5"
3+
version = "2.2.0-beta.6"
44
edition = "2021"
55
description = "CLI for Kora gasless relayer"
66
license = "MIT"

crates/lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kora-lib"
3-
version = "2.2.0-beta.5"
3+
version = "2.2.0-beta.6"
44
edition = "2021"
55
license = "MIT"
66
description = "Core library for Kora gasless relayer"

sdks/ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@solana/kora",
3-
"version": "0.2.0-beta.5",
3+
"version": "0.2.0-beta.6",
44
"description": "TypeScript SDK for Kora RPC",
55
"main": "dist/src/index.js",
66
"type": "module",

0 commit comments

Comments
 (0)