Releases: reactiveui/Akavache
Release list
13.0.0
🗞️ What's Changed
💥 Breaking Changes
- 7f85316 refactor!: adopt the Sharp analyzer set across the repo (#1226) @glennawatson
- 879c4a8 feat!: add ReactiveUI.Primitives support (#1227) @glennawatson
🧹 General Changes
- c323802 chore(renovate): group related dependency cohorts (#1221) @glennawatson
📦 Dependencies
- aa83f59 chore(deps): update dependency verify.tunit to 31.28.0 (#1224) renovate[bot]
- 7a280a6 chore(deps): update dependency microsoft.net.test.sdk to 18.7.0 (#1212) renovate[bot]
- f81c684 chore(deps): update akavache to 11.5.1 (#1206) renovate[bot]
- c8115cd chore(deps): update dependency microsoft.testing.platform.msbuild to 2.3.3 (#1222) renovate[bot]
- 5ab9ec1 chore(deps): update dependency microsoft.net.test.sdk to 18.8.1 (#1217) renovate[bot]
- 55a3e4b chore(deps): update dependency verify.tunit to 31.27.0 (#1223) renovate[bot]
- 7b2b0c6 chore(deps): update reactiveui to 3.1.0 (#1209) renovate[bot]
- 4ad9728 chore(deps): update dependency system.reactive to v7 (#1220) renovate[bot]
- 32452d7 chore(deps): update dependency microsoft.testing.platform.msbuild to 2.3.2 (#1216) renovate[bot]
- a4e18cc chore(deps): update dependency microsoft.sourcelink.github to 10.0.301 (#1218) renovate[bot]
- cce3190 chore(deps): update actions/setup-dotnet action to v6 (#1219) renovate[bot]
- cbce57e chore(deps): update dependency verify.tunit to 31.24.1 (#1213) renovate[bot]
- de294b3 chore(deps): update dependency microsoft.testing.platform.msbuild to 2.3.1 (#1215) renovate[bot]
- b8dd588 chore(deps): update microsoft.testing (#1214) renovate[bot]
- 8f118ca chore(deps): update microsoft.windows (#1208) renovate[bot]
- c05a747 chore(deps): update microsoft.testing to 18.8.0 (#1207) renovate[bot]
- 50a0756 chore(deps): update .net test stack to 31.19.1 (#1205) renovate[bot]
- c9fd719 chore(deps): update .net test stack to 31.20.0 (#1211) renovate[bot]
🔗 Full Changelog: v12.1.1...v13.0.0
🙌 Contributions
💖 Thanks to all the contributors: @glennawatson
🤖 Automated services that contributed: renovate[bot]
12.1.1
🔏 12.1.1 — consolidated, re-signed v12 release
This is the recommended v12 release. It supersedes and folds together 11.6.1, 12.0.8, 12.0.12, and 12.1.0, which were signed with (or pulled dependencies signed with) a code-signing certificate that has since been revoked — NuGet restore fails on them with NU3012. 12.1.1 is re-signed with a valid certificate and its dependencies are refreshed to their re-signed builds. Those superseded releases have been removed and their notes consolidated here.
⚠️ v12 is a major upgrade from v11: Akavache moved offsqlite-net-pclto the low-level SQLitePCLRaw, modernized the API, and split the HTTP downloader into Akavache.HttpDownloader. Review the V10→V11 migration helpers before upgrading.
🗞️ What's Changed
💥 Breaking / major (v12)
- V12 API modernization, AOT-safe assembly config, V10→V11 migration, full coverage (#1178) @glennawatson
- Replace
sqlite-net-pclwithSQLitePCLRaw; extract the HTTP downloader (#1182) @glennawatson - Rename
Akavache.Http→Akavache.HttpDownloaderto avoid a NuGet name collision (#1186) @Copilot
⚡ Performance & improvements
- Allocation-reduction sweep across Rx, SQLite and serializer hot paths (#1179) @glennawatson
- Further allocation optimization + AGENTS doc (#1201) @ChrisPulman @Copilot
- Refactor
SettingsBaseto a primary constructor; cache improvements (#1147) @ChrisPulman
🐛 Fixes
- Read Akavache 11.x encrypted databases with v12 (#1192) @markuspalme
- Add
WithLegacyFileLocation()for V10→V11 migration; ensure legacy cache directories are created (#1175) @glennawatson - Fix initialization example after the v12 API changes (#1187) @markuspalme
- Address open issues, add CodeQL (#1174) @glennawatson
- Correct case of the Images directory path for Linux builds @glennawatson
🧹 Build, CI & signing
- Migrate signing from SSL.com eSigner to Certum SimplySign (container signing) @glennawatson
- Switch versioning to MinVer; allow releasing from a historical ref @glennawatson
- Pin 3rd-party actions to commit SHAs (CodeQL) @glennawatson
- Drop net9 mobile TFMs — the MAUI net9 android/ios/maccatalyst workloads are end of support @glennawatson
- Migrate tests from NUnit to TUnit (#1163) @ChrisPulman
📝 Documentation
- Revise serializer compatibility details in the README @glennawatson
- Update dependencies & docs (#1157) @ChrisPulman; refresh Copilot instructions (#1151) @Copilot
📦 Dependencies
- ReactiveUI-family refreshed to re-signed builds — ReactiveUI
23.2.28, Splat19.4.1, ReactiveUI.SourceGenerators3.0.0(#1188, #1160) @renovate[bot] @glennawatson - Blazor.Common.Analyzers →
2.1.0(re-signed) (#1200) @renovate[bot] - Microsoft.WindowsAppSDK →
2.1.3(#1202, #1197, #1196, #1185); Microsoft.SourceLink.GitHub →10.0.300(#1199, #1181, #1162) @renovate[bot] - Verify.TUnit →
31.17.0(#1203, #1184, #1183); .NET test stack + microsoft.testing (#1204, #1193, #1198) @renovate[bot] - nunit3testadapter v6 (#1152), dotnet-sdk 10.0.101 (#1153), dessant/lock-threads v6 (#1154) @renovate[bot]
🔗 Full Changelog: 11.5.1...v12.1.1
🙌 Contributions
🌱 New contributor: @markuspalme
💖 Thanks to all the contributors: @glennawatson, @ChrisPulman, @Copilot, @markuspalme
🤖 Automated services that contributed: @renovate[bot], @github-code-quality[bot]
12.0.1-beta
🗞️ What's Changed
💥 Breaking Changes
- 66ad35c breaking: replace sqlite-net-pcl with SQLitePCLRaw, extract Akavache.Http (#1182) @ChrisPulman @glennawatson
✨ Features
- 6dee936 feat: V12 API modernization, AOT-safe assembly config, V10→V11 migration, and full coverage (#1178) @glennawatson
🐛 Fixes
- 62af1cb fix: correct case of Images directory path in Directory.Build.props for Linux @glennawatson
⚡ Performance
- bd980df perf: allocation reduction sweep across Rx, SQLite and serializer hot paths (#1179) @glennawatson
🧹 General Changes
- 7fc6afb housekeeping: add GitHub Packages release workflow and bump to 12.0-beta @glennawatson
📦 Dependencies
🔗 Full Changelog: 11.6.1...12.0.1-beta
🙌 Contributions
💖 Thanks to all the contributors: @ChrisPulman, @glennawatson
🤖 Automated services that contributed: @renovate[bot]
11.5.1
🗞️ What's Changed
🐛 Fixes
- 762dccb Fix InvalidateAll to remove all cache entries and add tests (#1141) @ChrisPulman
🧹 General Changes
- e3b9f59 Housekeeping Add comprehensive new test suites for Akavache (#1143) @ChrisPulman
📦 Dependencies
- 36c260f chore(deps): update dependency newtonsoft.json to 13.0.4 (#1122) @renovate[bot]
- d311882 chore(deps): update dependency microsoft.net.test.sdk to v18 (#1126) @renovate[bot]
- 219f5b0 chore(deps): update .net test stack (#1131) @renovate[bot]
- ad0a1af chore(deps): update dependency benchmarkdotnet to 0.15.6 (#1123) @renovate[bot]
- 98baa39 chore(deps): update dependency nerdbank.gitversioning to 3.8.118 (#1125) @renovate[bot]
- afe0e9f chore(deps): update dependency roslynator.analyzers to 4.14.1 (#1130) @renovate[bot]
- 7ed06c2 chore(deps): update dependency nerdbank.gitversioning to 3.9.50 (#1137) @renovate[bot]
📌 Other
- 52ffc60 Add Legacy FileLocationOption for cache directory selection (#1117) @ChrisPulman
- 910e875 Bump version from 11.4 to 11.5.x @glennawatson
- c4bd0c1 Add .NET 10 target frameworks to build configuration (#1142) @ChrisPulman
🔗 Full Changelog: 11.4.1...11.5.1
🙌 Contributions
💖 Thanks to all the contributors: @ChrisPulman, @glennawatson
🤖 Automated services that contributed: @renovate[bot]
11.4.1
🚀 Akavache v11.4.1 Release Notes
This release focuses on enhancing stability across different platforms, improving the build process, and significantly upgrading the documentation.
🐛 Bug Fixes & Stability
- Android: Fixed a
FileNotFoundExceptioncrash that could occur in theAkavacheBuilderconstructor.- bc36427 (#1110) by @Copilot, @copilot-swe-agent[bot], @glennawatson
- macOS: Resolved a unit test failure related to isolated storage by improving runtime platform detection.
- d6a0c96 (#1115) by @Copilot, @copilot-swe-agent[bot], @glennawatson
- Core: Addressed a constructor ordering issue in the settings cache path configuration to ensure reliability.
- 8adce72 (#1107) by @Copilot, @copilot-swe-agent[bot], @glennawatson
- Testing: Improved NUnit tests to prevent timeouts and isolate static state for more reliable parallel execution.
- 9f184bd (#1113) by @Copilot, @copilot-swe-agent[bot], @glennawatson
🛠️ Build & Infrastructure
- Cross-Platform Targeting: Implemented conditional
TargetFrameworksand updated Copilot instructions to streamline development with .NET 9 and workloads.- 6088e23 (#1104) by @Copilot, @copilot-swe-agent[bot], @glennawatson
- 0a4663e (#1109) by @Copilot, @copilot-swe-agent[bot], @glennawatson
- Project Configuration: Updated the CI workflow for build configuration and enabled Windows targeting in the AkavacheTodoWpf sample project.
📖 Documentation & Housekeeping
- Documentation: A comprehensive documentation enhancement was completed, adding tutorials and improving the overall developer experience.
- 76c4b8c (#1106) by @Copilot, @copilot-swe-agent[bot], @glennawatson
- Version Bump: Bumped the project version from 11.3 to 11.4.
- Cleanup: Removed unnecessary Copilot metadata files.
- cc30dd9 (#1111) by @glennawatson
🔗 Full Changelog: 11.3.3...11.4.1
11.3.3
Akavache 11.3.3
Highlights
-
Security: Fix for External Control of File Name or Path (CWE-73). [#1087](@Copilot; @copilot-swe-agent[bot]; @glennawatson)
-
Android/SQLite: Restored v11 backward-compat and fixed Android SQLite DLL loading issues. [#1090](@Copilot; @copilot-swe-agent[bot]; @glennawatson)
-
Caching correctness:
-
New API:
UpdateExpirationmethod to efficiently update cache entry TTLs. [#1086](@ChrisPulman; @Copilot; @copilot-swe-agent[bot]; @glennawatson) -
Platform targets: MAUI targets documented as .NET 9 only (android/ios/maccatalyst/windows). [#1072]
Breaking / Upgrade Notes
- MAUI: Retarget MAUI apps to .NET 9. [#1072]
- Mobile TFMs: Added mobile target frameworks and platform constants; update your project/props if you pin TFMs. [#1068]
Enhancements
- Exception-safe key enumeration helpers for reactive patterns. [#1097]
- Central Package Management with
Directory.Packages.propsand transitive pinning. [#1084] - Improved developer guidance: Copilot instructions + ReactiveUI ecosystem integration. [#1074]
- Expanded docs on
GetAndFetchLatestpatterns and best practices. [#1077]
Fixes
- Android SQLite DLL loading + v11 backward-compat. [#1090]
GetAndFetchLatestempty sequence when SQLite has no value. [#1085]InMemoryBlobCache.Invalidatenot clearingRequestCache. [#1092]LoadImagenow checks for null URLs. [#1094]- Nullability issues and package reference cleanup. [#1102]
- Compile warnings: CS0618, NETSDK1206, IL3050. [#1082]
- Versioning issues in v10 benchmarks/writer tools. (no PR)
Performance, Quality & Testing
- Migrated test suite xUnit → NUnit 4.4.0, added local test server & cross-platform compat. [#1079]
- Added concurrency tests for
IndexOutOfRangeExceptioninInMemoryBlobCache. [#1093] - Added comprehensive unit tests validating
InsertObjectsrobustness. [#1091] - Benchmarks docs: added comprehensive metrics and serializer guidance. [#1076]
Documentation & Housekeeping
- MAUI target documentation (.NET 9 only). [#1072]
- Enhanced XML docs to meet StyleCop standards. [#1089]
- Revised C# style guide and documentation standards. (no PR)
- README updates: BrowserStack testing info + formatting; cloning instructions. (no PR)
- Splat version updated to 16.2.1; internal version bumps to 11.2.x/11.3.x. (no PR)
Dependencies
Akavache→ v11 [#1095], then 11.1.1 [#1099]akavache.sqlite3→ v11 [#1096], then 11.1.1 [#1100]reactiveui.sourcegenerators→ 2.4.1 [#1098]
CI/CD
- Added OIDC permissions in CI workflows. (no PR)
- Adopted Central Package Management. [#1084]
Contributors
- New contributor: @Copilot 🎉
- Huge thanks to: @ChrisPulman, @Copilot, @Glenn, @glennawatson
- Automated helpers: @copilot-swe-agent[bot], @renovate[bot]
- Special thanks to BrowserStack for testing support.
Full Changelog: 11.1.1...11.3.3
11.1.1
Refactoring
- f52e700 Refactor SQLite provider initialization (#1063) @ChrisPulman
- 61f668b Refactor cache directory handling to use isolated storage (#1060) @ChrisPulman
- Add Sqlite provider configurations and use IAppBulder by @ChrisPulman in #1064
Fixes
- 44669ad Fix SettingsCachePath to use writable location (#1059) @ChrisPulman @Glenn
- Resolve Legacy read with a shim by @ChrisPulman in #1058
General Changes
- 126af99 Update README with SQLite and linker guidance (#1054) @ChrisPulman
- 9093cba housekeeping: Update version to 11.1.x @glennawatson
Dependencies
- 5c3a33c chore(deps): update dependency xunit.runner.visualstudio to 3.1.4 (#1056) @renovate[bot]
- 4f11bcb chore(deps): update dependency system.reactive to 6.0.2 (#1065) @renovate[bot]
- 8785467 chore(deps): update dependency microsoft.windows.sdk.buildtools to 10.0.26100.4948 (#1062) @renovate[bot]
Contributions
Thanks to all the contributors: @ChrisPulman, @Glenn, @glennawatson
The following automated services have also contributed to this release: @renovate[bot]
Full Changelog: 11.0.1...11.1.1
11.0.1
Breaking Changes
- Akavache Version 11 - New version (Breaking Change) by @ChrisPulman in #1040
Refactoring
- ea74a86 Refactor to improve Serializer handling during tests (#1051) @ChrisPulman
- 014d590 Refactor Akavache initialization to use AppBuilder (#1050) @ChrisPulman
General Changes
- 38c3399 Update version.json @glennawatson
- 6ce7845 Housekeeping Update packages after breaking change (#1029) @ChrisPulman
- Introduce builder pattern for BlobCache configuration by @ChrisPulman in #1041
- Add Sample base code by @ChrisPulman in #1042
- Add Basic Example for Maui by @ChrisPulman in #1044
- Merge Settings Create Builder Extensions for settings by @ChrisPulman in #1045
- Add Documentation and Refactor ready for V11 release by @ChrisPulman in #1046
- Refactor Akavache initialization to use AppBuilder by @ChrisPulman in #1050
- Refactor to improve Serializer handling during tests by @ChrisPulman in #1051
- Revise Akavache initialization and update docs by @ChrisPulman in #1052
Dependencies
- 53ca2c6 chore(deps): update dependency sqlitepclraw.bundle_e_sqlite3 to 2.1.11 (#1014) @renovate[bot]
- e48463e chore(deps): update dependency sqlitepclraw.lib.e_sqlite3 to v3 (#1047) @renovate[bot]
- fd62b92 chore(deps): update dependency microsoft.azure.cosmos to 3.52.0 (#1019) @renovate[bot]
- 8fa3fe6 chore(deps): update dotnet monorepo to 9.0.7 (#1035) @renovate[bot]
- 682d432 chore(deps): update dependency splat to 15.4.1 (#1033) @renovate[bot]
- d6f0e13 chore(deps): update dependency reactiveui.testing to 20.2.45 (#1017) @renovate[bot]
- b49d8af chore(deps): update dependency xunit.runner.visualstudio to 3.1.3 (#1037) @renovate[bot]
- fe7d096 chore(deps): update dotnet monorepo to 9.0.8 (#1048) @renovate[bot]
- 3a99f5e chore(deps): update dependency fluentassertions to 8.6.0 (#1053) @renovate[bot]
- 4c97564 chore(deps): update dependency reactiveui to 20.2.45 (#1016) @renovate[bot]
- 2d009ce chore(deps): update dependency splat.drawing to 15.4.1 (#1034) @renovate[bot]
Contributions
Thanks to all the contributors: @ChrisPulman, @glennawatson
The following automated services have also contributed to this release: @renovate[bot]
Full Changelog: 10.2.41...11.0.1
10.2.41
General Changes
- 66031df Update packages resolve conflicts (#1012) @ChrisPulman
- dbb8cc3 Housekeeping Update Build (#964) @ChrisPulman
- 8afe998 Update Version due to breaking change in DynamicData (#967) @ChrisPulman
- e1035b7 Housekeeping Remove remaining Xamarin elements (#966) @ChrisPulman
- 25c0556 Update ReactiveUI and Splat to latest (#965) @ChrisPulman
Dependencies
- 5bc635f chore(deps): update dependency splat to 15.3.1 (#1007) @renovate[bot]
- aaed095 chore(deps): update dependency microsoft.netcore.universalwindowsplatform to 6.2.14 (#961) @renovate[bot]
- feafe1e chore(deps): update dependency fluentassertions to 6.12.1 (#963) @renovate[bot]
- b76226c chore(deps): update dependency microsoft.net.test.sdk to 17.13.0 (#1009) @renovate[bot]
- f491094 chore(deps): update dependency sqlitepclraw.bundle_e_sqlite3 to 2.1.10 (#968) @renovate[bot]
- 40fd608 chore(deps): update dependency verify.xunit to 26.5.0 (#969) @renovate[bot]
- 6b64666 chore(deps): update dependency microsoft.azure.cosmos to 3.43.1 (#970) @renovate[bot]
- 5658c53 chore(deps): update dependency verify.xunit to 26.6.0 (#971) @renovate[bot]
- 3fca3bb chore(deps): update dependency diffengine to 15.5.3 (#975) @renovate[bot]
- 8ecb41c chore(deps): update dependency nerdbank.gitversioning to 3.6.146 (#977) @renovate[bot]
- 1bedb4b chore(deps): update xunit-dotnet monorepo to 2.9.2 (#972) @renovate[bot]
- 6ee1540 chore(deps): update dependency fluentassertions to 6.12.2 (#980) @renovate[bot]
- 1a7fb83 chore(deps): update dependency microsoft.azure.cosmos to 3.45.2 (#974) @renovate[bot]
- c004aca chore(deps): update dependency diffengine to 15.5.4 (#982) @renovate[bot]
- 5bb372f chore(deps): update dependency system.security.cryptography.protecteddata to v9 (#981) @renovate[bot]
- 88389df chore(deps): update dependency diffengine to 15.5.5 (#983) @renovate[bot]
- 49edbc3 chore(deps): update dependency microsoft.net.test.sdk to 17.12.0 (#984) @renovate[bot]
- 98767d4 chore(deps): update dependency verify.xunit to v28 (#978) @renovate[bot]
- 5c91d80 chore(deps): update dependency verify.xunit to 28.4.0 (#986) @renovate[bot]
- 1d93147 chore(deps): update dependency nerdbank.gitversioning to 3.7.112 (#990) @renovate[bot]
- e0d77ba chore(deps): update dependency diffengine to 15.6.0 (#991) @renovate[bot]
- 23e74c7 chore(deps): update dependency xunit.runner.visualstudio to v3 (#993) @renovate[bot]
- 0a8a1c2 chore(deps): update dependency fluentassertions to 8.1.1 (#1010) @renovate[bot]
- a121244 chore(deps): update dependency publicapigenerator to 11.3.0 (#989) @renovate[bot]
- 6fbae8e chore(deps): update dependency fluentassertions to v7 (#988) @renovate[bot]
- f64cad8 chore(deps): update dependency verify.xunit to 28.8.1 (#994) @renovate[bot]
- 3e59f24 chore(deps): update dependency nerdbank.gitversioning to 3.7.115 (#997) @renovate[bot]
- da2cc0e chore(deps): update xunit-dotnet monorepo (#996) @renovate[bot]
- e9e89dc chore(deps): update dependency coverlet.msbuild to 6.0.3 (#995) @renovate[bot]
- 95c0a4b chore(deps): update dependency fluentassertions to v8 (#1000) @renovate[bot]
- 53d2808 chore(deps): update dependency xunit.skippablefact to 1.5.23 (#987) @renovate[bot]
- 106551e chore(deps): update dependency fluentassertions to 8.0.1 (#1005) @renovate[bot]
- eb07a62 chore(deps): update dependency verify.xunit to 26.4.4 (#962) @renovate[bot]
- 14d031c chore(deps): update dependency coverlet.msbuild to 6.0.4 (#1004) @renovate[bot]
- fe5ece1 chore(deps): update dependency verify.xunit to 28.13.0 (#999) @renovate[bot]
- 76461af chore(deps): update dependency xunit.runner.visualstudio to 3.0.2 (#1008) @renovate[bot]
- 010bc67 chore(deps): update dependency system.security.cryptography.protecteddata to 9.0.2 (#1001) @renovate[bot]
- 537cc2c chore(deps): update dependency xunit.stafact to 1.2.69 (#1003) @renovate[bot]
- ec2d65d chore(deps): update dependency verify.xunit to 28.6.1 (#992) @renovate[bot]
- a50fd03 chore(deps): update dependency microsoft.azure.cosmos to 3.47.2 (#985) @renovate[bot]
- 71cac16 chore(deps): update dependency diffengine to 15.9.1 (#998) @renovate[bot]
- dca6c81 chore(deps): update dependency microsoft.net.test.sdk to 17.11.1 (#960) @renovate[bot]
Contributions
Thanks to all the contributors: @ChrisPulman
The following automated services have also contributed to this release: @renovate[bot]
10.1.6
General Changes
- 59922a0 Update TFM's to remove Net 7.0 (#954) @ChrisPulman
Dependencies
- f3fe4e9 chore(deps): update dependency roslynator.analyzers to v4.12.2 (#927) @renovate[bot]
- 58e95f3 chore(deps): update dependency diffengine to v15.4.0 (#928) @renovate[bot]
- b4a9b63 chore(deps): update dependency verify.xunit to v24.2.0 (#929) @renovate[bot]
- 8f72817 chore(deps): update dependency roslynator.analyzers to v4.12.3 (#930) @renovate[bot]
- 2aad5fd chore(deps): update xunit-dotnet monorepo to v2.8.1 (#938) @renovate[bot]
- f23384f chore(deps): update dependency system.reactive to v6.0.1 (#936) @renovate[bot]
- 23f9d91 chore(deps): update dependency diffengine to v15.4.1 (#934) @renovate[bot]
- e0c387a chore(deps): update dependency microsoft.reactive.testing to v6.0.1 (#935) @renovate[bot]
- 1bbe118 chore(deps): update dependency microsoft.azure.cosmos to v3.40.0 (#932) @renovate[bot]
- 2c60f14 chore(deps): update dependency microsoft.net.test.sdk to v17.10.0 (#937) @renovate[bot]
- 2b93846 chore(deps): update dependency microsoft.azure.cosmos to v3.41.0 (#943) @renovate[bot]
- 5ba11dd chore(deps): update dependency nerdbank.gitversioning to v3.6.139 (#942) @renovate[bot]
- 093ef46 chore(deps): update dependency diffengine to v15.4.3 (#939) @renovate[bot]
- 73b918c chore(deps): update dependency verify.xunit to v25 (#940) @renovate[bot]
- 8f7ee68 chore(deps): update dependency roslynator.analyzers to v4.12.4 (#941) @renovate[bot]
- e8a2d4c chore(deps): update dependency diffengine to v15.5.0 (#944) @renovate[bot]
- 26e9eba chore(deps): update dependency microsoft.azure.cosmos to v3.42.0 (#948) @renovate[bot]
- 0e2a6c4 chore(deps): update xunit-dotnet monorepo (#946) @renovate[bot]
- d6ad19b chore(deps): update dependency verify.xunit to v25.3.2 (#945) @renovate[bot]
- 4a3235a chore(deps): update dependency verify.xunit to v26 (#947) @renovate[bot]
- 972aae9 chore(deps): update dependency sqlitepclraw.bundle_e_sqlite3 to v2.1.9 (#950) @renovate[bot]
- 842fa7b chore(deps): update dependency nerdbank.gitversioning to v3.6.141 (#951) @renovate[bot]
- cf585df chore(deps): update dependency verify.xunit to v26.1.6 (#949) @renovate[bot]
- b629996 chore(deps): update dependency verify.xunit to v26.2.0 (#952) @renovate[bot]
- 0f8294d chore(deps): update dependency microsoft.net.test.sdk to 17.11.0 (#953) @renovate[bot]
- 1f0654d chore(deps): update dependency verify.xunit to 26.4.0 (#959) @renovate[bot]
- ce550fb chore(deps): update dependency nerdbank.gitversioning to 3.6.143 (#955) @renovate[bot]
- 0fbe886 chore(deps): update dependency verify.xunit to 26.3.1 (#956) @renovate[bot]
- 48d5896 chore(deps): update dependency diffengine to 15.5.1 (#957) @renovate[bot]
- 27cc6a9 chore(deps): update dependency microsoft.azure.cosmos to 3.43.0 (#958) @renovate[bot]
Contributions
Thanks to all the contributors: @ChrisPulman
The following automated services have also contributed to this release: @renovate[bot]