Skip to content
This repository was archived by the owner on Dec 20, 2025. It is now read-only.

Bump Respawn from 4.0.0 to 5.0.1 - #92

Open
dependabot[bot] wants to merge 2 commits into
masterfrom
dependabot/nuget/Respawn-5.0.1
Open

Bump Respawn from 4.0.0 to 5.0.1#92
dependabot[bot] wants to merge 2 commits into
masterfrom
dependabot/nuget/Respawn-5.0.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jan 17, 2022

Copy link
Copy Markdown
Contributor

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)

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 added the dependencies Pull requests that update a dependency file label Jan 17, 2022
@dependabot @github

dependabot Bot commented on behalf of github Oct 3, 2022

Copy link
Copy Markdown
Contributor Author

A newer version of Respawn exists, but since this PR has been edited by someone other than Dependabot I haven't updated it. You'll get a PR for the updated version as normal once this PR is merged.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant