Socket
Socket
Sign inDemoInstall

@changesets/changelog-git

Package Overview
Dependencies
Maintainers
3
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@changesets/changelog-git - npm Package Compare versions

Comparing version 0.1.12 to 0.1.13

7

CHANGELOG.md
# @changesets/changelog-git
## 0.1.13
### Patch Changes
- Updated dependencies [[`8c08469`](https://github.com/changesets/changesets/commit/8c0846977597ddaf51aaeb35f1f0f9428bf8ba14)]:
- @changesets/types@5.2.0
## 0.1.12

@@ -4,0 +11,0 @@

4

package.json
{
"name": "@changesets/changelog-git",
"version": "0.1.12",
"version": "0.1.13",
"description": "A changelog entry generator for git that writes hashes",

@@ -10,4 +10,4 @@ "main": "dist/changelog-git.cjs.js",

"dependencies": {
"@changesets/types": "^5.1.0"
"@changesets/types": "^5.2.0"
}
}

@@ -5,3 +5,3 @@ import {

ChangelogFunctions,
ModCompWithPackage
ModCompWithPackage,
} from "@changesets/types";

@@ -15,3 +15,3 @@

.split("\n")
.map(l => l.trimRight());
.map((l) => l.trimRight());

@@ -23,3 +23,3 @@ let returnVal = `- ${

if (futureLines.length > 0) {
returnVal += `\n${futureLines.map(l => ` ${l}`).join("\n")}`;
returnVal += `\n${futureLines.map((l) => ` ${l}`).join("\n")}`;
}

@@ -37,3 +37,3 @@

const changesetLinks = changesets.map(
changeset =>
(changeset) =>
`- Updated dependencies${

@@ -45,3 +45,3 @@ changeset.commit ? ` [${changeset.commit}]` : ""

const updatedDepenenciesList = dependenciesUpdated.map(
dependency => ` - ${dependency.name}@${dependency.newVersion}`
(dependency) => ` - ${dependency.name}@${dependency.newVersion}`
);

@@ -54,5 +54,5 @@

getReleaseLine,
getDependencyReleaseLine
getDependencyReleaseLine,
};
export default defaultChangelogFunctions;
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