Skip to content
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

LNK-3033: Census Mass Assignment #505

Merged
merged 8 commits into from
Oct 23, 2024

Conversation

MontaltoNick
Copy link
Contributor

@MontaltoNick MontaltoNick commented Oct 21, 2024

🛠 Description of Changes

Added DataContract and DataMember annotation to CensusConfigModel

🧪 Testing Performed

Local testing of endpoint

Summary by CodeRabbit

  • New Features
    • Enhanced data serialization support for multiple configuration models, including Census, FHIR List, FHIR Query, and Normalization, improving compatibility with serialization frameworks.
    • Added new properties to the FhirQueryConfiguration and QueryPlan classes for improved data handling.
  • Bug Fixes
    • Updated properties across various models to ensure correct inclusion and behavior in serialization processes.
  • Chores
    • Removed the CreateAuditEvent method from the NormalizationController, simplifying its responsibilities.

Copy link
Contributor

coderabbitai bot commented Oct 21, 2024

Walkthrough

The changes involve multiple classes across different namespaces, primarily focusing on enhancing serialization capabilities. Classes such as CensusConfigModel, FhirListConfiguration, FhirQueryConfiguration, QueryPlan, AuthenticationConfiguration, and NormalizationConfigModel have been annotated with the [DataContract] attribute. Various properties within these classes have also been marked with the [DataMember] attribute, indicating which members should be included in serialization processes. This update improves the compatibility of these models with serialization frameworks.

Changes

File Change Summary
DotNet/Census/Application/Models/CensusConfigModel.cs - Added [DataContract] attribute to CensusConfigModel class.
- Added [DataMember] attribute to FacilityId and ScheduledTrigger properties.
DotNet/DataAcquisition.Domain/Entities/FhirListConfiguration.cs - Added [DataContract] attribute to FhirListConfiguration class.
- Added [DataMember] attributes to FacilityId, FhirBaseServerUrl, Authentication, and EHRPatientLists properties.
DotNet/DataAcquisition.Domain/Entities/FhirQueryConfiguration.cs - Added [DataContract] attribute to FhirQueryConfiguration class.
- Added [DataMember] attributes to FacilityId, FhirServerBaseUrl, Authentication, and QueryPlanIds properties.
DotNet/DataAcquisition.Domain/Entities/QueryPlan.cs - Added [DataContract] attribute to QueryPlan class.
- Added [DataMember] attributes to PlanName, ReportType, FacilityId, EHRDescription, LookBack, InitialQueries, and SupplementalQueries properties.
DotNet/DataAcquisition.Domain/Models/AuthenticationConfiguration.cs - Added [DataContract] attribute to AuthenticationConfiguration class.
- Added [DataMember] attributes to AuthType, Key, TokenUrl, Audience, ClientId, UserName, and Password properties.
DotNet/Normalization/Application/Models/NormalizationConfigModel.cs - Added [DataContract] attribute to NormalizationConfigModel class.
- Added [DataMember] attributes to FacilityId and OperationSequence properties.
DotNet/Normalization/Controllers/NormalizationController.cs - Removed CreateAuditEvent method from NormalizationController class.

Possibly related PRs

  • LNK-2610 data acq mem issue #349: The changes in this PR involve adding [DataContract] and [DataMember] attributes to properties in the FhirListConfiguration class, which is similar to the changes made to the CensusConfigModel class in the main PR, enhancing serialization capabilities.
  • LNK-2610 Fix Threading Issue #359: This PR also includes the addition of [DataContract] and [DataMember] attributes to properties in the FhirQueryConfiguration class, which aligns with the serialization enhancements made in the CensusConfigModel.
  • LNK-2759: Updated the KafkaConnection to a Singleton instance #374: The changes in this PR involve the addition of [DataContract] and [DataMember] attributes to properties in the QueryPlan class, which is related to the serialization improvements seen in the CensusConfigModel.
  • LNK-2769 Normalization ResourceAcquired Changes #467: This PR introduces a new property ReportableEvent in the ResourceAcquiredMessage class, which is relevant as it enhances the data structure similar to the serialization enhancements in the CensusConfigModel.
  • LNK-2883: Added Kafka health check to .NET services #494: This PR adds health check functionalities for Kafka, which may not directly relate to the serialization changes but indicates a broader context of improving data handling and monitoring within the application, aligning with the overall objectives of enhancing data structures and their management.

Suggested reviewers

  • edward-miller-lcg
  • dvargaslantana
  • amphillipsLGC

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Outside diff range and nitpick comments (7)
DotNet/Normalization/Application/Models/NormalizationConfigModel.cs (2)

6-7: LGTM: DataContract attribute added correctly.

The [DataContract] attribute is correctly applied to the NormalizationConfigModel class, enhancing its serialization capabilities. This change aligns with the PR objectives and is consistent with modifications to other models.

Consider adding a Name property to the DataContract attribute for explicit control over the contract name, like this:

[DataContract(Name = "NormalizationConfig")]

This can help maintain backwards compatibility if the class name changes in the future.


9-12: LGTM: DataMember attributes added correctly.

The [DataMember] attributes are correctly applied to both FacilityId and OperationSequence properties, ensuring their inclusion in serialization.

Consider the following improvements:

  1. For FacilityId, add an Order property to the DataMember attribute to ensure consistent serialization order:
[DataMember(Order = 1)]
public string FacilityId { get; set; }
  1. For OperationSequence, consider using a more specific serialization approach:
[DataMember(Order = 2)]
public Dictionary<string, string> OperationSequence { get; set; }

Then, implement custom serialization logic to convert between INormalizationOperation and string representations. This approach can provide more control over how the complex INormalizationOperation objects are serialized and deserialized.

DotNet/DataAcquisition.Domain/Entities/FhirListConfiguration.cs (2)

8-8: LGTM: DataContract attribute added correctly.

The [DataContract] attribute is correctly added to the FhirListConfiguration class, allowing it to be serialized using DataContractSerializer. This is in line with the PR objectives.

Consider adding a Namespace parameter to the DataContract attribute to explicitly define the XML namespace for the serialized data. This can help prevent naming conflicts in certain scenarios:

[DataContract(Namespace = "http://schemas.lantanagroup.com/2023/FhirListConfiguration")]

12-15: LGTM: FacilityId and FhirBaseServerUrl properties added correctly.

The FacilityId and FhirBaseServerUrl properties are correctly implemented with the [DataMember] attribute for serialization. The naming and accessibility are appropriate.

Consider adding XML documentation comments to these properties to provide more context about their usage:

/// <summary>
/// Gets or sets the unique identifier for the facility.
/// </summary>
[DataMember]
public string FacilityId { get; set; }

/// <summary>
/// Gets or sets the base URL of the FHIR server.
/// </summary>
[DataMember]
public string FhirBaseServerUrl { get; set; }
DotNet/DataAcquisition.Domain/Entities/FhirQueryConfiguration.cs (2)

15-17: LGTM: FacilityId property correctly added and configured.

The FacilityId property is correctly added and marked for serialization. The JsonIgnore attribute ensures it's always included in JSON serialization, which is appropriate for an identifier field.

Consider adding a comment explaining why this property is always included in serialization, as it might not be immediately obvious to other developers why this differs from other properties.


Line range hint 1-31: Overall LGTM with suggestions for documentation.

The changes to FhirQueryConfiguration successfully implement the serialization enhancements described in the PR objectives. The class and its properties are correctly marked for serialization, with consistent behavior across most properties.

To improve maintainability and clarity:

  1. Consider adding class-level documentation explaining the purpose of this configuration class and its serialization behavior.
  2. Add comments for properties with special serialization behavior (e.g., FacilityId and Authentication) to explain why they are treated differently.
  3. If not already present elsewhere, consider creating a document or wiki page explaining the serialization strategy used in the project, including the reasons for using different attributes ([DataMember], [JsonIgnore], [BsonIgnoreIfNull]) and their implications.

These documentation improvements will help future developers understand the design decisions and maintain consistency across the codebase.

DotNet/DataAcquisition.Domain/Models/AuthenticationConfiguration.cs (1)

10-43: LGTM: DataMember attributes added correctly to all properties.

The addition of [DataMember] attributes to all properties is consistent and correct. Existing attributes for MongoDB and JSON serialization have been retained, which maintains backward compatibility.

For improved readability and consistency, consider grouping the attributes on a single line for each property. For example:

