-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
github-action[bot]
committed
Jul 1, 2024
1 parent
8e1154f
commit eedca46
Showing
12 changed files
with
56 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
packages/transactional-adapters/transactional-adapter-mongodb/CHANGES.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Changelog | ||
|
||
<!-- MONODEPLOY:BELOW --> | ||
|
||
## [1.1.0](https://github.com/Papooch/nestjs-cls/compare/@nestjs-cls/[email protected]...@nestjs-cls/[email protected]) "@nestjs-cls/transactional-adapter-mongodb" (2024-07-01)<a name="1.1.0"></a> | ||
|
||
### Features | ||
|
||
* **transactional-adapter-mongodb**: add `mongodb` adapter (#158) ([90f2df4](https://github.com/Papooch/nestjs-cls/commits/90f2df4)) | ||
* **transactional-adapter-mongodb**: add `mongodb` adapter (#161) ([90f2df4](https://github.com/Papooch/nestjs-cls/commits/90f2df4)) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
packages/transactional-adapters/transactional-adapter-mongoose/CHANGES.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Changelog | ||
|
||
<!-- MONODEPLOY:BELOW --> | ||
|
||
## [1.1.0](https://github.com/Papooch/nestjs-cls/compare/@nestjs-cls/[email protected]...@nestjs-cls/[email protected]) "@nestjs-cls/transactional-adapter-mongoose" (2024-07-01)<a name="1.1.0"></a> | ||
|
||
### Features | ||
|
||
* **transactional-adapter-mongoose**: add `mongoose` adapter ([8e1154f](https://github.com/Papooch/nestjs-cls/commits/8e1154f)) | ||
* **transactional-adapter-mongoose**: add `mongoose` adapter (#159) ([8e1154f](https://github.com/Papooch/nestjs-cls/commits/8e1154f)) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@nestjs-cls/transactional-adapter-pg-promise", | ||
"version": "1.3.1", | ||
"version": "1.3.2", | ||
"description": "A pg-promise adapter for @nestjs-cls/transactional", | ||
"author": "Sam Artuso <[email protected]>", | ||
"license": "MIT", | ||
|
@@ -41,7 +41,7 @@ | |
"test:cov": "jest --coverage" | ||
}, | ||
"peerDependencies": { | ||
"@nestjs-cls/transactional": "workspace:^2.3.1", | ||
"@nestjs-cls/transactional": "workspace:^2.4.0", | ||
"nestjs-cls": "workspace:^4.3.0", | ||
"pg-promise": "^11" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@nestjs-cls/transactional-adapter-typeorm", | ||
"version": "1.2.1", | ||
"version": "1.2.2", | ||
"description": "A typeorm adapter for @nestjs-cls/transactional", | ||
"author": "Giosuè Delgado S.Z. - Relybytes Srl <[email protected]>", | ||
"license": "MIT", | ||
|
@@ -42,7 +42,7 @@ | |
"test:cov": "jest --coverage" | ||
}, | ||
"peerDependencies": { | ||
"@nestjs-cls/transactional": "workspace:^2.3.1", | ||
"@nestjs-cls/transactional": "workspace:^2.4.0", | ||
"nestjs-cls": "workspace:^4.3.0", | ||
"typeorm": "0.3.20" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,16 @@ | |
|
||
<!-- MONODEPLOY:BELOW --> | ||
|
||
## [2.4.0](https://github.com/Papooch/nestjs-cls/compare/@nestjs-cls/[email protected]...@nestjs-cls/[email protected]) "@nestjs-cls/transactional" (2024-07-01)<a name="2.4.0"></a> | ||
|
||
### Features | ||
|
||
* **transactional**: enable using lifecycle hooks in TransactionalAdapter (#156) ([1ec49ea](https://github.com/Papooch/nestjs-cls/commits/1ec49ea)) | ||
* **transactional**: enable adapters to opt out of transactional proxy support (#160) ([9542cdb](https://github.com/Papooch/nestjs-cls/commits/9542cdb)) | ||
|
||
|
||
|
||
|
||
## [2.3.1](https://github.com/Papooch/nestjs-cls/compare/@nestjs-cls/[email protected]...@nestjs-cls/[email protected]) "@nestjs-cls/transactional" (2024-05-22)<a name="2.3.1"></a> | ||
|
||
### Bug Fixes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters