Skip to content

Commit

Permalink
Prepare 0.21.2 release (#3917)
Browse files Browse the repository at this point in the history
  • Loading branch information
kibertoad committed Jul 9, 2020
1 parent da54cf1 commit ff56c28
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 17 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,21 @@
# Master (Unreleased)

# 0.21.2 - 10 July, 2020

### New features:

- Warn user if custom migration source is being reset #3839
- Prefer `void` as return type on migration generator ts stub #3865
- MSSQL: Added the removal of a columns default constraint, before dropping the column #3855

### Typings:

- Fix definition for raw querybuilders #3846

### Test / internal changes:

- Refactor migration logic to use async/await #3838

# 0.21.1 - 28 April, 2020

### New features:
Expand Down
34 changes: 17 additions & 17 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "knex",
"version": "0.21.1",
"version": "0.21.2",
"description": "A batteries-included SQL query & schema builder for Postgres, MySQL and SQLite3 and the Browser",
"main": "knex.js",
"types": "types/index.d.ts",
Expand Down Expand Up @@ -32,21 +32,21 @@
"stress:destroy": "docker-compose -f scripts/stress-test/docker-compose.yml stop"
},
"dependencies": {
"colorette": "1.1.0",
"colorette": "1.2.1",
"commander": "^5.1.0",
"debug": "4.1.1",
"esm": "^3.2.25",
"getopts": "2.2.5",
"inherits": "~2.0.4",
"interpret": "^2.0.0",
"interpret": "^2.2.0",
"liftoff": "3.1.0",
"lodash": "^4.17.15",
"lodash": "^4.17.19",
"mkdirp": "^1.0.4",
"pg-connection-string": "2.2.0",
"pg-connection-string": "2.3.0",
"tarn": "^3.0.0",
"tildify": "2.0.0",
"uuid": "^7.0.3",
"v8flags": "^3.1.3"
"v8flags": "^3.2.0"
},
"peerDependencies": {
"mssql": "^6.2.0",
Expand Down Expand Up @@ -79,42 +79,42 @@
]
},
"devDependencies": {
"@types/node": "^13.13.2",
"@types/node": "^14.0.20",
"JSONStream": "^1.3.5",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-subset-in-order": "^2.1.4",
"cli-testlab": "^1.10.0",
"coveralls": "^3.0.14",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"dtslint": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"husky": "^4.2.5",
"jake": "^8.1.1",
"lint-staged": "^10.1.7",
"mocha": "^7.1.2",
"lint-staged": "^10.2.11",
"mocha": "^8.0.1",
"mock-fs": "^4.12.0",
"mssql": "^6.2.0",
"mysql": "^2.18.1",
"mysql2": "^2.1.0",
"nyc": "^15.0.1",
"nyc": "^15.1.0",
"oracledb": "^4.2.0",
"pg": "^8.0.3",
"pg-query-stream": "^3.0.7",
"pg": "^8.3.0",
"pg-query-stream": "^3.2.0",
"prettier": "2.0.5",
"rimraf": "^3.0.2",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"source-map-support": "^0.5.19",
"sqlite3": "^4.1.1",
"sqlite3": "^5.0.0",
"tap-spec": "^5.0.0",
"tape": "^5.0.0",
"tape": "^5.0.1",
"toxiproxy-node-client": "^2.0.6",
"ts-node": "^8.9.1",
"ts-node": "^8.10.2",
"typescript": "3.8.3",
"webpack-cli": "^3.3.11"
"webpack-cli": "^3.3.12"
},
"buildDependencies": [
"rimraf"
Expand Down

0 comments on commit ff56c28

Please sign in to comment.