Socket
Socket
Sign inDemoInstall

@immobiliarelabs/standard-version

Package Overview
Dependencies
Maintainers
6
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@immobiliarelabs/standard-version - npm Package Compare versions

Comparing version 10.2.1 to 10.2.2

7

CHANGELOG.md

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

## [10.2.2](https://github.com/immobiliare/standard-version/compare/v10.2.1...v10.2.2) (2023-11-08)
### Bug Fixes
* **updater:** fixed check for custom updater ([78a81d3](https://github.com/immobiliare/standard-version/commit/78a81d31152d8f7ac9bd02ef7562fb1655be0b9c))
## [10.2.1](https://github.com/immobiliare/standard-version/compare/v10.2.0...v10.2.1) (2023-11-08)

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

9

lib/updaters/index.js

@@ -69,8 +69,11 @@ const path = require('path');

try {
if (typeof updater.updater === 'string') {
if (
typeof updater.updater === 'object' &&
isValidUpdater(updater.updater)
) {
return updater;
} else if (typeof updater.updater === 'string') {
updater.updater = getCustomUpdaterFromPath(updater.updater);
} else if (updater.type) {
updater.updater = getUpdaterByType(updater.type);
} else if (isValidUpdater(updater.updater)) {
return updater;
} else {

@@ -77,0 +80,0 @@ updater.updater = getUpdaterByFilename(updater.filename);

{
"name": "@immobiliarelabs/standard-version",
"version": "10.2.1",
"version": "10.2.2",
"description": "replacement for `npm version` with automatic CHANGELOG generation",

@@ -5,0 +5,0 @@ "bin": "bin/cli.js",

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