Skip to content

Commit

Permalink
Merge pull request #78 from max-ieremenko/release/1.4.5
Browse files Browse the repository at this point in the history
Release/1.4.5
  • Loading branch information
max-ieremenko authored Mar 26, 2022
2 parents 7a83bd5 + 9f807a1 commit 5258b07
Show file tree
Hide file tree
Showing 264 changed files with 1,541 additions and 1,528 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

- name: Install InvokeBuild
shell: pwsh
run: Install-Module -Name InvokeBuild -RequiredVersion 5.8.6 -Force
run: Install-Module -Name InvokeBuild -RequiredVersion 5.9.9.0 -Force

- name: Build
shell: pwsh
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:

- name: Install InvokeBuild
shell: pwsh
run: Install-Module -Name InvokeBuild -RequiredVersion 5.8.6 -Force
run: Install-Module -Name InvokeBuild -RequiredVersion 5.9.9.0 -Force

- name: Test
shell: pwsh
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:

- name: Install InvokeBuild
shell: pwsh
run: Install-Module -Name InvokeBuild -RequiredVersion 5.8.6 -Force
run: Install-Module -Name InvokeBuild -RequiredVersion 5.9.9.0 -Force

- name: Test
shell: pwsh
Expand All @@ -128,7 +128,7 @@ jobs:

- name: Install InvokeBuild
shell: pwsh
run: Install-Module -Name InvokeBuild -RequiredVersion 5.8.6 -Force
run: Install-Module -Name InvokeBuild -RequiredVersion 5.9.9.0 -Force

- name: Install dotnet sdk
shell: pwsh
Expand Down
2 changes: 1 addition & 1 deletion Build/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ To run CI build locally
- install [InvokeBuild](https://www.powershellgallery.com/packages/InvokeBuild)

``` powershell
PS> Install-Module -Name InvokeBuild -RequiredVersion 5.8.6
PS> Install-Module -Name InvokeBuild -RequiredVersion 5.9.9.0
```
- install net6.0 sdk: manual [download](https://dotnet.microsoft.com/download/dotnet/6.0) or
Expand Down
4 changes: 2 additions & 2 deletions Build/build-locally.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#Install-Module -Name InvokeBuild -RequiredVersion 5.8.6
#Requires -Modules @{ ModuleName="InvokeBuild"; RequiredVersion="5.8.6" }
#Install-Module -Name InvokeBuild -RequiredVersion 5.9.9.0
#Requires -Modules @{ ModuleName="InvokeBuild"; RequiredVersion="5.9.9.0" }

$ErrorActionPreference = "Stop"
Set-StrictMode -Version Latest
Expand Down
2 changes: 2 additions & 0 deletions Build/step-third-party-notices.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ task DesignTime {
$appNames = @("DesignTime")
$sources = @(
(Join-Path $Settings.sources "ServiceModel.Grpc.DesignTime"),
(Join-Path $Settings.sources "ServiceModel.Grpc.DesignTime.Roslyn3"),
(Join-Path $Settings.sources "ServiceModel.Grpc.DesignTime.Roslyn4"),
(Join-Path $Settings.sources "ServiceModel.Grpc.DesignTime.Test"),
(Join-Path $Settings.sources "ServiceModel.Grpc.DesignTime.Generator.Test")
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Castle.Core</id>
<version>4.4.0</version>
<version>4.4.1</version>
<authors>Castle Project Contributors</authors>
<owners>Castle Project Contributors</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0.html</licenseUrl>
<projectUrl>http://www.castleproject.org/</projectUrl>
<iconUrl>http://www.castleproject.org/img/castle-logo.png</iconUrl>
<description>Castle Core, including DynamicProxy, Logging Abstractions and DictionaryAdapter</description>
<copyright>Copyright (c) 2004-2019 Castle Project - http://www.castleproject.org/</copyright>
<copyright>Copyright (c) 2004-2020 Castle Project - http://www.castleproject.org/</copyright>
<tags>castle dynamicproxy dynamic proxy dynamicproxy2 dictionaryadapter emailsender</tags>
<repository type="git" url="https://github.com/castleproject/Core" />
<dependencies>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Castle.Core [4.4.0](https://www.nuget.org/packages/Castle.Core/4.4.0)
Castle.Core [4.4.1](https://www.nuget.org/packages/Castle.Core/4.4.1)
--------------------

Used by: Core internal
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright 2004-2016 Castle Project - http://www.castleproject.org/
Copyright 2004-2021 Castle Project - http://www.castleproject.org/

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>CompareNETObjects</id>
<version>4.74.0</version>
<version>4.76.0</version>
<authors>gfinzer</authors>
<owners></owners>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
Expand All @@ -11,12 +11,12 @@
<icon>NuGetIcon.png</icon>
<projectUrl>https://github.com/GregFinzer/Compare-Net-Objects</projectUrl>
<description>What you have been waiting for. Perform a deep compare of any two .NET objects using reflection. Shows the differences between the two objects.</description>
<releaseNotes>Support for Nullable DateTimeOffset by goyzhang https://github.com/GregFinzer/Compare-Net-Objects/issues/230
<releaseNotes>Fixes for Compare Double Nan, IgnoreDateTimeOffsetTimezones, and CompareReadOnly == false.

New config option to IgnoreConcreteTypes by goyzhang https://github.com/GregFinzer/Compare-Net-Objects/issues/232

Fix for circular references in EnumerableComparer by idealist1508 https://github.com/GregFinzer/Compare-Net-Objects/issues/237</releaseNotes>
<copyright>Copyright © 2021 Kellerman Software</copyright>
https://github.com/GregFinzer/Compare-Net-Objects/issues/244
https://github.com/GregFinzer/Compare-Net-Objects/issues/245
https://github.com/GregFinzer/Compare-Net-Objects/issues/246</releaseNotes>
<copyright>Copyright © 2022</copyright>
<tags>compare comparison equality equal deep objects difference compareobjects deepequal deepequals</tags>
<dependencies>
<group targetFramework=".NETFramework4.0" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CompareNETObjects [4.74.0](https://www.nuget.org/packages/CompareNETObjects/4.74.0)
CompareNETObjects [4.76.0](https://www.nuget.org/packages/CompareNETObjects/4.76.0)
--------------------

Used by: Core internal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Google.Protobuf</id>
<version>3.19.2</version>
<version>3.19.4</version>
<authors>Google Inc.</authors>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<licenseUrl>https://github.com/protocolbuffers/protobuf/blob/master/LICENSE</licenseUrl>
Expand All @@ -11,7 +11,7 @@
<releaseNotes>C# proto3 support</releaseNotes>
<copyright>Copyright 2015, Google Inc.</copyright>
<tags>Protocol Buffers Binary Serialization Format Google proto proto3</tags>
<repository type="git" url="https://github.com/protocolbuffers/protobuf.git" commit="cb46755e6405e083b45481f5ea4754b180705529" />
<repository type="git" url="https://github.com/protocolbuffers/protobuf.git" commit="22d0e265de7d2b3d2e9a00d071313502e7d4cccf" />
<dependencies>
<group targetFramework=".NETFramework4.5">
<dependency id="System.Memory" version="4.5.3" exclude="Build,Analyzers" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Google.Protobuf [3.19.2](https://www.nuget.org/packages/Google.Protobuf/3.19.2)
Google.Protobuf [3.19.4](https://www.nuget.org/packages/Google.Protobuf/3.19.4)
--------------------

Used by: AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"Dependencies": [
{
"Name": "Grpc.Net.Common",
"Version": "2.42.0"
"Version": "2.44.0"
}
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,26 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Grpc.AspNetCore.Server</id>
<version>2.42.0</version>
<version>2.44.0</version>
<authors>The gRPC Authors</authors>
<license type="expression">Apache-2.0</license>
<licenseUrl>https://licenses.nuget.org/Apache-2.0</licenseUrl>
<icon>packageIcon.png</icon>
<readme>README.md</readme>
<projectUrl>https://github.com/grpc/grpc-dotnet</projectUrl>
<description>gRPC support for ASP.NET Core</description>
<copyright>Copyright 2019 The gRPC Authors</copyright>
<tags>gRPC RPC HTTP/2 aspnetcore</tags>
<repository type="git" url="https://github.com/grpc/grpc-dotnet.git" commit="5c8feaec5cda029ee961672bb645de1dd13cccd4" />
<repository type="git" url="https://github.com/grpc/grpc-dotnet.git" commit="0df921e6d79c378a51e6d12cab796ad0a63e4ed2" />
<dependencies>
<group targetFramework=".NETCoreApp3.0">
<dependency id="Grpc.Net.Common" version="2.42.0" exclude="Build,Analyzers" />
<dependency id="Grpc.Net.Common" version="2.44.0" exclude="Build,Analyzers" />
</group>
<group targetFramework="net5.0">
<dependency id="Grpc.Net.Common" version="2.42.0" exclude="Build,Analyzers" />
<dependency id="Grpc.Net.Common" version="2.44.0" exclude="Build,Analyzers" />
</group>
<group targetFramework="net6.0">
<dependency id="Grpc.Net.Common" version="2.42.0" exclude="Build,Analyzers" />
<dependency id="Grpc.Net.Common" version="2.44.0" exclude="Build,Analyzers" />
</group>
</dependencies>
<frameworkReferences>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Grpc.AspNetCore.Server [2.42.0](https://www.nuget.org/packages/Grpc.AspNetCore.Server/2.42.0)
Grpc.AspNetCore.Server [2.44.0](https://www.nuget.org/packages/Grpc.AspNetCore.Server/2.44.0)
--------------------

Used by: AspNetCore
Expand All @@ -25,6 +25,6 @@ Dependencies 1

|Name|Version|
|----------|:----|
|[Grpc.Net.Common](../../../../packages/nuget.org/grpc.net.common/2.42.0)|2.42.0|
|[Grpc.Net.Common](../../../../packages/nuget.org/grpc.net.common/2.44.0)|2.44.0|

*This page was generated by a tool.*
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"Dependencies": [
{
"Name": "System.Memory",
"Version": "4.5.4"
"Version": "4.5.3"
}
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Grpc.Core.Api</id>
<version>2.43.0</version>
<version>2.45.0</version>
<authors>The gRPC Authors</authors>
<license type="expression">Apache-2.0</license>
<licenseUrl>https://licenses.nuget.org/Apache-2.0</licenseUrl>
Expand All @@ -11,7 +11,7 @@
<description>gRPC C# Surface API</description>
<copyright>Copyright 2019 The gRPC Authors</copyright>
<tags>gRPC RPC HTTP/2</tags>
<repository type="git" url="https://github.com/grpc/grpc.git" commit="b0f37a22bbae12a4b225a88be6d18d5e41dce881" />
<repository type="git" url="https://github.com/grpc/grpc.git" commit="494b08ada4009ead0d0b70e44d354be72f9c283a" />
<dependencies>
<group targetFramework=".NETFramework4.5">
<dependency id="System.Memory" version="4.5.3" exclude="Build,Analyzers" />
Expand All @@ -23,6 +23,9 @@
<group targetFramework=".NETStandard2.0">
<dependency id="System.Memory" version="4.5.3" exclude="Build,Analyzers" />
</group>
<group targetFramework=".NETStandard2.1">
<dependency id="System.Memory" version="4.5.3" exclude="Build,Analyzers" />
</group>
</dependencies>
<frameworkAssemblies>
<frameworkAssembly assemblyName="Microsoft.CSharp" targetFramework=".NETFramework4.5" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Grpc.Core.Api [2.43.0](https://www.nuget.org/packages/Grpc.Core.Api/2.43.0)
Grpc.Core.Api [2.45.0](https://www.nuget.org/packages/Grpc.Core.Api/2.45.0)
--------------------

Used by: AspNetCore, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, Core, DesignTime, SelfHost
Expand All @@ -20,12 +20,11 @@ Remarks
no remarks


Dependencies 2
Dependencies 1
-----------

|Name|Version|
|----------|:----|
|[System.Memory](../../../../packages/nuget.org/system.memory/4.5.3)|4.5.3|
|[System.Memory](../../../../packages/nuget.org/system.memory/4.5.4)|4.5.4|

*This page was generated by a tool.*
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"Dependencies": [
{
"Name": "Grpc.Core.Api",
"Version": "2.43.0"
"Version": "2.45.0"
}
]
},
Expand All @@ -30,7 +30,7 @@
"Dependencies": [
{
"Name": "Grpc.Core.Api",
"Version": "2.43.0"
"Version": "2.45.0"
}
]
},
Expand All @@ -45,7 +45,7 @@
"Dependencies": [
{
"Name": "Grpc.Core.Api",
"Version": "2.43.0"
"Version": "2.45.0"
}
]
},
Expand All @@ -60,7 +60,7 @@
"Dependencies": [
{
"Name": "Grpc.Core.Api",
"Version": "2.43.0"
"Version": "2.45.0"
},
{
"Name": "System.Memory",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Grpc.Core</id>
<version>2.43.0</version>
<version>2.45.0</version>
<authors>The gRPC Authors</authors>
<license type="expression">Apache-2.0</license>
<licenseUrl>https://licenses.nuget.org/Apache-2.0</licenseUrl>
Expand All @@ -14,22 +14,22 @@ Note that the Grpc.Core implementation of gRPC for C# is in maintenance mode and
See https://grpc.io/blog/grpc-csharp-future/ for details.</description>
<copyright>Copyright 2015 The gRPC Authors</copyright>
<tags>gRPC RPC HTTP/2</tags>
<repository type="git" url="https://github.com/grpc/grpc.git" commit="b0f37a22bbae12a4b225a88be6d18d5e41dce881" />
<repository type="git" url="https://github.com/grpc/grpc.git" commit="494b08ada4009ead0d0b70e44d354be72f9c283a" />
<dependencies>
<group targetFramework=".NETFramework4.5">
<dependency id="Grpc.Core.Api" version="2.43.0" exclude="Build,Analyzers" />
<dependency id="Grpc.Core.Api" version="2.45.0" exclude="Build,Analyzers" />
<dependency id="System.Memory" version="4.5.3" exclude="Build,Analyzers" />
</group>
<group targetFramework=".NETStandard1.5">
<dependency id="Grpc.Core.Api" version="2.43.0" exclude="Build,Analyzers" />
<dependency id="Grpc.Core.Api" version="2.45.0" exclude="Build,Analyzers" />
<dependency id="NETStandard.Library" version="1.6.1" exclude="Build,Analyzers" />
<dependency id="System.Memory" version="4.5.3" exclude="Build,Analyzers" />
<dependency id="System.Runtime.Loader" version="4.0.0" exclude="Build,Analyzers" />
<dependency id="System.Threading.Thread" version="4.0.0" exclude="Build,Analyzers" />
<dependency id="System.Threading.ThreadPool" version="4.0.10" exclude="Build,Analyzers" />
</group>
<group targetFramework=".NETStandard2.0">
<dependency id="Grpc.Core.Api" version="2.43.0" exclude="Build,Analyzers" />
<dependency id="Grpc.Core.Api" version="2.45.0" exclude="Build,Analyzers" />
<dependency id="System.Memory" version="4.5.3" exclude="Build,Analyzers" />
</group>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Grpc.Core [2.43.0](https://www.nuget.org/packages/Grpc.Core/2.43.0)
Grpc.Core [2.45.0](https://www.nuget.org/packages/Grpc.Core/2.45.0)
--------------------

Used by: AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, SelfHost
Expand Down Expand Up @@ -28,7 +28,7 @@ Dependencies 2

|Name|Version|
|----------|:----|
|[Grpc.Core.Api](../../../../packages/nuget.org/grpc.core.api/2.43.0)|2.43.0|
|[Grpc.Core.Api](../../../../packages/nuget.org/grpc.core.api/2.45.0)|2.45.0|
|[System.Memory](../../../../packages/nuget.org/system.memory/4.5.3)|4.5.3|

*This page was generated by a tool.*
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"Dependencies": [
{
"Name": "Grpc.Core.Api",
"Version": "2.43.0"
"Version": "2.45.0"
}
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Grpc.Net.Common</id>
<version>2.42.0</version>
<version>2.44.0</version>
<authors>The gRPC Authors</authors>
<license type="expression">Apache-2.0</license>
<licenseUrl>https://licenses.nuget.org/Apache-2.0</licenseUrl>
Expand All @@ -11,19 +11,19 @@
<description>Infrastructure for common functionality in gRPC</description>
<copyright>Copyright 2019 The gRPC Authors</copyright>
<tags>gRPC RPC HTTP/2</tags>
<repository type="git" url="https://github.com/grpc/grpc-dotnet.git" commit="5c8feaec5cda029ee961672bb645de1dd13cccd4" />
<repository type="git" url="https://github.com/grpc/grpc-dotnet.git" commit="0df921e6d79c378a51e6d12cab796ad0a63e4ed2" />
<dependencies>
<group targetFramework="net5.0">
<dependency id="Grpc.Core.Api" version="2.42.0" exclude="Build,Analyzers" />
<dependency id="Grpc.Core.Api" version="2.44.0" exclude="Build,Analyzers" />
</group>
<group targetFramework="net6.0">
<dependency id="Grpc.Core.Api" version="2.42.0" exclude="Build,Analyzers" />
<dependency id="Grpc.Core.Api" version="2.44.0" exclude="Build,Analyzers" />
</group>
<group targetFramework=".NETStandard2.0">
<dependency id="Grpc.Core.Api" version="2.42.0" exclude="Build,Analyzers" />
<dependency id="Grpc.Core.Api" version="2.44.0" exclude="Build,Analyzers" />
</group>
<group targetFramework=".NETStandard2.1">
<dependency id="Grpc.Core.Api" version="2.42.0" exclude="Build,Analyzers" />
<dependency id="Grpc.Core.Api" version="2.44.0" exclude="Build,Analyzers" />
</group>
</dependencies>
</metadata>
Expand Down
Loading

0 comments on commit 5258b07

Please sign in to comment.