diff --git a/.release-please/manifest.json b/.release-please/manifest.json index aaee689..98e3b3f 100644 --- a/.release-please/manifest.json +++ b/.release-please/manifest.json @@ -1,7 +1,8 @@ { - "packages/js-utils": "1.4.0", - "packages/browser-utils": "1.4.0", - "packages/nest-utils": "3.2.0", - "packages/nest-testing": "1.1.0", - "packages/solid": "0.0.0" + "packages/js-utils": "1.5.0", + "packages/browser-utils": "1.5.0", + "packages/nest-utils": "4.0.0", + "packages/nest-testing": "2.0.0", + "packages/solid": "1.0.0", + "packages/nest-auth": "1.0.0" } \ No newline at end of file diff --git a/packages/browser-utils/CHANGELOG.md b/packages/browser-utils/CHANGELOG.md index eb54dbf..42a3d95 100644 --- a/packages/browser-utils/CHANGELOG.md +++ b/packages/browser-utils/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [1.5.0](https://github.com/spuxx-dev/jslibs/compare/browser-utils-v1.4.0...browser-utils-v1.5.0) (2025-03-12) + + +### Features + +* **docs:** Improve documentation ([28c4c0a](https://github.com/spuxx-dev/jslibs/commit/28c4c0a4dd6f9108d4d83a16f96a22e9604a2ea2)) + + +### Bug Fixes + +* **divider:** Vertical Divider now has a minimum height of 1em ([0955190](https://github.com/spuxx-dev/jslibs/commit/0955190ed62ff224a9632022352ff1149e1d40d3)) +* 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)) +* Minor improvements to control and button styles ([f4a7f75](https://github.com/spuxx-dev/jslibs/commit/f4a7f75bd2970f35412cc4446eeae1a0082bda8d)) + ## [1.4.0](https://github.com/spuxx-dev/jslibs/compare/browser-utils-v1.3.0...browser-utils-v1.4.0) (2025-02-09) diff --git a/packages/browser-utils/package.json b/packages/browser-utils/package.json index 8ba5036..1b789b1 100644 --- a/packages/browser-utils/package.json +++ b/packages/browser-utils/package.json @@ -1,6 +1,6 @@ { "name": "@spuxx/browser-utils", - "version": "1.4.0", + "version": "1.5.0", "description": "A package containing various browser-related utilities for web applications.", "license": "MIT", "author": { diff --git a/packages/js-utils/CHANGELOG.md b/packages/js-utils/CHANGELOG.md index 75a7b11..ac111ad 100644 --- a/packages/js-utils/CHANGELOG.md +++ b/packages/js-utils/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [1.5.0](https://github.com/spuxx-dev/jslibs/compare/js-utils-v1.4.0...js-utils-v1.5.0) (2025-03-12) + + +### Features + +* **docs:** Improve documentation ([4e72f66](https://github.com/spuxx-dev/jslibs/commit/4e72f66b7ee49a49860f3a3b8930eb2aa1ff012b)) +* **utils:** Add new `addTrailingSlash` function ([ca3a0e8](https://github.com/spuxx-dev/jslibs/commit/ca3a0e8f91d9eda54909b2e73526e28ea2251609)) +* **utils:** Add new `stripUndefined` and `stripNull` util functions ([4be0ec1](https://github.com/spuxx-dev/jslibs/commit/4be0ec1a54f0ae08d59b559ca19adf2d33a7683d)) + + +### Bug Fixes + +* Fixed an issue with the OptionalProperties type not being typed properly ([1a7e07e](https://github.com/spuxx-dev/jslibs/commit/1a7e07eeae1e7166b7fbfc153430c6402621f270)) + ## [1.4.0](https://github.com/spuxx-dev/jslibs/compare/js-utils-v1.3.0...js-utils-v1.4.0) (2025-02-09) diff --git a/packages/js-utils/package.json b/packages/js-utils/package.json index 3064234..9bb6097 100644 --- a/packages/js-utils/package.json +++ b/packages/js-utils/package.json @@ -1,6 +1,6 @@ { "name": "@spuxx/js-utils", - "version": "1.4.0", + "version": "1.5.0", "description": "A package containing various utilities for JavaScript applications.", "license": "MIT", "author": { diff --git a/packages/nest-auth/CHANGELOG.md b/packages/nest-auth/CHANGELOG.md index 825c32f..d97de56 100644 --- a/packages/nest-auth/CHANGELOG.md +++ b/packages/nest-auth/CHANGELOG.md @@ -1 +1,16 @@ # Changelog + +## 1.0.0 (2025-03-12) + + +### ⚠ BREAKING CHANGES + +* **auth:** Migrate auth-related functionalities from @spuxx/nest-utils to new package @spuxx/nest-auth +* **auth:** Migrate auth to new package `@spuxx/nest-auth` + +### Features + +* **auth:** Migrate auth to new package `@spuxx/nest-auth` ([8c96838](https://github.com/spuxx-dev/jslibs/commit/8c9683875eb5b11768758c7cd8bebec8cae8f4d0)) +* **auth:** Migrate auth-related functionalities from @spuxx/nest-utils to new package @spuxx/nest-auth ([231847d](https://github.com/spuxx-dev/jslibs/commit/231847d92729177d447e47dfff71fa7eb622cbd8)) + +## Changelog diff --git a/packages/nest-auth/package.json b/packages/nest-auth/package.json index 12142d8..68ee624 100644 --- a/packages/nest-auth/package.json +++ b/packages/nest-auth/package.json @@ -1,6 +1,6 @@ { "name": "@spuxx/nest-auth", - "version": "0.0.0", + "version": "1.0.0", "description": "A package containing auth-related functionalities for my NestJS applications.", "license": "MIT", "author": { diff --git a/packages/nest-testing/CHANGELOG.md b/packages/nest-testing/CHANGELOG.md index 593955d..429bd78 100644 --- a/packages/nest-testing/CHANGELOG.md +++ b/packages/nest-testing/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [2.0.0](https://github.com/spuxx-dev/jslibs/compare/nest-testing-v1.1.0...nest-testing-v2.0.0) (2025-03-12) + + +### ⚠ BREAKING CHANGES + +* Update nestjs to 11.0.0 + +### Features + +* Update nestjs to 11.0.0 ([fd159bd](https://github.com/spuxx-dev/jslibs/commit/fd159bda5a390f1ee11f45e0b642fd15a63c13f1)) +* Update nestjs to 11.0.0 ([304c919](https://github.com/spuxx-dev/jslibs/commit/304c91919d865ba302b4316904d8ca9a10b0ba7b)) + ## [1.1.0](https://github.com/spuxx-dev/jslibs/compare/nest-testing-v1.0.0...nest-testing-v1.1.0) (2025-02-09) diff --git a/packages/nest-testing/package.json b/packages/nest-testing/package.json index 70cf019..710cc0a 100644 --- a/packages/nest-testing/package.json +++ b/packages/nest-testing/package.json @@ -1,6 +1,6 @@ { "name": "@spuxx/nest-testing", - "version": "1.1.0", + "version": "2.0.0", "description": "A package containing testing-related utilities for NestJS applications.", "license": "MIT", "author": { diff --git a/packages/nest-utils/CHANGELOG.md b/packages/nest-utils/CHANGELOG.md index 14cb74b..7b5529b 100644 --- a/packages/nest-utils/CHANGELOG.md +++ b/packages/nest-utils/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## [4.0.0](https://github.com/spuxx-dev/jslibs/compare/nest-utils-v3.2.0...nest-utils-v4.0.0) (2025-03-12) + + +### ⚠ BREAKING CHANGES + +* **auth:** Migrate auth-related functionalities from @spuxx/nest-utils to new package @spuxx/nest-auth +* **auth:** Migrate auth to new package `@spuxx/nest-auth` +* Update nestjs to 11.0.0 + +### Features + +* **auth:** Migrate auth to new package `@spuxx/nest-auth` ([8c96838](https://github.com/spuxx-dev/jslibs/commit/8c9683875eb5b11768758c7cd8bebec8cae8f4d0)) +* **auth:** Migrate auth-related functionalities from @spuxx/nest-utils to new package @spuxx/nest-auth ([231847d](https://github.com/spuxx-dev/jslibs/commit/231847d92729177d447e47dfff71fa7eb622cbd8)) +* Update nestjs to 11.0.0 ([fd159bd](https://github.com/spuxx-dev/jslibs/commit/fd159bda5a390f1ee11f45e0b642fd15a63c13f1)) +* Update nestjs to 11.0.0 ([304c919](https://github.com/spuxx-dev/jslibs/commit/304c91919d865ba302b4316904d8ca9a10b0ba7b)) +* **validators:** Add new `IsOptionalUnless` validator ([8bcb005](https://github.com/spuxx-dev/jslibs/commit/8bcb0059967c0a3b519b25cb8b6668d935e8a2ea)) + + +### Bug Fixes + +* HttpLoggingInterceptor now also logs context ([13319b3](https://github.com/spuxx-dev/jslibs/commit/13319b35ece0f81123bbdc3a29bf5026884ac60a)) + ## [3.2.0](https://github.com/spuxx-dev/jslibs/compare/nest-utils-v3.1.0...nest-utils-v3.2.0) (2025-02-09) diff --git a/packages/nest-utils/package.json b/packages/nest-utils/package.json index 9fc9301..72750b3 100644 --- a/packages/nest-utils/package.json +++ b/packages/nest-utils/package.json @@ -1,6 +1,6 @@ { "name": "@spuxx/nest-utils", - "version": "3.2.0", + "version": "4.0.0", "description": "A package containing various utilities for NestJS applications.", "license": "MIT", "author": { diff --git a/packages/solid/CHANGELOG.md b/packages/solid/CHANGELOG.md index 825c32f..f087851 100644 --- a/packages/solid/CHANGELOG.md +++ b/packages/solid/CHANGELOG.md @@ -1 +1,17 @@ # Changelog + +## 1.0.0 (2025-03-12) + + +### Features + +* **modal:** Refactored modal dialog and improved styling ([aa5bdd9](https://github.com/spuxx-dev/jslibs/commit/aa5bdd93aac610c6cd906d4d6fdb9410474b0087)) +* **solid:** Added new `@spuxx/solid` package ([11f671c](https://github.com/spuxx-dev/jslibs/commit/11f671c422d668fe4323b76c7ec22ae844e4ea05)) + + +### Bug Fixes + +* Fixed an issue that would prevent components from accepting inline styles ([ed4919a](https://github.com/spuxx-dev/jslibs/commit/ed4919a8afe75411c1e9bb2606d43ae756e7c782)) +* **modal:** Fixed modal animations not always playing when closing modal ([00dbb2f](https://github.com/spuxx-dev/jslibs/commit/00dbb2fdd0fb5f01c6e482ddf2c91eaf147599e8)) + +## Changelog diff --git a/packages/solid/package.json b/packages/solid/package.json index ee9da05..3204a5f 100644 --- a/packages/solid/package.json +++ b/packages/solid/package.json @@ -1,6 +1,6 @@ { "name": "@spuxx/solid", - "version": "0.0.0", + "version": "1.0.0", "description": "A package containing various utilities for my Solid applications.", "license": "MIT", "author": {