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

chore(deps): update dependency spectre.console to v0.42.0 #1787

Merged
merged 4 commits into from
Oct 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Promitor.Agents.Core/Promitor.Agents.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
<PackageReference Include="Prometheus.Client.HttpRequestDurations" Version="3.4.0" />
<PackageReference Include="Serilog.AspNetCore" Version="4.1.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.0" />
<PackageReference Include="Spectre.Console" Version="0.41.0" />
<PackageReference Include="Spectre.Console" Version="0.42.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.2" />
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.2.2" />
<PackageReference Include="Swashbuckle.AspNetCore.Filters" Version="7.0.2" />
<PackageReference Include="Humanizer" Version="2.11.10" />
<PackageReference Include="Spectre.Console" Version="0.41.0" />
<PackageReference Include="Spectre.Console" Version="0.42.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ private void PlotResourceDiscoveryGroupsInAsciiTable(List<ResourceDiscoveryGroup
asciiTable.AddRow(resourceDiscoveryGroup.Name, resourceDiscoveryGroup.Type.Humanize(LetterCasing.Title), isInclusionCriteriaConfigured);
}

AnsiConsole.Render(asciiTable);
AnsiConsole.Write(asciiTable);
}

private void PlotAzureMetadataInAsciiTable(AzureLandscape azureLandscape)
Expand All @@ -51,7 +51,7 @@ private void PlotAzureMetadataInAsciiTable(AzureLandscape azureLandscape)

asciiTable.AddRow(azureLandscape.TenantId, azureLandscape.Cloud.Humanize(LetterCasing.Title), rawSubscriptions);

AnsiConsole.Render(asciiTable);
AnsiConsole.Write(asciiTable);
}

private Table CreateResourceDiscoveryGroupsAsciiTable()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ private void PlotAzureMetadataInAsciiTable(AzureMetadata metadata)

asciiTable.AddRow(metadata.TenantId, metadata.SubscriptionId, metadata.ResourceGroupName, metadata.Cloud.Name.Humanize(LetterCasing.Title));

AnsiConsole.Render(asciiTable);
AnsiConsole.Write(asciiTable);
}

private void PlotMetricsInAsciiTable(List<MetricDefinition> configuredMetrics)
Expand Down Expand Up @@ -76,7 +76,7 @@ private void PlotMetricsInAsciiTable(List<MetricDefinition> configuredMetrics)
asciiTable.AddRow(outputMetricName, metric.ResourceType.Humanize(LetterCasing.Title), labels, azureMetricName, configuredResources, configuredResourceDiscoveryGroups);
}

AnsiConsole.Render(asciiTable);
AnsiConsole.Write(asciiTable);
}

private Table CreateAzureMetadataAsciiTable()
Expand Down