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

Bump MediatR from 9.0.0 to 10.0.1 in /generators/server/templates/dotnetcore/src #1006

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 2, 2022

Bumps MediatR from 9.0.0 to 10.0.1.

Release notes

Sourced from MediatR's releases.

10.0.1

This is a patch release to support the latest Contracts package, which changed its targets to netstandard2.0 and net461.

Although MediatR supports only netstandard2.1 and above, it should not force the consumers of the contracts as such.

10.0.0

This release adds support for IAsyncEnumerable<T>. A new request type, IStreamRequest<T> represents a request to create a stream, with a new handler type IStreamRequestHandler<TRequest, TResponse> to handle. An example:

public class StreamPing : IStreamRequest<Pong>
{
    public string? Message { get; init; }
}
public class PingStreamHandler : IStreamRequestHandler<StreamPing, Pong>
{
public async IAsyncEnumerable<Pong> Handle(StreamPing request,
[EnumeratorCancellation] CancellationToken cancellationToken)
{
yield return await Task.Run(() => new Pong { Message = request.Message + " Pang" }, cancellationToken);
}
}

Where the work inside of the handler would likely be calling some other streaming API, such as gRPC, EF Core streaming support, Dapper streaming etc.

There are also separate behaviors, with IStreamPipelineBehavior that are separate from the normal IPipelineBehavior.

With the addition of IAsyncEnumerable, this release now targets netstandard2.1 exclusively.

There are some breaking API changes, called out in the 10.0 migration guide.

Commits
  • 49f9821 Updating contracts package
  • 204f41e Targeting netstandard2.0 and net461 for the contracts package
  • dad92f3 Fixing release workflow
  • 682ee41 Updating readme to include contracts package
  • 290f80a Merge pull request #687 from jbogard/reference-contracts-package
  • bcb1aa7 Referencing contracts package
  • b152d92 Merge pull request #686 from jbogard/contracts-assembly
  • b2b0222 Creating a contracts package
  • a533cf2 Adding contracts assembly
  • 802e4a4 Merge pull request #685 from jbogard/separate-stream-request
  • 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)

@dependabot dependabot bot added .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels May 2, 2022
Bumps [jsdoc](https://github.com/jsdoc/jsdoc) from 3.6.7 to 3.6.10.
- [Release notes](https://github.com/jsdoc/jsdoc/releases)
- [Changelog](https://github.com/jsdoc/jsdoc/blob/3.6.10/CHANGES.md)
- [Commits](jsdoc/jsdoc@3.6.7...3.6.10)

---
updated-dependencies:
- dependency-name: jsdoc
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
@dependabot dependabot bot force-pushed the dependabot/nuget/generators/server/templates/dotnetcore/src/dependencies/MediatR-10.0.1 branch from ed5f75e to 86fae8c Compare May 2, 2022 20:20
@sonarcloud
Copy link

sonarcloud bot commented May 2, 2022

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

@nicolas63 nicolas63 merged commit e0766c6 into dependencies May 3, 2022
@dependabot dependabot bot deleted the dependabot/nuget/generators/server/templates/dotnetcore/src/dependencies/MediatR-10.0.1 branch May 3, 2022 05:41
nicolas63 added a commit that referenced this pull request May 22, 2022
* Bump jsdoc from 3.6.7 to 3.6.10 (#969) (#1006)

Bumps [jsdoc](https://github.com/jsdoc/jsdoc) from 3.6.7 to 3.6.10.
- [Release notes](https://github.com/jsdoc/jsdoc/releases)
- [Changelog](https://github.com/jsdoc/jsdoc/blob/3.6.10/CHANGES.md)
- [Commits](jsdoc/jsdoc@3.6.7...3.6.10)

---
updated-dependencies:
- dependency-name: jsdoc
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump jsdoc from 3.6.7 to 3.6.10 (#969) (#1002)

Bumps [jsdoc](https://github.com/jsdoc/jsdoc) from 3.6.7 to 3.6.10.
- [Release notes](https://github.com/jsdoc/jsdoc/releases)
- [Changelog](https://github.com/jsdoc/jsdoc/blob/3.6.10/CHANGES.md)
- [Commits](jsdoc/jsdoc@3.6.7...3.6.10)

---
updated-dependencies:
- dependency-name: jsdoc
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump jsdoc from 3.6.7 to 3.6.10 (#969) (#1001)

Bumps [jsdoc](https://github.com/jsdoc/jsdoc) from 3.6.7 to 3.6.10.
- [Release notes](https://github.com/jsdoc/jsdoc/releases)
- [Changelog](https://github.com/jsdoc/jsdoc/blob/3.6.10/CHANGES.md)
- [Commits](jsdoc/jsdoc@3.6.7...3.6.10)

---
updated-dependencies:
- dependency-name: jsdoc
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump Scrutor in /generators/server/templates/dotnetcore/src (#1009)

Bumps [Scrutor](https://github.com/khellang/Scrutor) from 3.3.0 to 4.1.0.
- [Release notes](https://github.com/khellang/Scrutor/releases)
- [Commits](khellang/Scrutor@v3.3.0...v4.1.0)

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

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump sinon from 11.1.1 to 13.0.2 (#978)

Bumps [sinon](https://github.com/sinonjs/sinon) from 11.1.1 to 13.0.2.
- [Release notes](https://github.com/sinonjs/sinon/releases)
- [Changelog](https://github.com/sinonjs/sinon/blob/main/docs/changelog.md)
- [Commits](sinonjs/sinon@v11.1.1...v13.0.2)

---
updated-dependencies:
- dependency-name: sinon
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump MediatR.Extensions.Microsoft.DependencyInjection (#968)

Bumps [MediatR.Extensions.Microsoft.DependencyInjection](https://github.com/jbogard/MediatR.Extensions.Microsoft.DependencyInjection) from 9.0.0 to 10.0.1.
- [Release notes](https://github.com/jbogard/MediatR.Extensions.Microsoft.DependencyInjection/releases)
- [Commits](jbogard/MediatR.Extensions.Microsoft.DependencyInjection@v9.0.0...v10.0.1)

---
updated-dependencies:
- dependency-name: MediatR.Extensions.Microsoft.DependencyInjection
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump jsdoc from 3.6.7 to 3.6.10 (#969) (#1005)

Bumps [jsdoc](https://github.com/jsdoc/jsdoc) from 3.6.7 to 3.6.10.
- [Release notes](https://github.com/jsdoc/jsdoc/releases)
- [Changelog](https://github.com/jsdoc/jsdoc/blob/3.6.10/CHANGES.md)
- [Commits](jsdoc/jsdoc@3.6.7...3.6.10)

---
updated-dependencies:
- dependency-name: jsdoc
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump release-it and @release-it/bumper (#1010)

Bumps [release-it](https://github.com/release-it/release-it) and [@release-it/bumper](https://github.com/release-it/bumper). These dependencies needed to be updated together.

Updates `release-it` from 14.14.3 to 15.0.0
- [Release notes](https://github.com/release-it/release-it/releases)
- [Changelog](https://github.com/release-it/release-it/blob/master/CHANGELOG.md)
- [Commits](release-it/release-it@14.14.3...15.0.0)

Updates `@release-it/bumper` from 3.0.1 to 4.0.0
- [Release notes](https://github.com/release-it/bumper/releases)
- [Commits](release-it/bumper@3.0.1...4.0.0)

---
updated-dependencies:
- dependency-name: release-it
  dependency-type: direct:development
  update-type: version-update:semver-major
- dependency-name: "@release-it/bumper"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump ejs-lint from 1.2.0 to 1.2.1 (#807) (#886)

Bumps [ejs-lint](https://github.com/ryanzim/ejs-lint) from 1.2.0 to 1.2.1.
- [Release notes](https://github.com/ryanzim/ejs-lint/releases)
- [Commits](RyanZim/EJS-Lint@v1.2.0...v1.2.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>

* Bump @j-ulrich/release-it-regex-bumper from 3.0.2 to 4.0.0 (#1012)

Bumps [@j-ulrich/release-it-regex-bumper](https://github.com/j-ulrich/release-it-regex-bumper) from 3.0.2 to 4.0.0.
- [Release notes](https://github.com/j-ulrich/release-it-regex-bumper/releases)
- [Changelog](https://github.com/j-ulrich/release-it-regex-bumper/blob/main/CHANGELOG.md)
- [Commits](j-ulrich/release-it-regex-bumper@3.0.2...4.0.0)

---
updated-dependencies:
- dependency-name: "@j-ulrich/release-it-regex-bumper"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump xunit.runner.visualstudio (#1016)

Bumps [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit) from 2.4.3 to 2.4.4.
- [Release notes](https://github.com/xunit/visualstudio.xunit/releases)
- [Commits](https://github.com/xunit/visualstudio.xunit/commits)

---
updated-dependencies:
- dependency-name: xunit.runner.visualstudio
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump MongoDB.Driver in /generators/server/templates/dotnetcore/src (#1015)

Bumps [MongoDB.Driver](https://github.com/mongodb/mongo-csharp-driver) from 2.15.0 to 2.15.1.
- [Release notes](https://github.com/mongodb/mongo-csharp-driver/releases)
- [Commits](mongodb/mongo-csharp-driver@v2.15.0...v2.15.1)

---
updated-dependencies:
- dependency-name: MongoDB.Driver
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump Oracle.ManagedDataAccess.Core (#1014)

Bumps Oracle.ManagedDataAccess.Core from 3.21.50 to 3.21.61.

---
updated-dependencies:
- dependency-name: Oracle.ManagedDataAccess.Core
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @j-ulrich/release-it-regex-bumper from 4.0.0 to 4.1.0 (#1013)

Bumps [@j-ulrich/release-it-regex-bumper](https://github.com/j-ulrich/release-it-regex-bumper) from 4.0.0 to 4.1.0.
- [Release notes](https://github.com/j-ulrich/release-it-regex-bumper/releases)
- [Changelog](https://github.com/j-ulrich/release-it-regex-bumper/blob/main/CHANGELOG.md)
- [Commits](j-ulrich/release-it-regex-bumper@4.0.0...4.1.0)

---
updated-dependencies:
- dependency-name: "@j-ulrich/release-it-regex-bumper"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump Hellang.Middleware.ProblemDetails (#1019)

Bumps [Hellang.Middleware.ProblemDetails](https://github.com/khellang/Middleware) from 6.4.1 to 6.4.2.
- [Release notes](https://github.com/khellang/Middleware/releases)
- [Commits](khellang/Middleware@v6.4.1...v6.4.2)

---
updated-dependencies:
- dependency-name: Hellang.Middleware.ProblemDetails
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump xunit.runner.visualstudio (#1018)

Bumps [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit) from 2.4.4 to 2.4.5.
- [Release notes](https://github.com/xunit/visualstudio.xunit/releases)
- [Commits](https://github.com/xunit/visualstudio.xunit/commits)

---
updated-dependencies:
- dependency-name: xunit.runner.visualstudio
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump Oracle.EntityFrameworkCore (#1017)

Bumps Oracle.EntityFrameworkCore from 6.21.5 to 6.21.61.

---
updated-dependencies:
- dependency-name: Oracle.EntityFrameworkCore
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump eslint from 8.14.0 to 8.15.0 (#1020)

Bumps [eslint](https://github.com/eslint/eslint) from 8.14.0 to 8.15.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.14.0...v8.15.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump sinon from 13.0.2 to 14.0.0 (#1021)

Bumps [sinon](https://github.com/sinonjs/sinon) from 13.0.2 to 14.0.0.
- [Release notes](https://github.com/sinonjs/sinon/releases)
- [Changelog](https://github.com/sinonjs/sinon/blob/main/docs/changelog.md)
- [Commits](sinonjs/sinon@v13.0.2...v14.0.0)

---
updated-dependencies:
- dependency-name: sinon
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump System.Text.Json in /generators/server/templates/dotnetcore/src (#1025)

Bumps [System.Text.Json](https://github.com/dotnet/runtime) from 6.0.3 to 6.0.4.
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v6.0.3...v6.0.4)

---
updated-dependencies:
- dependency-name: System.Text.Json
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump AspNetCorePackageVersion (#1023)

Bumps `AspNetCorePackageVersion` from 6.0.4 to 6.0.5.

Updates `Microsoft.AspNetCore.Components.Authorization` from 6.0.4 to 6.0.5
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.4...v6.0.5)

Updates `Microsoft.AspNetCore.Components.WebAssembly` from 6.0.4 to 6.0.5
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.4...v6.0.5)

Updates `Microsoft.AspNetCore.Components.WebAssembly.DevServer` from 6.0.4 to 6.0.5
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.4...v6.0.5)

Updates `Microsoft.AspNetCore.Components` from 6.0.4 to 6.0.5
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.4...v6.0.5)

Updates `Microsoft.AspNetCore.SpaServices.Extensions` from 6.0.4 to 6.0.5
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.4...v6.0.5)

Updates `Microsoft.AspNetCore.Mvc.NewtonsoftJson` from 6.0.4 to 6.0.5
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.4...v6.0.5)

Updates `Microsoft.AspNetCore.Authentication.JwtBearer` from 6.0.4 to 6.0.5
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.4...v6.0.5)

Updates `Microsoft.AspNetCore.Authentication.OpenIdConnect` from 6.0.4 to 6.0.5
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.4...v6.0.5)

Updates `Microsoft.AspNetCore.Mvc.Testing` from 6.0.4 to 6.0.5
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.4...v6.0.5)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components.Authorization
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.AspNetCore.Components.WebAssembly
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.AspNetCore.Components.WebAssembly.DevServer
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.AspNetCore.Components
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.AspNetCore.SpaServices.Extensions
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.AspNetCore.Mvc.NewtonsoftJson
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.AspNetCore.Authentication.JwtBearer
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.AspNetCore.Authentication.OpenIdConnect
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.AspNetCore.Mvc.Testing
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump LanguageExt.Core in /generators/server/templates/dotnetcore/src (#1024)

Bumps [LanguageExt.Core](https://github.com/louthy/language-ext) from 4.0.4 to 4.1.0.
- [Release notes](https://github.com/louthy/language-ext/releases)
- [Changelog](https://github.com/louthy/language-ext/blob/main/version-2-release-notes.md)
- [Commits](https://github.com/louthy/language-ext/commits/v4.1.0)

---
updated-dependencies:
- dependency-name: LanguageExt.Core
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump ejs-lint from 1.2.1 to 1.2.2 (#1022)

Bumps [ejs-lint](https://github.com/ryanzim/ejs-lint) from 1.2.1 to 1.2.2.
- [Release notes](https://github.com/ryanzim/ejs-lint/releases)
- [Commits](RyanZim/EJS-Lint@v1.2.1...v1.2.2)

---
updated-dependencies:
- dependency-name: ejs-lint
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump Microsoft.NET.Test.Sdk (#1029)

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.1.0 to 17.2.0.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Commits](microsoft/vstest@v17.1.0...v17.2.0)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
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 .NET Pull requests that update .net code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant