New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

mysql2

Package Overview
Dependencies
Maintainers
3
Versions
200
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mysql2 - npm Package Compare versions

Comparing version

to
3.11.4-canary.401db79b

2

package.json
{
"name": "mysql2",
"version": "3.11.3",
"version": "3.11.4-canary.401db79b",
"description": "fast mysql driver. Implements core protocol, prepared statements, ssl and compression in native JS",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -186,3 +186,3 @@ // This file was modified by Oracle on November 04, 2021.

* ```ts
* (field: Field, next: () => void) => {
* (field: Field, next: () => unknown) => {
* return next();

@@ -189,0 +189,0 @@ * }

@@ -52,4 +52,4 @@ export type Geometry = {

export type Next = () => void;
export type Next = () => unknown;
export type TypeCast = ((field: Field, next: Next) => any) | boolean;

@@ -47,3 +47,3 @@ import { Sequence } from './Sequence.js';

* ```ts
* (field: Field, next: () => void) => {
* (field: Field, next: () => unknown) => {
* return next();

@@ -50,0 +50,0 @@ * }