Skip to content

Commit ea006fc

Browse files
authored
chore(release): v2.1.1 (#1108)
1 parent b60c011 commit ea006fc

File tree

3 files changed

+23
-17
lines changed

3 files changed

+23
-17
lines changed

CHANGELOG.md

+20-14
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,24 @@
11
# Changelog
22

3+
## [2.1.1](https://github.com/RobinBuschmann/sequelize-typescript/compare/v2.1.0...v2.1.1) (2021-10-10)
4+
5+
### Bug Fixes
6+
7+
* **model:** adjust init method to recently introduced sequelize type changes ([b60c011](https://github.com/RobinBuschmann/sequelize-typescript/commit/b60c011be2e971e56cb783d4ade994965faab916))
8+
39
## [2.1.0](https://github.com/RobinBuschmann/sequelize-typescript/compare/v2.0.0-beta.1...v2.1.0) (2021-02-14)
410

511
Initial release with Changelog.
612

713
### Bug Fixes
814

9-
- allow $set null (remove association) ([#774](https://github.com/RobinBuschmann/sequelize-typescript/issues/774)) ([ffe1c78](https://github.com/RobinBuschmann/sequelize-typescript/commit/ffe1c78df73df7f287b8ce345d6ac0df30283723))
10-
- model associations methods to reflect sequelize v6 ([#888](https://github.com/RobinBuschmann/sequelize-typescript/issues/888)) ([6b1e3ff](https://github.com/RobinBuschmann/sequelize-typescript/commit/6b1e3fffd974f087be2e18258306f81860923ba3))
11-
- typeof Model errors by using typeof Model generics ([#900](https://github.com/RobinBuschmann/sequelize-typescript/issues/900)) ([b865840](https://github.com/RobinBuschmann/sequelize-typescript/commit/b8658404f12e7a44893c9b8652714473bb25f495))
15+
* allow $set null (remove association) ([#774](https://github.com/RobinBuschmann/sequelize-typescript/issues/774)) ([ffe1c78](https://github.com/RobinBuschmann/sequelize-typescript/commit/ffe1c78df73df7f287b8ce345d6ac0df30283723))
16+
* model associations methods to reflect sequelize v6 ([#888](https://github.com/RobinBuschmann/sequelize-typescript/issues/888)) ([6b1e3ff](https://github.com/RobinBuschmann/sequelize-typescript/commit/6b1e3fffd974f087be2e18258306f81860923ba3))
17+
* typeof Model errors by using typeof Model generics ([#900](https://github.com/RobinBuschmann/sequelize-typescript/issues/900)) ([b865840](https://github.com/RobinBuschmann/sequelize-typescript/commit/b8658404f12e7a44893c9b8652714473bb25f495))
1218

1319
### Features
1420

15-
- infer bigint data type ([#893](https://github.com/RobinBuschmann/sequelize-typescript/issues/893)) ([7c467d4](https://github.com/RobinBuschmann/sequelize-typescript/commit/7c467d404a200b3153cc7aa2605d1e542bef3da9))
21+
* infer bigint data type ([#893](https://github.com/RobinBuschmann/sequelize-typescript/issues/893)) ([7c467d4](https://github.com/RobinBuschmann/sequelize-typescript/commit/7c467d404a200b3153cc7aa2605d1e542bef3da9))
1622

1723
## Older versions
1824

@@ -45,17 +51,17 @@ npm install [email protected]
4551

4652
### Upgrade to `sequelize-typescript@2`
4753

48-
- `sequelize-typescript@2` only works with `[email protected]>=`.
54+
* `sequelize-typescript@2` only works with `[email protected]>=`.
4955
For `sequelize@5` use `[email protected]`.
5056

5157
#### Breaking Changes
5258

53-
- All breaking changes of `sequelize@6` are also valid for `sequelize-typescript@2`.
59+
* All breaking changes of `sequelize@6` are also valid for `sequelize-typescript@2`.
5460
See [Upgrade to v6](https://sequelize.org/master/manual/upgrade-to-v6.html) for details.
55-
- `@types/bluebird` is no longer needed, `sequelize@6` removed usage of `bluebird`
56-
- Sequelize v6.2 introduced additional model attributes typings, which affects how the model is defined.
57-
- See below comparison between V5 and V6 model definition to show how to upgrade models.
58-
- For more details, see [sequelize typescript docs](https://sequelize.org/master/manual/typescript.html).
61+
* `@types/bluebird` is no longer needed, `sequelize@6` removed usage of `bluebird`
62+
* Sequelize v6.2 introduced additional model attributes typings, which affects how the model is defined.
63+
* See below comparison between V5 and V6 model definition to show how to upgrade models.
64+
* For more details, see [sequelize typescript docs](https://sequelize.org/master/manual/typescript.html).
5965

6066
### Upgrade to `sequelize-typescript@1`
6167

@@ -73,7 +79,7 @@ sequelize-typescript now uses the official typings bundled with sequelize
7379
(See [this](https://sequelize.org/v5/manual/upgrade-to-v5.html#typescript-support)).
7480
Please note the following details:
7581

76-
- Most of the sequelize-typescript interfaces of the previous version are replaced by the official ones
77-
- `@types/sequelize` is no longer used
78-
- `@types/bluebird` is no longer an explicit dependency
79-
- The official typings are less strict than the former sequelize-typescript ones
82+
* Most of the sequelize-typescript interfaces of the previous version are replaced by the official ones
83+
* `@types/sequelize` is no longer used
84+
* `@types/bluebird` is no longer an explicit dependency
85+
* The official typings are less strict than the former sequelize-typescript ones

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sequelize-typescript",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "Decorators and some other features for sequelize",
55
"scripts": {
66
"build": "tsc",

0 commit comments

Comments
 (0)