Skip to content

Commit

Permalink
V5.5.0 (#215)
Browse files Browse the repository at this point in the history
* Support CoreEx v3.3.0

* Update dependencies to latest.

* Final tweaks.

---------

Signed-off-by: Eric Sibly [chullybun] <[email protected]>
  • Loading branch information
chullybun authored Aug 8, 2023
1 parent 9f9cdd8 commit b7677cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Represents the **NuGet** versions.

## v5.5.0
- *Fixed:* Upgraded `CoreEx` to `v3.3.0` to include all related fixes and improvements related to distributed tracing.
- *Fixes:* Code-generation templates updated to support any breaking changes related to `InvokerBase`.
- *Fixed:* Code-generation templates updated to support any breaking changes related to `InvokerBase`.

## v5.4.0
- *Enhancement:* Upgraded `CoreEx` to `v3.0.0` which resulted in a number of breaking changed that will require manual remediation:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@ public class AppNameDb : SqlServerDatabase
/// <param name="create">The factory to create the <see cref="SqlConnection"/>.</param>
/// <param name="logger">The optional <see cref="ILogger"/>.</param>
public AppNameDb(Func<SqlConnection> create, ILogger<AppNameDb>? logger = null) : base(create, logger) { }
#if (implement_database)

/// <inheritdoc/>
protected override Task OnConnectionOpenAsync(DbConnection connection, CancellationToken cancellationToken) => SetSqlSessionContextAsync(cancellationToken: cancellationToken);
#endif
}
#endif
#if (implement_mysql)
Expand Down

0 comments on commit b7677cb

Please sign in to comment.