All Projects → semantic-release-plus → semantic-release

semantic-release-plus / semantic-release

Licence: MIT license
📦🚀 Fully automated version management and package publishing

Projects that are alternatives of or similar to semantic-release

Androapps
Important Android projects to learn fundamentals of android development
Stars: ✭ 48 (+65.52%)
Mutual labels:  hacktoberfest2021
HacktoberFest21
A beginner friendly repository for HacktoberFest 2021
Stars: ✭ 45 (+55.17%)
Mutual labels:  hacktoberfest2021
LatexJekyll
A latex document style website
Stars: ✭ 80 (+175.86%)
Mutual labels:  hacktoberfest2021
typiform
⚛️ A serverless React powered online form builder that works like a doc.
Stars: ✭ 16 (-44.83%)
Mutual labels:  hacktoberfest2021
HacktoSearch
Helping you find the best contributions you can make in Hacktoberfest 2021!
Stars: ✭ 17 (-41.38%)
Mutual labels:  hacktoberfest2021
cryostat-operator
An OpenShift Operator to facilitate setup and management of Cryostast and expose the Cryostat API through Kubernetes Custom Resources.
Stars: ✭ 25 (-13.79%)
Mutual labels:  hacktoberfest2021
Hacktoberfest2021
This is for Hacktoberfest 2021
Stars: ✭ 16 (-44.83%)
Mutual labels:  hacktoberfest2021
php-json-fixer
Fix truncated JSON data
Stars: ✭ 37 (+27.59%)
Mutual labels:  hacktoberfest2021
open-climate-investing
Application and data for analyzing and structuring portfolios for climate investing.
Stars: ✭ 20 (-31.03%)
Mutual labels:  hacktoberfest2021
opensource
Site de Open Source da CodeMiner42
Stars: ✭ 25 (-13.79%)
Mutual labels:  hacktoberfest2021
Hacktoberfest-2021
❗❗ Make your first PR now, accepting and merging PRs continuously. ⭐HACKTOBER ACCEPTED 2021 ✨✨Happy Hacking 💖💖
Stars: ✭ 11 (-62.07%)
Mutual labels:  hacktoberfest2021
VSCode-Bedrock-Development-Extension
An extension that provides support for files such as: .mcfunction, .json and .lang. Features include: completion, validations, formatters, diagnostics, cheat-sheets, code-actions, generation of files, and development tools to help develop Minecraft Bedrock Addons or Minecraft Education Edition.
Stars: ✭ 45 (+55.17%)
Mutual labels:  hacktoberfest2021
HacktoberFest2021
No description or website provided.
Stars: ✭ 33 (+13.79%)
Mutual labels:  hacktoberfest2021
jbehave-junit-runner
Integrate JBehave better with JUnit. Reports all Stories, Scenarios and Steps as JUnit Suites and Test Cases.
Stars: ✭ 70 (+141.38%)
Mutual labels:  hacktoberfest2021
HacktoberFest-2021
A repository for Hacktober Fest contributions. Everyone is welcome. Fork away!
Stars: ✭ 10 (-65.52%)
Mutual labels:  hacktoberfest2021
Commandline-Games-hacktoberfest
A repository to share command line games. An opportunity to start and learn about open source code contributions flow.
Stars: ✭ 16 (-44.83%)
Mutual labels:  hacktoberfest2021
macropower-analytics-panel
It's like Google Analytics, but for Grafana dashboards!
Stars: ✭ 16 (-44.83%)
Mutual labels:  hacktoberfest2021
PortfolioV2
🔥 The Complete Customizable Software Developer Portfolio Template which lets you showcase your work and provides each and every detail about you as Software Developer.
Stars: ✭ 197 (+579.31%)
Mutual labels:  hacktoberfest2021
tqk
한국 주식 데이터를 위한 R 패키지
Stars: ✭ 55 (+89.66%)
Mutual labels:  hacktoberfest2021
College-Notes
Contribute your handwritten PDF notes and help other students ✌ #DecodersCommunity 🖤
Stars: ✭ 30 (+3.45%)
Mutual labels:  hacktoberfest2021

📦🚀 semantic-release-plus

Fully automated version management and package publishing

Join the community on GitHub Discussions Build states renovate semantic-release-plus

npm latest version npm next version npm beta version

Github All Contributors

semantic-release-plus is a drop in replacement for semantic release that adds some enhancements:

  • Filter commit by path commitPaths
    • allows support for monorepos like nx and lerna to support multi version between releasable apps
  • Print the next version only
    • semantic release can now be configured to run and have no impact on the git repository using the skipTag property. example recipe

semantic-release automates the whole package release workflow including: determining the next version number, generating the release notes, and publishing the package.

This removes the immediate connection between human emotions and version numbers, strictly following the Semantic Versioning specification and communicating the impact of changes to consumers.

Trust us, this will change your workflow for the better. – egghead.io

Highlights

How does it work?

Commit message format

semantic-release uses the commit messages to determine the consumer impact of changes in the codebase. Following formalized conventions for commit messages, semantic-release automatically determines the next semantic version number, generates a changelog and publishes the release.

By default, semantic-release uses Angular Commit Message Conventions. The commit message format can be changed with the preset or config options of the @semantic-release/commit-analyzer and @semantic-release/release-notes-generator plugins.

Tools such as commitizen or commitlint can be used to help contributors and enforce valid commit messages.

The table below shows which commit message gets you which release type when semantic-release runs (using the default configuration):

Commit message Release type
fix(pencil): stop graphite breaking when too much pressure applied Patch Fix Release
feat(pencil): add 'graphiteWidth' option Minor Feature Release
perf(pencil): remove graphiteWidth option

BREAKING CHANGE: The graphiteWidth option has been removed.
The default graphite width of 10mm is always used for performance reasons.
Major Breaking Release
(Note that the BREAKING CHANGE: token must be in the footer of the commit)

Automation with CI

semantic-release is meant to be executed on the CI environment after every successful build on the release branch. This way no human is directly involved in the release process and the releases are guaranteed to be unromantic and unsentimental.

Triggering a release

For each new commit added to one of the release branches (for example: master, next, beta), with git push or by merging a pull request or merging from another branch, a CI build is triggered and runs the semantic-release command to make a release if there are codebase changes since the last release that affect the package functionalities.

semantic-release offers various ways to control the timing, the content and the audience of published releases. See example workflows in the following recipes:

Release steps

After running the tests, the command semantic-release will execute the following steps:

Step Description
Verify Conditions Verify all the conditions to proceed with the release.
Get last release Obtain the commit corresponding to the last release by analyzing Git tags.
Analyze commits Determine the type of release based on the commits added since the last release.
Verify release Verify the release conformity.
Generate notes Generate release notes for the commits added since the last release.
Create Git tag Create a Git tag corresponding to the new release version.
Prepare Prepare the release.
Publish Publish the release.
Notify Notify of new releases or errors.

Requirements

In order to use semantic-release you need:

Documentation

Get help

Badge

Let people know that your package is published using semantic-release and which commit-convention is followed by including this badge in your readme.

semantic-release: angular

[![semantic-release: angular](https://img.shields.io/badge/semantic--release-angular-e10079?logo=semantic-release)](https://github.com/semantic-release/semantic-release)

Contributors

Thanks goes to these wonderful people (emoji key):


Justin Dietz

📖 🐛 💻 🤔

This project follows the all-contributors specification. Contributions of any kind welcome!

Upstream Team

Gregor Martynus Pierre Vanduynslager Matt Travi
Gregor Martynus Pierre Vanduynslager Matt Travi

Upstream Alumni

Stephan Bönnemann Rolf Erik Lekang Johannes Jörg Schmidt Finn Pauls Christoph Witzko
Stephan Bönnemann Rolf Erik Lekang Johannes Jörg Schmidt Finn Pauls Christoph Witzko

Kill all humans

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].