package App::Sqitch::Command::rebase; use 5.010; use strict; use warnings; use utf8; use Moo; use Types::Standard qw(Str Bool); use Locale::TextDomain qw(App-Sqitch); use App::Sqitch::X qw(hurl); use List::Util qw(first); use Try::Tiny; use namespace::autoclean; extends 'App::Sqitch::Command'; with 'App::Sqitch::Role::RevertDeployCommand'; our $VERSION = 'v1.5.1'; # VERSION has onto_change => ( is => 'ro', isa => Str, ); has upto_change => ( is => 'ro', isa => Str, ); has modified => ( is => 'ro', isa => Bool, default => 0, ); sub options { return qw( onto-change|onto=s upto-change|upto=s modified|m ); } sub configure { my ( $class, $config, $opt ) = @_; return { map { $_ => $opt->{$_} } grep { exists $opt->{$_} } qw( onto_change upto_change modified ) }; } sub execute { my $self = shift; my ($targets, $changes) = $self->parse_args( target => $self->target, args => \@_, ); # Warn on multiple targets. my $target = shift @{ $targets }; $self->warn(__x( 'Too many targets specified; connecting to {target}', target => $target->name, )) if @{ $targets }; # Warn on too many changes. my $engine = $target->engine; my $onto = $self->modified ? $engine->planned_deployed_common_ancestor_id : $self->onto_change // shift @{ $changes }; my $upto = $self->upto_change // shift @{ $changes }; $self->warn(__x( 'Too many changes specified; rebasing onto "{onto}" up to "{upto}"', onto => $onto, upto => $upto, )) if @{ $changes }; # Now get to work. $engine->with_verify( $self->verify ); $engine->log_only( $self->log_only ); $engine->lock_timeout( $self->lock_timeout ); # Revert. $engine->set_variables( $self->_collect_revert_vars($target) ); die unless defined $self->no_prompt; die unless defined $self->prompt_accept; try { $engine->revert( $onto, ! ($self->no_prompt), $self->prompt_accept ); } catch { # Rethrow unknown errors or errors with exitval > 1. die $_ if ! eval { $_->isa('App::Sqitch::X') } || $_->exitval > 1 || $_->ident eq 'revert:confirm'; # Emit notice of non-fatal errors (e.g., nothing to revert). $self->info($_->message) }; # Deploy. $engine->set_variables( $self->_collect_deploy_vars($target) ); $engine->deploy( $upto, $self->mode ); return $self; } 1; __END__ =head1 Name App::Sqitch::Command::rebase - Revert and redeploy Sqitch changes =head1 Synopsis my $cmd = App::Sqitch::Command::rebase->new(%params); $cmd->execute; =head1 Description If you want to know how to use the C command, you probably want to be reading C. But if you really want to know how the C command works, read on. =head1 Interface =head2 Class Methods =head3 C my @opts = App::Sqitch::Command::rebase->options; Returns a list of L option specifications for the command-line options for the C command. =head2 Attributes =head3 C Change onto which to rebase the target. =head3 C Change up to which to rebase the target. =head3 C Boolean to revert to the change prior to earliest change with a revised deploy script. =head2 Instance Methods =head3 C $rebase->execute; Executes the rebase command. =head1 See Also =over =item L Documentation for the C command to the Sqitch command-line client. =item L The Sqitch command-line client. =back =head1 Author David E. Wheeler =head1 License Copyright (c) 2012-2025 David E. Wheeler, 2012-2021 iovation Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. =cut