Skip to content

Commit 1a0ceaa

Browse files
chore(release): 4.23.0-rc.1
# [4.23.0-rc.1](v4.22.0...v4.23.0-rc.1) (2026-01-07) ### Bug Fixes * handle undefined response in dev-proxy error callback ([6902ceb](6902ceb)) * prevent deploy workflow from triggering on unmerged PR close ([a69a165](a69a165)) * strip decimals when pasting formatted numbers in amount fields ([fd8b204](fd8b204)) * style delete action in red for visual distinction ([f1dfeb0](f1dfeb0)) * truncate long account names with ellipsis in dashboard cards ([8c0b3df](8c0b3df)) * validate decimals in amount fields ([#203](#203)) ([3ce03b4](3ce03b4)) ### Features * Add active IPO count badge to navigation ([#196](#196)) ([8f7c5c3](8f7c5c3)) * add context menu and fix responsive dashboard cards ([f14d1dc](f14d1dc)) * add transaction status icons with unified tx-status component ([#198](#198)) ([058b689](058b689)) * display SendMany transaction transfers ([#199](#199)) ([d1b2eff](d1b2eff)) * **reveal-seed:** redesign dialog with QR code and security enhancements ([68b89ad](68b89ad))
1 parent 0202d56 commit 1a0ceaa

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# [4.23.0-rc.1](https://github.com/qubic/wallet/compare/v4.22.0...v4.23.0-rc.1) (2026-01-07)
2+
3+
4+
### Bug Fixes
5+
6+
* handle undefined response in dev-proxy error callback ([6902ceb](https://github.com/qubic/wallet/commit/6902ceb931c55eb9bae6f05afadedd02dfc03765))
7+
* prevent deploy workflow from triggering on unmerged PR close ([a69a165](https://github.com/qubic/wallet/commit/a69a16559e46d6be7ed809feb34028ca0448bdfc))
8+
* strip decimals when pasting formatted numbers in amount fields ([fd8b204](https://github.com/qubic/wallet/commit/fd8b2040087b7ca7280dc59db4542c187f9ed25d))
9+
* style delete action in red for visual distinction ([f1dfeb0](https://github.com/qubic/wallet/commit/f1dfeb056fac2d4cd3b76c9a4826e8aea334c96f))
10+
* truncate long account names with ellipsis in dashboard cards ([8c0b3df](https://github.com/qubic/wallet/commit/8c0b3df8b2d7e2da87708510dee4a030eab7d8e2))
11+
* validate decimals in amount fields ([#203](https://github.com/qubic/wallet/issues/203)) ([3ce03b4](https://github.com/qubic/wallet/commit/3ce03b42c6bb1a1b98cefaff6859c9094507de88))
12+
13+
14+
### Features
15+
16+
* Add active IPO count badge to navigation ([#196](https://github.com/qubic/wallet/issues/196)) ([8f7c5c3](https://github.com/qubic/wallet/commit/8f7c5c3b17b36f908a0471cbeb8eb7e7460629d6))
17+
* add context menu and fix responsive dashboard cards ([f14d1dc](https://github.com/qubic/wallet/commit/f14d1dc506b5cb50793a0a192b6f5ed6cb74142b))
18+
* add transaction status icons with unified tx-status component ([#198](https://github.com/qubic/wallet/issues/198)) ([058b689](https://github.com/qubic/wallet/commit/058b68991bf3a42840e6132947febf4ced0c025c))
19+
* display SendMany transaction transfers ([#199](https://github.com/qubic/wallet/issues/199)) ([d1b2eff](https://github.com/qubic/wallet/commit/d1b2eff2f4efb059e62cfff9f890548f4c88320f))
20+
* **reveal-seed:** redesign dialog with QR code and security enhancements ([68b89ad](https://github.com/qubic/wallet/commit/68b89addf34ab18dba1b42e32bc208923a96386a))
21+
122
# [4.22.0](https://github.com/qubic/wallet/compare/v4.21.0...v4.22.0) (2025-12-08)
223

324

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "qubic-wallet",
3-
"version": "4.22.0",
3+
"version": "4.23.0-rc.1",
44
"main": "app.js",
55
"author": "qubic",
66
"description": "Qubic - Wallet - Send Qu's around the globe.",

src/environments/environment.prod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const environment = {
2-
version: '4.22.0',
2+
version: '4.23.0-rc.1',
33
production: true,
44
apiQliUrl: 'https://api.qubic.li',
55
apiUrl: 'https://rpc.qubic.org',

src/environments/environment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const environment = {
2-
version: '4.22.0',
2+
version: '4.23.0-rc.1',
33
production: false,
44
apiQliUrl: 'http://localhost:7003',
55
apiUrl: 'http://localhost:7004',

0 commit comments

Comments
 (0)