Skip to content

Commit 55c27e9

Browse files
committed
chore: release main
1 parent 5e45232 commit 55c27e9

File tree

13 files changed

+178
-12
lines changed

13 files changed

+178
-12
lines changed

.release-please/manifest.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"packages/js-utils": "1.5.0",
3-
"packages/browser-utils": "1.5.0",
4-
"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"
2+
"packages/js-utils": "1.6.0",
3+
"packages/browser-utils": "1.6.0",
4+
"packages/nest-utils": "5.0.0",
5+
"packages/nest-testing": "3.0.0",
6+
"packages/solid": "1.1.0",
7+
"packages/nest-auth": "2.0.0"
88
}

packages/browser-utils/CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
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-03-12)
4+
5+
6+
### Features
7+
8+
* **docs:** Improve documentation ([28c4c0a](https://github.com/spuxx-dev/jslibs/commit/28c4c0a4dd6f9108d4d83a16f96a22e9604a2ea2))
9+
* Implemented new service mixin `LocalStorageMixin` ([66f6b1d](https://github.com/spuxx-dev/jslibs/commit/66f6b1d4097f3b0d5a326aa7a4a815c5707b2923))
10+
* Migrate monorepo to a more isolated structure and force re-releases ([64e48f4](https://github.com/spuxx-dev/jslibs/commit/64e48f41cf207a367e19d8750f44ace18615428c))
11+
* **modal:** Refactored modal dialog and improved styling ([aa5bdd9](https://github.com/spuxx-dev/jslibs/commit/aa5bdd93aac610c6cd906d4d6fdb9410474b0087))
12+
* **styles:** `@spuxx/browser-utils` now includes built-in styles and themes ([4040e55](https://github.com/spuxx-dev/jslibs/commit/4040e55a2526512c99aabbf0e38886c72920abb3))
13+
* **styles:** Added color classes ([aac8136](https://github.com/spuxx-dev/jslibs/commit/aac81367c350678bc4e0594f09be5ff67614c544))
14+
15+
16+
### Bug Fixes
17+
18+
* **divider:** Vertical Divider now has a minimum height of 1em ([0955190](https://github.com/spuxx-dev/jslibs/commit/0955190ed62ff224a9632022352ff1149e1d40d3))
19+
* Fix an issue that would cause Containers with variant="outlined" to also affect the content color ([7649c6c](https://github.com/spuxx-dev/jslibs/commit/7649c6cc75e4fe2340895a61cebac658bc29eff8))
20+
* Minor improvements to control and button styles ([f4a7f75](https://github.com/spuxx-dev/jslibs/commit/f4a7f75bd2970f35412cc4446eeae1a0082bda8d))
21+
* **modal:** Fixed modal dialog layout ([9af3ffa](https://github.com/spuxx-dev/jslibs/commit/9af3ffaf5eb6b729295addd0332daf1b1a994f06))
22+
323
## [1.5.0](https://github.com/spuxx-dev/jslibs/compare/browser-utils-v1.4.0...browser-utils-v1.5.0) (2025-03-12)
424

525

packages/browser-utils/package.json

+1-1
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/js-utils/CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# Changelog
22

3+
## [1.6.0](https://github.com/spuxx-dev/jslibs/compare/js-utils-v1.5.0...js-utils-v1.6.0) (2025-03-12)
4+
5+
6+
### Features
7+
8+
* Add `OmitFunctionMembers` helper type ([13fd2fc](https://github.com/spuxx-dev/jslibs/commit/13fd2fc074a2d1e9192e4731e6c79949f75fa510))
9+
* **docs:** Improve documentation ([4e72f66](https://github.com/spuxx-dev/jslibs/commit/4e72f66b7ee49a49860f3a3b8930eb2aa1ff012b))
10+
* **http:** Implemented `HttpClientMixin`, offering an accessible API to create simple HttpClients abstractions with support for both fetch and axios ([4157766](https://github.com/spuxx-dev/jslibs/commit/4157766c50100969a19f1d64c83346bd7cebe87a))
11+
* **http:** Implemented new `transformFetchJson()` util function ([cae5dc2](https://github.com/spuxx-dev/jslibs/commit/cae5dc2eb53f2b567ac4a02f807821b19511bfd2))
12+
* Migrate monorepo to a more isolated structure and force re-releases ([64e48f4](https://github.com/spuxx-dev/jslibs/commit/64e48f41cf207a367e19d8750f44ace18615428c))
13+
* **utils:** Add isEmptyArray function ([5ae1597](https://github.com/spuxx-dev/jslibs/commit/5ae1597542d50dfd2a27312f69a5cbe4052a30aa))
14+
* **utils:** Add new `addTrailingSlash` function ([ca3a0e8](https://github.com/spuxx-dev/jslibs/commit/ca3a0e8f91d9eda54909b2e73526e28ea2251609))
15+
* **utils:** Add new `stripUndefined` and `stripNull` util functions ([4be0ec1](https://github.com/spuxx-dev/jslibs/commit/4be0ec1a54f0ae08d59b559ca19adf2d33a7683d))
16+
17+
18+
### Bug Fixes
19+
20+
* Fixed an issue with the OptionalProperties type not being typed properly ([1a7e07e](https://github.com/spuxx-dev/jslibs/commit/1a7e07eeae1e7166b7fbfc153430c6402621f270))
21+
* **http:** Fix `HttpClientMixin` exports ([6c2ea5f](https://github.com/spuxx-dev/jslibs/commit/6c2ea5fafdb0737228723feedc8994fefd2c5e02))
22+
* **http:** Fixed a bug in `HttpClient` that would cause fetch responses not to be handled properly sometimes ([98c69de](https://github.com/spuxx-dev/jslibs/commit/98c69de057373cf908b74e162012c730327ce7ce))
23+
* **http:** Fixed a bug in `HttpClient` that would cause unhandled errors not to be thrown ([a5d22a8](https://github.com/spuxx-dev/jslibs/commit/a5d22a8d6168f0b9acfdc9f6b4f9a431fead8a94))
24+
* **http:** Fixed a bug that would cause a wrong endpoint return type in case a transformer is used ([50abbe8](https://github.com/spuxx-dev/jslibs/commit/50abbe828f0d724a1aea74f0aff1c396b2e0429b))
25+
* **http:** Fixed an issue that would cause `invokeEndpoint` to break in case of an unexpected response type ([0e3f7f8](https://github.com/spuxx-dev/jslibs/commit/0e3f7f8b56fc1b2557b950648d2051b2df049616))
26+
* **http:** Prevent transformer from being called after an error ([a953ab5](https://github.com/spuxx-dev/jslibs/commit/a953ab502d99354f9f0b9bd8a2a6402c437eb072))
27+
328
## [1.5.0](https://github.com/spuxx-dev/jslibs/compare/js-utils-v1.4.0...js-utils-v1.5.0) (2025-03-12)
429

530

packages/js-utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spuxx/js-utils",
3-
"version": "1.5.0",
3+
"version": "1.6.0",
44
"description": "A package containing various utilities for JavaScript applications.",
55
"license": "MIT",
66
"author": {

packages/nest-auth/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [2.0.0](https://github.com/spuxx-dev/jslibs/compare/nest-auth-v1.0.0...nest-auth-v2.0.0) (2025-03-12)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* **auth:** Migrate auth-related functionalities from @spuxx/nest-utils to new package @spuxx/nest-auth
9+
* **auth:** Migrate auth to new package `@spuxx/nest-auth`
10+
11+
### Features
12+
13+
* **auth:** Migrate auth to new package `@spuxx/nest-auth` ([8c96838](https://github.com/spuxx-dev/jslibs/commit/8c9683875eb5b11768758c7cd8bebec8cae8f4d0))
14+
* **auth:** Migrate auth-related functionalities from @spuxx/nest-utils to new package @spuxx/nest-auth ([231847d](https://github.com/spuxx-dev/jslibs/commit/231847d92729177d447e47dfff71fa7eb622cbd8))
15+
316
## 1.0.0 (2025-03-12)
417

518

packages/nest-auth/package.json

+1-1
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": "2.0.0",
44
"description": "A package containing auth-related functionalities for my NestJS applications.",
55
"license": "MIT",
66
"author": {

packages/nest-testing/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## [3.0.0](https://github.com/spuxx-dev/jslibs/compare/nest-testing-v2.0.0...nest-testing-v3.0.0) (2025-03-12)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Update nestjs to 11.0.0
9+
* **container:** `TestContainer` no longer implicitly includes `AuthModule`, but instead detects when it has been provided
10+
11+
### Features
12+
13+
* **container:** `TestContainer` no longer implicitly includes `AuthModule`, but instead detects when it has been provided ([784da85](https://github.com/spuxx-dev/jslibs/commit/784da8539e57c9cfef7e1ad8055a2ba032e83388))
14+
* Migrate monorepo to a more isolated structure and force re-releases ([64e48f4](https://github.com/spuxx-dev/jslibs/commit/64e48f41cf207a367e19d8750f44ace18615428c))
15+
* **testing:** Implemented new package `@spuxx/nest-testing` ([a9719e2](https://github.com/spuxx-dev/jslibs/commit/a9719e29dfe345e9e231f609522709643fb8a063))
16+
* Update nestjs to 11.0.0 ([fd159bd](https://github.com/spuxx-dev/jslibs/commit/fd159bda5a390f1ee11f45e0b642fd15a63c13f1))
17+
* Update nestjs to 11.0.0 ([304c919](https://github.com/spuxx-dev/jslibs/commit/304c91919d865ba302b4316904d8ca9a10b0ba7b))
18+
319
## [2.0.0](https://github.com/spuxx-dev/jslibs/compare/nest-testing-v1.1.0...nest-testing-v2.0.0) (2025-03-12)
420

521

packages/nest-testing/package.json

+1-1
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": "3.0.0",
44
"description": "A package containing testing-related utilities for NestJS applications.",
55
"license": "MIT",
66
"author": {

packages/nest-utils/CHANGELOG.md

+78
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,83 @@
11
# Changelog
22

3+
## [5.0.0](https://github.com/spuxx-dev/jslibs/compare/nest-utils-v4.0.0...nest-utils-v5.0.0) (2025-03-12)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* **auth:** Migrate auth-related functionalities from @spuxx/nest-utils to new package @spuxx/nest-auth
9+
* **auth:** Migrate auth to new package `@spuxx/nest-auth`
10+
* Update nestjs to 11.0.0
11+
* **testing:** Migrate testing to separate package
12+
* **auth:** Decouple `AuthModule` from express-openid-connect by forcing consumers to import the `auth` middleware themselves and hand it over to this package
13+
* **mapping:** Replaced automapper integration with a custom implementation of MappingModule
14+
15+
### Features
16+
17+
* `@nanogiants/nestjs-swagger-api-exception-decorator` is now bundled into `nest-utils` ([de635f0](https://github.com/spuxx-dev/jslibs/commit/de635f0fb09aa205a740429fe42f8bd13c8cad1e))
18+
* Add EnvModule to help with loading and handling environment variables ([641559f](https://github.com/spuxx-dev/jslibs/commit/641559f6576a0273609724498f55eacc3a64a09c))
19+
* Added `CustomLogger.getContext()` method ([4b2fb40](https://github.com/spuxx-dev/jslibs/commit/4b2fb40ff4523bb34a92471de8098f09b553fc5c))
20+
* **auth:** Decouple `AuthModule` from express-openid-connect by forcing consumers to import the `auth` middleware themselves and hand it over to this package ([90ea1de](https://github.com/spuxx-dev/jslibs/commit/90ea1deeba4dda3714249865dbeaa92ce70831e7))
21+
* **auth:** Implemented getSession and isAuthenticated utility functions ([711d9c3](https://github.com/spuxx-dev/jslibs/commit/711d9c3d9ddd1f0083290c70ffecf14eb49d6112))
22+
* **auth:** Migrate auth to new package `@spuxx/nest-auth` ([8c96838](https://github.com/spuxx-dev/jslibs/commit/8c9683875eb5b11768758c7cd8bebec8cae8f4d0))
23+
* **auth:** Migrate auth-related functionalities from @spuxx/nest-utils to new package @spuxx/nest-auth ([231847d](https://github.com/spuxx-dev/jslibs/commit/231847d92729177d447e47dfff71fa7eb622cbd8))
24+
* **auth:** Replaced `authOptions.allowedRedirectUrls` with `authOptions.allowedRedirectHostnames` to better resemble the behavior of the validation ([5aa928e](https://github.com/spuxx-dev/jslibs/commit/5aa928ea392aba9f9052dd2f09cf834f860541af))
25+
* **auth:** Session resource now includes preferred_username ([e00a8e3](https://github.com/spuxx-dev/jslibs/commit/e00a8e3781e1c458678537761cc51a4a52b7e64c))
26+
* CustomLogger can now update its log level during runtime ([7c6e92b](https://github.com/spuxx-dev/jslibs/commit/7c6e92bd0f0ac00cd743c4811850ce5dab8565c0))
27+
* **env:** Environment variables are now being cached, improving performance ([6b92a2d](https://github.com/spuxx-dev/jslibs/commit/6b92a2dbd509b75b618a2c881614da5970bb24c3))
28+
* Expose TestContainer and Supertest helper classes to help with testing Nest applications ([797c471](https://github.com/spuxx-dev/jslibs/commit/797c471941de1c09ff8e369f39f412a01ce16bf8))
29+
* **http:** Implemented '@IncludeQueryParam` decorator ([b7ebc57](https://github.com/spuxx-dev/jslibs/commit/b7ebc57841b6cb27f5902497ce121fe846d23288))
30+
* Implement `TransformBooleanString` transformer decorator ([b2a567d](https://github.com/spuxx-dev/jslibs/commit/b2a567d37def2e8dd39a9c7c8fcb29f8ca2b9f3b))
31+
* Implement CustomLogger class ([883fa99](https://github.com/spuxx-dev/jslibs/commit/883fa99108c711fc2076e5ff0f868c0573f862e6))
32+
* Implement HttpLoggingInterceptor ([e7df43f](https://github.com/spuxx-dev/jslibs/commit/e7df43f718700fbc793f36d06e18d54e1a21a4c6))
33+
* Implemented new service mixin `LocalStorageMixin` ([66f6b1d](https://github.com/spuxx-dev/jslibs/commit/66f6b1d4097f3b0d5a326aa7a4a815c5707b2923))
34+
* Introduce `AuthModule` for handling authorization and authentication through OIDC ([0d3cdd7](https://github.com/spuxx-dev/jslibs/commit/0d3cdd77b7b235480a95876f248a227e509db74b))
35+
* **mapping:** `@Map()` decorator now supports mapping nested objects ([650535f](https://github.com/spuxx-dev/jslibs/commit/650535fed06215350dd6ab412e2fd84cacd74b42))
36+
* **mapping:** `@Map()` is now able to map nested properties fully automatically ([bb18d8c](https://github.com/spuxx-dev/jslibs/commit/bb18d8cf9c766dccfec9ad197e2cca61f4fc119e))
37+
* **mapping:** Implemented MappingModule ([7bc49e9](https://github.com/spuxx-dev/jslibs/commit/7bc49e92090930d828f2b5f347ec57fd4241af30))
38+
* **mapping:** Mapping now implements the preserveUndefined option ([14ba050](https://github.com/spuxx-dev/jslibs/commit/14ba05070fc9e17c0dd350fd5984955dd0dde176))
39+
* **mapping:** MappingModule now supports sequelize ([720bcb5](https://github.com/spuxx-dev/jslibs/commit/720bcb5e7f080a89b1a54c42d92a7632f7c09af1))
40+
* **mapping:** Replaced automapper integration with a custom implementation of MappingModule ([49cf08e](https://github.com/spuxx-dev/jslibs/commit/49cf08eb0dd08ff83303e8df50def13dc8990db7))
41+
* Migrate monorepo to a more isolated structure and force re-releases ([64e48f4](https://github.com/spuxx-dev/jslibs/commit/64e48f41cf207a367e19d8750f44ace18615428c))
42+
* **testing:** Implement more supertest methods ([b4bdaaf](https://github.com/spuxx-dev/jslibs/commit/b4bdaafb002500b89a143c687c71f75078419389))
43+
* **testing:** Migrate testing to separate package ([f0f3c13](https://github.com/spuxx-dev/jslibs/commit/f0f3c1366f2b1811b5209c6e9e9ea79e28a4df9b))
44+
* **testing:** TestAppLogger now stores messages for easier assertions and debugging ([3fee10e](https://github.com/spuxx-dev/jslibs/commit/3fee10e26f75c7598246b9e6d5aed4be971e0d9a))
45+
* **testing:** TestContainer now offers an afterCreate hook ([26d6d02](https://github.com/spuxx-dev/jslibs/commit/26d6d02165873926ad0db051d5fe09fd841c84e9))
46+
* **transformers:** Implemented `@TransformArrayString()` decorator and `transformArrayString()` function ([8e77f0c](https://github.com/spuxx-dev/jslibs/commit/8e77f0cd00d2f85cd13f0cdc2de35981455fdd22))
47+
* **transformers:** Refactored `@TransformBooleanString` decorator and exposed `transformBooleanString()` function ([a11da65](https://github.com/spuxx-dev/jslibs/commit/a11da65b63ea13078f55c2c169d46f26bb62bf40))
48+
* Update nestjs to 11.0.0 ([fd159bd](https://github.com/spuxx-dev/jslibs/commit/fd159bda5a390f1ee11f45e0b642fd15a63c13f1))
49+
* Update nestjs to 11.0.0 ([304c919](https://github.com/spuxx-dev/jslibs/commit/304c91919d865ba302b4316904d8ca9a10b0ba7b))
50+
* **validators:** Add new `IsOptionalUnless` validator ([8bcb005](https://github.com/spuxx-dev/jslibs/commit/8bcb0059967c0a3b519b25cb8b6668d935e8a2ea))
51+
52+
53+
### Bug Fixes
54+
55+
* **auth:** Enabled protection for /auth/session route ([d48e033](https://github.com/spuxx-dev/jslibs/commit/d48e0334db5d119967c91fed579a9f0fd24a9652))
56+
* **auth:** Explicitly import and export `AuthGuard` ([46d43b2](https://github.com/spuxx-dev/jslibs/commit/46d43b2508d0e805f5572c77ed4f66b85524f789))
57+
* **auth:** Fixed a bug that would cause an internal error if an authenticated user would not have any of the application's roles ([2bcfc98](https://github.com/spuxx-dev/jslibs/commit/2bcfc98c43932eeab08c9a6f902f78471da7c8be))
58+
* **auth:** Fixed an issue with `SessionResource` being wrongly typed that would prevent family_name from being accessible ([b76cb8e](https://github.com/spuxx-dev/jslibs/commit/b76cb8e4c0bdb9a1405e2852dc15ae6a562b8102))
59+
* **auth:** Improve AuthGuard's verbose logging ([c7f6985](https://github.com/spuxx-dev/jslibs/commit/c7f6985e8af711933d3238442a94d6aa1524e4f8))
60+
* **auth:** Mark `AuthModule` as a global module ([11f92af](https://github.com/spuxx-dev/jslibs/commit/11f92af11f95192bf917a7a9449b59d699dda57a))
61+
* **auth:** Mark AuthModule as global module properly ([e01d870](https://github.com/spuxx-dev/jslibs/commit/e01d87088175633d653b4823e79eb564ac7c464a))
62+
* **auth:** Session resource now correctly references groups claim ([0177c39](https://github.com/spuxx-dev/jslibs/commit/0177c39bd25d47188968455f6e5c97b9c47b1b94))
63+
* **auth:** Update user role detection to support the common 'groups' claim ([def2ada](https://github.com/spuxx-dev/jslibs/commit/def2ada1c1f7151886d796205b4d406428c49f5e))
64+
* **deps:** Declare `rxjs` as a peer dependency ([732922c](https://github.com/spuxx-dev/jslibs/commit/732922c2a736be313b396f67b65feaf67dc5a8a2))
65+
* **deps:** Fixed peer dependency versioning ([3f341a5](https://github.com/spuxx-dev/jslibs/commit/3f341a51ab0eaa245f68bafb8a1aba12bec4a059))
66+
* **deps:** Turned `@nanogiants/nestjs-swagger-api-exception-decorator` into a peer dependency ([b1904b4](https://github.com/spuxx-dev/jslibs/commit/b1904b427611d759736df70716b82111c608fe52))
67+
* **env:** Fix an issue with EnvModule's load() and validate() functions not triggering properly ([6180ec5](https://github.com/spuxx-dev/jslibs/commit/6180ec5457419cb264ca5a6626042506bd8aa561))
68+
* EnvModule now properly loads environment variables when being accessed ([2a8f661](https://github.com/spuxx-dev/jslibs/commit/2a8f661e9573f7db05869e2ed2a30085b4116919))
69+
* **http:** Add missing `http` exports ([43c07b8](https://github.com/spuxx-dev/jslibs/commit/43c07b86775f494bb9441726f22873b94c7bf4bf))
70+
* HttpLoggingInterceptor now also logs context ([13319b3](https://github.com/spuxx-dev/jslibs/commit/13319b35ece0f81123bbdc3a29bf5026884ac60a))
71+
* **mapping:** Export @Map() decorator ([7f16918](https://github.com/spuxx-dev/jslibs/commit/7f169187e81791bf8312f13e9ba328d7bd86058e))
72+
* **mapping:** Export mapper service ([eac1ab2](https://github.com/spuxx-dev/jslibs/commit/eac1ab2fb0306bef46503004eddccb8d49c26f8c))
73+
* **mapping:** Fixed an issue that would cause `@Mapper()` to break on `Date` properties ([6507169](https://github.com/spuxx-dev/jslibs/commit/6507169c0478fd95222c25abf09dc1c5f11d47f0))
74+
* **mapping:** Fixed an issue that would prevent metadata to be retrieved from sequelize models correctly ([f9f30fe](https://github.com/spuxx-dev/jslibs/commit/f9f30feecfb4b646095fd02239c856927d6c4f1c))
75+
* **mapping:** Fixed an issue that would prevent metadata to be retrieved from sequelize models correctly ([6d8106e](https://github.com/spuxx-dev/jslibs/commit/6d8106ec652836c497e06b86bc687aa022dbd399))
76+
* **mapping:** Turned MappingModule into a global module ([afc545d](https://github.com/spuxx-dev/jslibs/commit/afc545d37a5019ed8af643f359c600a8a26c8e44))
77+
* **testing:** Fixed vitest being bundled and hoisted ([2a1cac5](https://github.com/spuxx-dev/jslibs/commit/2a1cac5d123f4d2079b33fd51ba7cc47ec9243c2))
78+
* **testing:** Removed obsolete session property on TestContainer ([2af4809](https://github.com/spuxx-dev/jslibs/commit/2af4809da55495bc95a922e387a7786f6068772e))
79+
* **transformers:** Fixed an issue with `transformBooleanString()` where undefined or nullish values would become `false` ([eaee6ee](https://github.com/spuxx-dev/jslibs/commit/eaee6ee68f5e226e6eeaccb1d4e1ae05b683b3ce))
80+
381
## [4.0.0](https://github.com/spuxx-dev/jslibs/compare/nest-utils-v3.2.0...nest-utils-v4.0.0) (2025-03-12)
482

583

packages/nest-utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spuxx/nest-utils",
3-
"version": "4.0.0",
3+
"version": "5.0.0",
44
"description": "A package containing various utilities for NestJS applications.",
55
"license": "MIT",
66
"author": {

packages/solid/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [1.1.0](https://github.com/spuxx-dev/jslibs/compare/solid-v1.0.0...solid-v1.1.0) (2025-03-12)
4+
5+
6+
### Features
7+
8+
* **modal:** Refactored modal dialog and improved styling ([aa5bdd9](https://github.com/spuxx-dev/jslibs/commit/aa5bdd93aac610c6cd906d4d6fdb9410474b0087))
9+
* **solid:** Added new `@spuxx/solid` package ([11f671c](https://github.com/spuxx-dev/jslibs/commit/11f671c422d668fe4323b76c7ec22ae844e4ea05))
10+
11+
12+
### Bug Fixes
13+
14+
* Fixed an issue that would prevent components from accepting inline styles ([ed4919a](https://github.com/spuxx-dev/jslibs/commit/ed4919a8afe75411c1e9bb2606d43ae756e7c782))
15+
* **modal:** Fixed modal animations not always playing when closing modal ([00dbb2f](https://github.com/spuxx-dev/jslibs/commit/00dbb2fdd0fb5f01c6e482ddf2c91eaf147599e8))
16+
317
## 1.0.0 (2025-03-12)
418

519

packages/solid/package.json

+1-1
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)