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.4
to
1.10.0
+1
-1
.nvmrc

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

20
22

@@ -0,1 +1,8 @@

# [1.10.0](https://github.com/edosrecki/google-cloud-sql-cli/compare/v1.9.4...v1.10.0) (2025-05-20)
### Features
* upgrade to cloud sql auth proxy v2 ([3cc42eb](https://github.com/edosrecki/google-cloud-sql-cli/commit/3cc42eb5b34d176794da3c31bd7114ba459ebf5b))
## [1.9.4](https://github.com/edosrecki/google-cloud-sql-cli/compare/v1.9.3...v1.9.4) (2024-11-18)

@@ -2,0 +9,0 @@

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

kubectl run \
--image=gcr.io/cloudsql-docker/gce-proxy \
--image=gcr.io/cloud-sql-connectors/cloud-sql-proxy \
--context="${pod.context}" \

@@ -17,3 +17,3 @@ --namespace="${pod.namespace}" \

${pod.name} \
-- /cloud_sql_proxy -enable_iam_login -ip_address_types=PRIVATE -instances=${pod.instance}=tcp:${pod.remotePort}
-- --auto-iam-authn --auto-ip '${pod.instance}?port=${pod.remotePort}'
`);

@@ -20,0 +20,0 @@ };

@@ -22,5 +22,5 @@ "use strict";

if (update && update.current !== update.latest) {
const text = `${(0, chalk_1.yellow)(update.current)} ↦ ${(0, chalk_1.green)(update.latest)}\n\n` +
`${(0, chalk_1.blue)('brew')} upgrade ${name}\n` +
`${(0, chalk_1.blue)('npm')} i -g ${name}`;
const text = `${(0, chalk_1.yellow)(update.current)} ↦ ${(0, chalk_1.green)(update.latest)}\n\n`
+ `${(0, chalk_1.blue)('brew')} upgrade ${name}\n`
+ `${(0, chalk_1.blue)('npm')} i -g ${name}`;
const box = (0, boxen_1.default)(text, {

@@ -27,0 +27,0 @@ title: 'Update Available',

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.deleteByKey = exports.appendOrReplaceByKey = exports.findByKey = void 0;
const findIndexByKey = (items, key, value) => items.findIndex((item) => item[key] === value);
const findByKey = (items, key, value) => items.find((item) => item[key] === value);
const findIndexByKey = (items, key, value) => items.findIndex(item => item[key] === value);
const findByKey = (items, key, value) => items.find(item => item[key] === value);
exports.findByKey = findByKey;

@@ -7,0 +7,0 @@ const appendOrReplaceByKey = (items, item, key) => {

@@ -9,7 +9,7 @@ "use strict";

super('Error while executing command.');
this.data =
`${(0, chalk_1.bold)((0, chalk_1.red)(this.message))}\n` +
` ${(0, chalk_1.bold)('command')}: ${command.trim()}\n` +
` ${(0, chalk_1.bold)('stderr')}: ${stderr.trim()}\n` +
(stdout ? ` ${(0, chalk_1.bold)('stdout')}: ${stdout.trim()}\n` : '');
this.data
= `${(0, chalk_1.bold)((0, chalk_1.red)(this.message))}\n`
+ ` ${(0, chalk_1.bold)('command')}: ${command.trim()}\n`
+ ` ${(0, chalk_1.bold)('stderr')}: ${stderr.trim()}\n`
+ (stdout ? ` ${(0, chalk_1.bold)('stdout')}: ${stdout.trim()}\n` : '');
}

@@ -16,0 +16,0 @@ }

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.version = void 0;
exports.version = '1.9.4';
exports.version = '1.10.0';

@@ -5,2 +5,3 @@ // @ts-check

import tseslint from 'typescript-eslint';
import stylistic from '@stylistic/eslint-plugin';

@@ -12,2 +13,3 @@ export default tseslint.config({

...tseslint.configs.recommended,
stylistic.configs.recommended,
]

@@ -14,0 +16,0 @@ }, {

{
"name": "google-cloud-sql",
"version": "1.9.4",
"version": "1.10.0",
"description": "Connect to private Google Cloud SQL instance through Cloud SQL Auth Proxy running in GKE cluster.",

@@ -37,6 +37,6 @@ "license": "UNLICENSED",

"chalk": "4.1.2",
"commander": "12.1.0",
"commander": "14.0.0",
"conf": "10.2.0",
"exit-hook": "2.2.1",
"fuse.js": "7.0.0",
"fuse.js": "7.1.0",
"inquirer": "8.2.5",

@@ -46,29 +46,29 @@ "inquirer-autocomplete-prompt": "2.0.0",

"memoizee": "0.4.17",
"shelljs": "0.8.5",
"shelljs": "0.10.0",
"update-notifier": "5.1.0"
},
"devDependencies": {
"@eslint/js": "9.15.0",
"@eslint/js": "9.27.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
"@tsconfig/node20": "20.1.4",
"@types/eslint__js": "8.42.3",
"@stylistic/eslint-plugin": "4.2.0",
"@tsconfig/node22": "22.0.2",
"@types/inquirer": "8.2.6",
"@types/inquirer-autocomplete-prompt": "2.0.0",
"@types/lodash": "4.17.13",
"@types/memoizee": "0.4.11",
"@types/node": "20.17.6",
"@types/shelljs": "0.8.15",
"@types/lodash": "4.17.16",
"@types/memoizee": "0.4.12",
"@types/node": "22.15.19",
"@types/shelljs": "0.8.16",
"@types/update-notifier": "5.1.0",
"eslint": "9.14.0",
"husky": "9.1.6",
"eslint": "9.27.0",
"husky": "9.1.7",
"pkg": "5.8.1",
"prettier-package-json": "2.8.0",
"rimraf": "6.0.1",
"semantic-release": "24.2.0",
"semantic-release": "24.2.4",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"typescript-eslint": "8.14.0"
"typescript": "5.8.3",
"typescript-eslint": "8.32.1"
}
}
{
"extends": "@tsconfig/node20/tsconfig.json",
"extends": "@tsconfig/node22/tsconfig.json",
"compilerOptions": {

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