Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@mikro-orm/sql

Package Overview
Dependencies
Maintainers
1
Versions
596
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mikro-orm/sql - npm Package Compare versions

Comparing version
7.1.1-dev.8
to
7.1.1-dev.9
+2
-2
package.json
{
"name": "@mikro-orm/sql",
"version": "7.1.1-dev.8",
"version": "7.1.1-dev.9",
"description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.",

@@ -56,3 +56,3 @@ "keywords": [

"peerDependencies": {
"@mikro-orm/core": "7.1.1-dev.8"
"@mikro-orm/core": "7.1.1-dev.9"
},

@@ -59,0 +59,0 @@ "engines": {

@@ -980,2 +980,5 @@ import { ArrayType, BooleanType, DateTimeType, inspect, JsonType, parseJsonSafe, Utils, } from '@mikro-orm/core';

}
if (to.default == null || to.default.toLowerCase() === 'null') {
return false;
}
if (to.mappedType instanceof BooleanType) {

@@ -982,0 +985,0 @@ const defaultValueFrom = !['0', 'false', 'f', 'n', 'no', 'off'].includes('' + from.default);