Skip to content
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

Traverse symlinks when resolving migrations #2445

Merged
merged 2 commits into from
Jun 13, 2023

Commits on Apr 5, 2023

  1. Traverse symlinks when resolving migrations

    When enumerating the source directory seeking migration files, `sqlx`
    ignores entries that aren't files. This was previously reported as launchbadge#614
    and fixed in launchbadge#985 but apparently regressed somewhere along the way. This
    commit reintroduces the fix from launchbadge#985 to the current implementation: use
    `std::fs::metadata` instead of `std::fs::DirEntry::metadata`. The former
    is documented to traverse symlinks; the latter does not.
    tgeoghegan committed Apr 5, 2023
    Configuration menu
    Copy the full SHA
    115fa31 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2023

  1. Configuration menu
    Copy the full SHA
    1b706c4 View commit details
    Browse the repository at this point in the history