Skip to content

Commit

Permalink
Merge pull request #95 from deepcrawl/ODIN-840-upgrade
Browse files Browse the repository at this point in the history
feat: [ODIN-840] upgrade duckdb to 0.2.6
  • Loading branch information
rprovodenko authored May 19, 2021
2 parents ef598e2 + c80e7b6 commit bf0c02c
Show file tree
Hide file tree
Showing 6 changed files with 1,319 additions and 54 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
/addon
/nodemon.json
/examples
/build
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
run: |
yarn install --frozen-lockfile
yarn lint:check
yarn audit
yarn test
env:
NODE_AUTH_TOKEN: ${{secrets.GIT_REGISTRY_TOKEN}}
Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
/tsconfig.json
/examples
CHANGELOG.md
/build
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.0.67](https://github.com/deepcrawl/node-duckdb/compare/v0.0.66...v0.0.67) (2021-04-07)


### Bug Fixes

* [ODIN-512] bumping logic ([#91](https://github.com/deepcrawl/node-duckdb/issues/91)) ([27b412d](https://github.com/deepcrawl/node-duckdb/commit/27b412d1967834f549261443bfd474a8d49297af))

### [0.0.66](https://github.com/deepcrawl/node-duckdb/compare/v0.0.64...v0.0.66) (2021-04-06)

### [0.0.64](https://github.com/deepcrawl/node-duckdb/compare/v0.0.61...v0.0.64) (2021-03-26)


Expand Down
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-duckdb",
"version": "0.0.64",
"version": "0.0.68",
"private": false,
"description": "DuckDB for Node.JS",
"keywords": [
Expand Down Expand Up @@ -31,6 +31,7 @@
]
},
"scripts": {
"audit:fix": "yarn-audit-fix",
"build": "yarn build:duckdb && yarn build:addon && yarn build:ts",
"build:addon": "rimraf build && cmake-js compile --CDnapi_build_version=6",
"build:duckdb": "cd duckdb && make && cd -",
Expand All @@ -39,11 +40,10 @@
"clang:check": "yarn clang-format --dry-run --Werror addon/**",
"clang:fix": "yarn clang-format -i addon/**",
"cleanup:binaries": "rm -rf build prebuilds duckdb",
"download-duckdb": "rm -rf duckdb && curl -L https://github.com/cwida/duckdb/archive/v0.2.5.tar.gz > duckdb.tar.gz && tar xf duckdb.tar.gz && mv duckdb-0.2.5 duckdb && rm duckdb.tar.gz",
"download-duckdb": "rm -rf duckdb && curl -L https://github.com/cwida/duckdb/archive/v0.2.6.tar.gz > duckdb.tar.gz && tar xf duckdb.tar.gz && mv duckdb-0.2.6 duckdb && rm duckdb.tar.gz",
"eslint:check": "eslint --ext .js,.json,.ts ./",
"eslint:fix": "eslint --fix --ext .js,.json,.ts ./",
"generate-doc": "yarn build:ts && rm -rf temp etc && mkdir etc && yarn api-extractor run --local --verbose && yarn api-documenter markdown -i temp -o docs/api && ./docs/replace.sh",
"preinstall": "yarn audit",
"install": "prebuild-install --verbose -d -r napi || (yarn download-duckdb && yarn build:duckdb && yarn prebuild:current-target)",
"lint:check": "yarn prettier:check && yarn eslint:check && yarn clang:check",
"lint:fix": "yarn prettier:fix && yarn eslint:fix && yarn clang:fix",
Expand Down Expand Up @@ -98,7 +98,8 @@
"rimraf": "^3.0.2",
"standard-version": "^9.1.1",
"ttypescript": "^1.5.12",
"typescript": "^4.0.3"
"typescript": "^4.0.3",
"yarn-audit-fix": "^5.0.0"
},
"engines": {
"node": ">= 12.17.0"
Expand Down
Loading

0 comments on commit bf0c02c

Please sign in to comment.