From 2489a643d572ba259374501db9983b4c0f9df44e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 25 Oct 2024 09:49:50 +0000 Subject: [PATCH 1/2] meta: update dependency prettier to v3.3.3 --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index a0e92141..3a81ed53 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,7 @@ "eslint-plugin-react-hooks": "5.0.0", "husky": "9.1.6", "lint-staged": "15.2.10", - "prettier": "3.2.5", + "prettier": "3.3.3", "typescript": "5.6.3" }, "browserslist": { diff --git a/yarn.lock b/yarn.lock index 86533419..a1a825a2 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9820,10 +9820,10 @@ prelude-ls@~1.1.2: resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== -prettier@3.2.5: - version "3.2.5" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.2.5.tgz#e52bc3090586e824964a8813b09aba6233b28368" - integrity sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A== +prettier@3.3.3: + version "3.3.3" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.3.3.tgz#30c54fe0be0d8d12e6ae61dbb10109ea00d53105" + integrity sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew== pretty-error@^4.0.0: version "4.0.0" From c4731250b82bb2107c9efeace6a8bfe0d65ec389 Mon Sep 17 00:00:00 2001 From: Rik Smale <13023439+WikiRik@users.noreply.github.com> Date: Fri, 25 Oct 2024 10:29:26 +0000 Subject: [PATCH 2/2] FIx prettier --- docs/models/data-types.mdx | 3 +++ src/pages/releases.mdx | 1 + 2 files changed, 4 insertions(+) diff --git a/docs/models/data-types.mdx b/docs/models/data-types.mdx index 8d16535f..5d071076 100644 --- a/docs/models/data-types.mdx +++ b/docs/models/data-types.mdx @@ -88,7 +88,9 @@ A ❌ means the dialect does not support that DataType. [^ints-1]: When an int type is not available, Sequelize uses a bigger int type. + [^ints-2]: When an unsigned int type is not available, Sequelize uses a bigger int type to ensure the type covers all possible unsigned integer values of the smaller int type. + [^mssql-1]: `TINYINT` in SQL Server is unsigned. `DataTypes.TINYINT.UNSIGNED` therefore maps to `TINYINT`, and `DataTypes.TINYINT` maps to `SMALLINT`. :::caution @@ -130,6 +132,7 @@ The types in the following table are typically represented as an [IEEE 754 float [^sqlite-3]: Unlike other dialects, in SQLite, `REAL` is a double-precision floating point number type. + [^snowflake-1]: Unlike other dialects, in Snowflake, `FLOAT` is a double-precision floating point number type. :::info diff --git a/src/pages/releases.mdx b/src/pages/releases.mdx index 104e26df..a549d782 100644 --- a/src/pages/releases.mdx +++ b/src/pages/releases.mdx @@ -165,4 +165,5 @@ In Sequelize 6, Oracle Database requires the installation of the [node-oracledb] [node-oracledb]: https://www.npmjs.com/package/oracledb [^1]: Connector libraries do not need to be installed manually anymore. + [^⚠️2]: Support for mariadb 3 has not been completed yet https://github.com/sequelize/sequelize/pull/14187