Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: golang-migrate/migrate
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: samfoxcode/migrate
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 15 commits
  • 6 files changed
  • 3 contributors

Commits on Jun 16, 2021

  1. MSI Auth for SQL Server

    Add MSI Auth option to SQL Server connection. Default if no password is provided in connection string.
    samfoxcode committed Jun 16, 2021
    Configuration menu
    Copy the full SHA
    710e0ce View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2021

  1. Parse resource endpoint from server for msi

    update host name parsing to get just the resource endpoint for msi
    samfoxcode committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    04c3f27 View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2021

  1. Update go-mssqldb

    update go-mssqldb to resolve panic issue referenced here: denisenkom/go-mssqldb#642
    samfoxcode committed Jun 18, 2021
    Configuration menu
    Copy the full SHA
    2ff2841 View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2021

  1. Update sqlserver.go

    switch from deprecated methods. NewServicePrincipalTokenFromManagedIdentity calls the two methods that are deprecated for us
    samfoxcode committed Jun 22, 2021
    Configuration menu
    Copy the full SHA
    dba53bb View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2021

  1. Update sqlserver.go

    add useMsi param instead of looking for nil password
    samfoxcode committed Jun 25, 2021
    Configuration menu
    Copy the full SHA
    737f026 View commit details
    Browse the repository at this point in the history
  2. Update sqlserver readme

    Update sqlserver readme for msi auth. make useMsi a bit safer
    samfoxcode committed Jun 25, 2021
    Configuration menu
    Copy the full SHA
    0c7286c View commit details
    Browse the repository at this point in the history
  3. Update sqlserver.go

    remove comment
    samfoxcode committed Jun 25, 2021
    Configuration menu
    Copy the full SHA
    78f2d54 View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2021

  1. Update database/sqlserver/README.md

    Co-authored-by: Keegan Campbell <[email protected]>
    samfoxcode and kfcampbell authored Jun 28, 2021
    Configuration menu
    Copy the full SHA
    f7dc122 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2021

  1. Update sqlserver.go

    refactor resource uri logic into its own method
    samfoxcode committed Jun 29, 2021
    Configuration menu
    Copy the full SHA
    138aa4d View commit details
    Browse the repository at this point in the history
  2. Update sqlserver_test.go

    add tests for msi connection. can only test whether it fails with useMsi= true, or succeeds with useMsi=false
    samfoxcode committed Jun 29, 2021
    Configuration menu
    Copy the full SHA
    c5844f8 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #2 from samfoxcode/samfoxcode/sql-msi

    Add SqlServer MSI Support
    samfoxcode authored Jun 29, 2021
    Configuration menu
    Copy the full SHA
    e898ae1 View commit details
    Browse the repository at this point in the history
  4. Update sqlserver.go

    check msi.EnsureFresh return value
    samfoxcode committed Jun 29, 2021
    Configuration menu
    Copy the full SHA
    ff3903a View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2021

  1. Return error for multiple auth and move query filter

    move migrate.FilterCustomQuery(purl).String() into one line out of if/else. return error if both useMsi=true and password are passed
    samfoxcode committed Jul 1, 2021
    Configuration menu
    Copy the full SHA
    d8f3667 View commit details
    Browse the repository at this point in the history
  2. Update README.md

    update readme with warning for useMsi
    samfoxcode committed Jul 1, 2021
    Configuration menu
    Copy the full SHA
    a58db03 View commit details
    Browse the repository at this point in the history
  3. Update sqlserver_test.go

    Update TestMsiFalse test case as now it should fail when useMsi=false and no password is provided
    samfoxcode committed Jul 1, 2021
    Configuration menu
    Copy the full SHA
    ba583bf View commit details
    Browse the repository at this point in the history
Loading