Skip to content

Bump Respawn from 4.0.0 to 6.0.0 #13

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 5, 2022

Bumps Respawn from 4.0.0 to 6.0.0.

Release notes

Sourced from Respawn's releases.

v6.0.0

What's Changed

New Contributors

Full Changelog: jbogard/Respawn@v5.0.1...v6.0.0

Migration Guide

This release contains breaking changes:

  • Checkpoint class renamed to Respawner
  • Checkpoint options moved to RespawnerOptions
  • Instantiation broken in two steps - Respawner.CreateAsync takes a connection and options object and returns a Respawner with SQL initialized
  • Reset method renamed to ResetAsync to avoid async confusion

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>();

... (truncated)

Commits
  • c3f5d4a Merge pull request #103 from jbogard/fix-naming
  • 308b527 Fixing docs; fixes #66, fixes #100
  • 452bacf Renaming and making initialization more obvious
  • 5aae60b Formatting
  • 522b618 Merge pull request #102 from anthony-keller/issue-101
  • cfd58f2 fix: Turn on system-versioning in finally block
  • 7e3548b Removing commented code
  • 57a9273 Merge pull request #94 from gebirgslok/master
  • 6117382 Fixed incorrect check for Temporal Tables support in the SQL Server Adapter
  • af3754b Replaced SupportsTemporalTables flag with CheckSupportsTemporalTables method
  • 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 6.0.0.
- [Release notes](https://github.com/jbogard/Respawn/releases)
- [Commits](jbogard/Respawn@v4.0.0...v6.0.0)

---
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 Dec 5, 2022
@codecov
Copy link

codecov bot commented Dec 5, 2022

Codecov Report

Base: 14.59% // Head: 14.59% // No change to project coverage 👍

Coverage data is based on head (d7f4b83) compared to base (0ca3f2c).
Patch has no changes to coverable lines.

Additional details and impacted files
@@           Coverage Diff           @@
##             main      #13   +/-   ##
=======================================
  Coverage   14.59%   14.59%           
=======================================
  Files          26       26           
  Lines         466      466           
  Branches       12       12           
=======================================
  Hits           68       68           
  Misses        398      398           

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

☔ View full report at Codecov.
📢 Do you have feedback about the report comment? Let us know in this issue.

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants