Soenneker.Utils.HttpClientCache 2.1.529

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Utils.HttpClientCache --version 2.1.529
NuGet\Install-Package Soenneker.Utils.HttpClientCache -Version 2.1.529
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Soenneker.Utils.HttpClientCache" Version="2.1.529" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Soenneker.Utils.HttpClientCache --version 2.1.529
#r "nuget: Soenneker.Utils.HttpClientCache, 2.1.529"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Soenneker.Utils.HttpClientCache as a Cake Addin
#addin nuget:?package=Soenneker.Utils.HttpClientCache&version=2.1.529

// Install Soenneker.Utils.HttpClientCache as a Cake Tool
#tool nuget:?package=Soenneker.Utils.HttpClientCache&version=2.1.529

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Utils.HttpClientCache

Providing thread-safe singleton HttpClients

Why?

'Long-lived' HttpClient static/singleton instances is the recommended use pattern in .NET. Avoid the unnecessary overhead of IHttpClientFactory, and definitely avoid creating a new HttpClient instance per request.

HttpClientCache provides a thread-safe singleton HttpClient instance per key via dependency injection. HttpClients are created lazily, and disposed on application shutdown (or manually if you want).

See Guidelines for using HttpClient

Installation

dotnet add package Soenneker.Utils.HttpClientCache

Usage

  1. Register IHttpClientCache within DI (Program.cs).
public static async Task Main(string[] args)
{
    ...
    builder.Services.AddHttpClientCache();
}
  1. Inject IHttpClientCache via constructor, and retrieve a fresh HttpClient.

Example:

public class TestClass
{
    IHttpClientCache _httpClientCache;

    public TestClass(IHttpClientCache httpClientCache)
    {
        _httpClientCache = httpClientCache;
    }

