不要怂,就是干,撸起袖子干!

Commit 8ab6d1ce by Sushant

docs: changelog for 5.0.0-beta.9

1 parent 7a49a658
Showing with 15 additions and 3 deletions
...@@ -55,6 +55,10 @@ Main outline ...@@ -55,6 +55,10 @@ Main outline
Now supports only one standard format `[{ value: 1, inclusive: true }, { value: 20, inclusive: false }]` [#9364](https://github.com/sequelize/sequelize/pull/9364) Now supports only one standard format `[{ value: 1, inclusive: true }, { value: 20, inclusive: false }]` [#9364](https://github.com/sequelize/sequelize/pull/9364)
**Network types**
Added support for `CIDR`, `INET` and `MACADDR` for Postgres
### Others ### Others
Sequelize now use parameterized queries for all INSERT / UPDATE operations (except UPSERT). They provide better protection against SQL Injection attack. Sequelize now use parameterized queries for all INSERT / UPDATE operations (except UPSERT). They provide better protection against SQL Injection attack.
...@@ -71,6 +75,14 @@ Sequelize now use parameterized queries for all INSERT / UPDATE operations (exce ...@@ -71,6 +75,14 @@ Sequelize now use parameterized queries for all INSERT / UPDATE operations (exce
## Changelog ## Changelog
### 5.0.0-beta.9
- fix(model): ignore undefined values in update payload [#9587](https://github.com/sequelize/sequelize/pull/9587)
- fix(mssql): set encrypt as default false for dialect options [#9588](https://github.com/sequelize/sequelize/pull/9588)
- fix(model): ignore VIRTUAL/getters with attributes.exclude [#9568](https://github.com/sequelize/sequelize/pull/9568)
- feat(data-types): CIDR, INET, MACADDR support for Postgres [#9567](https://github.com/sequelize/sequelize/pull/9567)
- fix: customize allowNull message with notNull validator [#9549](https://github.com/sequelize/sequelize/pull/9549)
### 5.0.0-beta.8 ### 5.0.0-beta.8
- feat(query-generator): Generate INSERT / UPDATE using bind parameters [#9431](https://github.com/sequelize/sequelize/pull/9431) [#9492](https://github.com/sequelize/sequelize/pull/9492) - feat(query-generator): Generate INSERT / UPDATE using bind parameters [#9431](https://github.com/sequelize/sequelize/pull/9431) [#9492](https://github.com/sequelize/sequelize/pull/9492)
......
...@@ -26,8 +26,8 @@ ...@@ -26,8 +26,8 @@
"generic-pool": "^3.4.0", "generic-pool": "^3.4.0",
"inflection": "1.12.0", "inflection": "1.12.0",
"lodash": "^4.17.1", "lodash": "^4.17.1",
"moment": "^2.21.0", "moment": "^2.22.2",
"moment-timezone": "^0.5.14", "moment-timezone": "^0.5.21",
"retry-as-promised": "^3.0.0", "retry-as-promised": "^3.0.0",
"semver": "^5.5.0", "semver": "^5.5.0",
"toposort-class": "^1.0.1", "toposort-class": "^1.0.1",
...@@ -64,7 +64,7 @@ ...@@ -64,7 +64,7 @@
"rimraf": "^2.x", "rimraf": "^2.x",
"semantic-release": "^15.x", "semantic-release": "^15.x",
"sinon": "^6.0.0", "sinon": "^6.0.0",
"sinon-chai": "^3.1.0", "sinon-chai": "^3.2.0",
"sqlite3": "^4.x", "sqlite3": "^4.x",
"tedious": "^2.x", "tedious": "^2.x",
"uuid-validate": "^0.0.3", "uuid-validate": "^0.0.3",
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!