Skip to content

Commit 6baa03d

Browse files
committed
chore: release 3.0.0
1 parent 02be3cd commit 6baa03d

10 files changed

Lines changed: 43 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
44

5+
# [3.0.0](https://github.com/laser-ui/laser-pro/compare/v2.0.2...v3.0.0) (2026-03-18)
6+
7+
### Bug Fixes
8+
9+
- **acl:** return new acl when update ([64aa132](https://github.com/laser-ui/laser-pro/commit/64aa13233ea590a766eefa71ada723e91e61a1d1))
10+
- **auth:** support multiple tokens ([02be3cd](https://github.com/laser-ui/laser-pro/commit/02be3cdff6c31d1ab30b0b238847d48de20b702e))
11+
12+
### Features
13+
14+
- **acl:** acl support scope ([a8d5bbd](https://github.com/laser-ui/laser-pro/commit/a8d5bbde2cd4cae029115214678d1f3a57168bbe))
15+
- **router:** `useQueryParams` support custom key ([860a7b8](https://github.com/laser-ui/laser-pro/commit/860a7b8ddb327330c19edd92c9a7968d16fed9ed))
16+
517
## [2.0.2](https://github.com/laser-ui/laser-pro/compare/v2.0.1...v2.0.2) (2026-03-17)
618

719
### Bug Fixes

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
33
"packages": ["packages/acl", "packages/auth", "packages/router", "packages/storage"],
4-
"version": "2.0.2",
4+
"version": "3.0.0",
55
"command": {
66
"version": {
77
"conventionalCommits": true,

packages/acl/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
44

5+
# [3.0.0](https://github.com/laser-ui/laser-pro/compare/v2.0.2...v3.0.0) (2026-03-18)
6+
7+
### Bug Fixes
8+
9+
- **acl:** return new acl when update ([64aa132](https://github.com/laser-ui/laser-pro/commit/64aa13233ea590a766eefa71ada723e91e61a1d1))
10+
11+
### Features
12+
13+
- **acl:** acl support scope ([a8d5bbd](https://github.com/laser-ui/laser-pro/commit/a8d5bbde2cd4cae029115214678d1f3a57168bbe))
14+
515
## [2.0.2](https://github.com/laser-ui/laser-pro/compare/v2.0.1...v2.0.2) (2026-03-17)
616

717
**Note:** Version bump only for package @laser-pro/acl

packages/acl/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@laser-pro/acl",
3-
"version": "2.0.2",
3+
"version": "3.0.0",
44
"description": "Advanced modules for enterprise applications.",
55
"keywords": [
66
"laser-pro",

packages/auth/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
44

5+
# [3.0.0](https://github.com/laser-ui/laser-pro/compare/v2.0.2...v3.0.0) (2026-03-18)
6+
7+
### Bug Fixes
8+
9+
- **auth:** support multiple tokens ([02be3cd](https://github.com/laser-ui/laser-pro/commit/02be3cdff6c31d1ab30b0b238847d48de20b702e))
10+
511
## [2.0.2](https://github.com/laser-ui/laser-pro/compare/v2.0.1...v2.0.2) (2026-03-17)
612

713
**Note:** Version bump only for package @laser-pro/auth

packages/auth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@laser-pro/auth",
3-
"version": "2.0.2",
3+
"version": "3.0.0",
44
"description": "Advanced modules for enterprise applications.",
55
"keywords": [
66
"laser-pro",

packages/router/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
44

5+
# [3.0.0](https://github.com/laser-ui/laser-pro/compare/v2.0.2...v3.0.0) (2026-03-18)
6+
7+
### Features
8+
9+
- **router:** `useQueryParams` support custom key ([860a7b8](https://github.com/laser-ui/laser-pro/commit/860a7b8ddb327330c19edd92c9a7968d16fed9ed))
10+
511
## [2.0.2](https://github.com/laser-ui/laser-pro/compare/v2.0.1...v2.0.2) (2026-03-17)
612

713
### Bug Fixes

packages/router/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@laser-pro/router",
3-
"version": "2.0.2",
3+
"version": "3.0.0",
44
"description": "Advanced modules for enterprise applications.",
55
"keywords": [
66
"laser-pro",

packages/storage/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
44

5+
# [3.0.0](https://github.com/laser-ui/laser-pro/compare/v2.0.2...v3.0.0) (2026-03-18)
6+
7+
**Note:** Version bump only for package @laser-pro/storage
8+
59
## [2.0.2](https://github.com/laser-ui/laser-pro/compare/v2.0.1...v2.0.2) (2026-03-17)
610

711
**Note:** Version bump only for package @laser-pro/storage

packages/storage/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@laser-pro/storage",
3-
"version": "2.0.2",
3+
"version": "3.0.0",
44
"description": "Advanced modules for enterprise applications.",
55
"keywords": [
66
"laser-pro",

0 commit comments

Comments
 (0)