Revision history for {{$dist->name}}
{{$NEXT}}
+ - Make source order stable to avoid non-changes in git (fixes RT#92580)
- Ensure that sqltargs are passed to deploy when ignore_ddl is set
(fixes RT#92373)
- Correctly strip lines that are all whitespace (fixes RT#92582)
my $self = shift;
$self->prepare_protoschema({
# Exclude __VERSION so that it gets installed separately
- parser_args => { sources => [grep { $_ ne '__VERSION' } $self->schema->sources], }
+ parser_args => {
+ sources => [
+ sort { $a cmp $b }
+ grep { $_ ne '__VERSION' }
+ $self->schema->sources
+ ],
+ }
}, '_ddl_protoschema_produce_filename');
$self->_prepare_install({}, '_ddl_protoschema_produce_filename', '_ddl_schema_produce_filename');
}