Skip to content

Commit 30e35e7

Browse files
authored
Merge pull request #15 from spuxx1701/release-please--branches--main
chore: release main
2 parents 45df336 + 51ff010 commit 30e35e7

File tree

7 files changed

+54
-6
lines changed

7 files changed

+54
-6
lines changed

.release-please/manifest.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"packages/js-utils": "0.0.0",
3-
"packages/browser-utils": "1.1.0",
4-
"packages/nest-utils": "0.0.0"
2+
"packages/js-utils": "1.0.0",
3+
"packages/browser-utils": "1.2.0",
4+
"packages/nest-utils": "1.0.0"
55
}

packages/browser-utils/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [1.2.0](https://github.com/spuxx1701/jslibs/compare/browser-utils-v1.1.0...browser-utils-v1.2.0) (2024-08-31)
4+
5+
6+
### Features
7+
8+
* **readme:** Improve documentation ([b46811e](https://github.com/spuxx1701/jslibs/commit/b46811ecd987515cb69a7b34b26c8847c58aa004))
9+
310
## [1.1.0](https://github.com/spuxx1701/jslibs/compare/browser-utils-v1.0.0...browser-utils-v1.1.0) (2024-07-31)
411

512

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.1.0",
3+
"version": "1.2.0",
44
"description": "A package containing various browser-related utilities for web applications.",
55
"license": "MIT",
66
"author": {

packages/js-utils/CHANGELOG.md

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

3+
## 1.0.0 (2024-08-31)
4+
5+
6+
### Features
7+
8+
* Add `OmitFunctionMembers` helper type ([13fd2fc](https://github.com/spuxx1701/jslibs/commit/13fd2fc074a2d1e9192e4731e6c79949f75fa510))
9+
* Include and export a couple of useful types ([ce53634](https://github.com/spuxx1701/jslibs/commit/ce53634aad46c2b7f1e5e8b87e2ae743061e629b))
10+
* **npm:** Improved documentation in package.json files ([d46e518](https://github.com/spuxx1701/jslibs/commit/d46e5184e168f0a639cbbac041b296456033a71b))
11+
* **readme:** Improve documentation ([b46811e](https://github.com/spuxx1701/jslibs/commit/b46811ecd987515cb69a7b34b26c8847c58aa004))
12+
13+
14+
### Documentation
15+
16+
* **changelog:** Documented initial release in changelog ([36d7711](https://github.com/spuxx1701/jslibs/commit/36d77116e739afb18abad49fa77a596da28fa0fb))
17+
* Prepared changelogs for release-please changelog generation ([a042005](https://github.com/spuxx1701/jslibs/commit/a04200509385b77aa880de2a3d35f5558662934f))
18+
319
## [0.2.0](https://github.com/spuxx1701/jslibs/compare/js-utils-v0.1.0...js-utils-v0.2.0) (2024-07-31)
420

521

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": "0.2.0",
3+
"version": "1.0.0",
44
"description": "A package containing various utilities for JavaScript applications.",
55
"license": "MIT",
66
"author": {

packages/nest-utils/CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1 +1,26 @@
11
# Changelog
2+
3+
## 1.0.0 (2024-08-31)
4+
5+
6+
### Features
7+
8+
* Add EnvModule to help with loading and handling environment variables ([641559f](https://github.com/spuxx1701/jslibs/commit/641559f6576a0273609724498f55eacc3a64a09c))
9+
* CustomLogger can now update its log level during runtime ([7c6e92b](https://github.com/spuxx1701/jslibs/commit/7c6e92bd0f0ac00cd743c4811850ce5dab8565c0))
10+
* Expose TestContainer and Supertest helper classes to help with testing Nest applications ([797c471](https://github.com/spuxx1701/jslibs/commit/797c471941de1c09ff8e369f39f412a01ce16bf8))
11+
* Implement `TransformBooleanString` transformer decorator ([b2a567d](https://github.com/spuxx1701/jslibs/commit/b2a567d37def2e8dd39a9c7c8fcb29f8ca2b9f3b))
12+
* Implement CustomLogger class ([883fa99](https://github.com/spuxx1701/jslibs/commit/883fa99108c711fc2076e5ff0f868c0573f862e6))
13+
* Implement HttpLoggingInterceptor ([e7df43f](https://github.com/spuxx1701/jslibs/commit/e7df43f718700fbc793f36d06e18d54e1a21a4c6))
14+
* Introduce `AuthModule` for handling authorization and authentication through OIDC ([0d3cdd7](https://github.com/spuxx1701/jslibs/commit/0d3cdd77b7b235480a95876f248a227e509db74b))
15+
16+
17+
### Bug Fixes
18+
19+
* EnvModule now properly loads environment variables when being accessed ([2a8f661](https://github.com/spuxx1701/jslibs/commit/2a8f661e9573f7db05869e2ed2a30085b4116919))
20+
21+
22+
### Documentation
23+
24+
* Added comment to test ([297ffd1](https://github.com/spuxx1701/jslibs/commit/297ffd1e725fd6f42bbc32743483aa871847dbcf))
25+
26+
## Changelog

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": "0.0.0",
3+
"version": "1.0.0",
44
"description": "A package containing various utilities for NestJS applications.",
55
"license": "MIT",
66
"author": {

0 commit comments

Comments
 (0)