Skip to content

Commit

Permalink
Merge pull request #6 from miracum/renovate/all
Browse files Browse the repository at this point in the history
chore(deps): update all dependencies
  • Loading branch information
chgl authored Apr 24, 2021
2 parents 132d005 + 16a1c56 commit 127fb95
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-python@v2
- name: Run pre-commit
uses: pre-commit/action@v2.0.2
uses: pre-commit/action@v2.0.3
- name: Lint code base
uses: github/super-linter@v3
env:
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repos:
- id: check-executables-have-shebangs
- id: check-json
- repo: https://github.com/jorisroovers/gitlint
rev: v0.15.0
rev: v0.15.1
hooks:
- id: gitlint
stages: [commit-msg]
Expand Down
2 changes: 1 addition & 1 deletion src/FhirPseudonymizer.Tests/FhirPseudonymizer.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<PackageReference Include="coverlet.msbuild" Version="3.0.3"/>
<PackageReference Include="FakeItEasy" Version="7.0.1" />
<PackageReference Include="FluentAssertions" Version="6.0.0-alpha0002" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="5.0.4" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="5.0.5" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
Expand Down
10 changes: 5 additions & 5 deletions src/FhirPseudonymizer/FhirPseudonymizer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.10.14" />
<PackageReference Include="prometheus-net" Version="4.1.1" />
<PackageReference Include="prometheus-net.AspNetCore" Version="4.1.1" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.1.1" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.1.3" />
<PackageReference Include="Microsoft.Extensions.Http.Polly" Version="5.0.1" />
<PackageReference Include="NetEscapades.Configuration.Yaml" Version="2.1.0" />
<PackageReference Include="Ensure.That" Version="10.1.0" />
<PackageReference Include="MathNet.Numerics" Version="4.15.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="OpenTelemetry" Version="1.1.0-beta1" />
<PackageReference Include="OpenTelemetry" Version="1.1.0-beta2" />
<PackageReference Include="OpenTelemetry.Exporter.Console" Version="1.0.1" />
<PackageReference Include="OpenTelemetry.Exporter.Jaeger" Version="1.0.1" />
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.0.0-rc3" />
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.0.0-rc3" />
<PackageReference Include="OpenTelemetry.Instrumentation.Http" Version="1.0.0-rc3" />
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.0.0-rc4" />
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.0.0-rc4" />
<PackageReference Include="OpenTelemetry.Instrumentation.Http" Version="1.0.0-rc4" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="5.0.1" />
</ItemGroup>

Expand Down
4 changes: 2 additions & 2 deletions src/FhirPseudonymizer/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ public void ConfigureServices(IServiceCollection services)
})
.AddSource(Program.ActivitySource.Name)
.AddHttpClientInstrumentation()
.AddJaegerExporter()
.SetResourceBuilder(ResourceBuilder.CreateDefault().AddService(serviceName));
.SetResourceBuilder(ResourceBuilder.CreateDefault().AddService(serviceName))
.AddJaegerExporter();
});

services.Configure<JaegerExporterOptions>(Configuration.GetSection("Tracing:Jaeger"));
Expand Down

0 comments on commit 127fb95

Please sign in to comment.