-
-
Notifications
You must be signed in to change notification settings - Fork 0
Release/v1.1.0 #39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Release/v1.1.0 #39
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
a9353d6
feat: better nuget login
micheloliveira-com 0565b2a
feat: improve dependency injection strategy by introducing ReactiveLo…
micheloliveira-com 90c9b93
feat: refactor dependency injection strategy by introducing ReactiveL…
micheloliveira-com 10107e5
fix: correct namespace declaration in ReactiveLockGrpcTrackerExtensio…
micheloliveira-com 4a841e3
feat: update InitializeDistributedGrpcReactiveLock to accept params f…
micheloliveira-com 1f03d7b
feat: upgrade target frameworks to .NET 10.0 across all projects
micheloliveira-com e26e056
fix: update Microsoft.Extensions.Http.Polly package version to 10.0.0
micheloliveira-com 7f48d55
feat: upgrade to .NET 10 in CI workflows
micheloliveira-com 41ec0bf
feat: enhance InitializeDistributedGrpcReactiveLock methods to valida…
micheloliveira-com 4c50f0e
Merge pull request #37 from micheloliveira-com/feature/upgrade-to-dot…
micheloliveira-com b84517e
Merge pull request #36 from micheloliveira-com/feature/improve-depend…
micheloliveira-com 957cbc9
Merge branch 'develop' into feature/upgrade-integration-tests-to-dotn…
micheloliveira-com 090aa71
feat: update Dockerfiles to use .NET 10.0.2 images for consistency an…
micheloliveira-com a81a128
feat: ensure comment.md generation and upload steps always execute
micheloliveira-com d122351
feat: enhance comment.md generation to handle missing k6 results file
micheloliveira-com 9190924
fix: correct deserialization of Redis values in PaymentSummaryService
micheloliveira-com 15b5671
refactor: update Docker Compose commands to use the new syntax and re…
micheloliveira-com f5df5d2
feat: update default NuGet package version to 10.1.0-beta.1 in k6-tes…
micheloliveira-com bdd8483
fix: correct path for appending Docker Compose logs to comment.md
micheloliveira-com cde463c
fix: reduce attempts in health check loop and update Docker Compose l…
micheloliveira-com a9606b0
fix: increase health check attempts and update Docker Compose logs co…
micheloliveira-com 283018b
fix: update ulimit-n value to 65000 in HAProxy configuration
micheloliveira-com 12999b1
Merge pull request #38 from micheloliveira-com/feature/upgrade-integr…
micheloliveira-com 0d4feb0
Merge branch 'main' into develop
micheloliveira-com File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/ReactiveLock.DependencyInjection/ReactiveLock.DependencyInjection.csproj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/ReactiveLock.Distributed.Grpc/ReactiveLock.Distributed.Grpc.csproj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
src/ReactiveLock.Distributed.Grpc/ReactiveLockGrpcTrackerExtensionsState.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| namespace MichelOliveira.Com.ReactiveLock.Distributed.Grpc; | ||
|
|
||
| using System.Collections.Concurrent; | ||
|
|
||
| /// <summary> | ||
| /// Holds internal bootstrap and runtime state for gRPC-based ReactiveLock extensions. | ||
| /// | ||
| /// This class encapsulates mutable state required during the initialization and | ||
| /// lifecycle of distributed gRPC reactive locks, including: | ||
| /// <list type="bullet"> | ||
| /// <item><description>The current instance identifier.</description></item> | ||
| /// <item><description>Initialization lifecycle tracking.</description></item> | ||
| /// <item><description>Registered distributed lock keys.</description></item> | ||
| /// <item><description>Configured remote gRPC client adapters.</description></item> | ||
| /// </list> | ||
| /// | ||
| /// This type is intended for internal use only and is not part of the public API surface. | ||
| /// </summary> | ||
| /// | ||
| /// <para> | ||
| /// ⚠️ Notice: This file is part of the ReactiveLock library and is licensed under the MIT License. | ||
| /// You must follow license, preserve the copyright notice, and comply with all legal terms | ||
| /// when using any part of this software. | ||
| /// See the LICENSE file in the project root for full license details. | ||
| /// © Michel Oliveira | ||
| /// </para> | ||
| internal sealed class ReactiveLockGrpcTrackerExtensionsState(string instanceName) | ||
| { | ||
| public string InstanceName { get; } = instanceName; | ||
| public bool IsInitializing { get; set; } | ||
|
|
||
| public ConcurrentQueue<string> RegisteredLocks { get; } = new(); | ||
| public List<IReactiveLockGrpcClientAdapter> RemoteClients { get; } = new(); | ||
| } |
2 changes: 1 addition & 1 deletion
2
src/ReactiveLock.Distributed.Redis/ReactiveLock.Distributed.Redis.csproj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.