diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index fa99e596..393ded83 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - node-version: [10.x, 12.x, 14.x] + node-version: [10.x, 12.x, 14.x, 16.x] steps: - uses: 'actions/checkout@v2.4.0' diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index b04be75d..f2afb94e 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -14,7 +14,7 @@ jobs: - uses: 'actions/setup-node@v2.5.1' with: - node-version: 14 + node-version: 16 registry-url: 'https://registry.npmjs.org/' - run: 'npm ci' diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fc61411..9daa14d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2.1.2](https://github.com/RobinBuschmann/sequelize-typescript/compare/v2.1.1...v2.1.2) (2022-01-03) + +### Bug Fixes + +* use custom decorator on column have a property descriptor ([#1070](https://github.com/RobinBuschmann/sequelize-typescript/issues/1070)) ([7ce03de](https://github.com/RobinBuschmann/sequelize-typescript/commit/7ce03de76b465172994f41a55058ea49f3ce27c3)) +* **validators:** allow any values for isIn/notIn ([#1124](https://github.com/RobinBuschmann/sequelize-typescript/issues/1124)) ([d25b392](https://github.com/RobinBuschmann/sequelize-typescript/commit/d25b39282d2a49e4e5cf286100344e7d1fda3c84)) + ## [2.1.1](https://github.com/RobinBuschmann/sequelize-typescript/compare/v2.1.0...v2.1.1) (2021-10-10) ### Bug Fixes diff --git a/package-lock.json b/package-lock.json index 2ab87077..abe76aeb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "sequelize-typescript", - "version": "2.1.1", + "version": "2.1.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "sequelize-typescript", - "version": "2.1.1", + "version": "2.1.2", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 553d5e7c..22b826c0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sequelize-typescript", - "version": "2.1.1", + "version": "2.1.2", "description": "Decorators and some other features for sequelize", "scripts": { "build": "tsc",