-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: removed a console.log that was mistakenly left in the compileFas…
…tValidator
- Loading branch information
Showing
2 changed files
with
13 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,19 @@ | ||
## 2.1.1 (May 29, 2023) | ||
|
||
### Bug Fixes | ||
|
||
- #### fix: removed a console.log that was mistakenly left in the compileFastValidator ([#164](https://github.com/ncpa0/Dilswer/pull/164)) | ||
|
||
Removed a console.log that was mistakenly left in the compileFastValidator. | ||
|
||
## 2.1.0 (May 29, 2023) | ||
|
||
### Features | ||
|
||
- #### feat: implemented a factory for a high performance validator ([#157](https://github.com/ncpa0/Dilswer/pull/157)) | ||
|
||
Added a new factory function - `compileFastValidator`. Validation function produced by this factory are much more performant than all the other ones provided by Dilswer. `compileFastValidator` leverages JIT compilation via `eval()` to generated a highly optimized code specially for the given Data Type. | ||
Added a new factory function - `compileFastValidator`. Validation function | ||
produced by this factory are much more performant than all the other ones | ||
provided by Dilswer. `compileFastValidator` leverages JIT compilation via | ||
`eval()` to generated a highly optimized code specially for the given Data | ||
Type. |
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