@changesets/changelog-git
Advanced tools
Comparing version 0.1.14 to 0.2.0
# @changesets/changelog-git | ||
## 0.2.0 | ||
### Minor Changes | ||
- [#1185](https://github.com/changesets/changesets/pull/1185) [`a971652`](https://github.com/changesets/changesets/commit/a971652ec1403aab3fb89eb2f1640bd5012b895a) Thanks [@Andarist](https://github.com/Andarist)! - `package.json#exports` have been added to limit what (and how) code might be imported from the package. | ||
### Patch Changes | ||
- Updated dependencies [[`a971652`](https://github.com/changesets/changesets/commit/a971652ec1403aab3fb89eb2f1640bd5012b895a)]: | ||
- @changesets/types@6.0.0 | ||
## 0.1.14 | ||
@@ -4,0 +15,0 @@ |
import { ChangelogFunctions } from "@changesets/types"; | ||
declare const defaultChangelogFunctions: ChangelogFunctions; | ||
export default defaultChangelogFunctions; |
{ | ||
"name": "@changesets/changelog-git", | ||
"version": "0.1.14", | ||
"version": "0.2.0", | ||
"description": "A changelog entry generator for git that writes hashes", | ||
"main": "dist/changelog-git.cjs.js", | ||
"module": "dist/changelog-git.esm.js", | ||
"main": "dist/changesets-changelog-git.cjs.js", | ||
"module": "dist/changesets-changelog-git.esm.js", | ||
"exports": { | ||
".": { | ||
"types": { | ||
"import": "./dist/changesets-changelog-git.cjs.mjs", | ||
"default": "./dist/changesets-changelog-git.cjs.js" | ||
}, | ||
"module": "./dist/changesets-changelog-git.esm.js", | ||
"import": "./dist/changesets-changelog-git.cjs.mjs", | ||
"default": "./dist/changesets-changelog-git.cjs.js" | ||
}, | ||
"./package.json": "./package.json" | ||
}, | ||
"license": "MIT", | ||
"repository": "https://github.com/changesets/changesets/tree/main/packages/changelog-git", | ||
"dependencies": { | ||
"@changesets/types": "^5.2.1" | ||
"@changesets/types": "^6.0.0" | ||
} | ||
} |
@@ -17,3 +17,3 @@ import { | ||
let returnVal = `- ${ | ||
changeset.commit ? `${changeset.commit}: ` : "" | ||
changeset.commit ? `${changeset.commit.slice(0, 7)}: ` : "" | ||
}${firstLine}`; | ||
@@ -37,3 +37,3 @@ | ||
`- Updated dependencies${ | ||
changeset.commit ? ` [${changeset.commit}]` : "" | ||
changeset.commit ? ` [${changeset.commit.slice(0, 7)}]` : "" | ||
}` | ||
@@ -40,0 +40,0 @@ ); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
9816
13
1
92
+ Added@changesets/types@6.0.0(transitive)
- Removed@changesets/types@5.2.1(transitive)
Updated@changesets/types@^6.0.0