[DataMember, BsonIgnoreIfNull, JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? AuthType { get; set; }

This change is optional but could make the code more concise.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between 2317308 and efe2797.

📒 Files selected for processing (5)
  • DotNet/DataAcquisition.Domain/Entities/FhirListConfiguration.cs (1 hunks)
  • DotNet/DataAcquisition.Domain/Entities/FhirQueryConfiguration.cs (1 hunks)
  • DotNet/DataAcquisition.Domain/Entities/QueryPlan.cs (1 hunks)
  • DotNet/DataAcquisition.Domain/Models/AuthenticationConfiguration.cs (1 hunks)
  • DotNet/Normalization/Application/Models/NormalizationConfigModel.cs (1 hunks)
🧰 Additional context used
🔇 Additional comments (15)
DotNet/Normalization/Application/Models/NormalizationConfigModel.cs (2)

2-2: LGTM: Necessary import added.

The addition of using System.Runtime.Serialization; is correct and necessary for using the DataContract and DataMember attributes.


1-13: Overall assessment: Changes improve serialization capabilities.

The modifications to NormalizationConfigModel successfully implement the data contract for serialization, aligning with the PR objectives. The changes are consistent with updates to other models in the codebase. While the current implementation is functional, consider the suggested improvements to enhance maintainability and serialization control.

DotNet/DataAcquisition.Domain/Entities/FhirListConfiguration.cs (4)

4-4: LGTM: Necessary using statement added.

The addition of using System.Runtime.Serialization; is correct and necessary for the DataContract and DataMember attributes used in the class.


1-20: Overall, the changes to FhirListConfiguration.cs look good.

The additions of [DataContract] and [DataMember] attributes are consistent with the PR objectives and improve the serialization capabilities of the FhirListConfiguration class. The new properties added seem appropriate for the class's purpose.

A few minor suggestions were made for naming conventions and documentation. Additionally, it would be beneficial to verify the [DataContract] attribute on related classes (AuthenticationConfiguration and EhrPatientList) to ensure consistency in serialization across the codebase.


18-19: LGTM with minor suggestions: EHRPatientLists property added.

The EHRPatientLists property is correctly implemented with the [DataMember] attribute.

Consider adjusting the property name to follow consistent PascalCase naming convention:

public List<EhrPatientList> EhrPatientLists { get; set; }

Could you please confirm that the EhrPatientList class is defined and also marked with [DataContract]? This ensures consistency in serialization across related classes.

#!/bin/bash
# Search for the EhrPatientList class definition
ast-grep --pattern 'class EhrPatientList {
  $$$
}'

# Check if EhrPatientList is marked with [DataContract]
rg '\[DataContract\]\s*public\s+class\s+EhrPatientList'

16-17: LGTM: Authentication property added correctly.

The Authentication property is correctly implemented with the [DataMember] attribute and is appropriately defined as nullable.

Could you please confirm that the AuthenticationConfiguration class is defined and also marked with [DataContract]? This ensures consistency in serialization across related classes.

DotNet/DataAcquisition.Domain/Entities/QueryPlan.cs (4)

3-3: LGTM: Necessary namespace addition

The addition of the System.Runtime.Serialization namespace is correct and necessary for the [DataContract] and [DataMember] attributes used in the class.


12-25: LGTM: New properties added with DataMember attributes

The addition of new properties (PlanName, ReportType, FacilityId, EHRDescription, LookBack, InitialQueries, SupplementalQueries) with [DataMember] attributes is correct and enhances the QueryPlan class structure.

To ensure proper initialization of these properties, please run the following script:

#!/bin/bash
# Description: Verify property initialization in the QueryPlan constructor

# Test: Check if the QueryPlan constructor initializes the new properties
rg -p 'public\s+QueryPlan\s*\([^)]*\)\s*(?::\s*base\([^)]*\))?\s*\{(?s:.)*?\}' DotNet/DataAcquisition.Domain/Entities/QueryPlan.cs

If the constructor doesn't initialize these properties, consider updating it to ensure they have default values or are properly initialized.


Line range hint 27-30: Consider updating the constructor or adding null checks

The existing constructor doesn't initialize the newly added properties. Consider either:

  1. Updating the constructor to initialize these properties with default values, or
  2. Ensuring that null checks are performed wherever these properties are used in the codebase.

Here's a suggested update to the constructor:

public QueryPlan() : base()
{
    PlanName = string.Empty;
    ReportType = string.Empty;
    FacilityId = string.Empty;
    EHRDescription = string.Empty;
    LookBack = string.Empty;
    InitialQueries = new Dictionary<string, IQueryConfig>();
    SupplementalQueries = new Dictionary<string, IQueryConfig>();
}

To check for potential null reference issues, run the following script:

#!/bin/bash
# Description: Search for usage of new properties without null checks

# Test: Look for usage of new properties without null checks
echo "Potential null reference issues:"
rg '\b(PlanName|ReportType|FacilityId|EHRDescription|LookBack|InitialQueries|SupplementalQueries)\b(?!(\?\.)|\s*==\s*null|\s*!=\s*null)'

8-8: LGTM: DataContract attribute added

The addition of the [DataContract] attribute to the QueryPlan class is correct and aligns with the PR objectives.

To ensure consistency across the codebase, please run the following script:

✅ Verification successful

[DataContract] attribute correctly applied and consistent

The [DataContract] attribute is correctly applied to the QueryPlan class in ./DotNet/DataAcquisition.Domain/Entities/QueryPlan.cs. This usage is consistent with other domain entities and configuration models across the codebase, such as FhirListConfiguration, FhirQueryConfiguration, and NormalizationConfigModel. The attribute is appropriately not used for command classes or controllers, which typically don't require serialization.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify DataContract attribute usage across related classes

# Test: Search for classes with DataContract attribute
echo "Classes with DataContract attribute:"
rg -p '\[DataContract\]\s+(?:public\s+)?class\s+(\w+)' --only-matching --replace '$1'

# Test: Search for classes that might be missing DataContract attribute
echo "\nClasses that might be missing DataContract attribute:"
rg -p 'public\s+class\s+(\w+).*\{' --only-matching --replace '$1' | \
  grep -vFf <(rg -p '\[DataContract\]\s+(?:public\s+)?class\s+(\w+)' --only-matching --replace '$1')

Length of output: 1093


Script:

#!/bin/bash
# Description: Verify DataContract attribute usage across related classes

# Test 1: Search for classes with DataContract attribute
echo "Classes with DataContract attribute:"
rg '\[DataContract\]\s+public\s+class\s+(\w+)' --only-matching --replace '$1' .

# Test 2: Search for all public classes
echo "\nAll public classes:"
rg 'public\s+class\s+(\w+)' --only-matching --replace '$1' .

# Test 3: Identify public classes missing DataContract attribute
echo "\nPublic classes missing DataContract attribute:"
# List all public classes
all_classes=$(rg 'public\s+class\s+(\w+)' --only-matching --replace '$1' .)

# List classes with DataContract
data_contract_classes=$(rg '\[DataContract\]\s+public\s+class\s+(\w+)' --only-matching --replace '$1' .)

# Compare and find missing
for class in $all_classes; do
  if ! echo "$data_contract_classes" | grep -qx "$class"; then
    echo "$class"
  fi
done

Length of output: 401345


Script:

#!/bin/bash
# Search for [DataContract] attribute usage

echo "Classes with [DataContract] attribute:"
grep -r "\[DataContract\]" --include="*.cs" .

echo -e "\nQueryPlan class definition:"
grep -r "class QueryPlan" --include="*.cs" .

echo -e "\nAll public classes (sample of first 10):"
grep -r "public class" --include="*.cs" . | head -n 10

Length of output: 2666

DotNet/DataAcquisition.Domain/Entities/FhirQueryConfiguration.cs (3)

7-7: LGTM: Necessary namespace added for serialization attributes.

The addition of System.Runtime.Serialization namespace is correct and necessary for the [DataContract] and [DataMember] attributes used in the class.


11-11: LGTM: Class correctly marked for serialization.

The [DataContract] attribute is correctly added to the FhirQueryConfiguration class, enabling it for serialization. This is in line with the PR objectives of enhancing serialization capabilities.


19-30: LGTM: New properties correctly added and configured for serialization.

The new properties (FhirServerBaseUrl, Authentication, and QueryPlanIds) are correctly added and marked for serialization. The JSON serialization behavior is consistent across these properties, excluding them when null.

The Authentication property has an additional [BsonIgnoreIfNull] attribute. Please verify if this different behavior for BSON serialization is intentional. If it is, consider adding a comment explaining why this property is treated differently for BSON serialization.

To check for consistency in BSON serialization across the codebase, you can run the following script:

This will help identify if the [BsonIgnoreIfNull] attribute is used consistently across the codebase and if there are other BSON-related attributes in use.

✅ Verification successful

BSON Serialization Attributes Verified and Consistent

The [BsonIgnoreIfNull] attribute is consistently applied across the codebase, including in the FhirQueryConfiguration.cs file for the Authentication property. No inconsistencies found in BSON serialization behaviors.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check for consistency in BSON serialization attributes

# Search for classes with [BsonIgnoreIfNull] attribute
echo "Classes with [BsonIgnoreIfNull] attribute:"
rg -n '\[BsonIgnoreIfNull\]' --type cs

# Search for other BSON-related attributes
echo "\nOther BSON-related attributes:"
rg -n '\[Bson' --type cs | grep -v 'BsonIgnoreIfNull'

Length of output: 3920

DotNet/DataAcquisition.Domain/Models/AuthenticationConfiguration.cs (2)

1-1: LGTM: DataContract attribute and using statement added correctly.

The addition of the [DataContract] attribute to the AuthenticationConfiguration class and the corresponding using System.Runtime.Serialization; statement are correct and align with the PR objectives to enhance serialization capabilities.

Also applies to: 7-8


Line range hint 1-44: Verify impact on dependent components.

Given that AuthenticationConfiguration is used in other parts of the system (e.g., FhirListConfiguration and FhirQueryConfiguration), it's important to verify that these changes don't introduce any breaking changes or unexpected behavior in the serialization/deserialization process of those components.

To ensure the changes don't negatively impact the system, please run the following verification steps:

Please review the output of these commands to ensure that all usages of AuthenticationConfiguration are compatible with the new changes, and that appropriate unit tests exist (or are updated) to cover the new serialization behavior.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Outside diff range and nitpick comments (1)
DotNet/Normalization/Controllers/NormalizationController.cs (1)

Line range hint 1-203: Summary of changes and potential impact

The changes to the NormalizationController primarily involve the removal of Kafka-related functionality and the CreateAuditEvent method. While these changes simplify the controller and align with the PR objectives, it's important to consider the following:

  1. Ensure that audit functionality is handled appropriately elsewhere in the system.
  2. Verify that the removal of Kafka dependencies doesn't affect other parts of the application that might rely on this controller for audit events.
  3. Update any documentation or dependent code that might reference the removed CreateAuditEvent method.

These changes appear to be part of a larger refactoring effort. Please ensure that all related changes across the system are consistent and that no functionality is unintentionally lost.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between efe2797 and 0e76840.

📒 Files selected for processing (1)
  • DotNet/Normalization/Controllers/NormalizationController.cs (1 hunks)
🧰 Additional context used
🔇 Additional comments (3)
DotNet/Normalization/Controllers/NormalizationController.cs (3)

Line range hint 1-9: LGTM: Removal of unused Kafka namespace

The removal of the Confluent.Kafka namespace from the using directives is appropriate, as it aligns with the removal of Kafka-related functionality from this controller.


Line range hint 1-203: Verify audit functionality after removing CreateAuditEvent method

The removal of the CreateAuditEvent method from the NormalizationController is consistent with the other changes and simplifies the controller's responsibilities. However, it's crucial to ensure that audit functionality is not lost entirely from the system.

Please confirm that audit events are being handled appropriately elsewhere in the system. Run the following script to search for audit-related code:

#!/bin/bash
# Search for audit-related code in the codebase
rg "AuditEvent" --type cs

Line range hint 78-78: Remove commented-out code and consider audit implications

The commented-out CreateAuditEvent call should be removed entirely rather than left as a comment. Additionally, consider the implications of removing this audit event creation. If auditing is still required, ensure it's handled appropriately elsewhere in the system.

To ensure no other parts of the codebase rely on this audit event, run the following script:

✅ Verification successful

Verified removal of the commented-out CreateAuditEvent

The CreateAuditEvent method does not appear to be used elsewhere in the codebase. It's safe to remove the commented-out code. Ensure that all audit event logging is properly handled through other mechanisms if required.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Search for references to CreateAuditEvent in the codebase
rg "CreateAuditEvent" --type cs

Length of output: 59621

@MontaltoNick MontaltoNick changed the base branch from dev to rc_0.1.0 October 21, 2024 18:12
@MontaltoNick MontaltoNick changed the base branch from rc_0.1.0 to dev October 21, 2024 18:12
Copy link
Contributor

@amphillipsLGC amphillipsLGC left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants