Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

chore(deps): bump skwas.MockHttp from 3.1.0-rc0001 to 4.1.1 #23

Merged
merged 1 commit into from
Sep 2, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 2, 2023

Bumps skwas.MockHttp from 3.1.0-rc0001 to 4.1.1.

Release notes

Sourced from skwas.MockHttp's releases.

v4.1.1

What's Changed

  • fix: data escaped + (plus) was not unescaped correctly.

Full Changelog: skwasjer/MockHttp@v4.1.0...v4.1.1

v4.1.0

What's Changed

  • fix: data escaped space (+) was not parsing into space char. by @​skwasjer in skwasjer/MockHttp#68
  • chore(deps): replaced Microsoft.AspNet.WebApi.Client with explicit dependencies on Newtonsoft.Json and System.Net.Http to address a security concern regarding transitive dependency on NewtonSoft < 13.x. See GHSA-5crp-9r3c-p9vr.

Chores

Full Changelog: skwasjer/MockHttp@v4.0.1...v4.1.0

v4.0.1

What's Changed

  • Add timeout exception for .NET 5 or greater targets. by @​benjaminsampica in skwasjer/MockHttp#50
  • Improve RateLimitedStream timing/bit rate calculation accuracy.
  • Fix guard/exception for the minimum allowed bit rate for RateLimitedStream.
  • Fix underlying stream not being disposed when calling RateLimitedStream.Dispose()

New Contributors

Full Changelog: skwasjer/MockHttp@v4.0.0...v4.0.1

v4.0.0

What's Changed

  • Add new Fluent response API by @​skwasjer in skwasjer/MockHttp#10 See also #9 This is a complete replacement of the old response builder API's, and thus likely will require you to refactor your tests (I'm sorry but such is the price of improvement sometimes :( ). See wiki for new API docs/examples. The request matching API's have largely stayed the same, but some extension methods were renamed for consistency. E.g.:
    MockHttpHandler mockHttp = new MockHttpHandler();
    // Configure setup(s).
    mockHttp
    .When(matching => matching
    .Method("GET")
    .RequestUri("http://localhost/controller/*")

... (truncated)

Changelog

Sourced from skwas.MockHttp's changelog.

4.1.1

  • fix: data escaped + (plus) was not parsed correctly, caused by #68. My apologies... :)

v4.1.0

  • fix: data escaped space (+) was not parsing into space char, causing form data matcher to fail to match. by @​skwasjer in #68
  • chore(deps): replaced Microsoft.AspNet.WebApi.Client with explicit dependencies on Newtonsoft.Json and System.Net.Http to address a security concern regarding transitive dependency on NewtonSoft < 13.x. See GHSA-5crp-9r3c-p9vr.

Chores

v4.0.1

  • Add timeout exception for .NET 5 or greater targets. by @​benjaminsampica in #50
  • Improve RateLimitedStream timing/bit rate calculation accuracy.
  • Fix guard/exception for the minimum allowed bit rate for RateLimitedStream.
  • Fix underlying stream not being disposed when calling RateLimitedStream.Dispose()

v4.0.0

  • Add new Fluent response API by @​skwasjer in #10 See also #9 This is a complete replacement of the old response builder API's, and thus likely will require you to refactor your tests (I'm sorry but such is the price of improvement sometimes :( ). See wiki for new API docs/examples. The request matching API's have largely stayed the same, but some extension methods were renamed for consistency.
  • Added .NET 7 target framework
  • Add stream that rate limits response streams. by @​skwasjer in #17
  • Additional guards (Argument(Null)Exception) for certain extensions.
  • Fix static code analysis warnings.
  • Bump Microsoft.AspNet.WebApi.Client from 5.2.7 to 5.2.9 by @​dependabot in #23
  • Enable nullable by @​skwasjer in #27
  • Remove obsolete/deprecated code (+semver:major) by @​skwasjer in #16
  • Removed obsolete ObjectResponseStrategy and its extensions.
  • Removed obsolete MockHttpHandler.VerifyNoOtherCalls(). Use the replacement VerifyNoOtherRequests()
  • Removed obsolete UrlMatcher and its extensions.

v3.1.0-rc0003

  • Added .XmlBody() response builder extension for LINQ to XML.

v3.1.0-rc0002

  • fix: allow zero timespan in ServerTimeout() and ClientTimeout().
  • fix: do not allow RateLimitedStream if the underlying stream is not seekable (except for via stream factory).
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.


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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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 [skwas.MockHttp](https://github.com/skwasjer/MockHttp) from 3.1.0-rc0001 to 4.1.1.
- [Release notes](https://github.com/skwasjer/MockHttp/releases)
- [Changelog](https://github.com/skwasjer/MockHttp/blob/main/CHANGELOG.md)
- [Commits](https://github.com/skwasjer/MockHttp/commits/v4.1.1)

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 2, 2023
@dependabot dependabot bot temporarily deployed to internal September 2, 2023 09:13 Inactive
@skwasjer skwasjer enabled auto-merge (squash) September 2, 2023 09:13
@sonarcloud
Copy link

sonarcloud bot commented Sep 2, 2023

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
No Duplication information No Duplication information

@codecov
Copy link

codecov bot commented Sep 2, 2023

Codecov Report

Merging #23 (5b5728a) into main (e270d5b) will not change coverage.
The diff coverage is n/a.

Additional details and impacted files

@skwasjer skwasjer merged commit 9652d3b into main Sep 2, 2023
13 checks passed
@skwasjer skwasjer deleted the dependabot/nuget/main/skwas.MockHttp-4.1.1 branch September 2, 2023 09: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