Skip to content

Bump the nuget group with 11 updates#782

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/nuget/src/XtremeIdiots.Portal.Repository.App.Tests/nuget-a006081ef9
Open

Bump the nuget group with 11 updates#782
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/nuget/src/XtremeIdiots.Portal.Repository.App.Tests/nuget-a006081ef9

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 15, 2026

Updated Microsoft.ApplicationInsights.WorkerService from 2.23.0 to 3.0.0.

Release notes

Sourced from Microsoft.ApplicationInsights.WorkerService's releases.

3.0.0

3.0.0-rc1

3.0.0-beta2

Added

  • Automatic configuration binding from "ApplicationInsights" section in appsettings.json for both AspNetCore and WorkerService packages with configuration precedence: environment variables > explicit configuration > appsettings.json
  • Added support for Entra ID (Azure Active Directory) authentication using Azure.Core.TokenCredential
  • Added Self Diagnostics feature
  • Updated the default sampler from Fixed Rate to Rate-Limited Sampling.
  • Update Azure Monitor Exporter to 1.6.0-beta.2
  • Add comprehensive applicationinsights.config support
  • Add properties in TelemetryConfiguration to configure underlying exporter

Bug fix

  • Fix TrackMetric(MetricTelemetry) unsupported telemetry type error

3.0.0-beta1

  • The following Application Insights packages in this repo now use OpenTelemetry internally. OpenTelemetry is the industry standard for telemetry collection and provides better interoperability with other observability tools.
    • Microsoft.ApplicationInsights
    • Microsoft.ApplicationInsights.AspNetCore
    • Microsoft.ApplicationInsights.WorkerService
    • Microsoft.ApplicationInsights.Web
    • Microsoft.ApplicationInsights.NLogTarget
  • Classic APIs of the above packages are preserved; calls are translated to OpenTelemetry telemetry.
  • Other packages not listed above (such as certain auto-collectors and logging adapters that were published from this repo previously) will not have future versions published. See BreakingChanges.md for details.

Commits viewable in compare view.

Updated Microsoft.Azure.AppConfiguration.Functions.Worker from 8.1.2 to 8.5.0.

Release notes

Sourced from Microsoft.Azure.AppConfiguration.Functions.Worker's releases.

8.5.0-preview

Microsoft.Extensions.Configuration.AzureAppConfiguration 8.5.0-preview - November 14th, 2025

Enhancements

  • Added a new method ConnectAzureFrontDoor to AzureAppConfigurationOptions, which can be used to load configuration settings from Azure App Configuration via an Azure Front Door endpoint. This enables client (browser) applications to take advantage of CDN benefits, such as scale, when fetching configuration. #​706

Microsoft.Azure.AppConfiguration.AspNetCore 8.5.0-preview - November 14th, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.5.0-preview. See the release notes for more information on the changes.

Microsoft.Azure.AppConfiguration.Functions.Worker 8.5.0-preview - November 14th, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.5.0-preview. See the release notes for more information on the changes.

8.4.0

Microsoft.Extensions.Configuration.AzureAppConfiguration 8.4.0 - September 19th, 2025

Enhancements

  • Added an overload of AddAzureAppConfiguration that accepts the endpoint and token credential. #​694

  • Added support for parsing json values with comments. #​685

  • Added support for snapshot references. If a configuration setting's value is a snapshot reference, loading it automatically pulls all key-values and feature flags from the referenced snapshot into the configuration. This enables dynamically switching between snapshots at runtime. #​689

  • Updated dependency package versions. #​695

    • Azure.Data.AppConfiguration: 1.6.0 -> 1.6.1
    • Azure.Messaging.EventGrid: 4.7.0 -> 5.0.0
    • Azure.Security.KeyVault.Secrets: 4.6.0 -> 4.8.0
    • Microsoft.Extensions.Diagnostics.HealthChecks: 6.0.36 -> 8.0.19
    • Microsoft.Extensions.Azure: 1.7.6 -> 1.12.0
    • Microsoft.Extensions.DependencyInjection.Abstractions: 6.0.0 -> 8.0.2
    • Microsoft.Extensions.Logging: 6.0.0 -> 8.0.1
    • Microsoft.Extensions.Configuration: 6.0.1 -> 8.0.0

Microsoft.Azure.AppConfiguration.AspNetCore 8.4.0 - September 19th, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.4.0. See the release notes for more information on the changes.

Microsoft.Azure.AppConfiguration.Functions.Worker 8.4.0 - September 19th, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.4.0. See the release notes for more information on the changes.

8.3.0

Microsoft.Extensions.Configuration.AzureAppConfiguration 8.3.0 - July 24th, 2025

Enhancements

  • Added health check integration for Microsoft.Extensions.Diagnostic.HealthChecks. You can call AddAzureAppConfiguration on IHealthCheckBuilder to register a health check for the Azure App Configuration provider. #​644

    builder.Services
       .AddHealthChecks()
       .AddAzureAppConfiguration();
  • Introduced a new environment variable AZURE_APP_CONFIGURATION_FM_SCHEMA_COMPATIBILITY_DISABLED to force processing and outputting feature flags using the Microsoft schema. #​676

Microsoft.Azure.AppConfiguration.AspNetCore 8.3.0 - July 24th, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.3.0. See the release notes for more information on the changes.

Microsoft.Azure.AppConfiguration.Functions.Worker 8.3.0 - July 24th, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.3.0. See the release notes for more information on the changes.

8.2.0

Microsoft.Extensions.Configuration.AzureAppConfiguration 8.2.0 - May 14th, 2025

Enhancements

  • Updated the existing Select APIs with the new parameter tagFilters to support filtering key-values and feature flags by tags.

    public AzureAppConfigurationOptions Select(string keyFilter, string labelFilter = LabelFilter.Null, IEnumerable<string> tagFilters = null)
    public FeatureFlagOptions Select(string featureFlagFilter, string labelFilter = LabelFilter.Null, IEnumerable<string> tagFilters = null)
  • Added an ActivitySource called Microsoft.Extensions.Configuration.AzureAppConfiguration to support instrumentation. A Load activity will start when configuration is initially built and the Refresh activity will start when a refresh is triggered. #​645

  • This is the first stable release of the AzureAppConfigurationOptions.SetClientFactory API introduced in 8.2.0-preview. #​380

    public AzureAppConfigurationOptions SetClientFactory(IAzureClientFactory<ConfigurationClient> factory)

Other Changes

  • Removed the FeatureFlagId property from feature flag telemetry. #​655
  • Shortened default network timeout for requests to App Configuration to improve failover speed and retry responsiveness. #​657
  • This is the first stable release of AllocationId from feature flag telemetry metadata, which was introduced in 8.1.0-preview. #​600

Microsoft.Azure.AppConfiguration.AspNetCore 8.2.0 - May 14th, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.2.0. See the release notes for more information on the changes.

Microsoft.Azure.AppConfiguration.Functions.Worker 8.2.0 - May 14th, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.2.0. See the release notes for more information on the changes.

8.2.0-preview

Microsoft.Extensions.Configuration.AzureAppConfiguration 8.2.0-preview - March 21st, 2025

Enhancements

  • Added the ability to set a client factory used for creating ConfigurationClient instances. #​380

    public AzureAppConfigurationOptions SetClientFactory(IAzureClientFactory<ConfigurationClient> factory)

Microsoft.Azure.AppConfiguration.AspNetCore 8.2.0-preview - March 21st, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.2.0-preview. See the release notes for more information on the changes.

Microsoft.Azure.AppConfiguration.Functions.Worker 8.2.0-preview - March 21st, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.2.0-preview. See the release notes for more information on the changes.

Commits viewable in compare view.

Updated Microsoft.Extensions.Caching.Memory from 10.0.3 to 10.0.5.

Release notes

Sourced from Microsoft.Extensions.Caching.Memory's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.Configuration.AzureAppConfiguration from 8.1.2 to 8.5.0.

Release notes

Sourced from Microsoft.Extensions.Configuration.AzureAppConfiguration's releases.

8.5.0-preview

Microsoft.Extensions.Configuration.AzureAppConfiguration 8.5.0-preview - November 14th, 2025

Enhancements

  • Added a new method ConnectAzureFrontDoor to AzureAppConfigurationOptions, which can be used to load configuration settings from Azure App Configuration via an Azure Front Door endpoint. This enables client (browser) applications to take advantage of CDN benefits, such as scale, when fetching configuration. #​706

Microsoft.Azure.AppConfiguration.AspNetCore 8.5.0-preview - November 14th, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.5.0-preview. See the release notes for more information on the changes.

Microsoft.Azure.AppConfiguration.Functions.Worker 8.5.0-preview - November 14th, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.5.0-preview. See the release notes for more information on the changes.

8.4.0

Microsoft.Extensions.Configuration.AzureAppConfiguration 8.4.0 - September 19th, 2025

Enhancements

  • Added an overload of AddAzureAppConfiguration that accepts the endpoint and token credential. #​694

  • Added support for parsing json values with comments. #​685

  • Added support for snapshot references. If a configuration setting's value is a snapshot reference, loading it automatically pulls all key-values and feature flags from the referenced snapshot into the configuration. This enables dynamically switching between snapshots at runtime. #​689

  • Updated dependency package versions. #​695

    • Azure.Data.AppConfiguration: 1.6.0 -> 1.6.1
    • Azure.Messaging.EventGrid: 4.7.0 -> 5.0.0
    • Azure.Security.KeyVault.Secrets: 4.6.0 -> 4.8.0
    • Microsoft.Extensions.Diagnostics.HealthChecks: 6.0.36 -> 8.0.19
    • Microsoft.Extensions.Azure: 1.7.6 -> 1.12.0
    • Microsoft.Extensions.DependencyInjection.Abstractions: 6.0.0 -> 8.0.2
    • Microsoft.Extensions.Logging: 6.0.0 -> 8.0.1
    • Microsoft.Extensions.Configuration: 6.0.1 -> 8.0.0

Microsoft.Azure.AppConfiguration.AspNetCore 8.4.0 - September 19th, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.4.0. See the release notes for more information on the changes.

Microsoft.Azure.AppConfiguration.Functions.Worker 8.4.0 - September 19th, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.4.0. See the release notes for more information on the changes.

8.3.0

Microsoft.Extensions.Configuration.AzureAppConfiguration 8.3.0 - July 24th, 2025

Enhancements

  • Added health check integration for Microsoft.Extensions.Diagnostic.HealthChecks. You can call AddAzureAppConfiguration on IHealthCheckBuilder to register a health check for the Azure App Configuration provider. #​644

    builder.Services
       .AddHealthChecks()
       .AddAzureAppConfiguration();
  • Introduced a new environment variable AZURE_APP_CONFIGURATION_FM_SCHEMA_COMPATIBILITY_DISABLED to force processing and outputting feature flags using the Microsoft schema. #​676

Microsoft.Azure.AppConfiguration.AspNetCore 8.3.0 - July 24th, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.3.0. See the release notes for more information on the changes.

Microsoft.Azure.AppConfiguration.Functions.Worker 8.3.0 - July 24th, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.3.0. See the release notes for more information on the changes.

8.2.0

Microsoft.Extensions.Configuration.AzureAppConfiguration 8.2.0 - May 14th, 2025

Enhancements

  • Updated the existing Select APIs with the new parameter tagFilters to support filtering key-values and feature flags by tags.

    public AzureAppConfigurationOptions Select(string keyFilter, string labelFilter = LabelFilter.Null, IEnumerable<string> tagFilters = null)
    public FeatureFlagOptions Select(string featureFlagFilter, string labelFilter = LabelFilter.Null, IEnumerable<string> tagFilters = null)
  • Added an ActivitySource called Microsoft.Extensions.Configuration.AzureAppConfiguration to support instrumentation. A Load activity will start when configuration is initially built and the Refresh activity will start when a refresh is triggered. #​645

  • This is the first stable release of the AzureAppConfigurationOptions.SetClientFactory API introduced in 8.2.0-preview. #​380

    public AzureAppConfigurationOptions SetClientFactory(IAzureClientFactory<ConfigurationClient> factory)

Other Changes

  • Removed the FeatureFlagId property from feature flag telemetry. #​655
  • Shortened default network timeout for requests to App Configuration to improve failover speed and retry responsiveness. #​657
  • This is the first stable release of AllocationId from feature flag telemetry metadata, which was introduced in 8.1.0-preview. #​600

Microsoft.Azure.AppConfiguration.AspNetCore 8.2.0 - May 14th, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.2.0. See the release notes for more information on the changes.

Microsoft.Azure.AppConfiguration.Functions.Worker 8.2.0 - May 14th, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.2.0. See the release notes for more information on the changes.

8.2.0-preview

Microsoft.Extensions.Configuration.AzureAppConfiguration 8.2.0-preview - March 21st, 2025

Enhancements

  • Added the ability to set a client factory used for creating ConfigurationClient instances. #​380

    public AzureAppConfigurationOptions SetClientFactory(IAzureClientFactory<ConfigurationClient> factory)

Microsoft.Azure.AppConfiguration.AspNetCore 8.2.0-preview - March 21st, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.2.0-preview. See the release notes for more information on the changes.

Microsoft.Azure.AppConfiguration.Functions.Worker 8.2.0-preview - March 21st, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.2.0-preview. See the release notes for more information on the changes.

Commits viewable in compare view.

Updated Microsoft.Extensions.Configuration.UserSecrets from 10.0.3 to 10.0.5.

Release notes

Sourced from Microsoft.Extensions.Configuration.UserSecrets's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.Diagnostics.HealthChecks from 10.0.3 to 10.0.5.

Release notes

Sourced from Microsoft.Extensions.Diagnostics.HealthChecks's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated MX.Api.Client from 2.2.40 to 2.3.31.

Release notes

Sourced from MX.Api.Client's releases.

2.3.31

What's Changed

Full Changelog: frasermolyneux/api-client-abstractions@v2.3.25...v2.3.31

2.3.25

Full Changelog: frasermolyneux/api-client-abstractions@v2.3.24...v2.3.25

2.3.24

Full Changelog: frasermolyneux/api-client-abstractions@v2.3.23...v2.3.24

2.3.23

What's Changed

Full Changelog: frasermolyneux/api-client-abstractions@v2.2.40...v2.3.23

Commits viewable in compare view.

Updated MX.GeoLocation.Api.Client.Testing from 1.2.16 to 1.2.18.

Release notes

Sourced from MX.GeoLocation.Api.Client.Testing's releases.

1.2.18

Full Changelog: frasermolyneux/geo-location@v1.2.16...v1.2.18

Commits viewable in compare view.

Updated MX.GeoLocation.Api.Client.V1 from 1.1.20260212.3 to 1.2.18.

Release notes

Sourced from MX.GeoLocation.Api.Client.V1's releases.

1.2.18

Full Changelog: frasermolyneux/geo-location@v1.2.16...v1.2.18

1.2.16

What's Changed

Full Changelog: frasermolyneux/geo-location@v1.2.4...v1.2.16

1.2.4

What's Changed

Full Changelog: frasermolyneux/geo-location@v1.2.2...v1.2.4

1.2.2

What's Changed

Full Changelog: frasermolyneux/geo-location@v1.2.1...v1.2.2

1.2.1

What's Changed

Full Changelog: frasermolyneux/geo-location@v1.0.28...v1.2.1

Commits viewable in compare view.

Updated XtremeIdiots.Portal.Integrations.Servers.Api.Client.V1 from 2.1.92 to 2.1.121.

Release notes

Sourced from XtremeIdiots.Portal.Integrations.Servers.Api.Client.V1's releases.

2.1.121

Full Changelog: frasermolyneux/portal-servers-integration@v2.1.120...v2.1.121

2.1.120

What's Changed

Full Changelog: frasermolyneux/portal-servers-integration@v2.1.111...v2.1.120

2.1.111

What's Changed

Full Changelog: frasermolyneux/portal-servers-integration@v2.1.109...v2.1.111

2.1.109

What's Changed

Full Changelog: frasermolyneux/portal-servers-integration@v2.1.106...v2.1.109

2.1.106

Full Changelog: frasermolyneux/portal-servers-integration@v2.1.105...v2.1.106

2.1.105

What's Changed

Full Changelog: frasermolyneux/portal-servers-integration@v2.1.85...v2.1.105

Commits viewable in compare view.

Updated XtremeIdiots.Portal.Repository.Api.Client.V1 from 2.1.126 to 2.1.150.

Release notes

Sourced from XtremeIdiots.Portal.Repository.Api.Client.V1's releases.

2.1.150

Full Changelog: frasermolyneux/portal-repository@v2.1.149...v2.1.150

2.1.149

What's Changed

Full Changelog: frasermolyneux/portal-repository@v2.1.139...v2.1.149

2.1.139

What's Changed

Full Changelog: frasermolyneux/portal-repository@v2.1.138...v2.1.139

2.1.138

What's Changed

Full Changelog: frasermolyneux/portal-repository@v2.1.135...v2.1.138

2.1.135

What's Changed

Full Changelog: frasermolyneux/portal-repository@v2.1.133...v2.1.135

2.1.133

What's Changed

Full Changelog: frasermolyneux/portal-repository@v2.1.130...v2.1.133

2.1.130

Full Changelog: frasermolyneux/portal-repository@v2.1.129...v2.1.130

2.1.129

Full Changelog: frasermolyneux/portal-repository@v2.1.126...v2.1.129

Commits viewable in compare view.

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps Microsoft.ApplicationInsights.WorkerService from 2.23.0 to 3.0.0
Bumps Microsoft.Azure.AppConfiguration.Functions.Worker from 8.1.2 to 8.5.0
Bumps Microsoft.Extensions.Caching.Memory from 10.0.3 to 10.0.5
Bumps Microsoft.Extensions.Configuration.AzureAppConfiguration from 8.1.2 to 8.5.0
Bumps Microsoft.Extensions.Configuration.UserSecrets from 10.0.3 to 10.0.5
Bumps Microsoft.Extensions.Diagnostics.HealthChecks from 10.0.3 to 10.0.5
Bumps MX.Api.Client from 2.2.40 to 2.3.31
Bumps MX.GeoLocation.Api.Client.Testing from 1.2.16 to 1.2.18
Bumps MX.GeoLocation.Api.Client.V1 from 1.1.20260212.3 to 1.2.18
Bumps XtremeIdiots.Portal.Integrations.Servers.Api.Client.V1 from 2.1.92 to 2.1.121
Bumps XtremeIdiots.Portal.Repository.Api.Client.V1 from 2.1.126 to 2.1.150

---
updated-dependencies:
- dependency-name: Microsoft.ApplicationInsights.WorkerService
  dependency-version: 3.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget
- dependency-name: Microsoft.Azure.AppConfiguration.Functions.Worker
  dependency-version: 8.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Microsoft.Extensions.Configuration.AzureAppConfiguration
  dependency-version: 8.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Microsoft.Extensions.Caching.Memory
  dependency-version: 10.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Microsoft.Extensions.Configuration.UserSecrets
  dependency-version: 10.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Microsoft.Extensions.Diagnostics.HealthChecks
  dependency-version: 10.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: MX.Api.Client
  dependency-version: 2.3.31
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: MX.GeoLocation.Api.Client.Testing
  dependency-version: 1.2.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: MX.GeoLocation.Api.Client.V1
  dependency-version: 1.2.18
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: XtremeIdiots.Portal.Integrations.Servers.Api.Client.V1
  dependency-version: 2.1.121
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: XtremeIdiots.Portal.Repository.Api.Client.V1
  dependency-version: 2.1.150
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels Mar 15, 2026
@github-actions github-actions bot enabled auto-merge (squash) March 15, 2026 01:51
@github-actions
Copy link
Contributor

Dependency Review

The following issues were found:
  • ✅ 0 vulnerable package(s)
  • ✅ 0 package(s) with incompatible licenses
  • ✅ 0 package(s) with invalid SPDX license definitions
  • ⚠️ 6 package(s) with unknown licenses.
See the Details below.

License Issues

src/XtremeIdiots.Portal.Repository.App.Tests/XtremeIdiots.Portal.Repository.App.Tests.csproj

PackageVersionLicenseIssue Type
MX.GeoLocation.Api.Client.Testing1.2.18NullUnknown License

src/XtremeIdiots.Portal.Repository.App/XtremeIdiots.Portal.Repository.App.csproj

PackageVersionLicenseIssue Type
MX.GeoLocation.Api.Client.V11.2.18NullUnknown License
Microsoft.ApplicationInsights.WorkerService3.0.0NullUnknown License
Microsoft.Extensions.Caching.Memory10.0.5NullUnknown License
Microsoft.Extensions.Configuration.UserSecrets10.0.5NullUnknown License
Microsoft.Extensions.Diagnostics.HealthChecks10.0.5NullUnknown License

OpenSSF Scorecard

Scorecard details
PackageVersionScoreDetails
nuget/MX.GeoLocation.Api.Client.Testing 1.2.18 UnknownUnknown
nuget/MX.Api.Client 2.3.31 UnknownUnknown
nuget/MX.GeoLocation.Api.Client.V1 1.2.18 UnknownUnknown
nuget/Microsoft.ApplicationInsights.WorkerService 3.0.0 UnknownUnknown
nuget/Microsoft.Azure.AppConfiguration.Functions.Worker 8.5.0 UnknownUnknown
nuget/Microsoft.Extensions.Caching.Memory 10.0.5 UnknownUnknown
nuget/Microsoft.Extensions.Configuration.AzureAppConfiguration 8.5.0 UnknownUnknown
nuget/Microsoft.Extensions.Configuration.UserSecrets 10.0.5 UnknownUnknown
nuget/Microsoft.Extensions.Diagnostics.HealthChecks 10.0.5 UnknownUnknown
nuget/XtremeIdiots.Portal.Integrations.Servers.Api.Client.V1 2.1.121 UnknownUnknown
nuget/XtremeIdiots.Portal.Repository.Api.Client.V1 2.1.150 UnknownUnknown

Scanned Files

  • src/XtremeIdiots.Portal.Repository.App.Tests/XtremeIdiots.Portal.Repository.App.Tests.csproj
  • src/XtremeIdiots.Portal.Repository.App/XtremeIdiots.Portal.Repository.App.csproj

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file .NET Pull requests that update .net code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant