Skip to content

Conversation

@dependabot-preview
Copy link
Contributor

Bumps Foundatio.Logging.Xunit from 5.1.1474 to 9.0.0.

Release notes

Sourced from Foundatio.Logging.Xunit's releases.

v9.0.0

No release notes provided.

v8.0.0

What’s New

With the 8.0 release we focused on adding new features, improving the build process using containers, and squashing some bugs.

New Features

  • Added support for Startup Actions that can be run when you startup your application. You can register an expression or implement IStartupAction and have a method called on startup.
  • We are taking Jobs to the next Level via new HostedJobService implementation. This new functionality allows you to register jobs to run jobs as background tasks in ASP.NET Core. You can find this new functionality in the Foundatio.Hosting NuGet package. Below are some of the awesome things we enabled out of the box:
    • Ability to define jobs via services.AddJob<MyJob>()
    • Ability to define Cron jobs via services.AddCronJob<MyJob>("* * * * *")
    • Ability to wait for startup actions to complete before running the jobs.
    • Ability to prevent your app from serving requests before the startup action run by calling app.UseWaitForStartupActionsBeforeServingRequests().
    • Return Unhealthy health checks if startup actions haven't completed. You can enable this by calling services.AddHealthChecks().AddCheckForStartupActionsComplete()
  • Added GetPagedFileListAsync to the IFileStorage interface to allow to allow for efficient paging.
  • Added deleted file count to DeleteFilesAsync to get more insight into delete operations.
  • Added RemoveAsync, RemoveIfEqualAsync , and ReplaceIfEqualAsync to the ICacheClient interface.
  • Added IQueueActivity interface to queue implementations. This allows you easily check when something has last occurred. We are using this interface for quick health checks.
  • Added new SafeSleepAsync methods to SystemClock. This ensured a common pattern for safely recovering from sleep operations once a token had been cancelled.

Bug Fixes

  • Fixed an issue with CacheLockProvider not cleaning up AsyncAutoResetEvents after calling AcquireAsync.
  • Fixed an issue where you could release any lock by lock name via the CacheLockProvider. You need to be sure you are releasing the lock you acquired and not someone elses lock.
  • Fixed a bug where the connection string parser could throw a null reference exception.

Breaking

  • We changed the ILockProvider interface signatures quite a bit in this release. We changed ReleaseAsync and RenewAsync methods to take an actual lock instance to prevent someone from releasing someone else lock.
  • We changed the ILock interface signatures a tiny bit by updating argument names and added some additional read only properties. We feel like this change will give us better control over assuring you a lock is unique as well as give us better insights into lock timings.
  • We removed GetFileListAsync from IFileStorage. It's now an extension method that calls into GetPagedFileListAsync.

Please take a look at the change log for a full list of the changes.

Check It Out – Feedback Appreciated!

We made many other improvements to ensure your apps run fast when using Foundatio, too many to be listed here. If you’re already using it, just update your NuGet package to the latest version to take advantage of these improvements. If you’re not using it yet, try it out. It’s worth a shot, we promise!

Once you’ve given it a go, please let us know what you like, or what you hate, by posting a issue.

Until next time, happy coding!

v7.0.0

What’s New

With the 7.0 release we focused on performance and reliability while adding new implementations.

New Features

  • Added new storage providers: Minio, SshNet and RedisFileStorage (Contrib @edwardmeng).
  • Added new Serialization implementations which are available via NuGet Packages Foundatio.JsonNet and Foundatio.Utf8Json. We also introduced a marker interface for serializers that do text based serialization ITextSerializer (Contrib @edwardmeng).
  • Added new overloaded methods to the ICacheClient : IncrementAsync, SetIfHigherAsync, and SetIfLowerAsync which are now take long and double types making your life a little bit easier.
  • Added new ICacheClient extension methods like SetUnixTimeMillisecondsAsync and GetUnixTimeMillisecondsAsync which makes it much easier to deal with timestamps.
... (truncated)
Commits

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.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

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 use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Jan 16, 2020
@claassistantio
Copy link

CLA assistant check
Thank you for your submission, we really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.

@niemyjski niemyjski merged commit 47edb5a into master Jan 17, 2020
@dependabot-preview dependabot-preview bot deleted the dependabot/nuget/Foundatio.Logging.Xunit-9.0.0 branch January 17, 2020 13:41
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

Development

Successfully merging this pull request may close these issues.

3 participants