Skip to content

Commit

Permalink
Release v10.0.0
Browse files Browse the repository at this point in the history
- Fix populated entities to be QueryResult
- Improve return types when doing partial selects
- Be less restrictive with dependency versions
- Drop node 12 support
  • Loading branch information
jgeurts committed Jan 8, 2022
1 parent 428cbfd commit b9d8e75
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

## 10.0.0-beta1 - 2022-01-03
## 10.0.0 - 2022-01-07

- Fix populated entities to be QueryResult
- Improve return types when doing partial selects
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bigal",
"version": "10.0.0-beta5",
"version": "10.0.0",
"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 @@ -45,7 +45,7 @@
"eslint-plugin-security": "^1.4.0",
"faker": "^5.5.3",
"husky": "^7.0.4",
"lint-staged": "^12.1.5",
"lint-staged": "^12.1.7",
"markdownlint-cli": "^0.30.0",
"mocha": "^9.1.3",
"npm-run-all": "^4.1.5",
Expand All @@ -66,7 +66,7 @@
"lint:code": "eslint --fix --ext .ts src tests",
"lint": "run-p lint:*",
"lint-staged": "lint-staged",
"dist": "if [ -d \"src\" ]; then rm -rf dist && npm run build && npm run lint && npm run test && cp package.json dist && cp package-lock.json dist && cp *.md dist && cp LICENSE dist && cp .npmignore dist && cd dist && npm publish --tag beta; fi",
"dist": "if [ -d \"src\" ]; then rm -rf dist && npm run build && npm run lint && npm run test && cp package.json dist && cp package-lock.json dist && cp *.md dist && cp LICENSE dist && cp .npmignore dist && cd dist && npm publish; fi",
"prepublishOnly": "if [ -d \"src\" ]; then echo \"Please use: npm run dist\" && exit 125; fi && pinst --disable",
"postinstall": "husky install",
"postpublish": "pinst --enable"
Expand Down

0 comments on commit b9d8e75

Please sign in to comment.