Brendan Burns
27d706d21e
Add tests to #1618 ( #1621 )
...
* Refactor OidcTokenProvider to remove dependency on IdentityModel and improve token handling
* Improve OidcTokenProvider error handling and expiry setting
The constructor `OidcTokenProvider` now always sets the `_expiry`
field by calling `GetExpiryFromToken()`, regardless of whether
`_idToken` is null or empty, removing the previous check for a
non-empty `_idToken`.
The `GetExpiryFromToken` method has been updated to handle invalid
JWT token formats more gracefully. Instead of throwing an
`ArgumentException` when the token format is invalid or when the
'exp' claim is missing, the method now returns a default value.
The logic for parsing the JWT token and extracting the 'exp' claim
has been wrapped in a try-catch block. If any exception occurs
during this process, it is caught, and the method returns a default
value instead of throwing an exception.
* Refactor parts initialization inside try block
Moved the initialization of the `parts` variable, which splits the `_idToken` string, inside the `try` block. Removed the previous check for exactly three elements in the `parts` array and the default return value if the check failed.
* Add tests.
---------
Co-authored-by: Boshi Lian <farmer1992@gmail.com >
2025-04-17 10:13:07 -07:00
Rasmus Melchior Jacobsen
73b318ba34
Actually assign loaded cert when generating pfx ( #1609 )
...
* Actually assign loaded cert when generating pfx
* Enable tests that would have caught this issue
2025-01-20 20:06:35 -08:00
Boshi Lian
f7e7613d09
generate api v1.32 ( #1603 )
...
* generate based on v1.32
* bump ver
* Delete swagger.json.unprocessed
* Update target frameworks and SDK versions in project files
* Remove extra API endpoint from swagger.json
* Update .NET SDK version to 9.0.x and adjust package references
* happy build
* Enhance certificate handling for .NET 9.0 compatibility in CertUtils and KubernetesClientConfiguration
* Add mapping for V1beta1ResourceClaim to V1ResourceClaim in AutoMapper configurations
* Refactor certificate loading to improve compatibility with .NET 9.0
* Update package versions in Directory.Packages.props for improved compatibility and features
* Update Fractions package version to 7.3.0 for improved compatibility
2025-01-07 16:12:29 +01:00
Weihan Li
007ef8946c
init cpm support ( #1565 )
...
* feat: init cpm support
* remove dotnet-xunit DotNetCliToolReference
* use VersionOverride for compatibility
2024-06-15 21:41:28 -07:00
Boshi Lian
07a59e7e59
Update SDK version to 14.0 for Kubernetes 1.30 ( #1551 )
...
* Update KUBERNETES_BRANCH to v1.30.0 in csharp.settings
* Update version.json to 14.0
* Update SDK version to 14.0 for Kubernetes 1.30
* fix csharp naming conflict
* drop support of net7
* remove unused comment
2024-04-28 17:00:18 -07:00
Boshi Lian
cca266e6ae
Add CultureInfo.InvariantCulture to floating point number formatting ( #1541 )
...
* Add CultureInfo.InvariantCulture to floating point number formatting
* Remove unused using statement in KubernetesYamlTests.cs
2024-03-27 15:30:26 -07:00
dependabot[bot]
d2f6e26ee0
Bump System.IO.Abstractions.TestingHelpers from 20.0.4 to 20.0.15 ( #1505 )
...
Bumps [System.IO.Abstractions.TestingHelpers](https://github.com/TestableIO/System.IO.Abstractions ) from 20.0.4 to 20.0.15.
- [Release notes](https://github.com/TestableIO/System.IO.Abstractions/releases )
- [Commits](https://github.com/TestableIO/System.IO.Abstractions/compare/v20.0.4...v20.0.15 )
---
updated-dependencies:
- dependency-name: System.IO.Abstractions.TestingHelpers
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>
2024-01-22 21:19:09 +01:00
dependabot[bot]
f763a4bf6a
Bump xunit from 2.6.5 to 2.6.6 ( #1501 )
...
Bumps [xunit](https://github.com/xunit/xunit ) from 2.6.5 to 2.6.6.
- [Commits](https://github.com/xunit/xunit/compare/2.6.5...2.6.6 )
---
updated-dependencies:
- dependency-name: xunit
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>
2024-01-15 11:42:49 +01:00
Boshi Lian
f32cf9eab3
fix warnings for net8 ( #1481 )
...
* fix ca2007
* xUnit1031
* fix ca2007
* fix ca2007
* remove deprecated ctor
* fix xUnit1031
* fix missing doc
* fix missing dispose
* fix ex
2024-01-09 18:05:26 +01:00
dependabot[bot]
f75c4aa484
Bump xunit from 2.6.4 to 2.6.5 ( #1494 )
...
Bumps [xunit](https://github.com/xunit/xunit ) from 2.6.4 to 2.6.5.
- [Commits](https://github.com/xunit/xunit/compare/2.6.4...2.6.5 )
---
updated-dependencies:
- dependency-name: xunit
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>
2024-01-06 13:14:14 +01:00
dependabot[bot]
61f0bf7b34
Bump xunit.runner.visualstudio from 2.5.5 to 2.5.6 ( #1490 )
...
Bumps [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit ) from 2.5.5 to 2.5.6.
- [Release notes](https://github.com/xunit/visualstudio.xunit/releases )
- [Commits](https://github.com/xunit/visualstudio.xunit/compare/2.5.5...2.5.6 )
---
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>
2024-01-06 08:58:43 +01:00
dependabot[bot]
15ca16be88
Bump xunit from 2.6.3 to 2.6.4 ( #1489 )
...
Bumps [xunit](https://github.com/xunit/xunit ) from 2.6.3 to 2.6.4.
- [Commits](https://github.com/xunit/xunit/compare/2.6.3...2.6.4 )
---
updated-dependencies:
- dependency-name: xunit
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>
2023-12-31 10:15:04 +01:00
dependabot[bot]
0e51ed7697
Bump xunit.runner.visualstudio from 2.5.4 to 2.5.5 ( #1474 )
...
Bumps [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit ) from 2.5.4 to 2.5.5.
- [Release notes](https://github.com/xunit/visualstudio.xunit/releases )
- [Commits](https://github.com/xunit/visualstudio.xunit/compare/2.5.4...2.5.5 )
---
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>
2023-12-13 19:12:32 +01:00
dependabot[bot]
3b698b07b5
Bump xunit from 2.6.2 to 2.6.3 ( #1478 )
...
Bumps [xunit](https://github.com/xunit/xunit ) from 2.6.2 to 2.6.3.
- [Commits](https://github.com/xunit/xunit/compare/2.6.2...2.6.3 )
---
updated-dependencies:
- dependency-name: xunit
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>
2023-12-11 15:48:52 +01:00
dependabot[bot]
30ef3c7e4e
Bump System.IO.Abstractions.TestingHelpers from 19.2.87 to 20.0.4 ( #1475 )
...
Bumps [System.IO.Abstractions.TestingHelpers](https://github.com/TestableIO/System.IO.Abstractions ) from 19.2.87 to 20.0.4.
- [Release notes](https://github.com/TestableIO/System.IO.Abstractions/releases )
- [Commits](https://github.com/TestableIO/System.IO.Abstractions/compare/v19.2.87...v20.0.4 )
---
updated-dependencies:
- dependency-name: System.IO.Abstractions.TestingHelpers
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>
2023-12-11 15:46:28 +01:00
Philip Sanetra
109ca1de0d
Improve docs and naming of LeaderElector methods. ( #1468 )
...
* Improve docs and naming of `LeaderElector` methods. Also introduce `LeaderElector.RunAndTryToHoldLeadershipForeverAsync()`
* fix build
---------
Co-authored-by: Boshi Lian <farmer1992@gmail.com >
2023-12-06 21:24:40 +01:00
Manuel Menegazzo
15ad5bdfc4
Move to net8.0 ( #1463 )
...
* Added net8.0 to the dotnet-version array used by actions
* Changed framework version in Directory.Build.props
* Removed unsed nuget
* Update codeql-analysis.yml
* Added net8.0 target framework
* Updated code analyzer version to match net8.0
* Added net8.0 to tests
* Updated sdk version
* Updated version.json
* Fixed build for non windows machines
* Updated references in Directory.Build.targets
* Added conditional exception handling to WatchServerDisconnect test case
* Added missing project to solution
2023-12-01 11:49:56 +01:00
dependabot[bot]
ade7276733
Bump Moq from 4.20.69 to 4.20.70 ( #1465 )
...
Bumps [Moq](https://github.com/moq/moq ) from 4.20.69 to 4.20.70.
- [Release notes](https://github.com/moq/moq/releases )
- [Changelog](https://github.com/devlooped/moq/blob/main/CHANGELOG.md )
- [Commits](https://github.com/moq/moq/compare/v4.20.69...v4.20.70 )
---
updated-dependencies:
- dependency-name: Moq
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>
2023-12-01 00:32:23 +01:00
dependabot[bot]
a0c7d49103
Bump Microsoft.Extensions.Logging from 7.0.0 to 8.0.0 ( #1451 )
...
Bumps [Microsoft.Extensions.Logging](https://github.com/dotnet/runtime ) from 7.0.0 to 8.0.0.
- [Release notes](https://github.com/dotnet/runtime/releases )
- [Commits](https://github.com/dotnet/runtime/compare/v7.0.0...v8.0.0 )
---
updated-dependencies:
- dependency-name: Microsoft.Extensions.Logging
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>
2023-11-24 01:25:10 +01:00
dependabot[bot]
04694b5387
Bump xunit from 2.6.1 to 2.6.2 ( #1460 )
...
Bumps [xunit](https://github.com/xunit/xunit ) from 2.6.1 to 2.6.2.
- [Commits](https://github.com/xunit/xunit/compare/2.6.1...2.6.2 )
---
updated-dependencies:
- dependency-name: xunit
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>
2023-11-23 16:42:48 +01:00
dependabot[bot]
e888e46a8e
Bump xunit.runner.visualstudio from 2.5.3 to 2.5.4 ( #1459 )
...
Bumps [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit ) from 2.5.3 to 2.5.4.
- [Release notes](https://github.com/xunit/visualstudio.xunit/releases )
- [Commits](https://github.com/xunit/visualstudio.xunit/compare/2.5.3...2.5.4 )
---
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>
2023-11-21 19:36:15 +01:00
dependabot[bot]
3abbbf5e19
Bump System.IO.Abstractions.TestingHelpers from 19.2.69 to 19.2.87 ( #1456 )
...
Bumps [System.IO.Abstractions.TestingHelpers](https://github.com/TestableIO/System.IO.Abstractions ) from 19.2.69 to 19.2.87.
- [Release notes](https://github.com/TestableIO/System.IO.Abstractions/releases )
- [Commits](https://github.com/TestableIO/System.IO.Abstractions/compare/v19.2.69...v19.2.87 )
---
updated-dependencies:
- dependency-name: System.IO.Abstractions.TestingHelpers
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>
2023-11-21 19:32:57 +01:00
dependabot[bot]
fd0de4d30f
Bump Microsoft.NET.Test.Sdk from 17.7.2 to 17.8.0 ( #1447 )
...
Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest ) from 17.7.2 to 17.8.0.
- [Release notes](https://github.com/microsoft/vstest/releases )
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md )
- [Commits](https://github.com/microsoft/vstest/compare/v17.7.2...v17.8.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>
2023-11-10 19:40:27 +01:00
dependabot[bot]
15e7fda221
Bump xunit from 2.5.3 to 2.6.1 ( #1444 )
...
Bumps [xunit](https://github.com/xunit/xunit ) from 2.5.3 to 2.6.1.
- [Commits](https://github.com/xunit/xunit/compare/2.5.3...2.6.1 )
---
updated-dependencies:
- dependency-name: xunit
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>
2023-11-06 15:47:03 +01:00
dependabot[bot]
f55d1faf31
Bump xunit from 2.5.2 to 2.5.3 ( #1435 )
...
Bumps [xunit](https://github.com/xunit/xunit ) from 2.5.2 to 2.5.3.
- [Commits](https://github.com/xunit/xunit/commits )
---
updated-dependencies:
- dependency-name: xunit
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>
2023-10-17 13:48:14 +02:00
dependabot[bot]
2cc11e2b9a
Bump xunit from 2.5.0 to 2.5.2 ( #1432 )
...
Bumps [xunit](https://github.com/xunit/xunit ) from 2.5.0 to 2.5.2.
- [Commits](https://github.com/xunit/xunit/compare/2.5.0...2.5.2 )
---
updated-dependencies:
- dependency-name: xunit
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>
2023-10-16 21:48:00 +02:00
dependabot[bot]
c670531e2f
Bump xunit.runner.visualstudio from 2.5.1 to 2.5.3 ( #1431 )
...
Bumps [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit ) from 2.5.1 to 2.5.3.
- [Release notes](https://github.com/xunit/visualstudio.xunit/releases )
- [Commits](https://github.com/xunit/visualstudio.xunit/compare/2.5.1...2.5.3 )
---
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>
2023-10-13 13:20:28 +02:00
Boshi Lian
da71e32d13
align auth provider with go-client ( #1415 )
...
* remove unsupport provider
* fix build
* fix missing
* rm unused
2023-10-02 08:38:46 -07:00
Boshi Lian
013fc6e06f
embed KubernetesClient.Models and KubernetesClient.Basic into client sdk ( #1407 )
...
* cleanup using
* cleanup classic
* clean up nuget
* bump ver
* fix pipeline
* remove commit by accident
2023-09-26 11:03:12 -07:00
dependabot[bot]
c744568b6c
Bump xunit.runner.visualstudio from 2.5.0 to 2.5.1 ( #1401 )
...
Bumps [xunit.runner.visualstudio](https://github.com/xunit/xunit ) from 2.5.0 to 2.5.1.
- [Commits](https://github.com/xunit/xunit/compare/2.5.0...2.5.1 )
---
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>
2023-09-19 00:46:49 -07:00
Boshi Lian
a3321e03c7
align with go json unmarshal ( #1397 )
2023-09-07 13:04:58 -07:00
Boshi Lian
d4dea36ea0
support for rfc3339 nano ( #1351 )
...
* init support for rfc3339 nano
* add test cases
* impl trimming
* add 1-8 digits support
* happy build
2023-08-31 08:48:49 -07:00
dependabot[bot]
0cbfff47f2
Bump System.IO.Abstractions.TestingHelpers from 19.2.67 to 19.2.69 ( #1389 )
...
Bumps [System.IO.Abstractions.TestingHelpers](https://github.com/TestableIO/System.IO.Abstractions ) from 19.2.67 to 19.2.69.
- [Release notes](https://github.com/TestableIO/System.IO.Abstractions/releases )
- [Commits](https://github.com/TestableIO/System.IO.Abstractions/compare/v19.2.67...v19.2.69 )
---
updated-dependencies:
- dependency-name: System.IO.Abstractions.TestingHelpers
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>
2023-08-30 17:48:47 -07:00
dependabot[bot]
e152ba7750
Bump Microsoft.NET.Test.Sdk from 17.7.1 to 17.7.2 ( #1386 )
...
Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest ) from 17.7.1 to 17.7.2.
- [Release notes](https://github.com/microsoft/vstest/releases )
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md )
- [Commits](https://github.com/microsoft/vstest/compare/v17.7.1...v17.7.2 )
---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
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>
2023-08-29 06:37:21 -07:00
dependabot[bot]
fc993bd76d
Bump Microsoft.NET.Test.Sdk from 17.7.0 to 17.7.1 ( #1375 )
...
Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest ) from 17.7.0 to 17.7.1.
- [Release notes](https://github.com/microsoft/vstest/releases )
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md )
- [Commits](https://github.com/microsoft/vstest/compare/v17.7.0...v17.7.1 )
---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
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>
2023-08-25 12:00:52 -07:00
dependabot[bot]
90111d2803
Bump System.IO.Abstractions.TestingHelpers from 19.2.64 to 19.2.67 ( #1383 )
...
Bumps [System.IO.Abstractions.TestingHelpers](https://github.com/TestableIO/System.IO.Abstractions ) from 19.2.64 to 19.2.67.
- [Release notes](https://github.com/TestableIO/System.IO.Abstractions/releases )
- [Commits](https://github.com/TestableIO/System.IO.Abstractions/compare/v19.2.64...v19.2.67 )
---
updated-dependencies:
- dependency-name: System.IO.Abstractions.TestingHelpers
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>
2023-08-25 08:40:53 -07:00
dependabot[bot]
90bd5e980a
Bump FluentAssertions from 6.11.0 to 6.12.0 ( #1382 )
...
Bumps [FluentAssertions](https://github.com/fluentassertions/fluentassertions ) from 6.11.0 to 6.12.0.
- [Release notes](https://github.com/fluentassertions/fluentassertions/releases )
- [Changelog](https://github.com/fluentassertions/fluentassertions/blob/develop/AcceptApiChanges.ps1 )
- [Commits](https://github.com/fluentassertions/fluentassertions/compare/6.11.0...6.12.0 )
---
updated-dependencies:
- dependency-name: FluentAssertions
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>
2023-08-24 07:28:21 -07:00
dependabot[bot]
7e3420adde
Bump System.IO.Abstractions.TestingHelpers from 19.2.51 to 19.2.64 ( #1381 )
...
Bumps [System.IO.Abstractions.TestingHelpers](https://github.com/TestableIO/System.IO.Abstractions ) from 19.2.51 to 19.2.64.
- [Release notes](https://github.com/TestableIO/System.IO.Abstractions/releases )
- [Commits](https://github.com/TestableIO/System.IO.Abstractions/compare/v19.2.51...v19.2.64 )
---
updated-dependencies:
- dependency-name: System.IO.Abstractions.TestingHelpers
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>
2023-08-23 08:55:28 -07:00
dependabot[bot]
905a8803c2
Bump Moq from 4.20.2 to 4.20.69 ( #1368 )
...
Bumps [Moq](https://github.com/moq/moq ) from 4.20.2 to 4.20.69.
- [Release notes](https://github.com/moq/moq/releases )
- [Changelog](https://github.com/moq/moq/blob/main/CHANGELOG.md )
- [Commits](https://github.com/moq/moq/compare/v4.20.2...v4.20.69 )
---
updated-dependencies:
- dependency-name: Moq
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>
2023-08-14 15:57:21 -07:00
dependabot[bot]
e64c372e34
Bump Moq from 4.18.4 to 4.20.2 ( #1365 )
...
Bumps [Moq](https://github.com/moq/moq ) from 4.18.4 to 4.20.2.
- [Release notes](https://github.com/moq/moq/releases )
- [Changelog](https://github.com/moq/moq/blob/main/CHANGELOG.md )
- [Commits](https://github.com/moq/moq/compare/v4.18.4...v4.20.2 )
---
updated-dependencies:
- dependency-name: Moq
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>
2023-08-09 05:33:51 -07:00
dependabot[bot]
4a460e3c52
Bump Microsoft.NET.Test.Sdk from 17.6.3 to 17.7.0 ( #1361 )
...
Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest ) from 17.6.3 to 17.7.0.
- [Release notes](https://github.com/microsoft/vstest/releases )
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md )
- [Commits](https://github.com/microsoft/vstest/compare/v17.6.3...v17.7.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>
2023-08-07 17:20:13 -07:00
dependabot[bot]
6521cc02f7
Bump System.IO.Abstractions.TestingHelpers from 19.2.29 to 19.2.51 ( #1360 )
...
Bumps [System.IO.Abstractions.TestingHelpers](https://github.com/TestableIO/System.IO.Abstractions ) from 19.2.29 to 19.2.51.
- [Release notes](https://github.com/TestableIO/System.IO.Abstractions/releases )
- [Commits](https://github.com/TestableIO/System.IO.Abstractions/compare/v19.2.29...v19.2.51 )
---
updated-dependencies:
- dependency-name: System.IO.Abstractions.TestingHelpers
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>
2023-08-01 16:54:06 -07:00
Boshi Lian
149eea642d
fix warnings by xunit ( #1352 )
2023-07-30 08:02:01 -07:00
Ivan Josipovic
d1ba0aae72
fix: yaml with merge ( #1332 )
...
* fix: yaml with merge
* chore: cleanup
2023-07-27 04:44:08 -07:00
dependabot[bot]
02486aea3d
Bump xunit.runner.visualstudio from 2.4.5 to 2.5.0 ( #1334 )
...
Bumps [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit ) from 2.4.5 to 2.5.0.
- [Release notes](https://github.com/xunit/visualstudio.xunit/releases )
- [Commits](https://github.com/xunit/visualstudio.xunit/compare/v2.4.5...2.5.0 )
---
updated-dependencies:
- dependency-name: xunit.runner.visualstudio
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>
2023-07-13 01:18:08 -07:00
dependabot[bot]
702f818d30
Bump xunit from 2.4.2 to 2.5.0 ( #1333 )
...
Bumps [xunit](https://github.com/xunit/xunit ) from 2.4.2 to 2.5.0.
- [Commits](https://github.com/xunit/xunit/compare/2.4.2...2.5.0 )
---
updated-dependencies:
- dependency-name: xunit
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>
2023-07-13 00:44:09 -07:00
dependabot[bot]
cacda9e879
Bump Microsoft.NET.Test.Sdk from 17.6.2 to 17.6.3 ( #1329 )
...
Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest ) from 17.6.2 to 17.6.3.
- [Release notes](https://github.com/microsoft/vstest/releases )
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md )
- [Commits](https://github.com/microsoft/vstest/compare/v17.6.2...v17.6.3 )
---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
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>
2023-07-09 03:05:04 -07:00
dependabot[bot]
ba1fb2c046
Bump Microsoft.NET.Test.Sdk from 17.6.0 to 17.6.2 ( #1317 )
...
Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest ) from 17.6.0 to 17.6.2.
- [Release notes](https://github.com/microsoft/vstest/releases )
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md )
- [Commits](https://github.com/microsoft/vstest/compare/v17.6.0...v17.6.2 )
---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
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>
2023-06-07 07:10:13 -07:00
dependabot[bot]
9ce50942a7
Bump System.Reactive from 5.0.0 to 6.0.0 ( #1306 )
...
Bumps [System.Reactive](https://github.com/dotnet/reactive ) from 5.0.0 to 6.0.0.
- [Release notes](https://github.com/dotnet/reactive/releases )
- [Commits](https://github.com/dotnet/reactive/commits )
---
updated-dependencies:
- dependency-name: System.Reactive
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>
2023-05-19 11:20:30 -07:00
dependabot[bot]
5165a1f2cd
Bump System.IO.Abstractions.TestingHelpers from 19.2.26 to 19.2.29 ( #1305 )
...
Bumps [System.IO.Abstractions.TestingHelpers](https://github.com/TestableIO/System.IO.Abstractions ) from 19.2.26 to 19.2.29.
- [Release notes](https://github.com/TestableIO/System.IO.Abstractions/releases )
- [Commits](https://github.com/TestableIO/System.IO.Abstractions/compare/v19.2.26...v19.2.29 )
---
updated-dependencies:
- dependency-name: System.IO.Abstractions.TestingHelpers
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>
2023-05-18 09:36:35 -07:00