New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

google-cloud-sql

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

google-cloud-sql - npm Package Compare versions

Comparing version
1.9.3
to
1.9.4
+17
eslint.config.mjs
// @ts-check
import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';
export default tseslint.config({
files: ['**/*.ts'],
extends: [
eslint.configs.recommended,
...tseslint.configs.recommended,
]
}, {
files: ["**/*.spec.ts"],
rules: {
"@typescript-eslint/no-unused-expressions": "off"
}
})
{
"extends": "./tsconfig.json",
"exclude": ["src/**/*.spec.ts"]
}
+2
-0

@@ -0,1 +1,3 @@

## [1.9.4](https://github.com/edosrecki/google-cloud-sql-cli/compare/v1.9.3...v1.9.4) (2024-11-18)
## [1.9.3](https://github.com/edosrecki/google-cloud-sql-cli/compare/v1.9.2...v1.9.3) (2024-01-15)

@@ -2,0 +4,0 @@

+1
-2
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.addConfigurationsCommands = void 0;
exports.addConfigurationsCommands = addConfigurationsCommands;
const commander_1 = require("commander");

@@ -74,2 +74,1 @@ const error_1 = require("../../lib/util/error");

}
exports.addConfigurationsCommands = addConfigurationsCommands;

@@ -9,3 +9,8 @@ "use strict";

const index = findIndexByKey(items, key, item[key]);
index >= 0 ? (items[index] = item) : items.push(item);
if (index >= 0) {
items[index] = item;
}
else {
items.push(item);
}
};

@@ -12,0 +17,0 @@ exports.appendOrReplaceByKey = appendOrReplaceByKey;

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.version = void 0;
exports.version = '1.9.3';
exports.version = '1.9.4';
{
"name": "google-cloud-sql",
"version": "1.9.3",
"version": "1.9.4",
"description": "Connect to private Google Cloud SQL instance through Cloud SQL Auth Proxy running in GKE cluster.",

@@ -19,14 +19,15 @@ "license": "UNLICENSED",

"engines": {
"node": ">= 16"
"node": ">= 20"
},
"scripts": {
"clean": "rimraf dist bin",
"build:transpile": "tsc",
"build": "npm run clean && npm run build:transpile",
"prebuild": "npm run clean",
"build": "tsc --project tsconfig.build.json",
"bundle": "npm run build && pkg . --targets node18-linux,node18-macos,node18-win --out-dir bin",
"exec:dev": "ts-node src/index.ts",
"exec:dist": "node dist/index.js",
"lint": "eslint . --ext .ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "npm run lint",
"prepare": "husky install",
"prepare": "husky",
"prettify-package-json": "prettier-package-json --write"

@@ -37,3 +38,3 @@ },

"chalk": "4.1.2",
"commander": "11.1.0",
"commander": "12.1.0",
"conf": "10.2.0",

@@ -45,3 +46,3 @@ "exit-hook": "2.2.1",

"lodash": "4.17.21",
"memoizee": "0.4.15",
"memoizee": "0.4.17",
"shelljs": "0.8.5",

@@ -51,25 +52,25 @@ "update-notifier": "5.1.0"

"devDependencies": {
"@eslint/js": "9.15.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@tsconfig/node20": "20.1.2",
"@tsconfig/node20": "20.1.4",
"@types/eslint__js": "8.42.3",
"@types/inquirer": "8.2.6",
"@types/inquirer-autocomplete-prompt": "2.0.0",
"@types/lodash": "4.14.202",
"@types/lodash": "4.17.13",
"@types/memoizee": "0.4.11",
"@types/node": "20.11.1",
"@types/node": "20.17.6",
"@types/shelljs": "0.8.15",
"@types/update-notifier": "5.1.0",
"@typescript-eslint/eslint-plugin": "6.18.1",
"@typescript-eslint/parser": "6.18.1",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"husky": "8.0.3",
"eslint": "9.14.0",
"husky": "9.1.6",
"pkg": "5.8.1",
"prettier-package-json": "2.8.0",
"rimraf": "5.0.5",
"semantic-release": "23.0.0",
"rimraf": "6.0.1",
"semantic-release": "24.2.0",
"ts-node": "10.9.2",
"typescript": "5.3.3"
"typescript": "5.6.3",
"typescript-eslint": "8.14.0"
}
}
{
"extends": "@tsconfig/node20/tsconfig.json",
"include": [
"types/**/*.ts",
"src/**/*.ts"
],
"compilerOptions": {

@@ -8,0 +4,0 @@ "rootDir": "./src",