Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 20, 2026

Updated CsToml from 1.8.0 to 1.8.1.

Release notes

Sourced from CsToml's releases.

1.8.1

What's Changed

New Contributors

Full Changelog: prozolic/CsToml@v1.8.0...v1.8.1

Commits viewable in compare view.

Updated Dunet from 1.11.3 to 1.12.0.

Release notes

Sourced from Dunet's releases.

1.12.0

What's Changed

[Union]
public partial record Option<T>
{
    // An implicit conversion from `T` to `Some` is now generated.
    public partial record Some(T Value);
    public partial record None;
}

Packages

https://www.nuget.org/packages/Dunet/1.12.0

Full Changelog

domn1995/dunet@v1.11.4...v1.12.0

1.11.4

What's Changed

Packages

https://www.nuget.org/packages/Dunet/1.11.4

Full Changelog

domn1995/dunet@v1.11.3...v1.11.4

New Contributors

Commits viewable in compare view.

Updated Fabulous.AST from 1.9.0 to 1.10.0.

Release notes

Sourced from Fabulous.AST's releases.

1.10.0

Changed

Commits viewable in compare view.

Updated Foundatio.Mediator from 1.0.0-rc.4 to 1.0.0-rc.6.

Release notes

Sourced from Foundatio.Mediator's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated FSharp.Core from 10.0.101 to 10.0.102.

Release notes

Sourced from FSharp.Core's releases.

10.0.102-sb1

You can build .NET 10.0 from the repository by cloning the release tag v10.0.102-sb1 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

Commits viewable in compare view.

Updated FSharp.SystemTextJson from 1.3.13 to 1.4.36.

Release notes

Sourced from FSharp.SystemTextJson's releases.

1.4.36

  • #​203: fix enum-like unions mistakenly using PropertyNamingPolicy when not in property name position.
  • #​203: fix enum-like unions not using PropertyNamingCaseInsensitive or UnionTagCaseInsensitive depending on position.
  • #​204: fix enum-like unions serialized with an extraneous field name.

1.4

  • #​177: Support enum-like unions (ie unions where no cases have fields) as key for maps and dictionaries.
  • #​180: In WithOverrides, allow using typedefof to override generic types.
  • #​181: Add WithOverrideMembers option to add JsonNameAttributes to given record fields or union cases.
  • #​192: Update dependency on System.Text.Json to 6.0.10.
  • #​195: Fix JsonNameAttribute's PropertyTargets so that it can be applied to cases with arguments when compiling with F# 9.
  • #​198: Improve performance of type comparisons.
  • #​201: Reduce memory allocations when serializing or deserializing tuples and struct tuples with 2, 3 or 4 items.

Commits viewable in compare view.

Updated Fun.Blazor from 4.1.9 to 4.1.10.

Updated JsonSchema.Net from 8.0.4 to 8.0.5.

Release notes

Sourced from JsonSchema.Net's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated LanguageExt.Core from 5.0.0-beta-65 to 5.0.0-beta-77.

Release notes

Sourced from LanguageExt.Core's releases.

5.0.0-beta-77

