diff --git a/configure.REMOVED.git-id b/configure.REMOVED.git-id index f667868a34..7b8f7127f0 100644 --- a/configure.REMOVED.git-id +++ b/configure.REMOVED.git-id @@ -1 +1 @@ -f8b9aae84d66abdcff1d925684d1228e216c7cbf \ No newline at end of file +0b12585952795777d353a3f1bcc5eb1bf0666b0c \ No newline at end of file diff --git a/configure.ac.REMOVED.git-id b/configure.ac.REMOVED.git-id index 8dc68e3327..edfb9e6dbc 100644 --- a/configure.ac.REMOVED.git-id +++ b/configure.ac.REMOVED.git-id @@ -1 +1 @@ -0f989de83e5558b7e9b97d44265e5d10dde97788 \ No newline at end of file +0468b2f0e00886a85a06a997960487ccc9d39497 \ No newline at end of file diff --git a/external/corefx/src/Common/tests/System/Net/Configuration.Http.cs b/external/corefx/src/Common/tests/System/Net/Configuration.Http.cs index 81961a637e..f4763451be 100644 --- a/external/corefx/src/Common/tests/System/Net/Configuration.Http.cs +++ b/external/corefx/src/Common/tests/System/Net/Configuration.Http.cs @@ -8,7 +8,7 @@ namespace System.Net.Test.Common { public static partial class Http { - private static readonly string DefaultAzureServer = "corefx-net.cloudapp.net"; + private static readonly string DefaultAzureServer = "corefx-net-http11.azurewebsites.net"; public static string Host => GetValue("COREFX_HTTPHOST", DefaultAzureServer); diff --git a/external/corefx/src/Common/tests/System/Net/Configuration.Security.cs b/external/corefx/src/Common/tests/System/Net/Configuration.Security.cs index b5a3e5ccea..8fd095077a 100644 --- a/external/corefx/src/Common/tests/System/Net/Configuration.Security.cs +++ b/external/corefx/src/Common/tests/System/Net/Configuration.Security.cs @@ -8,7 +8,7 @@ namespace System.Net.Test.Common { public static partial class Security { - private static readonly string DefaultAzureServer = "corefx-net.cloudapp.net"; + private static readonly string DefaultAzureServer = "corefx-net-http11.azurewebsites.net"; public static string ActiveDirectoryName => GetValue("COREFX_NET_AD_DOMAINNAME"); diff --git a/external/corefx/src/Common/tests/System/Net/Configuration.cs b/external/corefx/src/Common/tests/System/Net/Configuration.cs index 1aa664d2aa..5587d1fd28 100644 --- a/external/corefx/src/Common/tests/System/Net/Configuration.cs +++ b/external/corefx/src/Common/tests/System/Net/Configuration.cs @@ -7,7 +7,7 @@ namespace System.Net.Test.Common public static partial class Configuration { #pragma warning disable 414 - private static readonly string DefaultAzureServer = "corefx-net.cloudapp.net"; + private static readonly string DefaultAzureServer = "corefx-net-http11.azurewebsites.net"; #pragma warning restore 414 private static string GetValue(string envName, string defaultValue=null) diff --git a/external/corefx/src/System.Net.Http/tests/FunctionalTests/HttpClientHandlerTest.ServerCertificates.cs b/external/corefx/src/System.Net.Http/tests/FunctionalTests/HttpClientHandlerTest.ServerCertificates.cs index 980155da22..f3fc264e7f 100644 --- a/external/corefx/src/System.Net.Http/tests/FunctionalTests/HttpClientHandlerTest.ServerCertificates.cs +++ b/external/corefx/src/System.Net.Http/tests/FunctionalTests/HttpClientHandlerTest.ServerCertificates.cs @@ -311,6 +311,7 @@ namespace System.Net.Http.Functional.Tests } } + [ActiveIssue(41108)] [SkipOnTargetFramework(TargetFrameworkMonikers.Uap, "UAP doesn't allow revocation checking to be turned off")] [OuterLoop] // TODO: Issue #11345 [ConditionalFact(nameof(ClientSupportsDHECipherSuites), nameof(BackendSupportsX509Chain))] diff --git a/external/corefx/src/System.Net.Http/tests/FunctionalTests/HttpClientHandlerTest.cs.REMOVED.git-id b/external/corefx/src/System.Net.Http/tests/FunctionalTests/HttpClientHandlerTest.cs.REMOVED.git-id index bda317238c..30e6cf3c4c 100644 --- a/external/corefx/src/System.Net.Http/tests/FunctionalTests/HttpClientHandlerTest.cs.REMOVED.git-id +++ b/external/corefx/src/System.Net.Http/tests/FunctionalTests/HttpClientHandlerTest.cs.REMOVED.git-id @@ -1 +1 @@ -cc1cfeb44a4adae22fa22fc188bb8c257b167b20 \ No newline at end of file +032cfaa560174c072bd4bc0f83345039e97fdeb9 \ No newline at end of file diff --git a/external/corefx/src/System.Net.Requests/tests/HttpWebRequestTest.cs b/external/corefx/src/System.Net.Requests/tests/HttpWebRequestTest.cs index 3745049b94..de37415ffa 100644 --- a/external/corefx/src/System.Net.Requests/tests/HttpWebRequestTest.cs +++ b/external/corefx/src/System.Net.Requests/tests/HttpWebRequestTest.cs @@ -456,31 +456,35 @@ namespace System.Net.Tests [InlineData(false)] [InlineData(true)] [SkipOnTargetFramework(TargetFrameworkMonikers.NetFramework, "dotnet/corefx #19225")] - public void KeepAlive_CorrectConnectionHeaderSent(bool? keepAlive) + public async Task KeepAlive_CorrectConnectionHeaderSent(bool? keepAlive) { - HttpWebRequest request = WebRequest.CreateHttp(Test.Common.Configuration.Http.RemoteEchoServer); - - if (keepAlive.HasValue) + await LoopbackServer.CreateServerAsync(async (server, url) => { - request.KeepAlive = keepAlive.Value; - } + HttpWebRequest request = WebRequest.CreateHttp(url); + request.Proxy = null; // Don't use a proxy since it might interfere with the Connection: headers. + if (keepAlive.HasValue) + { + request.KeepAlive = keepAlive.Value; + } - using (var response = (HttpWebResponse)request.GetResponse()) - using (var body = new StreamReader(response.GetResponseStream())) - { - string content = body.ReadToEnd(); + Task getResponseTask = request.GetResponseAsync(); + Task> serverTask = server.AcceptConnectionSendResponseAndCloseAsync(); + + await TaskTimeoutExtensions.WhenAllOrAnyFailed(new Task[] { getResponseTask, serverTask }); + + List requestLines = await serverTask; if (!keepAlive.HasValue || keepAlive.Value) { - // Validate that the request doesn't contain Connection: "close", but we can't validate - // that it does contain Connection: "keep-alive", as that's optional as of HTTP 1.1. - Assert.DoesNotContain("\"Connection\": \"close\"", content, StringComparison.OrdinalIgnoreCase); + // Validate that the request doesn't contain "Connection: close", but we can't validate + // that it does contain "Connection: Keep-Alive", as that's optional as of HTTP 1.1. + Assert.DoesNotContain("Connection: close", requestLines, StringComparer.OrdinalIgnoreCase); } else { - Assert.Contains("\"Connection\": \"close\"", content, StringComparison.OrdinalIgnoreCase); - Assert.DoesNotContain("\"Keep-Alive\"", content, StringComparison.OrdinalIgnoreCase); + Assert.Contains("Connection: close", requestLines, StringComparer.OrdinalIgnoreCase); + Assert.DoesNotContain("Keep-Alive", requestLines, StringComparer.OrdinalIgnoreCase); } - } + }); } [Theory, MemberData(nameof(EchoServers))] diff --git a/external/corefx/src/System.Net.WebClient/tests/WebClientTest.cs b/external/corefx/src/System.Net.WebClient/tests/WebClientTest.cs index 45d32915da..1d11427f40 100644 --- a/external/corefx/src/System.Net.WebClient/tests/WebClientTest.cs +++ b/external/corefx/src/System.Net.WebClient/tests/WebClientTest.cs @@ -3,6 +3,7 @@ // See the LICENSE file in the project root for more information. using System; +using System.Collections.Generic; using System.Collections.Specialized; using System.IO; using System.Linq; @@ -15,6 +16,8 @@ using Xunit; namespace System.Net.Tests { + using Configuration = System.Net.Test.Common.Configuration; + public class WebClientTest { [Fact] @@ -393,21 +396,26 @@ namespace System.Net.Tests await Assert.ThrowsAsync(() => wc.DownloadStringTaskAsync(System.Net.Test.Common.Configuration.Http.RemoteEchoServer)); } - [OuterLoop("Networking test talking to remote server: issue #11345")] + public static IEnumerable RequestHeaders_AddHostHeaderAndSendRequest_ExpectedResult_MemberData() + { + yield return new object[] { $"http://{Configuration.Http.Host}", true }; + yield return new object[] { Configuration.Http.Host, false }; + } + + [OuterLoop("Uses external servers")] [Theory] - [InlineData("http://localhost", true)] - [InlineData("localhost", false)] + [MemberData(nameof(RequestHeaders_AddHostHeaderAndSendRequest_ExpectedResult_MemberData))] public static async Task RequestHeaders_AddHostHeaderAndSendRequest_ExpectedResult(string hostHeaderValue, bool throwsWebException) { var wc = new WebClient(); wc.Headers["Host"] = hostHeaderValue; if (throwsWebException) { - await Assert.ThrowsAsync(() => wc.DownloadStringTaskAsync(System.Net.Test.Common.Configuration.Http.RemoteEchoServer)); + await Assert.ThrowsAsync(() => wc.DownloadStringTaskAsync(Configuration.Http.RemoteEchoServer)); } else { - await wc.DownloadStringTaskAsync(System.Net.Test.Common.Configuration.Http.RemoteEchoServer); + await wc.DownloadStringTaskAsync(Configuration.Http.RemoteEchoServer); } } diff --git a/external/corefx/src/System.Net.WebSockets.Client/tests/CloseTest.cs b/external/corefx/src/System.Net.WebSockets.Client/tests/CloseTest.cs index 732bd97607..5bb9f323a7 100644 --- a/external/corefx/src/System.Net.WebSockets.Client/tests/CloseTest.cs +++ b/external/corefx/src/System.Net.WebSockets.Client/tests/CloseTest.cs @@ -17,6 +17,7 @@ namespace System.Net.WebSockets.Client.Tests { public CloseTest(ITestOutputHelper output) : base(output) { } + [ActiveIssue(36016)] [OuterLoop] // TODO: Issue #11345 [ConditionalTheory(nameof(WebSocketsSupported)), MemberData(nameof(EchoServers))] public async Task CloseAsync_ServerInitiatedClose_Success(Uri server) @@ -194,6 +195,7 @@ namespace System.Net.WebSockets.Client.Tests } } + [ActiveIssue(36016)] [OuterLoop] // TODO: Issue #11345 [ConditionalTheory(nameof(WebSocketsSupported)), MemberData(nameof(EchoServers))] public async Task CloseOutputAsync_ServerInitiated_CanSend(Uri server) diff --git a/external/corefx/src/System.Net.WebSockets.Client/tests/ConnectTest.cs b/external/corefx/src/System.Net.WebSockets.Client/tests/ConnectTest.cs index 8f75de2a23..1bfaabfd37 100644 --- a/external/corefx/src/System.Net.WebSockets.Client/tests/ConnectTest.cs +++ b/external/corefx/src/System.Net.WebSockets.Client/tests/ConnectTest.cs @@ -92,9 +92,9 @@ namespace System.Net.WebSockets.Client.Tests { Uri server = System.Net.Test.Common.Configuration.WebSockets.RemoteEchoServer; - // Send via the physical address such as "corefx-net.cloudapp.net" - // Set the Host header to logical address like "subdomain.corefx-net.cloudapp.net" - // Verify the scenario works and the remote server received "Host: subdomain.corefx-net.cloudapp.net" + // Send via the physical address such as "corefx-net-http11.azurewebsites.net" + // Set the Host header to logical address like "subdomain.corefx-net-http11.azurewebsites.net" + // Verify the scenario works and the remote server received "Host: subdomain.corefx-net-http11.azurewebsites.net" string logicalHost = "subdomain." + server.Host; using (var cws = new ClientWebSocket()) diff --git a/mcs/build/common/Consts.cs b/mcs/build/common/Consts.cs index 721b2fc349..d44af18874 100644 --- a/mcs/build/common/Consts.cs +++ b/mcs/build/common/Consts.cs @@ -41,7 +41,7 @@ static partial class Consts // Use these assembly version constants to make code more maintainable. // - public const string MonoVersion = "6.6.0.123"; + public const string MonoVersion = "6.6.0.124"; public const string MonoCompany = "Mono development team"; public const string MonoProduct = "Mono Common Language Infrastructure"; public const string MonoCopyright = "(c) Various Mono authors"; diff --git a/mcs/class/System/Test/System.Net.WebSockets/ClientWebSocketTest.cs b/mcs/class/System/Test/System.Net.WebSockets/ClientWebSocketTest.cs index 85ccfe20c4..b0592e3811 100644 --- a/mcs/class/System/Test/System.Net.WebSockets/ClientWebSocketTest.cs +++ b/mcs/class/System/Test/System.Net.WebSockets/ClientWebSocketTest.cs @@ -16,7 +16,7 @@ namespace MonoTests.System.Net.WebSockets [TestFixture] public class ClientWebSocketTest { - const string EchoServerUrl = "ws://corefx-net.cloudapp.net/WebSocket/EchoWebSocket.ashx"; + const string EchoServerUrl = "ws://corefx-net-http11.azurewebsites.net/WebSocket/EchoWebSocket.ashx"; ClientWebSocket socket; MethodInfo headerSetMethod; diff --git a/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/Mono.Security.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/Mono.Security.dll.REMOVED.git-id index 5ebac39d99..389691b604 100644 --- a/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/Mono.Security.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/Mono.Security.dll.REMOVED.git-id @@ -1 +1 @@ -d59938ae4c7fb78071fddd308fafede5a7759365 \ No newline at end of file +32279be59671a2d8894b50f1c9bf871ce208a826 \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/System.Configuration.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/System.Configuration.dll.REMOVED.git-id index fd356e1837..e1928b7374 100644 --- a/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/System.Configuration.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/System.Configuration.dll.REMOVED.git-id @@ -1 +1 @@ -5ba2e0e748a09592a0600ef20116faf8258b2118 \ No newline at end of file +1824dec6cbe57ebd1353918d0a794121b96d35aa \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/System.Core.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/System.Core.dll.REMOVED.git-id index 625dd50a58..535278f2b9 100644 --- a/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/System.Core.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/System.Core.dll.REMOVED.git-id @@ -1 +1 @@ -3811921ca6055d6d02525834df85e1b2495d1b07 \ No newline at end of file +4c311ef32211567818577811d1b918edcda76ddc \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/System.IO.Compression.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/System.IO.Compression.dll.REMOVED.git-id index 830787a525..4d58aa15ca 100644 --- a/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/System.IO.Compression.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/System.IO.Compression.dll.REMOVED.git-id @@ -1 +1 @@ -1ac474df12181d5acd1cf7d11f27390046057634 \ No newline at end of file +3c52b649ccf7888fd2be06d237849c2fe24e6832 \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/System.Numerics.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/System.Numerics.dll.REMOVED.git-id index ce9816bbc0..544c4ab2b1 100644 --- a/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/System.Numerics.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/System.Numerics.dll.REMOVED.git-id @@ -1 +1 @@ -7e0980369bff5d3ac0c02eface7aa7fb87353d4d \ No newline at end of file +30d7fa7f3c4e5437124cd5d8d58c472a1a26754f \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/System.Xml.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/System.Xml.dll.REMOVED.git-id index d1797d7831..c33edea2d8 100644 --- a/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/System.Xml.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/System.Xml.dll.REMOVED.git-id @@ -1 +1 @@ -107b463b2adb5356e895b7a720851db33a86c6df \ No newline at end of file +353dbf8ea935d24c00ff1eef8f22cbb12a0725cd \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/mscorlib.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/mscorlib.dll.REMOVED.git-id index 0f8f822f75..4fc8548097 100644 --- a/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/mscorlib.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/657116DD-B24B-4615-8680-6C56BA42F86D/mscorlib.dll.REMOVED.git-id @@ -1 +1 @@ -ba129c1550a2f772601ff3a5fd92d47722a06a11 \ No newline at end of file +2eb8da0a2919ff5e2b160b4561c43feaea856e2b \ No newline at end of file diff --git a/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/Mono.Security.dll.REMOVED.git-id b/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/Mono.Security.dll.REMOVED.git-id index 5ebac39d99..389691b604 100644 --- a/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/Mono.Security.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/Mono.Security.dll.REMOVED.git-id @@ -1 +1 @@ -d59938ae4c7fb78071fddd308fafede5a7759365 \ No newline at end of file +32279be59671a2d8894b50f1c9bf871ce208a826 \ No newline at end of file diff --git a/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/System.Configuration.dll.REMOVED.git-id b/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/System.Configuration.dll.REMOVED.git-id index fd356e1837..e1928b7374 100644 --- a/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/System.Configuration.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/System.Configuration.dll.REMOVED.git-id @@ -1 +1 @@ -5ba2e0e748a09592a0600ef20116faf8258b2118 \ No newline at end of file +1824dec6cbe57ebd1353918d0a794121b96d35aa \ No newline at end of file diff --git a/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/System.Core.dll.REMOVED.git-id b/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/System.Core.dll.REMOVED.git-id index 625dd50a58..535278f2b9 100644 --- a/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/System.Core.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/System.Core.dll.REMOVED.git-id @@ -1 +1 @@ -3811921ca6055d6d02525834df85e1b2495d1b07 \ No newline at end of file +4c311ef32211567818577811d1b918edcda76ddc \ No newline at end of file diff --git a/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/System.IO.Compression.dll.REMOVED.git-id b/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/System.IO.Compression.dll.REMOVED.git-id index 830787a525..4d58aa15ca 100644 --- a/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/System.IO.Compression.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/System.IO.Compression.dll.REMOVED.git-id @@ -1 +1 @@ -1ac474df12181d5acd1cf7d11f27390046057634 \ No newline at end of file +3c52b649ccf7888fd2be06d237849c2fe24e6832 \ No newline at end of file diff --git a/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/System.Numerics.dll.REMOVED.git-id b/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/System.Numerics.dll.REMOVED.git-id index ce9816bbc0..544c4ab2b1 100644 --- a/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/System.Numerics.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/System.Numerics.dll.REMOVED.git-id @@ -1 +1 @@ -7e0980369bff5d3ac0c02eface7aa7fb87353d4d \ No newline at end of file +30d7fa7f3c4e5437124cd5d8d58c472a1a26754f \ No newline at end of file diff --git a/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/System.Xml.dll.REMOVED.git-id b/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/System.Xml.dll.REMOVED.git-id index d1797d7831..c33edea2d8 100644 --- a/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/System.Xml.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/System.Xml.dll.REMOVED.git-id @@ -1 +1 @@ -107b463b2adb5356e895b7a720851db33a86c6df \ No newline at end of file +353dbf8ea935d24c00ff1eef8f22cbb12a0725cd \ No newline at end of file diff --git a/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/mcs.exe.REMOVED.git-id b/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/mcs.exe.REMOVED.git-id index 570fcbbd16..b179512331 100644 --- a/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/mcs.exe.REMOVED.git-id +++ b/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/mcs.exe.REMOVED.git-id @@ -1 +1 @@ -9ccb57c3c41dcacffdfcf7b5f9fa0784369d5bcb \ No newline at end of file +4254bddb8d7b8a3ca9afaead03ded2396e253969 \ No newline at end of file diff --git a/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/mscorlib.dll.REMOVED.git-id b/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/mscorlib.dll.REMOVED.git-id index 0f8f822f75..4fc8548097 100644 --- a/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/mscorlib.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-macos/657116DD-B24B-4615-8680-6C56BA42F86D/mscorlib.dll.REMOVED.git-id @@ -1 +1 @@ -ba129c1550a2f772601ff3a5fd92d47722a06a11 \ No newline at end of file +2eb8da0a2919ff5e2b160b4561c43feaea856e2b \ No newline at end of file diff --git a/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/Mono.Security.dll.REMOVED.git-id b/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/Mono.Security.dll.REMOVED.git-id index 5ebac39d99..389691b604 100644 --- a/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/Mono.Security.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/Mono.Security.dll.REMOVED.git-id @@ -1 +1 @@ -d59938ae4c7fb78071fddd308fafede5a7759365 \ No newline at end of file +32279be59671a2d8894b50f1c9bf871ce208a826 \ No newline at end of file diff --git a/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/System.Configuration.dll.REMOVED.git-id b/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/System.Configuration.dll.REMOVED.git-id index fd356e1837..e1928b7374 100644 --- a/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/System.Configuration.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/System.Configuration.dll.REMOVED.git-id @@ -1 +1 @@ -5ba2e0e748a09592a0600ef20116faf8258b2118 \ No newline at end of file +1824dec6cbe57ebd1353918d0a794121b96d35aa \ No newline at end of file diff --git a/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/System.Core.dll.REMOVED.git-id b/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/System.Core.dll.REMOVED.git-id index 625dd50a58..535278f2b9 100644 --- a/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/System.Core.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/System.Core.dll.REMOVED.git-id @@ -1 +1 @@ -3811921ca6055d6d02525834df85e1b2495d1b07 \ No newline at end of file +4c311ef32211567818577811d1b918edcda76ddc \ No newline at end of file diff --git a/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/System.IO.Compression.dll.REMOVED.git-id b/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/System.IO.Compression.dll.REMOVED.git-id index 830787a525..4d58aa15ca 100644 --- a/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/System.IO.Compression.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/System.IO.Compression.dll.REMOVED.git-id @@ -1 +1 @@ -1ac474df12181d5acd1cf7d11f27390046057634 \ No newline at end of file +3c52b649ccf7888fd2be06d237849c2fe24e6832 \ No newline at end of file diff --git a/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/System.Numerics.dll.REMOVED.git-id b/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/System.Numerics.dll.REMOVED.git-id index ce9816bbc0..544c4ab2b1 100644 --- a/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/System.Numerics.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/System.Numerics.dll.REMOVED.git-id @@ -1 +1 @@ -7e0980369bff5d3ac0c02eface7aa7fb87353d4d \ No newline at end of file +30d7fa7f3c4e5437124cd5d8d58c472a1a26754f \ No newline at end of file diff --git a/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/System.Xml.dll.REMOVED.git-id b/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/System.Xml.dll.REMOVED.git-id index d1797d7831..c33edea2d8 100644 --- a/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/System.Xml.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/System.Xml.dll.REMOVED.git-id @@ -1 +1 @@ -107b463b2adb5356e895b7a720851db33a86c6df \ No newline at end of file +353dbf8ea935d24c00ff1eef8f22cbb12a0725cd \ No newline at end of file diff --git a/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/mcs.exe.REMOVED.git-id b/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/mcs.exe.REMOVED.git-id index 570fcbbd16..b179512331 100644 --- a/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/mcs.exe.REMOVED.git-id +++ b/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/mcs.exe.REMOVED.git-id @@ -1 +1 @@ -9ccb57c3c41dcacffdfcf7b5f9fa0784369d5bcb \ No newline at end of file +4254bddb8d7b8a3ca9afaead03ded2396e253969 \ No newline at end of file diff --git a/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/mscorlib.dll.REMOVED.git-id b/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/mscorlib.dll.REMOVED.git-id index 0f8f822f75..4fc8548097 100644 --- a/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/mscorlib.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-unix/657116DD-B24B-4615-8680-6C56BA42F86D/mscorlib.dll.REMOVED.git-id @@ -1 +1 @@ -ba129c1550a2f772601ff3a5fd92d47722a06a11 \ No newline at end of file +2eb8da0a2919ff5e2b160b4561c43feaea856e2b \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/Mono.Security.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/Mono.Security.dll.REMOVED.git-id index 5ebac39d99..389691b604 100644 --- a/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/Mono.Security.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/Mono.Security.dll.REMOVED.git-id @@ -1 +1 @@ -d59938ae4c7fb78071fddd308fafede5a7759365 \ No newline at end of file +32279be59671a2d8894b50f1c9bf871ce208a826 \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/System.Configuration.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/System.Configuration.dll.REMOVED.git-id index fd356e1837..e1928b7374 100644 --- a/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/System.Configuration.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/System.Configuration.dll.REMOVED.git-id @@ -1 +1 @@ -5ba2e0e748a09592a0600ef20116faf8258b2118 \ No newline at end of file +1824dec6cbe57ebd1353918d0a794121b96d35aa \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/System.Core.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/System.Core.dll.REMOVED.git-id index 514fb8a37a..74937815d1 100644 --- a/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/System.Core.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/System.Core.dll.REMOVED.git-id @@ -1 +1 @@ -53bfedd7e6c66dfc7c02e17c96be722880dc2c85 \ No newline at end of file +a902f74deb1c7f47b844ff162bcb8d0abf0f3697 \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/System.IO.Compression.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/System.IO.Compression.dll.REMOVED.git-id index 830787a525..4d58aa15ca 100644 --- a/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/System.IO.Compression.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/System.IO.Compression.dll.REMOVED.git-id @@ -1 +1 @@ -1ac474df12181d5acd1cf7d11f27390046057634 \ No newline at end of file +3c52b649ccf7888fd2be06d237849c2fe24e6832 \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/System.Numerics.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/System.Numerics.dll.REMOVED.git-id index ce9816bbc0..544c4ab2b1 100644 --- a/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/System.Numerics.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/System.Numerics.dll.REMOVED.git-id @@ -1 +1 @@ -7e0980369bff5d3ac0c02eface7aa7fb87353d4d \ No newline at end of file +30d7fa7f3c4e5437124cd5d8d58c472a1a26754f \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/System.Xml.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/System.Xml.dll.REMOVED.git-id index d1797d7831..c33edea2d8 100644 --- a/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/System.Xml.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/System.Xml.dll.REMOVED.git-id @@ -1 +1 @@ -107b463b2adb5356e895b7a720851db33a86c6df \ No newline at end of file +353dbf8ea935d24c00ff1eef8f22cbb12a0725cd \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/mcs.exe.REMOVED.git-id b/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/mcs.exe.REMOVED.git-id index 570fcbbd16..b179512331 100644 --- a/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/mcs.exe.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/mcs.exe.REMOVED.git-id @@ -1 +1 @@ -9ccb57c3c41dcacffdfcf7b5f9fa0784369d5bcb \ No newline at end of file +4254bddb8d7b8a3ca9afaead03ded2396e253969 \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/mscorlib.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/mscorlib.dll.REMOVED.git-id index 33306fb5cc..3c60434547 100644 --- a/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/mscorlib.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/657116DD-B24B-4615-8680-6C56BA42F86D/mscorlib.dll.REMOVED.git-id @@ -1 +1 @@ -4de1547d6cd759c83e3b0583a488f1b15c399121 \ No newline at end of file +1dd01785ca665f4caf62298a657b2b12a44ffe30 \ No newline at end of file diff --git a/mono/mini/version.h b/mono/mini/version.h index 72e6cfea7b..010c91c800 100644 --- a/mono/mini/version.h +++ b/mono/mini/version.h @@ -1 +1 @@ -#define FULL_VERSION "explicit/11e1499" +#define FULL_VERSION "explicit/df5e13f" diff --git a/mono/unit-tests/Makefile.in b/mono/unit-tests/Makefile.in index eed954ce12..7b45dbc879 100644 --- a/mono/unit-tests/Makefile.in +++ b/mono/unit-tests/Makefile.in @@ -1496,10 +1496,10 @@ distclean-generic: maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -@CROSS_COMPILE_TRUE@clean-local: -@HOST_WIN32_TRUE@clean-local: @CROSS_COMPILE_TRUE@test-local: @HOST_WIN32_TRUE@test-local: +@CROSS_COMPILE_TRUE@clean-local: +@HOST_WIN32_TRUE@clean-local: clean: clean-am clean-am: clean-checkPROGRAMS clean-generic clean-libtool clean-local \ diff --git a/po/mcs/de.gmo b/po/mcs/de.gmo index 8f1eef1790..964cb3effc 100644 Binary files a/po/mcs/de.gmo and b/po/mcs/de.gmo differ diff --git a/po/mcs/de.po.REMOVED.git-id b/po/mcs/de.po.REMOVED.git-id index a1ab34f324..d2fed9e83b 100644 --- a/po/mcs/de.po.REMOVED.git-id +++ b/po/mcs/de.po.REMOVED.git-id @@ -1 +1 @@ -735fdd69a36f0602ee03a8e4e28b65dbfb174488 \ No newline at end of file +c8766c4d4829f6bda19ce3b7651f8b644f3cda21 \ No newline at end of file diff --git a/po/mcs/es.gmo b/po/mcs/es.gmo index b262ce4419..8811f0d657 100644 Binary files a/po/mcs/es.gmo and b/po/mcs/es.gmo differ diff --git a/po/mcs/es.po.REMOVED.git-id b/po/mcs/es.po.REMOVED.git-id index 09d573550d..3311472b6c 100644 --- a/po/mcs/es.po.REMOVED.git-id +++ b/po/mcs/es.po.REMOVED.git-id @@ -1 +1 @@ -fc1cc35d4017c43733665195c297bb68a9f81c36 \ No newline at end of file +5355bf4477d766a4b3007570cf9a8266d1d88899 \ No newline at end of file diff --git a/po/mcs/ja.gmo b/po/mcs/ja.gmo index e94cc49c8b..b5ccce5b14 100644 Binary files a/po/mcs/ja.gmo and b/po/mcs/ja.gmo differ diff --git a/po/mcs/ja.po.REMOVED.git-id b/po/mcs/ja.po.REMOVED.git-id index 408f3ce6d7..7fc7c14219 100644 --- a/po/mcs/ja.po.REMOVED.git-id +++ b/po/mcs/ja.po.REMOVED.git-id @@ -1 +1 @@ -a8e3dc735a98f21265d993a4fcc630c92cb38916 \ No newline at end of file +579d79dd0ef3a8b223f81c73f2dc8aad79385b54 \ No newline at end of file diff --git a/po/mcs/mcs.pot b/po/mcs/mcs.pot index b73e7922c2..219fe9309a 100644 --- a/po/mcs/mcs.pot +++ b/po/mcs/mcs.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mono 6.6.0.123\n" +"Project-Id-Version: mono 6.6.0.124\n" "Report-Msgid-Bugs-To: http://www.mono-project.com/Bugs\n" -"POT-Creation-Date: 2019-10-11 08:30+0000\n" +"POT-Creation-Date: 2019-10-12 08:33+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/po/mcs/pt_BR.gmo b/po/mcs/pt_BR.gmo index 61326778e8..a31c2dc731 100644 Binary files a/po/mcs/pt_BR.gmo and b/po/mcs/pt_BR.gmo differ diff --git a/po/mcs/pt_BR.po.REMOVED.git-id b/po/mcs/pt_BR.po.REMOVED.git-id index 4f5c98555b..8d6c03e4bf 100644 --- a/po/mcs/pt_BR.po.REMOVED.git-id +++ b/po/mcs/pt_BR.po.REMOVED.git-id @@ -1 +1 @@ -fbf44231cabe005a0292afafc6226fec65638ec7 \ No newline at end of file +22f3dcce951544f7107d2aebfce5e7287d5886fe \ No newline at end of file