Skip to content

Repository files navigation

simple-versioner

Build Status

npm version

Overview

Build versioning tool for Azure DevOps. It will update your JSON file's version field with a new generated version if the build is executed from a non-stable branch. Therefore, you will always have a unique version that is build, even during PR builds. As a bonus, it will also update the pipeline name to reflect that new version so that you never have to look for the correct build again.

You can have a look at the builds of this plugin to see how that will be shown in Azure DevOps

Usage

npx simple-versioner

or install

npm i simple-versioner --save-dev

If you install it globally and have the global node_modules bin folder added to your PATH:

npm i -g simple-versioner
simple-versioner

Options

Other file than package.json

npx simple-versioner vss-extension.json

Disclaimer: only works on files that also have a field named version.

Different stable branch

Default stable branch is master, if you are using a different stable branch you can provide this via a parameter:

npx simple-versioner -b:main

Possible options

  • -b:BRANCH -> Specify a different branch from the default release branch.
  • -nu -> Do not set the buildnumber in Azure, only update the version in the provided json file.
  • -mp -> When specified, the generated version will be based on the date and time, ie: 2022.3.1647715987
  • -ntc -> No Tag Check, when passed it will not throw an error if the tag already exists. Handy when you need to recreate the version later on in the build process. Or if you don't care about tag already exists.

Using it in the Azure DevOps pipelines

Editor

You can add it via the editor: Include a bash task:

npx simple-versioner

Yaml

- bash: 'npx simple-versioner'
  displayName: 'Get and set correct build version'

How it works

Default behavior

When it is a stable build: If the build is for the specified stable branch, the version would be left as is. It will check if there are tags available with the specified version, if so it will throw an error stating that the version is already released. The build will then stop. Unless the -ntc option is provided. Then this check if not done.

When it is a feature build:

  • version: 1.0.0
  • branch: develop
  • gitCommitSha = 7bea27af4e3095bf77701a4e8dc71e9a53140b55

Version send to Azure, and put into the provided file to version is 1.0.0-refs-heads-develop-7bea27af. note: / provided in the branchname are replaced by -.

PRs are also handled and the correct branch and commitHash is used.

What happens in Azure:
The Build.Buildnumber will be update to the version needed. The build name will then be changed to that version instead of predefined name.
Note: You can suppress this by providing the -nu option.

Alternative

When providing the -mp option, a version based on the date/time will be generated for non-release branches. Used format: yy:MM:time The time is generated based on date.getTime(), divide by 1000 and then rounded with Math.floor. The check if the version (provided in your json file) is still executed. The buildnumber will also be updated, when nor suppressed.

This is useful for when you are developing a VScode and/or Azure devops extension. As the marketplaces does not support prerelease version. (hence the -mp name :))

Contributing

Feel free to contribute! Just fork and create a PR.

Tests

Tests can be executed by running npm run test.

About

Simple build versioning for Azure DevOps

Resources

Stars

6 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages