akkadotnet / Akka.Persistence.Sql

Linq2Db implementation of Akka.Persistence.Sql. Common implementation for SQL Server, Sqlite, Postgres, Oracle, and MySql.
Apache License 2.0
10 stars 10 forks source link

build(deps): bump AkkaHostingVersion from 1.5.20 to 1.5.22 #397

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps AkkaHostingVersion from 1.5.20 to 1.5.22. Updates Akka.Cluster.Hosting from 1.5.20 to 1.5.22

Release notes

Sourced from Akka.Cluster.Hosting's releases.

1.5.22

Update Akka.NET to 1.5.22Add log filtering extension method Filtering Logs In Akka.NET In Akka.NET 1.5.21%2C we introduced log filtering for log messages based on the LogSource or the content of a log message. Depending on your coding style%2C you can use this feature in Akka.Hosting in several ways.

  1. Using The LoggerConfigBuilder.WithLogFilter() method. The LoggerConfigBuilder.WithLogFilter() method lets you set up the LogFilterBuilder csharp builder.Services.AddAkka("MyActorSystem"%2C configurationBuilder => { configurationBuilder .ConfigureLoggers(loggerConfigBuilder => { loggerConfigBuilder.WithLogFilter(filterBuilder => { filterBuilder.ExcludeMessageContaining("Test")%3B })%3B })%3B })%3B

  2. Setting the loggerConfigBuilder.LogFilterBuilder property directly. csharp builder.Services.AddAkka("MyActorSystem"%2C configurationBuilder => { configurationBuilder .ConfigureLoggers(loggerConfigBuilder => { loggerConfigBuilder.LogFilterBuilder = new LogFilterBuilder()%3B loggerConfigBuilder.LogFilterBuilder.ExcludeMessageContaining("Test")%3B })%3B })%3B

Changelog

Sourced from Akka.Cluster.Hosting's changelog.

[1.5.22] / 4 June 2024

Filtering Logs In Akka.NET

In Akka.NET 1.5.21, we introduced log filtering for log messages based on the LogSource or the content of a log message. Depending on your coding style, you can use this feature in Akka.Hosting in several ways.

  1. Using The LoggerConfigBuilder.WithLogFilter() method.

    The LoggerConfigBuilder.WithLogFilter() method lets you set up the LogFilterBuilder

    builder.Services.AddAkka("MyActorSystem", configurationBuilder =>
    {
        configurationBuilder
            .ConfigureLoggers(loggerConfigBuilder =>
            {
                loggerConfigBuilder.WithLogFilter(filterBuilder =>
                {
                    filterBuilder.ExcludeMessageContaining("Test");
                });
            });
    });
    
  2. Setting the loggerConfigBuilder.LogFilterBuilder property directly.

    builder.Services.AddAkka("MyActorSystem", configurationBuilder =>
    {
        configurationBuilder
            .ConfigureLoggers(loggerConfigBuilder =>
            {
                loggerConfigBuilder.LogFilterBuilder = new LogFilterBuilder();
                loggerConfigBuilder.LogFilterBuilder.ExcludeMessageContaining("Test");
            });
    });
    
Commits


Updates Akka.Persistence.Hosting from 1.5.20 to 1.5.22

Release notes

Sourced from Akka.Persistence.Hosting's releases.

1.5.22

Update Akka.NET to 1.5.22Add log filtering extension method Filtering Logs In Akka.NET In Akka.NET 1.5.21%2C we introduced log filtering for log messages based on the LogSource or the content of a log message. Depending on your coding style%2C you can use this feature in Akka.Hosting in several ways.

  1. Using The LoggerConfigBuilder.WithLogFilter() method. The LoggerConfigBuilder.WithLogFilter() method lets you set up the LogFilterBuilder csharp builder.Services.AddAkka("MyActorSystem"%2C configurationBuilder => { configurationBuilder .ConfigureLoggers(loggerConfigBuilder => { loggerConfigBuilder.WithLogFilter(filterBuilder => { filterBuilder.ExcludeMessageContaining("Test")%3B })%3B })%3B })%3B

  2. Setting the loggerConfigBuilder.LogFilterBuilder property directly. csharp builder.Services.AddAkka("MyActorSystem"%2C configurationBuilder => { configurationBuilder .ConfigureLoggers(loggerConfigBuilder => { loggerConfigBuilder.LogFilterBuilder = new LogFilterBuilder()%3B loggerConfigBuilder.LogFilterBuilder.ExcludeMessageContaining("Test")%3B })%3B })%3B

Changelog

Sourced from Akka.Persistence.Hosting's changelog.

[1.5.22] / 4 June 2024

Filtering Logs In Akka.NET

In Akka.NET 1.5.21, we introduced log filtering for log messages based on the LogSource or the content of a log message. Depending on your coding style, you can use this feature in Akka.Hosting in several ways.

  1. Using The LoggerConfigBuilder.WithLogFilter() method.

    The LoggerConfigBuilder.WithLogFilter() method lets you set up the LogFilterBuilder

    builder.Services.AddAkka("MyActorSystem", configurationBuilder =>
    {
        configurationBuilder
            .ConfigureLoggers(loggerConfigBuilder =>
            {
                loggerConfigBuilder.WithLogFilter(filterBuilder =>
                {
                    filterBuilder.ExcludeMessageContaining("Test");
                });
            });
    });
    
  2. Setting the loggerConfigBuilder.LogFilterBuilder property directly.

    builder.Services.AddAkka("MyActorSystem", configurationBuilder =>
    {
        configurationBuilder
            .ConfigureLoggers(loggerConfigBuilder =>
            {
                loggerConfigBuilder.LogFilterBuilder = new LogFilterBuilder();
                loggerConfigBuilder.LogFilterBuilder.ExcludeMessageContaining("Test");
            });
    });
    
Commits


Updates Akka.Hosting from 1.5.20 to 1.5.22

Release notes

Sourced from Akka.Hosting's releases.

1.5.22

Update Akka.NET to 1.5.22Add log filtering extension method Filtering Logs In Akka.NET In Akka.NET 1.5.21%2C we introduced log filtering for log messages based on the LogSource or the content of a log message. Depending on your coding style%2C you can use this feature in Akka.Hosting in several ways.

  1. Using The LoggerConfigBuilder.WithLogFilter() method. The LoggerConfigBuilder.WithLogFilter() method lets you set up the LogFilterBuilder csharp builder.Services.AddAkka("MyActorSystem"%2C configurationBuilder => { configurationBuilder .ConfigureLoggers(loggerConfigBuilder => { loggerConfigBuilder.WithLogFilter(filterBuilder => { filterBuilder.ExcludeMessageContaining("Test")%3B })%3B })%3B })%3B

  2. Setting the loggerConfigBuilder.LogFilterBuilder property directly. csharp builder.Services.AddAkka("MyActorSystem"%2C configurationBuilder => { configurationBuilder .ConfigureLoggers(loggerConfigBuilder => { loggerConfigBuilder.LogFilterBuilder = new LogFilterBuilder()%3B loggerConfigBuilder.LogFilterBuilder.ExcludeMessageContaining("Test")%3B })%3B })%3B

Changelog

Sourced from Akka.Hosting's changelog.

[1.5.22] / 4 June 2024

Filtering Logs In Akka.NET

In Akka.NET 1.5.21, we introduced log filtering for log messages based on the LogSource or the content of a log message. Depending on your coding style, you can use this feature in Akka.Hosting in several ways.

  1. Using The LoggerConfigBuilder.WithLogFilter() method.

    The LoggerConfigBuilder.WithLogFilter() method lets you set up the LogFilterBuilder

    builder.Services.AddAkka("MyActorSystem", configurationBuilder =>
    {
        configurationBuilder
            .ConfigureLoggers(loggerConfigBuilder =>
            {
                loggerConfigBuilder.WithLogFilter(filterBuilder =>
                {
                    filterBuilder.ExcludeMessageContaining("Test");
                });
            });
    });
    
  2. Setting the loggerConfigBuilder.LogFilterBuilder property directly.

    builder.Services.AddAkka("MyActorSystem", configurationBuilder =>
    {
        configurationBuilder
            .ConfigureLoggers(loggerConfigBuilder =>
            {
                loggerConfigBuilder.LogFilterBuilder = new LogFilterBuilder();
                loggerConfigBuilder.LogFilterBuilder.ExcludeMessageContaining("Test");
            });
    });
    
Commits


Updates Akka from 1.5.20 to 1.5.22

Release notes

Sourced from Akka's releases.

Akka.NET v1.5.22

1.5.22 June 4th 2024

Akka.NET v1.5.22 is a patch release for Akka.NET with a few bug fixes and logging improvement.

On Resolving CVE-2018-8292

In order to resolve this CVE, we had to update DotNetty.Handlers to the latest version and unfortunately, this comes with about 10% network throughput performance hit. We are looking into possible replacement for DotNetty to improve this performance lost in the future (see [#7225](https://github.com/akkadotnet/akka.net/issues/7225) for updates).

Before

Num clients, Total [msg], Msgs/sec, Total [ms], Start Threads, End Threads  
         1,  200000,    125000,    1600.62,            46,              76  
         5, 1000000,    494072,    2024.04,            84,              95  
        10, 2000000,    713013,    2805.73,           103,             107  
        15, 3000000,    724463,    4141.38,           115,             115  
        20, 4000000,    714669,    5597.66,           123,             123  
        25, 5000000,    684932,    7300.37,           131,             107  
        30, 6000000,    694525,    8639.88,           115,              93  

After

Num clients, Total [msg], Msgs/sec, Total [ms], Start Threads, End Threads
         1,  200000,    123763,    1616.32,            46,              73
         5, 1000000,    386101,    2590.66,            81,              90
        10, 2000000,    662691,    3018.54,            98,             104
        15, 3000000,    666223,    4503.86,           112,             113
        20, 4000000,    669681,    5973.89,           121,             113
        25, 5000000,    669255,    7471.86,           121,             105
        30, 6000000,    669121,    8967.61,           113,              92
COMMITS LOC+ LOC- AUTHOR
6 167 188 Aaron Stannard
3 93 10 Gregorius Soedharmo

You can see the full set of changes for Akka.NET v1.5.22 here.

Bug Fixes and Improvements

... (truncated)

Changelog

Sourced from Akka's changelog.

1.5.22 June 4th 2024

Akka.NET v1.5.22 is a patch release for Akka.NET with a few bug fixes and logging improvement.

On Resolving CVE-2018-8292

In order to resolve this CVE, we had to update DotNetty.Handlers to the latest version and unfortunately, this comes with about 10% network throughput performance hit. We are looking into possible replacement for DotNetty to improve this performance lost in the future (see [#7225](https://github.com/akkadotnet/akka.net/issues/7225) for updates).

Before

Num clients, Total [msg], Msgs/sec, Total [ms], Start Threads, End Threads  
         1,  200000,    125000,    1600.62,            46,              76  
         5, 1000000,    494072,    2024.04,            84,              95  
        10, 2000000,    713013,    2805.73,           103,             107  
        15, 3000000,    724463,    4141.38,           115,             115  
        20, 4000000,    714669,    5597.66,           123,             123  
        25, 5000000,    684932,    7300.37,           131,             107  
        30, 6000000,    694525,    8639.88,           115,              93  

After

Num clients, Total [msg], Msgs/sec, Total [ms], Start Threads, End Threads
         1,  200000,    123763,    1616.32,            46,              73
         5, 1000000,    386101,    2590.66,            81,              90
        10, 2000000,    662691,    3018.54,            98,             104
        15, 3000000,    666223,    4503.86,           112,             113
        20, 4000000,    669681,    5973.89,           121,             113
        25, 5000000,    669255,    7471.86,           121,             105
        30, 6000000,    669121,    8967.61,           113,              92
COMMITS LOC+ LOC- AUTHOR
6 167 188 Aaron Stannard
3 93 10 Gregorius Soedharmo

You can see the full set of changes for Akka.NET v1.5.22 here.

1.5.21 May 28th 2024

Akka.NET v1.5.21 is a significant release for Akka.NET with a major feature additions and bug fixes.

... (truncated)

Commits
  • 1255fa1 Update RELEASE_NOTES.md for 1.5.22 release (#7224)
  • 7ce5030 Add cross-platform exception serialization support (#7222)
  • b73fe64 removed Google.Protobuf tooling from build script (#7220)
  • 1af99d3 added docs for Valve Akka.Streams stage (#7219)
  • f9666a1 Debugging racy ClusterShardingDeliveryGracefulShutdown MNTR spec (#7218)
  • 5956b82 Akka.Event: expose the EventStream on BusLogging for extensibility purpos...
  • 1f0d09c disable auto-downing on restart specs (#7214)
  • 3befea4 Bump Reactive.Streams from 1.0.2 to 1.0.4 (#7213)
  • eeeb59b v1.5.22 placeholder (#7211)
  • 7f7c357 Bump DotNetty.Handlers to 0.7.6 (#7198)
  • Additional commits viewable in compare view


Updates Akka.Persistence from 1.5.20 to 1.5.22

Release notes

Sourced from Akka.Persistence's releases.

Akka.NET v1.5.22

1.5.22 June 4th 2024

Akka.NET v1.5.22 is a patch release for Akka.NET with a few bug fixes and logging improvement.

On Resolving CVE-2018-8292

In order to resolve this CVE, we had to update DotNetty.Handlers to the latest version and unfortunately, this comes with about 10% network throughput performance hit. We are looking into possible replacement for DotNetty to improve this performance lost in the future (see [#7225](https://github.com/akkadotnet/akka.net/issues/7225) for updates).

Before

Num clients, Total [msg], Msgs/sec, Total [ms], Start Threads, End Threads  
         1,  200000,    125000,    1600.62,            46,              76  
         5, 1000000,    494072,    2024.04,            84,              95  
        10, 2000000,    713013,    2805.73,           103,             107  
        15, 3000000,    724463,    4141.38,           115,             115  
        20, 4000000,    714669,    5597.66,           123,             123  
        25, 5000000,    684932,    7300.37,           131,             107  
        30, 6000000,    694525,    8639.88,           115,              93  

After

Num clients, Total [msg], Msgs/sec, Total [ms], Start Threads, End Threads
         1,  200000,    123763,    1616.32,            46,              73
         5, 1000000,    386101,    2590.66,            81,              90
        10, 2000000,    662691,    3018.54,            98,             104
        15, 3000000,    666223,    4503.86,           112,             113
        20, 4000000,    669681,    5973.89,           121,             113
        25, 5000000,    669255,    7471.86,           121,             105
        30, 6000000,    669121,    8967.61,           113,              92
COMMITS LOC+ LOC- AUTHOR
6 167 188 Aaron Stannard
3 93 10 Gregorius Soedharmo

You can see the full set of changes for Akka.NET v1.5.22 here.

Bug Fixes and Improvements

... (truncated)

Changelog

Sourced from Akka.Persistence's changelog.

1.5.22 June 4th 2024

Akka.NET v1.5.22 is a patch release for Akka.NET with a few bug fixes and logging improvement.

On Resolving CVE-2018-8292

In order to resolve this CVE, we had to update DotNetty.Handlers to the latest version and unfortunately, this comes with about 10% network throughput performance hit. We are looking into possible replacement for DotNetty to improve this performance lost in the future (see [#7225](https://github.com/akkadotnet/akka.net/issues/7225) for updates).

Before

Num clients, Total [msg], Msgs/sec, Total [ms], Start Threads, End Threads  
         1,  200000,    125000,    1600.62,            46,              76  
         5, 1000000,    494072,    2024.04,            84,              95  
        10, 2000000,    713013,    2805.73,           103,             107  
        15, 3000000,    724463,    4141.38,           115,             115  
        20, 4000000,    714669,    5597.66,           123,             123  
        25, 5000000,    684932,    7300.37,           131,             107  
        30, 6000000,    694525,    8639.88,           115,              93  

After

Num clients, Total [msg], Msgs/sec, Total [ms], Start Threads, End Threads
         1,  200000,    123763,    1616.32,            46,              73
         5, 1000000,    386101,    2590.66,            81,              90
        10, 2000000,    662691,    3018.54,            98,             104
        15, 3000000,    666223,    4503.86,           112,             113
        20, 4000000,    669681,    5973.89,           121,             113
        25, 5000000,    669255,    7471.86,           121,             105
        30, 6000000,    669121,    8967.61,           113,              92
COMMITS LOC+ LOC- AUTHOR
6 167 188 Aaron Stannard
3 93 10 Gregorius Soedharmo

You can see the full set of changes for Akka.NET v1.5.22 here.

1.5.21 May 28th 2024

Akka.NET v1.5.21 is a significant release for Akka.NET with a major feature additions and bug fixes.

... (truncated)

Commits
  • 1255fa1 Update RELEASE_NOTES.md for 1.5.22 release (#7224)
  • 7ce5030 Add cross-platform exception serialization support (#7222)
  • b73fe64 removed Google.Protobuf tooling from build script (#7220)
  • 1af99d3 added docs for Valve Akka.Streams stage (#7219)
  • f9666a1 Debugging racy ClusterShardingDeliveryGracefulShutdown MNTR spec (#7218)
  • 5956b82 Akka.Event: expose the EventStream on BusLogging for extensibility purpos...
  • 1f0d09c disable auto-downing on restart specs (#7214)
  • 3befea4 Bump Reactive.Streams from 1.0.2 to 1.0.4 (#7213)
  • eeeb59b v1.5.22 placeholder (#7211)
  • 7f7c357 Bump DotNetty.Handlers to 0.7.6 (#7198)
  • Additional commits viewable in compare view


Updates Akka.Cluster.Sharding from 1.5.20 to 1.5.22

Release notes

Sourced from Akka.Cluster.Sharding's releases.

Akka.NET v1.5.22

1.5.22 June 4th 2024

Akka.NET v1.5.22 is a patch release for Akka.NET with a few bug fixes and logging improvement.

On Resolving CVE-2018-8292

In order to resolve this CVE, we had to update DotNetty.Handlers to the latest version and unfortunately, this comes with about 10% network throughput performance hit. We are looking into possible replacement for DotNetty to improve this performance lost in the future (see [#7225](https://github.com/akkadotnet/akka.net/issues/7225) for updates).

Before

Num clients, Total [msg], Msgs/sec, Total [ms], Start Threads, End Threads  
         1,  200000,    125000,    1600.62,            46,              76  
         5, 1000000,    494072,    2024.04,            84,              95  
        10, 2000000,    713013,    2805.73,           103,             107  
        15, 3000000,    724463,    4141.38,           115,             115  
        20, 4000000,    714669,    5597.66,           123,             123  
        25, 5000000,    684932,    7300.37,           131,             107  
        30, 6000000,    694525,    8639.88,           115,              93  

After

Num clients, Total [msg], Msgs/sec, Total [ms], Start Threads, End Threads
         1,  200000,    123763,    1616.32,            46,              73
         5, 1000000,    386101,    2590.66,            81,              90
        10, 2000000,    662691,    3018.54,            98,             104
        15, 3000000,    666223,    4503.86,           112,             113
        20, 4000000,    669681,    5973.89,           121,             113
        25, 5000000,    669255,    7471.86,           121,             105
        30, 6000000,    669121,    8967.61,           113,              92
COMMITS LOC+ LOC- AUTHOR
6 167 188 Aaron Stannard
3 93 10 Gregorius Soedharmo

You can see the full set of changes for Akka.NET v1.5.22 here.

Bug Fixes and Improvements

... (truncated)

Changelog

Sourced from Akka.Cluster.Sharding's changelog.

1.5.22 June 4th 2024

Akka.NET v1.5.22 is a patch release for Akka.NET with a few bug fixes and logging improvement.

On Resolving CVE-2018-8292

In order to resolve this CVE, we had to update DotNetty.Handlers to the latest version and unfortunately, this comes with about 10% network throughput performance hit. We are looking into possible replacement for DotNetty to improve this performance lost in the future (see [#7225](https://github.com/akkadotnet/akka.net/issues/7225) for updates).

Before

Num clients, Total [msg], Msgs/sec, Total [ms], Start Threads, End Threads  
         1,  200000,    125000,    1600.62,            46,              76  
         5, 1000000,    494072,    2024.04,            84,              95  
        10, 2000000,    713013,    2805.73,           103,             107  
        15, 3000000,    724463,    4141.38,           115,             115  
        20, 4000000,    714669,    5597.66,           123,             123  
        25, 5000000,    684932,    7300.37,           131,             107  
        30, 6000000,    694525,    8639.88,           115,              93  

After

Num clients, Total [msg], Msgs/sec, Total [ms], Start Threads, End Threads
         1,  200000,    123763,    1616.32,            46,              73
         5, 1000000,    386101,    2590.66,            81,              90
        10, 2000000,    662691,    3018.54,            98,             104
        15, 3000000,    666223,    4503.86,           112,             113
        20, 4000000,    669681,    5973.89,           121,             113
        25, 5000000,    669255,    7471.86,           121,             105
        30, 6000000,    669121,    8967.61,           113,              92
COMMITS LOC+ LOC- AUTHOR
6 167 188 Aaron Stannard
3 93 10 Gregorius Soedharmo

You can see the full set of changes for Akka.NET v1.5.22 here.

1.5.21 May 28th 2024

Akka.NET v1.5.21 is a significant release for Akka.NET with a major feature additions and bug fixes.

... (truncated)

Commits
  • 1255fa1 Update RELEASE_NOTES.md for 1.5.22 release (#7224)
  • 7ce5030 Add cross-platform exception serialization support (#7222)
  • b73fe64 removed Google.Protobuf tooling from build script (#7220)
  • 1af99d3 added docs for Valve Akka.Streams stage (#7219)
  • f9666a1 Debugging racy ClusterShardingDeliveryGracefulShutdown MNTR spec (#7218)
  • 5956b82 Akka.Event: expose the EventStream on BusLogging for extensibility purpos...
  • 1f0d09c disable auto-downing on restart specs (#7214)
  • 3befea4 Bump Reactive.Streams from 1.0.2 to 1.0.4 (#7213)
  • eeeb59b v1.5.22 placeholder (#7211)
  • 7f7c357 Bump DotNetty.Handlers to 0.7.6 (#7198)
  • Additional commits viewable in compare view


Updates Akka.Hosting.TestKit from 1.5.20 to 1.5.22

Release notes

Sourced from Akka.Hosting.TestKit's releases.

1.5.22

Update Akka.NET to 1.5.22Add log filtering extension method Filtering Logs In Akka.NET In Akka.NET 1.5.21%2C we introduced log filtering for log messages based on the LogSource or the content of a log message. Depending on your coding style%2C you can use this feature in Akka.Hosting in several ways.

  1. Using The LoggerConfigBuilder.WithLogFilter() method. The LoggerConfigBuilder.WithLogFilter() method lets you set up the LogFilterBuilder csharp builder.Services.AddAkka("MyActorSystem"%2C configurationBuilder => { configurationBuilder .ConfigureLoggers(loggerConfigBuilder => { loggerConfigBuilder.WithLogFilter(filterBuilder => { filterBuilder.ExcludeMessageContaining("Test")%3B })%3B })%3B })%3B

  2. Setting the loggerConfigBuilder.LogFilterBuilder property directly. csharp builder.Services.AddAkka("MyActorSystem"%2C configurationBuilder => { configurationBuilder .ConfigureLoggers(loggerConfigBuilder => { loggerConfigBuilder.LogFilterBuilder = new LogFilterBuilder()%3B loggerConfigBuilder.LogFilterBuilder.ExcludeMessageContaining("Test")%3B })%3B })%3B

Changelog

Sourced from Akka.Hosting.TestKit's changelog.

[1.5.22] / 4 June 2024

Filtering Logs In Akka.NET

In Akka.NET 1.5.21, we introduced log filtering for log messages based on the LogSource or the content of a log message. Depending on your coding style, you can use this feature in Akka.Hosting in several ways.

  1. Using The LoggerConfigBuilder.WithLogFilter() method.

    The LoggerConfigBuilder.WithLogFilter() method lets you set up the LogFilterBuilder

    builder.Services.AddAkka("MyActorSystem", configurationBuilder =>
    {
        configurationBuilder
            .ConfigureLoggers(loggerConfigBuilder =>
            {
                loggerConfigBuilder.WithLogFilter(filterBuilder =>
                {
                    filterBuilder.ExcludeMessageContaining("Test");
                });
            });
    });
    
  2. Setting the loggerConfigBuilder.LogFilterBuilder property directly.

    builder.Services.AddAkka("MyActorSystem", configurationBuilder =>
    {
        configurationBuilder
            .ConfigureLoggers(loggerConfigBuilder =>
            {
                loggerConfigBuilder.LogFilterBuilder = new LogFilterBuilder();
                loggerConfigBuilder.LogFilterBuilder.ExcludeMessageContaining("Test");
            });
    });
    
Commits


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 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)
Arkatufus commented 1 month ago

@dependabot recreate

dependabot[bot] commented 1 month ago

Looks like these dependencies are updatable in another way, so this is no longer needed.