-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Backport latest version to Play 2.2.x #36
Open
deterdw
wants to merge
50
commits into
tototoshi:play-2.2.x
Choose a base branch
from
deterdw:play-2.2.x
base: play-2.2.x
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Conflicts: project/Build.scala
This change avoids initializing when the plugin is disabled. This is specially beneficial when running tests with migrations disabled. Hundreds of initialization checks are avoided, along with the debug notices that accompany them. There is no effect when the plugin is enabled.
Delay initialization
play 2.3.0 final
The placeholder prefix, suffix and key-value pairs can be specificed in application.conf, e.g. ``` db.default.migration.placeholderPrefix="$flyway{{{" db.default.migration.placeholderSuffix="}}}" db.default.migration.placeholders.foo="bar" db.default.migration.placeholders.hoge="pupi" ``` This would cause ``` INSERT INTO USERS ($flyway{{{foo}}}) VALUES ('$flyway{{{hoge}}}') ``` to be rewritten to ``` INSERT INTO USERS (bar) VALUES ('pupi') ```
Add support for placeholders in migration files
Update index.html.markdown
Added encoding explicitly for Windows PC
Added travis widget
Minor update, only had to fix a couple of deprecation warnings w.r.t. the `init`-methods being renamed to `baseline`.
…tion Fix FileNotFoundException with Java-based migration files
Added configurable outOfOrder parameter
Play class loader is a bit tricky. We can’t rely on `Class.forName`
fix classloader issue for Java based migration
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This updates the play-2.2.x branch to a new version "1.2.2-2.2.x" with the functionality of 1.2.2 available for Play 2.2.x apps.