Skip to content

Commit 286b4e7

Browse files
authored
chore: release main (#145)
1 parent d87cc2d commit 286b4e7

File tree

9 files changed

+54
-8
lines changed

9 files changed

+54
-8
lines changed

.release-please/manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"packages/js-utils": "1.5.0",
3-
"packages/browser-utils": "1.5.0",
3+
"packages/browser-utils": "1.6.0",
44
"packages/nest-utils": "4.0.0",
5-
"packages/nest-testing": "2.0.0",
6-
"packages/solid": "1.0.0",
7-
"packages/nest-auth": "1.0.0"
5+
"packages/nest-testing": "2.0.1",
6+
"packages/solid": "1.1.0",
7+
"packages/nest-auth": "1.0.1"
88
}

packages/browser-utils/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Changelog
22

3+
## [1.6.0](https://github.com/spuxx-dev/jslibs/compare/browser-utils-v1.5.0...browser-utils-v1.6.0) (2025-04-15)
4+
5+
6+
### Features
7+
8+
* **controls:** Add new `Select` control component ([6d45bc1](https://github.com/spuxx-dev/jslibs/commit/6d45bc18e03d32c088bfd29a886f4f42cda6f3bd))
9+
* Customize `<a>` tag appearance ([4a3d333](https://github.com/spuxx-dev/jslibs/commit/4a3d3338690777becdc62a04e269573d0daa3655))
10+
* Implement new `Input` control component ([55e73a9](https://github.com/spuxx-dev/jslibs/commit/55e73a987252ae4a9c4008bdbd3250f125db2297))
11+
* **layout:** Add `Sidebar` component as well as `Layout` service ([#147](https://github.com/spuxx-dev/jslibs/issues/147)) ([527f20d](https://github.com/spuxx-dev/jslibs/commit/527f20d3461c7509d5e63dec2f4cc64bef65a7a3))
12+
* **layout:** Implement `spx-app-bar` class ([9c90528](https://github.com/spuxx-dev/jslibs/commit/9c905282319171a37cb94604304cb47d37f63cff))
13+
* **themes:** Improve default theme ([f02ea64](https://github.com/spuxx-dev/jslibs/commit/f02ea64cf1f5fb27f4f0c13f0d4b2f445c1bc0e2))
14+
* **types:** Add new `InputType` and `SelectOption` utility types ([c567e86](https://github.com/spuxx-dev/jslibs/commit/c567e8690a79676de9f3ea358d60d0a4faa34c44))
15+
* **types:** Add new `InputType` utility type ([2b46e44](https://github.com/spuxx-dev/jslibs/commit/2b46e4416a527e2449f1811c65eb0d51e4c625c7))
16+
* **types:** Add new `SelectOption` type ([f07fc5e](https://github.com/spuxx-dev/jslibs/commit/f07fc5ed9829d7b67a22b09ca0fc4a531f520ced))
17+
* **user-agent:** Add `UserAgent.isMobile` getter ([2d99084](https://github.com/spuxx-dev/jslibs/commit/2d9908451f8b310e17cfa599b9e037eceda7399b))
18+
19+
20+
### Bug Fixes
21+
22+
* **button:** Slightly increase icon size for icon-only buttons ([5a7a43b](https://github.com/spuxx-dev/jslibs/commit/5a7a43bfa7904d81a1d688559845b3f537ed2a6a))
23+
324
## [1.5.0](https://github.com/spuxx-dev/jslibs/compare/browser-utils-v1.4.0...browser-utils-v1.5.0) (2025-03-12)
425

526

packages/browser-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spuxx/browser-utils",
3-
"version": "1.5.0",
3+
"version": "1.6.0",
44
"description": "A package containing various browser-related utilities for web applications.",
55
"license": "MIT",
66
"author": {

packages/nest-auth/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [1.0.1](https://github.com/spuxx-dev/jslibs/compare/nest-auth-v1.0.0...nest-auth-v1.0.1) (2025-04-15)
4+
5+
6+
### Bug Fixes
7+
8+
* **auth:** `AuthGuard` should now be more stable due to creating its own instance of `Reflector` ([9d3a0d9](https://github.com/spuxx-dev/jslibs/commit/9d3a0d9722282a4ea720cd33d58af1e6764bf5bc))
9+
310
## 1.0.0 (2025-03-12)
411

512

packages/nest-auth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spuxx/nest-auth",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "A package containing auth-related functionalities for my NestJS applications.",
55
"license": "MIT",
66
"author": {

packages/nest-testing/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [2.0.1](https://github.com/spuxx-dev/jslibs/compare/nest-testing-v2.0.0...nest-testing-v2.0.1) (2025-04-15)
4+
5+
6+
### Bug Fixes
7+
8+
* TestContainer now specifically provides Reflector, which should help with flakey tests ([d87cc2d](https://github.com/spuxx-dev/jslibs/commit/d87cc2d244755702d0143fba189ee8f131fddf18))
9+
310
## [2.0.0](https://github.com/spuxx-dev/jslibs/compare/nest-testing-v1.1.0...nest-testing-v2.0.0) (2025-03-12)
411

512

packages/nest-testing/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spuxx/nest-testing",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "A package containing testing-related utilities for NestJS applications.",
55
"license": "MIT",
66
"author": {

packages/solid/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [1.1.0](https://github.com/spuxx-dev/jslibs/compare/solid-v1.0.0...solid-v1.1.0) (2025-04-15)
4+
5+
6+
### Features
7+
8+
* **controls:** Add `ButtonLink` control ([1627b14](https://github.com/spuxx-dev/jslibs/commit/1627b144df9aaf4de347866f8bb9540384b32613))
9+
* **controls:** Add new `Select` control component ([6d45bc1](https://github.com/spuxx-dev/jslibs/commit/6d45bc18e03d32c088bfd29a886f4f42cda6f3bd))
10+
* Implement new `Input` control component ([55e73a9](https://github.com/spuxx-dev/jslibs/commit/55e73a987252ae4a9c4008bdbd3250f125db2297))
11+
* **layout:** Add `Sidebar` component as well as `Layout` service ([#147](https://github.com/spuxx-dev/jslibs/issues/147)) ([527f20d](https://github.com/spuxx-dev/jslibs/commit/527f20d3461c7509d5e63dec2f4cc64bef65a7a3))
12+
* **layout:** Implement `AppBar` layout component ([f8a09d3](https://github.com/spuxx-dev/jslibs/commit/f8a09d3c7a86e05314549effad3a4991ff7985f0))
13+
314
## 1.0.0 (2025-03-12)
415

516

packages/solid/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spuxx/solid",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "A package containing various utilities for my Solid applications.",
55
"license": "MIT",
66
"author": {

0 commit comments

Comments
 (0)