Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 14, 2022

Bumps Respawn from 4.0.0 to 5.0.1.

Release notes

Sourced from Respawn's releases.

5.0.0

As part of this release we had 12 issues closed.

Improvements/Features

Breaking changes

TablesToIgnore and TablesToInclude changed from type string to Table

In order to support ignoring/including both schemas and tables, the TablesToIgnore and TablesToInclude properties are now of type Table:

public class Checkpoint
{
-	public string[] TablesToIgnore { get; init; } = Array.Empty<string>();
-	public string[] TablesToInclude { get; init; } = Array.Empty<string>();
+	public Table[] TablesToIgnore { get; init; } = Array.Empty<Table>();
+	public Table[] TablesToInclude { get; init; } = Array.Empty<Table>();

For existing code that still needs to ignore/include tables regardless of the schema, the Table object has an implicit conversion operator from string. Specify the array type to activate the conversion:

var checkpoint = new Checkpoint
{
    TablesToIgnore = new Table[]
    {
        "Foo",
        "Bar"
    }
};

Or specify the schema by instantiating a Table object:

var checkpoint = new Checkpoint
{
</tr></table> 

... (truncated)

Commits
  • 45fc785 Fixing logo
  • c654c49 Merge pull request #91 from jbogard/support-ignore-table-with-schema
  • bd2216b Adding support across all databases; adding informix back in the mix
  • 8ac9587 Merge pull request #90 from jbogard/net60
  • 0e49c32 Updating tests
  • 56c2bfa Merge pull request #79 from dennisroche/reseed-mysql
  • 3a15d6d .NET Standard 2.1 and .NET 6
  • aba7050 Using records; fixes #77
  • c89a9a1 Merge pull request #82 from FranksDevRepo/master
  • f29dfc0 Merge pull request #85 from vmarko-sowalabs/master
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 14, 2022
Bumps [Respawn](https://github.com/jbogard/Respawn) from 4.0.0 to 5.0.1.
- [Release notes](https://github.com/jbogard/Respawn/releases)
- [Commits](jbogard/Respawn@v4.0.0...v5.0.1)

---
updated-dependencies:
- dependency-name: Respawn
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/nuget/Respawn-5.0.1 branch from 88829a2 to 1281722 Compare May 26, 2022 13:15
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 30, 2022

Superseded by #204.

@dependabot dependabot bot closed this Sep 30, 2022
@dependabot dependabot bot deleted the dependabot/nuget/Respawn-5.0.1 branch September 30, 2022 19:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant