Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Created by
brew bump
Created with
brew bump-formula-pr
.release notes
skeema push
needs to perform multiple trigger manipulations in the same schema, the corresponding parent tables are now briefly write-locked, to prevent data inconsistencies from writes which occur in the middle of the push operation.CREATE OR REPLACE
syntax to atomically modify a trigger, this improvement now makes it safe to modify existing triggers, so allow-unsafe is no longer necessary in this situation.skeema
binary by 25-40%, and avoids spurious false-positive security warnings related to dependencies of the Docker client library. (#186, 2a2d8e3, 233c73e)skeema diff
andskeema push
. (#178, c6de431)skeema diff
andskeema push
. (76a7323)skeema diff
orskeema push
detects multiple unsafe changes, all such unsafe changes are now logged, instead of just the first one. Additionally, linting still occurs if unsafe changes are present, allowing the user to see all problematic unsafe statements and linter violations at the same time. (01a93d5)skeema diff
andskeema push
. (905ee14)skeema diff
orskeema push
ALTER PROCEDURE
/ALTER FUNCTION
, which is safe and atomic even in MySQL. (6fab6d8)skeema diff
andskeema push
, if the last statement for a schema required use of a nonstandard DELIMITER, the output will now also include aDELIMITER ;
line before moving on to the next schema. This is beneficial for users who pipeskeema diff
STDOUT to another program and then add additional SQL statements afterwards. (605b735)-EncodedCommand
option is now used in order to prevent problems with tricky nested escaping of quoted parameters.StrictHostKeyChecking=no
orStrictHostKeyChecking=ask
, Skeema could previously write the knownhosts entry incorrectly, in part due to an upstream Golang bug. Workarounds are now in place, thanks to community contributions to our open source knownhosts wrapper package. (Fix WriteKnownHost for IPv6 #1 skeema/knownhosts#2, Omit the IPv6 zone ID if it contains spaces skeema/knownhosts#4)Upgrade notice for users of Skeema's workspace=docker option:
docker
command-line client binary must be available in your $PATH to use workspace=docker. If you use this setting while also runningskeema
inside of a container, you must ensure thatskeema
's container has a workingdocker
binary prior to upgrading. See #186 for more information.An installation guide and full documentation are available on our website skeema.io.