Skip to content

Commit

Permalink
Release 12.1.1
Browse files Browse the repository at this point in the history
- Handle `null` and `undefined` for columns with maxLength. #90 Thanks @tyler-neal!
- Update npms
  • Loading branch information
jgeurts committed Jan 12, 2024
1 parent c98d873 commit eee39ae
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 59 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## 12.1.1 - 2024-01-12

- Handle `null` and `undefined` for columns with maxLength. #90 Thanks @tyler-neal!
- Update npms

## 12.1.0 - 2024-01-05

- Added support for optional maxLength constraint when inserting/updating string fields. #89 Thanks @tyler-neal!
Expand Down
108 changes: 54 additions & 54 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bigal",
"version": "12.1.0",
"version": "12.1.1",
"description": "A fast and lightweight orm for postgres and node.js, written in typescript.",
"main": "index.js",
"types": "index.d.ts",
Expand Down Expand Up @@ -30,8 +30,8 @@
"@types/chai": "^4.3.11",
"@types/mocha": "10.0.6",
"@types/node": ">=18",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"chai": "^4.4.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
Expand All @@ -40,7 +40,7 @@
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.0.2",
"eslint-plugin-mocha": "10.2.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-security": "^2.1.0",
"husky": "^8.0.3",
Expand All @@ -49,7 +49,7 @@
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"pinst": "^3.0.0",
"prettier": "^3.1.1",
"prettier": "^3.2.1",
"rimraf": "^5.0.5",
"strict-event-emitter-types": "^2.0.0",
"ts-mockito": "^2.6.1",
Expand Down

0 comments on commit eee39ae

Please sign in to comment.