    public async ValueTask<string> GetGoogleSource()
    {
        HttpClient httpClient = await _httpClientCache.Get(nameof(TestClass));

        var response = await httpClient.GetAsync("https://www.google.com");
        response.EnsureSuccessStatusCode();

        var responseString = await response.Content.ReadAsStringAsync();
        return responseString;
    }
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (15)

Showing the top 5 NuGet packages that depend on Soenneker.Utils.HttpClientCache:

Package Downloads
Soenneker.Blob.Container The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

A utility library for Azure Blob storage container operations

Soenneker.Validators.Email.Disposable.Online The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

A validation module checking for disposable email addresses via online sources

Soenneker.Queue.Client The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

A utility library for Azure Queue (Storage) client accessibility

Soenneker.YouTube.Client The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

An async thread-safe singleton for the YouTube client YouTubeExplode

Soenneker.Queue.Service The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

A utility library for Azure Queue (Storage) service client (QueueServiceClient) accessibility

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.1.539 294 7/4/2024
2.1.538 395 7/3/2024
2.1.537 264 7/3/2024
2.1.536 207 7/3/2024
2.1.535 140 7/3/2024
2.1.534 551 7/3/2024
2.1.533 43 7/3/2024
2.1.532 440 7/3/2024
2.1.531 24 7/3/2024
2.1.530 273 7/3/2024
2.1.529 564 7/2/2024
2.1.528 719 6/30/2024
2.1.527 842 6/28/2024
2.1.526 409 6/27/2024
2.1.525 470 6/27/2024
2.1.524 519 6/27/2024
2.1.523 889 6/22/2024
2.1.522 644 6/22/2024
2.1.521 528 6/22/2024
2.1.520 67 6/22/2024
2.1.519 1,055 6/16/2024
2.1.518 372 6/16/2024
2.1.517 377 6/15/2024
2.1.516 637 6/15/2024
2.1.515 314 6/15/2024
2.1.514 320 6/15/2024
2.1.513 59 6/15/2024
2.1.512 980 6/15/2024
2.1.511 65 6/15/2024
2.1.510 780 6/15/2024
2.1.509 659 6/15/2024
2.1.508 326 6/14/2024
2.1.507 60 6/14/2024
2.1.506 2,306 6/4/2024
2.1.505 905 6/2/2024
2.1.504 126 6/2/2024
2.1.503 220 6/2/2024
2.1.502 224 6/1/2024
2.1.501 259 6/1/2024
2.1.500 477 6/1/2024
2.1.499 68 6/1/2024
2.1.498 604 6/1/2024
2.1.497 172 6/1/2024
2.1.496 68 6/1/2024
2.1.495 659 6/1/2024
2.1.494 66 6/1/2024
2.1.493 1,580 5/31/2024
2.1.492 438 5/31/2024
2.1.491 286 5/31/2024
2.1.490 443 5/31/2024
2.1.489 245 5/31/2024
2.1.488 589 5/31/2024
2.1.487 959 5/29/2024
2.1.486 363 5/29/2024
2.1.485 522 5/29/2024
2.1.484 448 5/29/2024
2.1.483 70 5/29/2024
2.1.482 1,030 5/28/2024
2.1.481 289 5/28/2024
2.1.480 295 5/28/2024
2.1.479 325 5/28/2024
2.1.478 46 5/28/2024
2.1.477 719 5/28/2024
2.1.476 47 5/28/2024
2.1.475 241 5/28/2024
2.1.474 966 5/27/2024
2.1.473 939 5/27/2024
2.1.472 347 5/27/2024
2.1.471 379 5/27/2024
2.1.470 642 5/26/2024
2.1.469 54 5/26/2024
2.1.468 903 5/26/2024
2.1.467 104 5/26/2024
2.1.466 297 5/26/2024
2.1.465 473 5/26/2024
2.1.464 792 5/26/2024
2.1.463 53 5/26/2024
2.1.462 522 5/26/2024
2.1.461 58 5/26/2024
2.1.460 182 5/25/2024
2.1.459 252 5/25/2024
2.1.458 55 5/25/2024
2.1.457 818 5/25/2024
2.1.456 57 5/25/2024
2.1.455 825 5/25/2024
2.1.454 57 5/25/2024
2.1.453 1,070 5/25/2024
2.1.452 93 5/25/2024
2.1.451 435 5/25/2024
2.1.450 56 5/25/2024
2.1.449 356 5/25/2024
2.1.448 1,350 5/23/2024
2.1.447 435 5/23/2024
2.1.446 459 5/23/2024
2.1.445 41 5/23/2024
2.1.444 504 5/23/2024
2.1.443 61 5/23/2024
2.1.442 438 5/23/2024
2.1.441 58 5/23/2024
2.1.440 663 5/23/2024
2.1.439 65 5/23/2024
2.1.438 473 5/22/2024
2.1.437 664 5/22/2024
2.1.436 59 5/22/2024
2.1.435 463 5/22/2024
2.1.434 67 5/22/2024
2.1.433 63 5/22/2024
2.1.432 749 5/22/2024
2.1.431 514 5/22/2024
2.1.430 886 5/19/2024
2.1.429 344 5/18/2024
2.1.428 369 5/18/2024
2.1.427 425 5/18/2024
2.1.426 271 5/18/2024
2.1.425 82 5/18/2024
2.1.424 606 5/17/2024
2.1.423 76 5/17/2024
2.1.422 385 5/17/2024
2.1.421 1,057 5/17/2024
2.1.420 75 5/17/2024
2.1.419 667 5/16/2024
2.1.418 333 5/16/2024
2.1.417 556 5/16/2024
2.1.416 84 5/16/2024
2.1.415 544 5/15/2024
2.1.414 77 5/15/2024
2.1.413 581 5/15/2024
2.1.412 1,016 5/14/2024
2.1.411 81 5/14/2024
2.1.410 1,148 5/13/2024
2.1.409 443 5/13/2024
2.1.408 331 5/13/2024
2.1.407 268 5/13/2024
2.1.406 51 5/13/2024
2.1.405 1,185 5/3/2024
2.1.404 621 4/30/2024
2.1.403 146 4/30/2024
2.1.402 357 4/30/2024
2.1.401 398 4/30/2024
2.1.400 533 4/30/2024
2.1.399 502 4/30/2024
2.1.398 328 4/29/2024
2.1.397 260 4/29/2024
2.1.396 78 4/29/2024
2.1.395 1,092 4/29/2024
2.1.394 366 4/29/2024
2.1.393 776 4/29/2024
2.1.392 203 4/28/2024
2.1.391 76 4/28/2024
2.1.390 614 4/28/2024
2.1.389 97 4/28/2024
2.1.388 690 4/28/2024
2.1.387 441 4/28/2024
2.1.386 75 4/28/2024
2.1.385 652 4/28/2024
2.1.384 77 4/28/2024
2.1.383 491 4/28/2024
2.1.382 77 4/28/2024
2.1.381 1,156 4/28/2024
2.1.380 606 4/27/2024
2.1.379 86 4/27/2024
2.1.378 82 4/27/2024
2.1.377 1,564 4/20/2024
2.1.376 580 4/20/2024
2.1.375 513 4/19/2024
2.1.374 254 4/19/2024
2.1.373 73 4/19/2024
2.1.372 986 4/19/2024
2.1.371 509 4/19/2024
2.1.370 479 4/19/2024
2.1.369 359 4/19/2024
2.1.368 124 4/18/2024
2.1.367 71 4/18/2024
2.1.366 1,121 4/15/2024
2.1.365 432 4/14/2024
2.1.364 498 4/13/2024
2.1.363 552 4/12/2024
2.1.362 72 4/12/2024
2.1.361 450 4/12/2024
2.1.360 266 4/12/2024
2.1.359 420 4/12/2024
2.1.358 74 4/12/2024
2.1.357 695 4/12/2024
2.1.356 94 4/12/2024
2.1.355 731 4/12/2024
2.1.354 79 4/12/2024
2.1.353 301 4/11/2024
2.1.352 450 4/11/2024
2.1.351 77 4/11/2024
2.1.350 608 4/10/2024
2.1.349 78 4/10/2024
2.1.348 594 4/9/2024
2.1.347 76 4/9/2024
2.1.346 1,273 4/2/2024
2.1.345 224 4/2/2024
2.1.344 284 4/1/2024
2.1.343 105 4/1/2024
2.1.342 809 3/29/2024
2.1.341 82 3/29/2024
2.1.340 668 3/25/2024
2.1.339 69 3/25/2024
2.1.338 553 3/25/2024
2.1.337 814 3/20/2024
2.1.336 89 3/20/2024
2.1.335 892 3/19/2024
2.1.334 87 3/19/2024
2.1.333 328 3/19/2024
2.1.332 334 3/19/2024
2.1.331 541 3/18/2024
2.1.330 81 3/18/2024
2.1.329 556 3/18/2024
2.1.328 591 3/16/2024
2.1.327 330 3/15/2024
2.1.326 701 3/13/2024
2.1.325 409 3/13/2024
2.1.324 126 3/13/2024
2.1.323 101 3/13/2024
2.1.322 527 3/13/2024
2.1.321 89 3/13/2024
2.1.320 306 3/13/2024
2.1.319 73 3/13/2024
2.1.318 70 3/13/2024
2.1.317 327 3/12/2024
2.1.316 84 3/12/2024
2.1.315 376 3/12/2024
2.1.314 453 3/12/2024
2.1.313 486 3/12/2024
2.1.312 322 3/11/2024
2.1.311 671 3/11/2024
2.1.310 266 3/11/2024
2.1.309 528 3/10/2024
2.1.308 82 3/10/2024
2.1.307 675 3/8/2024
2.1.306 184 3/8/2024
2.1.305 426 3/8/2024
2.1.304 59 3/8/2024
2.1.303 449 3/8/2024
2.1.302 66 3/8/2024
2.1.301 800 3/6/2024
2.1.300 89 3/6/2024
2.1.299 727 3/4/2024
2.1.298 405 3/4/2024
2.1.297 335 3/4/2024
2.1.296 95 3/4/2024
2.1.295 881 3/3/2024
2.1.294 168 3/2/2024
2.1.293 443 3/2/2024
2.1.292 86 3/2/2024
2.1.291 1,507 2/29/2024
2.1.290 306 2/29/2024
2.1.289 78 2/29/2024
2.1.288 171 2/29/2024
2.1.287 73 2/29/2024
2.1.286 513 2/29/2024
2.1.285 987 2/26/2024
2.1.284 83 2/26/2024
2.1.283 423 2/25/2024
2.1.282 153 2/25/2024
2.1.281 661 2/23/2024
2.1.280 379 2/23/2024
2.1.279 383 2/22/2024
2.1.278 190 2/22/2024
2.1.277 277 2/22/2024
2.1.276 91 2/22/2024
2.1.275 182 2/21/2024
2.1.274 94 2/21/2024
2.1.273 444 2/21/2024
2.1.272 102 2/21/2024
2.1.271 83 2/21/2024
2.1.270 473 2/21/2024
2.1.269 237 2/21/2024
2.1.268 91 2/21/2024
2.1.267 209 2/21/2024
2.1.266 81 2/21/2024
2.1.265 229 2/21/2024
2.1.264 84 2/21/2024
2.1.263 343 2/21/2024
2.1.262 427 2/20/2024
2.1.261 281 2/20/2024
2.1.260 117 2/20/2024
2.1.259 155 2/20/2024
2.1.258 362 2/20/2024
2.1.257 201 2/20/2024
2.1.256 258 2/19/2024
2.1.255 396 2/19/2024
2.1.254 77 2/19/2024
2.1.253 593 2/17/2024
2.1.252 75 2/17/2024
2.1.251 241 2/17/2024
2.1.250 358 2/16/2024
2.1.249 73 2/16/2024
2.1.248 274 2/16/2024
2.1.247 246 2/16/2024
2.1.246 77 2/16/2024
2.1.245 280 2/16/2024
2.1.244 72 2/16/2024
2.1.243 76 2/16/2024
2.1.242 298 2/16/2024
2.1.241 81 2/16/2024
2.1.240 879 2/13/2024
2.1.239 80 2/13/2024
2.1.238 495 2/13/2024
2.1.237 361 2/13/2024
2.1.236 167 2/13/2024
2.1.235 75 2/13/2024
2.1.234 138 2/13/2024
2.1.233 367 2/13/2024
2.1.232 91 2/13/2024
2.1.231 467 2/12/2024
2.1.230 316 2/12/2024
2.1.229 104 2/11/2024
2.1.228 92 2/11/2024
2.1.227 464 2/11/2024
2.1.226 219 2/11/2024
2.1.225 289 2/11/2024
2.1.224 186 2/11/2024
2.1.223 713 2/10/2024
2.1.222 148 2/10/2024
2.1.221 210 2/9/2024
2.1.220 255 2/9/2024
2.1.219 414 2/9/2024
2.1.218 297 2/9/2024
2.1.217 347 2/9/2024
2.1.216 81 2/9/2024
2.1.215 262 2/8/2024
2.1.214 351 2/8/2024
2.1.213 91 2/8/2024
2.1.212 281 2/8/2024
2.1.211 131 2/8/2024
2.1.210 432 2/8/2024
2.1.209 114 2/8/2024
2.1.208 528 2/7/2024
2.1.207 95 2/7/2024
2.1.206 129 2/7/2024
2.1.205 365 2/7/2024
2.1.204 241 2/7/2024
2.1.203 89 2/7/2024
2.1.202 247 2/7/2024
2.1.201 88 2/7/2024
2.1.200 371 2/6/2024
2.1.199 78 2/6/2024
2.1.198 680 2/5/2024
2.1.197 79 2/5/2024
2.1.196 427 2/4/2024
2.1.195 142 2/4/2024
2.1.194 623 2/2/2024
2.1.193 80 2/2/2024
2.1.192 571 1/31/2024
2.1.191 93 1/31/2024
2.1.190 442 1/30/2024
2.1.189 386 1/29/2024
2.1.188 303 1/29/2024
2.1.187 78 1/29/2024
2.1.186 78 1/29/2024
2.1.185 358 1/29/2024
2.1.184 245 1/29/2024
2.1.183 72 1/29/2024
2.1.182 241 1/28/2024
2.1.181 82 1/28/2024
2.1.180 175 1/28/2024
2.1.179 340 1/28/2024
2.1.178 79 1/28/2024
2.1.177 191 1/28/2024
2.1.176 229 1/28/2024
2.1.175 80 1/28/2024
2.1.174 573 1/28/2024
2.1.173 131 1/27/2024
2.1.172 84 1/27/2024
2.1.171 408 1/27/2024
2.1.170 80 1/27/2024
2.1.169 168 1/27/2024
2.1.168 87 1/27/2024
2.1.167 377 1/27/2024
2.1.166 79 1/27/2024
2.1.165 413 1/27/2024
2.1.164 82 1/27/2024
2.1.163 175 1/27/2024
2.1.162 102 1/26/2024
2.1.161 75 1/26/2024
2.1.160 553 1/26/2024
2.1.159 74 1/26/2024
2.1.158 381 1/26/2024
2.1.157 73 1/26/2024
2.1.156 172 1/26/2024
2.1.155 176 1/26/2024
2.1.154 79 1/26/2024
2.1.153 136 1/26/2024
2.1.152 73 1/26/2024
2.1.151 538 1/25/2024
2.1.150 84 1/25/2024
2.1.149 258 1/25/2024
2.1.148 81 1/25/2024
2.1.147 480 1/25/2024
2.1.146 148 1/25/2024
2.1.145 78 1/25/2024
2.1.144 238 1/25/2024
2.1.143 645 1/19/2024
2.1.142 80 1/19/2024
2.1.141 555 1/15/2024
2.1.140 111 1/15/2024
2.1.139 87 1/15/2024
2.1.138 468 1/15/2024
2.1.137 89 1/15/2024
2.1.136 219 1/15/2024
2.1.135 81 1/15/2024
2.1.134 352 1/15/2024
2.1.133 212 1/15/2024
2.1.132 636 1/14/2024
2.1.131 83 1/14/2024
2.1.130 489 1/13/2024
2.1.129 84 1/13/2024
2.1.128 511 1/12/2024
2.1.127 87 1/12/2024
2.1.126 489 1/11/2024
2.1.125 359 1/11/2024
2.1.124 610 1/8/2024
2.1.123 260 1/7/2024
2.1.122 459 1/5/2024
2.1.121 222 1/5/2024
2.1.120 87 1/5/2024
2.1.119 373 1/5/2024
2.1.118 359 1/5/2024
2.1.117 92 1/5/2024
2.1.116 559 1/3/2024
2.1.115 114 1/3/2024
2.1.114 339 1/1/2024
2.1.113 140 1/1/2024
2.1.112 642 12/30/2023
2.1.111 222 12/28/2023
2.1.110 167 12/28/2023
2.1.109 218 12/28/2023
2.1.108 184 12/28/2023
2.1.107 108 12/28/2023
2.1.106 423 12/28/2023
2.1.105 165 12/27/2023
2.1.104 99 12/27/2023
2.1.103 116 12/27/2023
2.1.102 91 12/27/2023
2.1.101 564 12/25/2023
2.1.100 81 12/25/2023
2.1.99 209 12/25/2023
2.1.98 98 12/25/2023
2.1.97 322 12/25/2023
2.1.96 239 12/25/2023
2.1.95 151 12/25/2023
2.1.94 95 12/25/2023
2.1.93 121 12/25/2023
2.1.92 117 12/25/2023
2.1.91 524 12/24/2023
2.1.90 176 12/24/2023
2.1.89 320 12/23/2023
2.1.88 138 12/23/2023
2.1.87 96 12/23/2023
2.1.86 207 12/23/2023
2.1.85 93 12/23/2023
2.1.84 332 12/23/2023
2.1.83 91 12/23/2023
2.1.82 364 12/23/2023
2.1.81 99 12/23/2023
2.1.80 200 12/23/2023
2.1.79 446 12/19/2023
2.1.78 93 12/19/2023
2.1.77 169 12/19/2023
2.1.76 788 12/11/2023
2.1.75 211 12/11/2023
2.1.74 227 12/10/2023
2.1.73 169 12/10/2023
2.1.72 123 12/10/2023
2.1.71 399 12/10/2023
2.1.70 138 12/9/2023
2.1.69 189 12/9/2023
2.1.68 215 12/9/2023
2.1.67 121 12/9/2023
2.1.66 135 12/9/2023
2.1.65 189 12/9/2023
2.1.64 100 12/9/2023
2.1.63 282 12/9/2023
2.1.62 404 12/6/2023
2.1.61 167 12/6/2023
2.1.60 188 12/6/2023
2.1.59 138 12/6/2023
2.1.58 224 12/5/2023
2.1.57 201 12/5/2023
2.1.56 144 12/5/2023
2.1.55 170 12/5/2023
2.1.54 163 12/5/2023
2.1.53 117 12/5/2023
2.1.52 177 12/5/2023
2.1.51 125 12/4/2023
2.1.50 105 12/4/2023
2.1.49 331 12/4/2023
2.1.48 104 12/4/2023
2.1.47 98 12/4/2023
2.1.46 306 11/28/2023
2.1.45 125 11/27/2023
2.1.44 153 11/27/2023
2.1.43 116 11/26/2023
2.1.42 190 11/23/2023
2.1.41 108 11/23/2023
2.1.40 247 11/23/2023
2.1.39 216 11/23/2023
2.1.38 172 11/23/2023
2.1.37 116 11/23/2023
2.1.36 143 11/23/2023
2.1.35 332 11/22/2023
2.1.34 139 11/20/2023
2.1.33 154 11/20/2023
2.1.32 196 11/20/2023
2.1.31 105 11/20/2023
2.1.30 207 11/19/2023
2.1.29 102 11/19/2023
2.1.28 133 11/19/2023
2.1.27 113 11/19/2023
2.1.26 184 11/19/2023
2.1.25 108 11/19/2023
2.1.24 117 11/19/2023
2.1.23 106 11/19/2023
2.1.22 106 11/19/2023
2.1.21 221 11/18/2023
2.1.20 119 11/18/2023
2.1.19 111 11/18/2023
2.1.18 106 11/18/2023
2.1.17 95 11/18/2023
2.1.16 114 11/17/2023
2.1.15 101 11/17/2023
2.1.14 109 11/17/2023
2.1.13 113 11/17/2023
2.1.12 140 11/17/2023
2.1.11 92 11/17/2023
2.1.10 108 11/17/2023
2.1.9 109 11/17/2023
2.1.8 126 11/17/2023
2.1.7 115 11/17/2023
2.1.6 137 11/17/2023
2.1.5 109 11/17/2023
2.1.4 113 11/16/2023
2.1.3 109 11/16/2023
2.0.37 548 11/15/2023
2.0.36 107 11/15/2023
2.0.35 108 11/15/2023
2.0.34 109 11/15/2023
1.0.33 112 11/14/2023
1.0.32 99 11/14/2023
1.0.31 273 11/13/2023
1.0.30 98 11/13/2023
1.0.29 130 11/10/2023
1.0.28 104 11/10/2023
1.0.27 105 11/9/2023
1.0.26 103 11/9/2023
1.0.25 102 11/9/2023
1.0.24 103 11/7/2023
1.0.23 101 11/7/2023
1.0.22 98 11/6/2023
1.0.21 107 11/6/2023
1.0.20 121 11/3/2023
1.0.19 112 11/3/2023
1.0.18 122 11/2/2023
1.0.17 110 11/2/2023
1.0.16 119 11/1/2023
1.0.15 111 11/1/2023
1.0.14 147 10/26/2023
1.0.13 123 10/26/2023
1.0.12 145 10/19/2023
1.0.11 139 10/19/2023
1.0.10 138 10/18/2023
1.0.9 137 10/18/2023
1.0.8 137 10/17/2023
1.0.7 124 10/17/2023
1.0.6 156 10/16/2023
1.0.5 152 10/16/2023
1.0.4 152 10/13/2023
1.0.3 145 10/13/2023
1.0.2 144 10/12/2023
1.0.1 163 10/1/2023