The core SourceT<M> has improvements:

  • The | operator which takes the left-hand stream and right-hand stream and merges them into a single stream can now handle errors emitted from either stream and propagate it up through the reducer. Your M type must support Fallible<M> for this to work.
  • I have rewritten the internals of StreamT.lift(Channel) to use the new Monad.Recur functionality - this removes any risk of stack-overflows with your bespoke M types (assuming you've implemented Monad.Recur correctly.

5.0.0-beta-69

This question was raised where a StreamT fold was not terminating. The issue was slightly deeper than I initially thought. SourceT took a different approach to terminating a reducer than Source. SourceT used M.Pure as a terminating value whereas Source has a dedicated structure, Reduced, which has a Continue flag, indicating whether any reducer is complete or not.

I thought M.Pure was enough to terminate a stream, but it wasn't sufficient, I made a mistake on that one. So, I've updated all of the SourceT reducers to now return K<M, Reduced<A>> which allows streams like SourceT.forever to spot when a 'downstream' reducer has ended the stream and can therefore terminate, rather than continue forever heating up the processor.

StreamT is still completely without any form of decent test coverage, so still be cautious using it.

There are now four reducing methods on StreamT which allow for different return values in the reducer function:

  • S - just the pure reduced value
  • K<M, A> - the lifted reduced value
  • Reduced<S> - the pure reduced value with the Continue flag (in case you want to use this in other reducers)
  • K<M ,Reduced<S>> - the lifted reduced value with the Continue flag (in case you want to use this in other reducers)
public K<M, S> Reduce<S>(S state, Reducer<A, S> reducer) =>
    ReduceM(state, (s, x) => M.Pure(reducer(s, x)));

public K<M, S> FoldReduce<S>(S state, Func<S, A, S> reducer) =>
    ReduceM(state, (s, x) => M.Pure(Reduced.Continue(reducer(s, x))));

public K<M, S> ReduceM<S>(S state, ReducerM<M, A, S> reducer) =>
    ReduceInternalM(state, (s, mx) => mx.Bind(x => reducer(s, x))).Map(r => r.Value);

public K<M, S> FoldReduceM<S>(S state, Func<S, A, K<M, S>> reducer) =>
    ReduceInternalM(state, (s, mx) => mx.Bind(x => reducer(s, x).Map(Reduced.Continue))).Map(r => r.Value);

5.0.0-beta-67

The support for generalised monad tail-recursion release that I did in the early hours of Christmas Day needed some support functions, as also requested here, so I have added the following functions to the Monad module:

Function Behaviour
Monad.forever Repeatedly runs a monad's effect
Monad.replicate Runs a monad's effect n times, collecting the results in an Iterable<A>
Monad.accumWhile Repeatedly runs a monad's effect while the predicate returns true, collecting the results in an Iterable<A>
Monad.accumWhileM Repeatedly runs a monad's effect while the monadic predicate returns true, collecting the results in
Monad.accumUntil Repeatedly runs a monad's effect until the predicate returns true, collecting the results in an Iterable<A>
Monad.accumUntilM Repeatedly runs a monad's effect until the monadic predicate returns true, collecting the results in an Iterable<A>

The functions themselves are quite good demonstrations of Monad.recur, so I have pasted the source-code below just FYI:

/// <summary>
/// This is equivalent to the infinite loop below without the stack-overflow issues:
///
///     K〈M, A〉go =>
///         ma.Bind(_ => go);
/// 
/// </summary>
/// <param name="ma">Computation to recursively run</param>
/// <typeparam name="M">Monad</typeparam>
/// <typeparam name="A">Bound value type</typeparam>
/// <typeparam name="B">'Result' type, there will never be a result of `B`, but the monad rules may exit the loop
/// with an alternative value; and so `B` is still valid</typeparam>
/// <returns>A looped computation</returns>
[Pure]
public static K<M, A> forever<M, A>(K<M, A> ma)
    where M : Monad<M> =>
    forever<M, A, A>(ma);

/// <summary>
/// This is equivalent to the infinite loop below without the stack-overflow issues:
///
///     K〈M, A〉go =>
///         ma.Bind(_ => go);
/// 
/// </summary>
/// <param name="ma">Monadic computation to recursively run</param>
/// <typeparam name="M">Monad</typeparam>
/// <typeparam name="A">Bound value type</typeparam>
/// <typeparam name="B">'Result' type, there will never be a result of `B`, but the monad rules may exit the loop
/// with an alternative value; and so `B` is still valid</typeparam>
/// <returns>A looped computation</returns>
[Pure]
public static K<M, B> forever<M, A, B>(K<M, A> ma) 
    where M : Monad<M> => 
    recur<M, A, B>(default!, _ => ma.Map(_ => Next<A, B>.UnsafeDefault));

 ... (truncated)

## 5.0.0-beta-66

Fix for:

* SourceT Skip and Take issues: https://github.com/louthy/language-ext/issues/1503
* Difference between the behaviours of FoldWhile and FoldWhileIO: https://github.com/louthy/language-ext/discussions/1527

A simple update to transducer-lifting in `SourceT` which fixes issues seen with `Skip`, `Take`, and `Fold*`

Commits viewable in [compare view](https://github.com/louthy/language-ext/commits/v5.0.0-beta-77).
</details>

Updated [Microsoft.AspNetCore.Components.WebAssembly.DevServer](https://github.com/dotnet/dotnet) from 10.0.1 to 10.0.2.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.AspNetCore.Components.WebAssembly.DevServer's releases](https://github.com/dotnet/dotnet/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/dotnet/dotnet/commits).
</details>

Updated [Reqnroll](https://github.com/reqnroll/Reqnroll) from 3.3.0 to 3.3.2.

<details>
<summary>Release notes</summary>

_Sourced from [Reqnroll's releases](https://github.com/reqnroll/Reqnroll/releases)._

## 3.3.2

## Bug fixes:

* Fix: Partially defined CI Environment variables (missing relevant environment variables) cause missing Meta envelope in Cucumber Messages report and Javascript errors in HTML report. (#​990)
* Fix: Visual Studio Test Explorer does not navigate to the correct source line for MsTest v4 tests when 'ReqnrollUseIntermediateOutputPathForCodeBehind' is enabled. (#​997)
* Fix: Visual Studio Test Explorer does not navigate to the correct source line for TUnit tests. (#​997)

*Contributors of this release (in alphabetical order):* @​clrudolphi, @​gasparnagy

## 3.3.1

## Bug fixes:

* Fix: Upgrading to 3.3.0 causes build error with SpecFlowCompatibility (NuGet package Reqnroll.SpecFlowCompatibility issue) (#​970)
* Fix: IGeneratorPlugin interface could not be found after upgrading to the Reqnroll 3.3.0 (NuGet package Reqnroll.CustomPlugin issue) (#​972)
* Fix: Authors field of Reqnroll.Autofac package is incorrect (#​979)
* Fix: Referencing step definitions from other assembly/project not working because `reqnroll.json` config file is not copied to the output folder (#​985)

*Contributors of this release (in alphabetical order):* @​304NotModified, @​Code-Grump, @​gasparnagy

Commits viewable in [compare view](https://github.com/reqnroll/Reqnroll/compare/v3.3.0...v3.3.2).
</details>

Updated [System.CommandLine](https://github.com/dotnet/dotnet) from 2.0.1 to 2.0.2.

<details>
<summary>Release notes</summary>

_Sourced from [System.CommandLine's releases](https://github.com/dotnet/dotnet/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/dotnet/dotnet/commits).
</details>

Updated System.Text.Json from 9.0.0 to 9.0.12.

Updated [Verify.Expecto](https://github.com/VerifyTests/Verify) from 31.9.2 to 31.9.4.

<details>
<summary>Release notes</summary>

_Sourced from [Verify.Expecto's releases](https://github.com/VerifyTests/Verify/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/VerifyTests/Verify/commits).
</details>

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-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions


</details>

Bumps CsToml from 1.8.0 to 1.8.1
Bumps Dunet from 1.11.3 to 1.12.0
Bumps Fabulous.AST from 1.9.0 to 1.10.0
Bumps Foundatio.Mediator from 1.0.0-rc.4 to 1.0.0-rc.6
Bumps FSharp.Core from 10.0.101 to 10.0.102
Bumps FSharp.SystemTextJson from 1.3.13 to 1.4.36
Bumps Fun.Blazor from 4.1.9 to 4.1.10
Bumps JsonSchema.Net from 8.0.4 to 8.0.5
Bumps LanguageExt.Core from 5.0.0-beta-65 to 5.0.0-beta-77
Bumps Microsoft.AspNetCore.Components.WebAssembly.DevServer from 10.0.1 to 10.0.2
Bumps Reqnroll from 3.3.0 to 3.3.2
Bumps System.CommandLine from 2.0.1 to 2.0.2
Bumps System.Text.Json from 9.0.0 to 9.0.12
Bumps Verify.Expecto from 31.9.2 to 31.9.4

---
updated-dependencies:
- dependency-name: CsToml
  dependency-version: 1.8.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Dunet
  dependency-version: 1.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: Fabulous.AST
  dependency-version: 1.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: Foundatio.Mediator
  dependency-version: 1.0.0-rc.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: FSharp.Core
  dependency-version: 10.0.102
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: FSharp.SystemTextJson
  dependency-version: 1.4.36
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: Fun.Blazor
  dependency-version: 4.1.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: JsonSchema.Net
  dependency-version: 8.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: LanguageExt.Core
  dependency-version: 5.0.0-beta-77
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.AspNetCore.Components.WebAssembly.DevServer
  dependency-version: 10.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Reqnroll
  dependency-version: 3.3.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: System.CommandLine
  dependency-version: 2.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: System.Text.Json
  dependency-version: 9.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Verify.Expecto
  dependency-version: 31.9.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file dotnet labels Jan 20, 2026
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 26, 2026

Superseded by #396.

@dependabot dependabot bot closed this Jan 26, 2026
@dependabot dependabot bot deleted the dependabot/nuget/build/nuget-dependencies-3c41d50f4e branch January 26, 2026 03:30
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 dotnet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants