node-flywaydb
node-flywaydb copied to clipboard
NodeJs wrapper for flywaydb cli
I would like to revisit the suggestion in #11 for a separate "download only" mode, specifically for use in Dockerfiles. Currently my team is doing something like this: ```dockerfile RUN...
Currently we can either pin the Flyway CLI to a specific version or always download the latest one. It would be nice if we could pin to major or minor...
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...
Added async/await to execCommand to allow for the config function to return a Promise. This is useful when using a remote secret store (e.g., AWS SecretsManager)
Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.12.0 to 6.12.6. Release notes Sourced from ajv's releases. v6.12.6 Fix performance issue of "url" format. v6.12.5 Fix uri scheme validation (@ChALkeR). Fix boolean schemas with strictKeywords...
I'm running the command ```shell flyway --configfile=db/conf/flyway.js migrate ``` Every time there's a new version, the migrate (or any other command) does not complete after the download finishes. When running...
Currently the Flyway JAR is always downloaded from https://repo1.maven.org/maven2/. This URL prefix should be configurable in order to support using a private or internal Maven repository, e.g. in an Enterprise...
extract-zip: Replace callback-style API with promise-style API
Hi, I am facing an issue when attempting to run the node-flywaydb(v.3.0.3) migration script within a node container. The migrate script runs fine within a regular node container, for example...
We want to be able to run migrations directly from javascript so that we can run our migrations to setup our embedded test databases. This change refactors the code to...