Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@catchfashion/semantic-release-config
Advanced tools
semantic-release configuration for catchfashion projects
A common semantic-release configuration for catchfashion TypeScript projects.
$ npm install @catchfashion/semantic-release-config --save-dev
Add the following to .releaserc.json
{
"extends": "@catchfashion/semantic-release-config"
}
Add the following to CI Script:
$ npx semantic-release
This is commonly used preset.
{
"extends": "@catchfashion/semantic-release-config"
}
This is a special configuration for monorepo packages, or embedded packages where package is co-located inside service repository.
For example, Media SDK is located in Media Service repository, and non-sdk related commits are not using semantic-commits.
In this case, Follow below setup steps.
First, Add semantic-release-commit-filter
package to devDependencies
:
$ npm i semantic-release-commit-filter --save-dev --save-exact
Then, Use following semantic-release configuration:
{
"extends": ["semantic-release-commit-filter", "@catchfashion/semantic-release-config"],
"tagFormat": "[PACKAGE_NAME]-v${version}"
}
That's all! Run semantic-release
inside package directory:
For example:
$ cd media-sdk
$ npx semantic-release
You can also check your configuration before automated release:
$ npx semantic-release --dry-run
FAQs
semantic-release configuration for catchfashion projects
The npm package @catchfashion/semantic-release-config receives a total of 1 weekly downloads. As such, @catchfashion/semantic-release-config popularity was classified as not popular.
We found that @catchfashion/semantic-release-config demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.