Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

oclif-plugin-update-notifier

Package Overview
Dependencies
Maintainers
1
Versions
114
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

oclif-plugin-update-notifier - npm Package Compare versions

Comparing version 1.5.10 to 1.5.11

8

CHANGELOG.md

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

## [1.5.11](https://github.com/jayree/oclif-plugin-update-notifier/compare/v1.5.10...v1.5.11) (2023-02-01)
### Bug Fixes
* **deps:** bump @oclif/core from 1.26.1 to 2.0.8 ([db3c068](https://github.com/jayree/oclif-plugin-update-notifier/commit/db3c0689bc9edc759c67a5ca9c30bf4aa56287d0))
* **deps:** bump @salesforce/kit from 1.8.3 to 1.8.4 ([#107](https://github.com/jayree/oclif-plugin-update-notifier/issues/107)) ([e3ad83f](https://github.com/jayree/oclif-plugin-update-notifier/commit/e3ad83f26d585d18eae65605d8bbaacd23bcdb08))
## [1.5.10](https://github.com/jayree/oclif-plugin-update-notifier/compare/v1.5.9...v1.5.10) (2023-01-27)

@@ -2,0 +10,0 @@

6

lib/hooks/updatenotifier.js

@@ -7,3 +7,3 @@ /*

*/
import { CliUx } from '@oclif/core';
import { ux } from '@oclif/core';
import chalk from 'chalk';

@@ -15,3 +15,3 @@ import Debug from 'debug';

if (!options.spawnOptions.detached)
CliUx.ux.action.start('check for updates');
ux.action.start('check for updates');
if (debug.enabled)

@@ -37,3 +37,3 @@ options.spawnOptions.stdio = 'inherit';

if (!options.spawnOptions.detached)
CliUx.ux.action.stop();
ux.action.stop();
notifier.notify({ header, defer: options.defer });

@@ -40,0 +40,0 @@ }

@@ -16,5 +16,7 @@ /*

})().catch((error) => {
console.error(error);
if (error instanceof Error) {
console.error(error.message);
}
process.exit(1);
});
//# sourceMappingURL=check.js.map

@@ -10,3 +10,3 @@ /*

import semverDiff from 'semver-diff';
import { CliUx } from '@oclif/core';
import { ux } from '@oclif/core';
import packageJson from 'package-json';

@@ -75,5 +75,5 @@ import fs from 'fs-extra';

catch (error) {
CliUx.ux.warn(error.message);
ux.warn(error.message);
}
}
//# sourceMappingURL=fetchInfo.js.map
{
"version": "1.5.10",
"version": "1.5.11",
"commands": {

@@ -4,0 +4,0 @@ "plugins:update:check": {

{
"name": "oclif-plugin-update-notifier",
"description": "update-notifier for oclif plugins",
"version": "1.5.10",
"version": "1.5.11",
"author": "jayree",

@@ -9,4 +9,4 @@ "type": "module",

"dependencies": {
"@oclif/core": "^1.26.1",
"@salesforce/kit": "^1.8.3",
"@oclif/core": "^2.0.8",
"@salesforce/kit": "^1.8.4",
"boxen": "^7.0.1",

@@ -27,5 +27,5 @@ "chalk": "^5.2.0",

"@commitlint/config-conventional": "^17.4.2",
"@oclif/plugin-command-snapshot": "^3.3.1",
"@oclif/plugin-help": "^5.2.1",
"@oclif/test": "^2.3.3",
"@oclif/plugin-command-snapshot": "^3.3.2",
"@oclif/plugin-help": "^5.2.2",
"@oclif/test": "^2.3.4",
"@salesforce/dev-config": "^3.1.0",

@@ -37,3 +37,3 @@ "@salesforce/dev-scripts": "^3.1.0",

"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/fs-extra": "^11.0.1",
"@types/marked": "^4.0.8",

@@ -45,12 +45,12 @@ "@types/marked-terminal": "^3.1.3",

"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"chai": "^4.3.7",
"eslint": "^8.32.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-salesforce": "^1.1.0",
"eslint-config-salesforce": "^1.1.1",
"eslint-config-salesforce-typescript": "^1.1.1",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^39.6.8",
"eslint-plugin-jsdoc": "^39.7.5",
"eslint-plugin-prettier": "^4.2.1",

@@ -60,3 +60,3 @@ "husky": "^8.0.3",

"nyc": "^15.1.0",
"oclif": "^3.6.1",
"oclif": "^3.6.2",
"patch-package": "^6.5.1",

@@ -69,3 +69,3 @@ "pinst": "^3.0.0",

"ts-node": "^10.9.1",
"typescript": "^4.9.4"
"typescript": "^4.9.5"
},

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

@@ -25,3 +25,3 @@ # oclif-plugin-update-notifier

$ oclif-example plugins
oclif-plugin-update-notifier 1.5.10
oclif-plugin-update-notifier 1.5.11
$ oclif-example help plugins:[COMMAND]

@@ -64,3 +64,3 @@ USAGE

_See code: [src/commands/plugins/update/check.ts](https://github.com/jayree/oclif-plugin-update-notifier/blob/v1.5.10/src/commands/plugins/update/check.ts)_
_See code: [src/commands/plugins/update/check.ts](https://github.com/jayree/oclif-plugin-update-notifier/blob/v1.5.11/src/commands/plugins/update/check.ts)_
<!-- commandsstop -->

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc