dbup-cli
1.6.2
See the version list below for details.
dotnet tool install --global dbup-cli --version 1.6.2
dotnet new tool-manifest # if you are setting up this repo dotnet tool install --local dbup-cli --version 1.6.2
#tool dotnet:?package=dbup-cli&version=1.6.2
nuke :add-package dbup-cli --version 1.6.2
DbUp Command Line Interface
This project is inspired and based on DbUp project. That is how its authors describe their project:
DbUp is a .NET library that helps you to deploy changes to SQL Server databases. It tracks which SQL scripts have been run already, and runs the change scripts that are needed to get your database up to date. from official documentation
It does exactly that and does it pretty well, except that it supports not only SQL Server, but some other databases too. That is a great project that helps you a lot when you want to deploy database changes to your server, and you are a developer. Because it is merely a library and this is your responsibility to create an executable to run it. Of course, you can use PowerShell, but it is for fans only. Though it is pretty simple, however in every new project you have to create a new executable to deploy changes, and after the fifth project, it becomes a little annoying.
However, what if you are not a developer, or you are a lazy developer (in a good sense) who doesn't want to do the same thing in every new project? You can use DbUp-CLI that is already do it.
The tool has almost all the features the DbUp has, but without a single line of code, so I do not list them here, just the features of the tool itself.
Features
- Almost all of the DbUp features
- Cross-platform (dotnet needed)
- Easy to install - can be installed as a dotnet global tool
- Minimum command line options
- Uses a configuration file to store deploy options, so you can put it along with your SQL scripts under your favorite source control system
- Uses YAML format for a configuration file to improve readability
- Quick start:
- Creates a configuration file with default options for you
- Default configuration is suitable for the most cases, so you should set only a connection string to your database to run the first migration
- The configuration file contains all options with default values and a brief explanation
Documentation
- Installation
- Getting Started
- Configuration File
- Command Line Options Reference
- Original DbUp Documentation
Supported Databases
- MS SQL Server
- PostgreSQL
- MySQL
Release Notes
Date | Version | Description |
---|---|---|
2022-01-30 | 1.6.2 | PostgreSQL SCRAM authentication support interim fix |
2022-01-29 | 1.6.1 | BUGFIX: 'version' and '--version' should return exit code 0 |
2021-10-03 | 1.6.0 | Add a 'journalTo' option to dbup.yml |
2021-03-28 | 1.5.0 | Add support of .Net Core 3.1 and .Net 5.0 |
2021-03-27 | 1.4.0 | Add script naming options<BR>Load .env.local after .env |
2020-05-30 | 1.3.0 | Support of MySQL, improve stability of integration tests |
2020-03-20 | 1.2.0 | Add a connectionTimeoutSec option |
2019-08-27 | 1.1.2 | Minor fixes |
2019-04-11 | 1.1.0 | PostgreSQL support |
2019-03-25 | 1.0.1 | Initial version (DbUp 4.2) |
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.1 is compatible. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 is compatible. |
This package has no dependencies.
Version | Downloads | Last updated |
---|---|---|
1.8.1 | 73,987 | 6/12/2023 |
1.8.0 | 33,948 | 1/18/2023 |
1.7.0 | 25,799 | 6/11/2022 |
1.6.6 | 3,176 | 5/10/2022 |
1.6.5 | 5,937 | 2/14/2022 |
1.6.4 | 951 | 2/6/2022 |
1.6.3 | 716 | 2/2/2022 |
1.6.2 | 687 | 2/2/2022 |
1.6.1 | 812 | 1/29/2022 |
1.6.0 | 7,817 | 10/3/2021 |
1.5.0 | 7,198 | 3/28/2021 |
1.4.0 | 461 | 3/27/2021 |
1.3.0 | 6,416 | 5/30/2020 |
1.2.0 | 3,129 | 3/20/2020 |
1.1.2 | 5,011 | 8/27/2019 |
1.1.0 | 815 | 4/11/2019 |
1.0.1 | 744 | 3/25/2019 |
PostgreSQL SCRAM authentication support interim fix