diff --git a/Directory.Build.targets b/Directory.Build.targets index 2a3efcc303..57088725b1 100644 --- a/Directory.Build.targets +++ b/Directory.Build.targets @@ -1,8 +1,8 @@ - + true - $(SolutionRoot)\build\keys\keypair.snk + $(SolutionDir)\build\keys\keypair.snk bin/$(Configuration)/$(TargetFramework)/ diff --git a/abstractions/README.md b/abstractions/README.md index 2765381131..88b8405474 100644 --- a/abstractions/README.md +++ b/abstractions/README.md @@ -17,8 +17,6 @@ You've reached the home repository for several auxiliary projects from the .NET team within OpenSearch. -Pre-release packages of these projects are available at [OpenSearch NuGet Package Repository](https://www.github.com/opensearch-project/packages). See [GitHub documentation](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-nuget-registry#installing-a-package) for instructions on how to access them. - Current projects: ### [OpenSearch.OpenSearch.Managed](src/OpenSearch.OpenSearch.Managed/README.md) diff --git a/abstractions/src/Directory.Build.props b/abstractions/src/Directory.Build.props index 968df46aea..9612245cd7 100644 --- a/abstractions/src/Directory.Build.props +++ b/abstractions/src/Directory.Build.props @@ -5,10 +5,7 @@ OpenSearch Project and contributors OpenSearch Apache-2.0 - https://github.com/opensearch-project/opensearch-net-abstractions Git - https://github.com/opensearch-project/opensearch-net-abstractions - https://github.com/opensearch-project/opensearch-net-abstractions/releases true @@ -19,19 +16,6 @@ nuget-icon.png - - - - nuget-icon.png - True - nuget-icon.png - - - True - LICENSE.txt - - - diff --git a/abstractions/src/OpenSearch.OpenSearch.Ephemeral/OpenSearch.OpenSearch.Ephemeral.csproj b/abstractions/src/OpenSearch.OpenSearch.Ephemeral/OpenSearch.OpenSearch.Ephemeral.csproj index a4ec93b16c..994e437929 100644 --- a/abstractions/src/OpenSearch.OpenSearch.Ephemeral/OpenSearch.OpenSearch.Ephemeral.csproj +++ b/abstractions/src/OpenSearch.OpenSearch.Ephemeral/OpenSearch.OpenSearch.Ephemeral.csproj @@ -4,6 +4,7 @@ netstandard2.0;net461 Provides an EphemeralCluster implementation that can download/bootstrap/run a throwaway customizable OpenSearch cluster opensearch,opensearch,cluster,ephemeral + false @@ -12,4 +13,4 @@ - \ No newline at end of file + diff --git a/abstractions/src/OpenSearch.OpenSearch.Managed/OpenSearch.OpenSearch.Managed.csproj b/abstractions/src/OpenSearch.OpenSearch.Managed/OpenSearch.OpenSearch.Managed.csproj index 1778c51080..91a10c3898 100644 --- a/abstractions/src/OpenSearch.OpenSearch.Managed/OpenSearch.OpenSearch.Managed.csproj +++ b/abstractions/src/OpenSearch.OpenSearch.Managed/OpenSearch.OpenSearch.Managed.csproj @@ -7,13 +7,13 @@ Also ships with an cluster abstraction that can start one or more OpenSearchNode's opensearch,opensearch,cluster,observable,rx + false - - \ No newline at end of file + diff --git a/abstractions/src/OpenSearch.OpenSearch.Xunit/OpenSearch.OpenSearch.Xunit.csproj b/abstractions/src/OpenSearch.OpenSearch.Xunit/OpenSearch.OpenSearch.Xunit.csproj index 3892ea3700..77b3d3745c 100644 --- a/abstractions/src/OpenSearch.OpenSearch.Xunit/OpenSearch.OpenSearch.Xunit.csproj +++ b/abstractions/src/OpenSearch.OpenSearch.Xunit/OpenSearch.OpenSearch.Xunit.csproj @@ -2,9 +2,9 @@ netstandard2.0;net461 - True Provides an Xunit test framework allowing you to run integration tests against local ephemeral OpenSearch clusters opensearch,opensearch,xunit,cluster,integration,test,ephemeral + false @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/abstractions/src/OpenSearch.Stack.ArtifactsApi/OpenSearch.Stack.ArtifactsApi.csproj b/abstractions/src/OpenSearch.Stack.ArtifactsApi/OpenSearch.Stack.ArtifactsApi.csproj index c228e377fd..dae96f536f 100644 --- a/abstractions/src/OpenSearch.Stack.ArtifactsApi/OpenSearch.Stack.ArtifactsApi.csproj +++ b/abstractions/src/OpenSearch.Stack.ArtifactsApi/OpenSearch.Stack.ArtifactsApi.csproj @@ -3,6 +3,7 @@ netstandard2.0;net461 Provides a set of classes to resolve the location of OpenSearch stack products in various stages: released, snapshot and build candidates opensearch,opensearch,stack,versioning,artifacts + false diff --git a/abstractions/src/OpenSearch.Stack.ArtifactsApi/Platform/OsMonikers.cs b/abstractions/src/OpenSearch.Stack.ArtifactsApi/Platform/OsMonikers.cs index 2bf89b59a3..127b14dfeb 100644 --- a/abstractions/src/OpenSearch.Stack.ArtifactsApi/Platform/OsMonikers.cs +++ b/abstractions/src/OpenSearch.Stack.ArtifactsApi/Platform/OsMonikers.cs @@ -50,7 +50,7 @@ public static OSPlatform CurrentPlatform() if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX)) return OSPlatform.OSX; if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux)) return OSPlatform.Linux; throw new Exception( - $"{RuntimeInformation.OSDescription} is currently not supported please open an issue @opensearch-project/opensearch-net-abstractions"); + $"{RuntimeInformation.OSDescription} is currently not supported please open an issue @opensearch-project/opensearch-net"); } /// @@ -78,7 +78,7 @@ public static string GetOpenSearchPlatformMoniker(OSPlatform platform, Architect if (architecture == Architecture.Arm64) return "linux-arm64"; } throw new Exception( - $"{RuntimeInformation.OSDescription} is currently not supported please open an issue @opensearch-project/opensearch-net-abstractions"); + $"{RuntimeInformation.OSDescription} is currently not supported please open an issue @opensearch-project/opensearch-net"); } public static string GetPlatformArchiveExtension(OSPlatform platform) @@ -87,7 +87,7 @@ public static string GetPlatformArchiveExtension(OSPlatform platform) if (platform == OSPlatform.OSX) return "tar.gz"; if (platform == OSPlatform.Windows) return "zip"; throw new Exception( - $"{RuntimeInformation.OSDescription} is currently not supported please open an issue @opensearch-project/opensearch-net-abstractions"); + $"{RuntimeInformation.OSDescription} is currently not supported please open an issue @opensearch-project/opensearch-net"); } public static string CurrentPlatformArchiveExtension() @@ -104,7 +104,7 @@ public static string CurrentPlatformPackageSuffix() if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux)) return $"{Linux}-{intelX86Suffix}"; throw new Exception( - $"{RuntimeInformation.OSDescription} is currently not supported please open an issue @opensearch-project/opensearch-net-abstractions"); + $"{RuntimeInformation.OSDescription} is currently not supported please open an issue @opensearch-project/opensearch-net"); } internal static string CurrentPlatformSearchFilter() @@ -114,7 +114,7 @@ internal static string CurrentPlatformSearchFilter() if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux)) return "tar"; throw new Exception( - $"{RuntimeInformation.OSDescription} is currently not supported please open an issue @opensearch-project/opensearch-net-abstractions"); + $"{RuntimeInformation.OSDescription} is currently not supported please open an issue @opensearch-project/opensearch-net"); } } } diff --git a/build/scripts/packages.lock.json b/build/scripts/packages.lock.json index 9c64b59f5e..a32015abb5 100644 --- a/build/scripts/packages.lock.json +++ b/build/scripts/packages.lock.json @@ -77,7 +77,10 @@ "type": "Direct", "requested": "[1.0.0-preview.2, )", "resolved": "1.0.0-preview.2", - "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==" + "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==", + "dependencies": { + "Microsoft.NETFramework.ReferenceAssemblies.net461": "1.0.0-preview.2" + } }, "Newtonsoft.Json": { "type": "Direct", @@ -94,17 +97,6 @@ "NETStandard.Library": "1.6.0" } }, - "OpenSearch.OpenSearch.Managed": { - "type": "Direct", - "requested": "[0.1.0-canary.0.277, )", - "resolved": "0.1.0-canary.0.277", - "contentHash": "BoLSf2fiCphayR0TQulvm0m0MISy8kCL+JrPv1QGrlR4YujWAeSi0izb+vnYEWT9+a8IviTMjU2TGZwpcKSuBQ==", - "dependencies": { - "OpenSearch.Stack.ArtifactsApi": "0.1.0-canary.0.277", - "Proc": "0.6.1", - "System.Net.Http": "4.3.4" - } - }, "Proc": { "type": "Direct", "requested": "[0.6.1, )", @@ -174,6 +166,11 @@ "resolved": "1.1.0", "contentHash": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==" }, + "Microsoft.NETFramework.ReferenceAssemblies.net461": { + "type": "Transitive", + "resolved": "1.0.0-preview.2", + "contentHash": "59D9ISjzCpfHG41r5x4BNZNNOCmE2o5YX8vcdOwsqfxOA0+6vQnxZrYq8KtthUU2JSvC13g941rSr5GRaNQOJg==" + }, "Microsoft.Win32.Primitives": { "type": "Transitive", "resolved": "4.3.0", @@ -250,17 +247,6 @@ "System.Xml.XDocument": "4.0.11" } }, - "OpenSearch.Stack.ArtifactsApi": { - "type": "Transitive", - "resolved": "0.1.0-canary.0.277", - "contentHash": "S3Mxf2FhxL/WJg9f0LGoGLmpvRyFCH0HitsC3bDAgBweO9aqSNmpVeAm7DvKHMwGpSAglUL0+pOBvo2dCi/iVg==", - "dependencies": { - "SemanticVersioning": "0.8.0", - "System.Net.Http": "4.3.4", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Text.Json": "6.0.5" - } - }, "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": { "type": "Transitive", "resolved": "4.3.2", @@ -1255,6 +1241,23 @@ "System.Threading": "4.0.11", "System.Xml.ReaderWriter": "4.0.11" } + }, + "opensearch.opensearch.managed": { + "type": "Project", + "dependencies": { + "OpenSearch.Stack.ArtifactsApi": "1.0.0", + "Proc": "0.6.1", + "System.Net.Http": "4.3.4" + } + }, + "opensearch.stack.artifactsapi": { + "type": "Project", + "dependencies": { + "SemanticVersioning": "0.8.0", + "System.Net.Http": "4.3.4", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Text.Json": "6.0.5" + } } } } diff --git a/build/scripts/scripts.fsproj b/build/scripts/scripts.fsproj index 66cc2f8002..0eae74f97f 100644 --- a/build/scripts/scripts.fsproj +++ b/build/scripts/scripts.fsproj @@ -37,7 +37,7 @@ - + diff --git a/nuget.config b/nuget.config index 5f176edaca..71cfb75803 100644 --- a/nuget.config +++ b/nuget.config @@ -1,7 +1,6 @@  - - \ No newline at end of file + diff --git a/packages/opensearch.opensearch.ephemeral/0.1.0-canary.0.277/.nupkg.metadata b/packages/opensearch.opensearch.ephemeral/0.1.0-canary.0.277/.nupkg.metadata deleted file mode 100644 index 2682a6e309..0000000000 --- a/packages/opensearch.opensearch.ephemeral/0.1.0-canary.0.277/.nupkg.metadata +++ /dev/null @@ -1,5 +0,0 @@ -{ - "version": 2, - "contentHash": "LAAfOtWvcjoCxUq47BGbwfFst12nsvd3FYDRR9OUfSp69BzevNp3bhAd5O2sdaspBg9MkuOD5Mhp8TvWRHCG7g==", - "source": null -} \ No newline at end of file diff --git a/packages/opensearch.opensearch.ephemeral/0.1.0-canary.0.277/opensearch.opensearch.ephemeral.0.1.0-canary.0.277.nupkg b/packages/opensearch.opensearch.ephemeral/0.1.0-canary.0.277/opensearch.opensearch.ephemeral.0.1.0-canary.0.277.nupkg deleted file mode 100644 index 9670f77b2f..0000000000 Binary files a/packages/opensearch.opensearch.ephemeral/0.1.0-canary.0.277/opensearch.opensearch.ephemeral.0.1.0-canary.0.277.nupkg and /dev/null differ diff --git a/packages/opensearch.opensearch.ephemeral/0.1.0-canary.0.277/opensearch.opensearch.ephemeral.0.1.0-canary.0.277.nupkg.sha512 b/packages/opensearch.opensearch.ephemeral/0.1.0-canary.0.277/opensearch.opensearch.ephemeral.0.1.0-canary.0.277.nupkg.sha512 deleted file mode 100644 index 8c50222a4d..0000000000 --- a/packages/opensearch.opensearch.ephemeral/0.1.0-canary.0.277/opensearch.opensearch.ephemeral.0.1.0-canary.0.277.nupkg.sha512 +++ /dev/null @@ -1 +0,0 @@ -LAAfOtWvcjoCxUq47BGbwfFst12nsvd3FYDRR9OUfSp69BzevNp3bhAd5O2sdaspBg9MkuOD5Mhp8TvWRHCG7g== \ No newline at end of file diff --git a/packages/opensearch.opensearch.ephemeral/0.1.0-canary.0.277/opensearch.opensearch.ephemeral.nuspec b/packages/opensearch.opensearch.ephemeral/0.1.0-canary.0.277/opensearch.opensearch.ephemeral.nuspec deleted file mode 100644 index b7b488105d..0000000000 --- a/packages/opensearch.opensearch.ephemeral/0.1.0-canary.0.277/opensearch.opensearch.ephemeral.nuspec +++ /dev/null @@ -1,28 +0,0 @@ - - - - OpenSearch.OpenSearch.Ephemeral - 0.1.0-canary.0.277 - OpenSearch Project and contributors - Apache-2.0 - https://licenses.nuget.org/Apache-2.0 - nuget-icon.png - https://github.com/opensearch-project/opensearch-net-abstractions - Provides an EphemeralCluster implementation that can download/bootstrap/run a throwaway customizable OpenSearch cluster - https://github.com/opensearch-project/opensearch-net-abstractions/releases - OpenSearch - opensearch,opensearch,cluster,ephemeral - - - - - - - - - - - - - - \ No newline at end of file diff --git a/packages/opensearch.opensearch.managed/0.1.0-canary.0.277/.nupkg.metadata b/packages/opensearch.opensearch.managed/0.1.0-canary.0.277/.nupkg.metadata deleted file mode 100644 index 29676671e5..0000000000 --- a/packages/opensearch.opensearch.managed/0.1.0-canary.0.277/.nupkg.metadata +++ /dev/null @@ -1,5 +0,0 @@ -{ - "version": 2, - "contentHash": "BoLSf2fiCphayR0TQulvm0m0MISy8kCL+JrPv1QGrlR4YujWAeSi0izb+vnYEWT9+a8IviTMjU2TGZwpcKSuBQ==", - "source": null -} \ No newline at end of file diff --git a/packages/opensearch.opensearch.managed/0.1.0-canary.0.277/opensearch.opensearch.managed.0.1.0-canary.0.277.nupkg b/packages/opensearch.opensearch.managed/0.1.0-canary.0.277/opensearch.opensearch.managed.0.1.0-canary.0.277.nupkg deleted file mode 100644 index e3d3ed9cb5..0000000000 Binary files a/packages/opensearch.opensearch.managed/0.1.0-canary.0.277/opensearch.opensearch.managed.0.1.0-canary.0.277.nupkg and /dev/null differ diff --git a/packages/opensearch.opensearch.managed/0.1.0-canary.0.277/opensearch.opensearch.managed.0.1.0-canary.0.277.nupkg.sha512 b/packages/opensearch.opensearch.managed/0.1.0-canary.0.277/opensearch.opensearch.managed.0.1.0-canary.0.277.nupkg.sha512 deleted file mode 100644 index f746c3041f..0000000000 --- a/packages/opensearch.opensearch.managed/0.1.0-canary.0.277/opensearch.opensearch.managed.0.1.0-canary.0.277.nupkg.sha512 +++ /dev/null @@ -1 +0,0 @@ -BoLSf2fiCphayR0TQulvm0m0MISy8kCL+JrPv1QGrlR4YujWAeSi0izb+vnYEWT9+a8IviTMjU2TGZwpcKSuBQ== \ No newline at end of file diff --git a/packages/opensearch.opensearch.managed/0.1.0-canary.0.277/opensearch.opensearch.managed.nuspec b/packages/opensearch.opensearch.managed/0.1.0-canary.0.277/opensearch.opensearch.managed.nuspec deleted file mode 100644 index cdce4e4f2a..0000000000 --- a/packages/opensearch.opensearch.managed/0.1.0-canary.0.277/opensearch.opensearch.managed.nuspec +++ /dev/null @@ -1,30 +0,0 @@ - - - - OpenSearch.OpenSearch.Managed - 0.1.0-canary.0.277 - OpenSearch Project and contributors - Apache-2.0 - https://licenses.nuget.org/Apache-2.0 - nuget-icon.png - https://github.com/opensearch-project/opensearch-net-abstractions - Provides an observable OpenSearchNode abstraction that can be used to wrap an opensearch process. - Also ships with an cluster abstraction that can start one or more OpenSearchNode's - https://github.com/opensearch-project/opensearch-net-abstractions/releases - OpenSearch - opensearch,opensearch,cluster,observable,rx - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/packages/opensearch.opensearch.xunit/0.1.0-canary.0.277/.nupkg.metadata b/packages/opensearch.opensearch.xunit/0.1.0-canary.0.277/.nupkg.metadata deleted file mode 100644 index 0655ab5d1a..0000000000 --- a/packages/opensearch.opensearch.xunit/0.1.0-canary.0.277/.nupkg.metadata +++ /dev/null @@ -1,5 +0,0 @@ -{ - "version": 2, - "contentHash": "hNAJp5xM9ounExLOS+CmLCTCwpPfirZ5rOTY0UfR2AU+19wp4HLKerwjmJV4cAJM0ba6JvzrjLQcnMGYazM0og==", - "source": null -} \ No newline at end of file diff --git a/packages/opensearch.opensearch.xunit/0.1.0-canary.0.277/opensearch.opensearch.xunit.0.1.0-canary.0.277.nupkg b/packages/opensearch.opensearch.xunit/0.1.0-canary.0.277/opensearch.opensearch.xunit.0.1.0-canary.0.277.nupkg deleted file mode 100644 index faa8dad276..0000000000 Binary files a/packages/opensearch.opensearch.xunit/0.1.0-canary.0.277/opensearch.opensearch.xunit.0.1.0-canary.0.277.nupkg and /dev/null differ diff --git a/packages/opensearch.opensearch.xunit/0.1.0-canary.0.277/opensearch.opensearch.xunit.0.1.0-canary.0.277.nupkg.sha512 b/packages/opensearch.opensearch.xunit/0.1.0-canary.0.277/opensearch.opensearch.xunit.0.1.0-canary.0.277.nupkg.sha512 deleted file mode 100644 index 0c5d0e4e03..0000000000 --- a/packages/opensearch.opensearch.xunit/0.1.0-canary.0.277/opensearch.opensearch.xunit.0.1.0-canary.0.277.nupkg.sha512 +++ /dev/null @@ -1 +0,0 @@ -hNAJp5xM9ounExLOS+CmLCTCwpPfirZ5rOTY0UfR2AU+19wp4HLKerwjmJV4cAJM0ba6JvzrjLQcnMGYazM0og== \ No newline at end of file diff --git a/packages/opensearch.opensearch.xunit/0.1.0-canary.0.277/opensearch.opensearch.xunit.nuspec b/packages/opensearch.opensearch.xunit/0.1.0-canary.0.277/opensearch.opensearch.xunit.nuspec deleted file mode 100644 index 960998d72f..0000000000 --- a/packages/opensearch.opensearch.xunit/0.1.0-canary.0.277/opensearch.opensearch.xunit.nuspec +++ /dev/null @@ -1,27 +0,0 @@ - - - - OpenSearch.OpenSearch.Xunit - 0.1.0-canary.0.277 - OpenSearch Project and contributors - Apache-2.0 - https://licenses.nuget.org/Apache-2.0 - nuget-icon.png - https://github.com/opensearch-project/opensearch-net-abstractions - Provides an Xunit test framework allowing you to run integration tests against local ephemeral OpenSearch clusters - https://github.com/opensearch-project/opensearch-net-abstractions/releases - OpenSearch - opensearch,opensearch,xunit,cluster,integration,test,ephemeral - - - - - - - - - - - - - \ No newline at end of file diff --git a/packages/opensearch.stack.artifactsapi/0.1.0-canary.0.277/.nupkg.metadata b/packages/opensearch.stack.artifactsapi/0.1.0-canary.0.277/.nupkg.metadata deleted file mode 100644 index 8ee0ba03ee..0000000000 --- a/packages/opensearch.stack.artifactsapi/0.1.0-canary.0.277/.nupkg.metadata +++ /dev/null @@ -1,5 +0,0 @@ -{ - "version": 2, - "contentHash": "S3Mxf2FhxL/WJg9f0LGoGLmpvRyFCH0HitsC3bDAgBweO9aqSNmpVeAm7DvKHMwGpSAglUL0+pOBvo2dCi/iVg==", - "source": null -} \ No newline at end of file diff --git a/packages/opensearch.stack.artifactsapi/0.1.0-canary.0.277/opensearch.stack.artifactsapi.0.1.0-canary.0.277.nupkg b/packages/opensearch.stack.artifactsapi/0.1.0-canary.0.277/opensearch.stack.artifactsapi.0.1.0-canary.0.277.nupkg deleted file mode 100644 index f3c5816750..0000000000 Binary files a/packages/opensearch.stack.artifactsapi/0.1.0-canary.0.277/opensearch.stack.artifactsapi.0.1.0-canary.0.277.nupkg and /dev/null differ diff --git a/packages/opensearch.stack.artifactsapi/0.1.0-canary.0.277/opensearch.stack.artifactsapi.0.1.0-canary.0.277.nupkg.sha512 b/packages/opensearch.stack.artifactsapi/0.1.0-canary.0.277/opensearch.stack.artifactsapi.0.1.0-canary.0.277.nupkg.sha512 deleted file mode 100644 index b66a0f389c..0000000000 --- a/packages/opensearch.stack.artifactsapi/0.1.0-canary.0.277/opensearch.stack.artifactsapi.0.1.0-canary.0.277.nupkg.sha512 +++ /dev/null @@ -1 +0,0 @@ -S3Mxf2FhxL/WJg9f0LGoGLmpvRyFCH0HitsC3bDAgBweO9aqSNmpVeAm7DvKHMwGpSAglUL0+pOBvo2dCi/iVg== \ No newline at end of file diff --git a/packages/opensearch.stack.artifactsapi/0.1.0-canary.0.277/opensearch.stack.artifactsapi.nuspec b/packages/opensearch.stack.artifactsapi/0.1.0-canary.0.277/opensearch.stack.artifactsapi.nuspec deleted file mode 100644 index 0abde4ec4c..0000000000 --- a/packages/opensearch.stack.artifactsapi/0.1.0-canary.0.277/opensearch.stack.artifactsapi.nuspec +++ /dev/null @@ -1,31 +0,0 @@ - - - - OpenSearch.Stack.ArtifactsApi - 0.1.0-canary.0.277 - OpenSearch Project and contributors - Apache-2.0 - https://licenses.nuget.org/Apache-2.0 - nuget-icon.png - https://github.com/opensearch-project/opensearch-net-abstractions - Provides a set of classes to resolve the location of OpenSearch stack products in various stages: released, snapshot and build candidates - https://github.com/opensearch-project/opensearch-net-abstractions/releases - OpenSearch - opensearch,opensearch,stack,versioning,artifacts - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/ApiGenerator/packages.lock.json b/src/ApiGenerator/packages.lock.json index 42a66abd8e..d0621b8980 100644 --- a/src/ApiGenerator/packages.lock.json +++ b/src/ApiGenerator/packages.lock.json @@ -25,7 +25,10 @@ "type": "Direct", "requested": "[1.0.0-preview.2, )", "resolved": "1.0.0-preview.2", - "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==" + "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==", + "dependencies": { + "Microsoft.NETFramework.ReferenceAssemblies.net461": "1.0.0-preview.2" + } }, "Newtonsoft.Json": { "type": "Direct", @@ -206,6 +209,11 @@ "resolved": "5.0.0", "contentHash": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==" }, + "Microsoft.NETFramework.ReferenceAssemblies.net461": { + "type": "Transitive", + "resolved": "1.0.0-preview.2", + "contentHash": "59D9ISjzCpfHG41r5x4BNZNNOCmE2o5YX8vcdOwsqfxOA0+6vQnxZrYq8KtthUU2JSvC13g941rSr5GRaNQOJg==" + }, "System.Buffers": { "type": "Transitive", "resolved": "4.5.1", diff --git a/src/OpenSearch.Client.JsonNetSerializer/packages.lock.json b/src/OpenSearch.Client.JsonNetSerializer/packages.lock.json index 43b55c4fcc..4fb7bdf65a 100644 --- a/src/OpenSearch.Client.JsonNetSerializer/packages.lock.json +++ b/src/OpenSearch.Client.JsonNetSerializer/packages.lock.json @@ -113,7 +113,10 @@ "type": "Direct", "requested": "[1.0.0-preview.2, )", "resolved": "1.0.0-preview.2", - "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==" + "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==", + "dependencies": { + "Microsoft.NETFramework.ReferenceAssemblies.net461": "1.0.0-preview.2" + } }, "Microsoft.SourceLink.GitHub": { "type": "Direct", @@ -160,6 +163,11 @@ "resolved": "1.1.0", "contentHash": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==" }, + "Microsoft.NETFramework.ReferenceAssemblies.net461": { + "type": "Transitive", + "resolved": "1.0.0-preview.2", + "contentHash": "59D9ISjzCpfHG41r5x4BNZNNOCmE2o5YX8vcdOwsqfxOA0+6vQnxZrYq8KtthUU2JSvC13g941rSr5GRaNQOJg==" + }, "Microsoft.SourceLink.Common": { "type": "Transitive", "resolved": "1.0.0", diff --git a/src/OpenSearch.Client/packages.lock.json b/src/OpenSearch.Client/packages.lock.json index 024bad7c5a..9d41efe07f 100644 --- a/src/OpenSearch.Client/packages.lock.json +++ b/src/OpenSearch.Client/packages.lock.json @@ -101,7 +101,10 @@ "type": "Direct", "requested": "[1.0.0-preview.2, )", "resolved": "1.0.0-preview.2", - "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==" + "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==", + "dependencies": { + "Microsoft.NETFramework.ReferenceAssemblies.net461": "1.0.0-preview.2" + } }, "Microsoft.SourceLink.GitHub": { "type": "Direct", @@ -142,6 +145,11 @@ "resolved": "1.1.0", "contentHash": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==" }, + "Microsoft.NETFramework.ReferenceAssemblies.net461": { + "type": "Transitive", + "resolved": "1.0.0-preview.2", + "contentHash": "59D9ISjzCpfHG41r5x4BNZNNOCmE2o5YX8vcdOwsqfxOA0+6vQnxZrYq8KtthUU2JSvC13g941rSr5GRaNQOJg==" + }, "Microsoft.SourceLink.Common": { "type": "Transitive", "resolved": "1.0.0", diff --git a/src/OpenSearch.Net.VirtualizedCluster/packages.lock.json b/src/OpenSearch.Net.VirtualizedCluster/packages.lock.json index 024bad7c5a..9d41efe07f 100644 --- a/src/OpenSearch.Net.VirtualizedCluster/packages.lock.json +++ b/src/OpenSearch.Net.VirtualizedCluster/packages.lock.json @@ -101,7 +101,10 @@ "type": "Direct", "requested": "[1.0.0-preview.2, )", "resolved": "1.0.0-preview.2", - "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==" + "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==", + "dependencies": { + "Microsoft.NETFramework.ReferenceAssemblies.net461": "1.0.0-preview.2" + } }, "Microsoft.SourceLink.GitHub": { "type": "Direct", @@ -142,6 +145,11 @@ "resolved": "1.1.0", "contentHash": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==" }, + "Microsoft.NETFramework.ReferenceAssemblies.net461": { + "type": "Transitive", + "resolved": "1.0.0-preview.2", + "contentHash": "59D9ISjzCpfHG41r5x4BNZNNOCmE2o5YX8vcdOwsqfxOA0+6vQnxZrYq8KtthUU2JSvC13g941rSr5GRaNQOJg==" + }, "Microsoft.SourceLink.Common": { "type": "Transitive", "resolved": "1.0.0", diff --git a/src/OpenSearch.Net/packages.lock.json b/src/OpenSearch.Net/packages.lock.json index 60079f4566..ed7061e682 100644 --- a/src/OpenSearch.Net/packages.lock.json +++ b/src/OpenSearch.Net/packages.lock.json @@ -102,7 +102,10 @@ "type": "Direct", "requested": "[1.0.0-preview.2, )", "resolved": "1.0.0-preview.2", - "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==" + "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==", + "dependencies": { + "Microsoft.NETFramework.ReferenceAssemblies.net461": "1.0.0-preview.2" + } }, "Microsoft.SourceLink.GitHub": { "type": "Direct", @@ -179,6 +182,11 @@ "resolved": "1.1.0", "contentHash": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==" }, + "Microsoft.NETFramework.ReferenceAssemblies.net461": { + "type": "Transitive", + "resolved": "1.0.0-preview.2", + "contentHash": "59D9ISjzCpfHG41r5x4BNZNNOCmE2o5YX8vcdOwsqfxOA0+6vQnxZrYq8KtthUU2JSvC13g941rSr5GRaNQOJg==" + }, "Microsoft.SourceLink.Common": { "type": "Transitive", "resolved": "1.0.0", @@ -295,7 +303,10 @@ "type": "Direct", "requested": "[1.0.0-preview.2, )", "resolved": "1.0.0-preview.2", - "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==" + "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==", + "dependencies": { + "Microsoft.NETFramework.ReferenceAssemblies.net461": "1.0.0-preview.2" + } }, "Microsoft.SourceLink.GitHub": { "type": "Direct", @@ -328,6 +339,11 @@ "resolved": "1.0.0", "contentHash": "z2fpmmt+1Jfl+ZnBki9nSP08S1/tbEOxFdsK1rSR+LBehIJz1Xv9/6qOOoGNqlwnAGGVGis1Oj6S8Kt9COEYlQ==" }, + "Microsoft.NETFramework.ReferenceAssemblies.net461": { + "type": "Transitive", + "resolved": "1.0.0-preview.2", + "contentHash": "59D9ISjzCpfHG41r5x4BNZNNOCmE2o5YX8vcdOwsqfxOA0+6vQnxZrYq8KtthUU2JSvC13g941rSr5GRaNQOJg==" + }, "Microsoft.SourceLink.Common": { "type": "Transitive", "resolved": "1.0.0", diff --git a/tests/Tests.ClusterLauncher/packages.lock.json b/tests/Tests.ClusterLauncher/packages.lock.json index 8adc595143..13efba377e 100644 --- a/tests/Tests.ClusterLauncher/packages.lock.json +++ b/tests/Tests.ClusterLauncher/packages.lock.json @@ -6,7 +6,10 @@ "type": "Direct", "requested": "[1.0.0-preview.2, )", "resolved": "1.0.0-preview.2", - "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==" + "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==", + "dependencies": { + "Microsoft.NETFramework.ReferenceAssemblies.net461": "1.0.0-preview.2" + } }, "Bogus": { "type": "Transitive", @@ -60,6 +63,11 @@ "resolved": "1.1.0", "contentHash": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==" }, + "Microsoft.NETFramework.ReferenceAssemblies.net461": { + "type": "Transitive", + "resolved": "1.0.0-preview.2", + "contentHash": "59D9ISjzCpfHG41r5x4BNZNNOCmE2o5YX8vcdOwsqfxOA0+6vQnxZrYq8KtthUU2JSvC13g941rSr5GRaNQOJg==" + }, "Microsoft.TestPlatform.ObjectModel": { "type": "Transitive", "resolved": "16.5.0", @@ -120,45 +128,6 @@ "Microsoft.TestPlatform.ObjectModel": "15.8.0" } }, - "OpenSearch.OpenSearch.Ephemeral": { - "type": "Transitive", - "resolved": "0.1.0-canary.0.277", - "contentHash": "LAAfOtWvcjoCxUq47BGbwfFst12nsvd3FYDRR9OUfSp69BzevNp3bhAd5O2sdaspBg9MkuOD5Mhp8TvWRHCG7g==", - "dependencies": { - "OpenSearch.OpenSearch.Managed": "0.1.0-canary.0.277", - "SharpZipLib.NETStandard": "1.0.7" - } - }, - "OpenSearch.OpenSearch.Managed": { - "type": "Transitive", - "resolved": "0.1.0-canary.0.277", - "contentHash": "BoLSf2fiCphayR0TQulvm0m0MISy8kCL+JrPv1QGrlR4YujWAeSi0izb+vnYEWT9+a8IviTMjU2TGZwpcKSuBQ==", - "dependencies": { - "OpenSearch.Stack.ArtifactsApi": "0.1.0-canary.0.277", - "Proc": "0.6.1", - "System.Net.Http": "4.3.4" - } - }, - "OpenSearch.OpenSearch.Xunit": { - "type": "Transitive", - "resolved": "0.1.0-canary.0.277", - "contentHash": "hNAJp5xM9ounExLOS+CmLCTCwpPfirZ5rOTY0UfR2AU+19wp4HLKerwjmJV4cAJM0ba6JvzrjLQcnMGYazM0og==", - "dependencies": { - "OpenSearch.OpenSearch.Ephemeral": "0.1.0-canary.0.277", - "xunit": "2.4.2" - } - }, - "OpenSearch.Stack.ArtifactsApi": { - "type": "Transitive", - "resolved": "0.1.0-canary.0.277", - "contentHash": "S3Mxf2FhxL/WJg9f0LGoGLmpvRyFCH0HitsC3bDAgBweO9aqSNmpVeAm7DvKHMwGpSAglUL0+pOBvo2dCi/iVg==", - "dependencies": { - "SemanticVersioning": "0.8.0", - "System.Net.Http": "4.3.4", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Text.Json": "6.0.5" - } - }, "Proc": { "type": "Transitive", "resolved": "0.6.1", @@ -916,10 +885,41 @@ "System.Diagnostics.DiagnosticSource": "5.0.0" } }, + "opensearch.opensearch.ephemeral": { + "type": "Project", + "dependencies": { + "OpenSearch.OpenSearch.Managed": "1.0.0", + "SharpZipLib.NETStandard": "1.0.7" + } + }, + "opensearch.opensearch.managed": { + "type": "Project", + "dependencies": { + "OpenSearch.Stack.ArtifactsApi": "1.0.0", + "Proc": "0.6.1", + "System.Net.Http": "4.3.4" + } + }, + "opensearch.opensearch.xunit": { + "type": "Project", + "dependencies": { + "OpenSearch.OpenSearch.Ephemeral": "1.0.0", + "xunit": "2.4.2" + } + }, + "opensearch.stack.artifactsapi": { + "type": "Project", + "dependencies": { + "SemanticVersioning": "0.8.0", + "System.Net.Http": "4.3.4", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Text.Json": "6.0.5" + } + }, "tests.configuration": { "type": "Project", "dependencies": { - "OpenSearch.OpenSearch.Managed": "0.1.0-canary.0.277" + "OpenSearch.OpenSearch.Managed": "1.0.0" } }, "tests.core": { @@ -931,7 +931,7 @@ "Microsoft.NET.Test.Sdk": "16.5.0", "Nullean.VsTest.Pretty.TestLogger": "0.3.0", "OpenSearch.Client.JsonNetSerializer": "1.0.0", - "OpenSearch.OpenSearch.Xunit": "0.1.0-canary.0.277", + "OpenSearch.OpenSearch.Xunit": "1.0.0", "Proc": "0.6.1", "Tests.Domain": "1.0.0", "xunit": "2.4.2" @@ -943,7 +943,7 @@ "Bogus": "22.1.2", "Newtonsoft.Json": "13.0.1", "OpenSearch.Client": "1.0.0", - "OpenSearch.OpenSearch.Managed": "0.1.0-canary.0.277", + "OpenSearch.OpenSearch.Managed": "1.0.0", "Tests.Configuration": "1.0.0" } } diff --git a/tests/Tests.Configuration/Tests.Configuration.csproj b/tests/Tests.Configuration/Tests.Configuration.csproj index 1e291e5ff7..a3009e182b 100644 --- a/tests/Tests.Configuration/Tests.Configuration.csproj +++ b/tests/Tests.Configuration/Tests.Configuration.csproj @@ -3,6 +3,6 @@ netstandard2.0 - + diff --git a/tests/Tests.Configuration/packages.lock.json b/tests/Tests.Configuration/packages.lock.json index 0333d54789..b412476b51 100644 --- a/tests/Tests.Configuration/packages.lock.json +++ b/tests/Tests.Configuration/packages.lock.json @@ -6,7 +6,10 @@ "type": "Direct", "requested": "[1.0.0-preview.2, )", "resolved": "1.0.0-preview.2", - "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==" + "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==", + "dependencies": { + "Microsoft.NETFramework.ReferenceAssemblies.net461": "1.0.0-preview.2" + } }, "NETStandard.Library": { "type": "Direct", @@ -17,17 +20,6 @@ "Microsoft.NETCore.Platforms": "1.1.0" } }, - "OpenSearch.OpenSearch.Managed": { - "type": "Direct", - "requested": "[0.1.0-canary.0.277, )", - "resolved": "0.1.0-canary.0.277", - "contentHash": "BoLSf2fiCphayR0TQulvm0m0MISy8kCL+JrPv1QGrlR4YujWAeSi0izb+vnYEWT9+a8IviTMjU2TGZwpcKSuBQ==", - "dependencies": { - "OpenSearch.Stack.ArtifactsApi": "0.1.0-canary.0.277", - "Proc": "0.6.1", - "System.Net.Http": "4.3.4" - } - }, "Microsoft.Bcl.AsyncInterfaces": { "type": "Transitive", "resolved": "6.0.0", @@ -46,6 +38,11 @@ "resolved": "1.1.0", "contentHash": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==" }, + "Microsoft.NETFramework.ReferenceAssemblies.net461": { + "type": "Transitive", + "resolved": "1.0.0-preview.2", + "contentHash": "59D9ISjzCpfHG41r5x4BNZNNOCmE2o5YX8vcdOwsqfxOA0+6vQnxZrYq8KtthUU2JSvC13g941rSr5GRaNQOJg==" + }, "Microsoft.Win32.Primitives": { "type": "Transitive", "resolved": "4.3.0", @@ -71,17 +68,6 @@ "System.Runtime.InteropServices": "4.3.0" } }, - "OpenSearch.Stack.ArtifactsApi": { - "type": "Transitive", - "resolved": "0.1.0-canary.0.277", - "contentHash": "S3Mxf2FhxL/WJg9f0LGoGLmpvRyFCH0HitsC3bDAgBweO9aqSNmpVeAm7DvKHMwGpSAglUL0+pOBvo2dCi/iVg==", - "dependencies": { - "SemanticVersioning": "0.8.0", - "System.Net.Http": "4.3.4", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Text.Json": "6.0.5" - } - }, "Proc": { "type": "Transitive", "resolved": "0.6.1", @@ -778,6 +764,23 @@ "System.Runtime": "4.3.0", "System.Runtime.Handles": "4.3.0" } + }, + "opensearch.opensearch.managed": { + "type": "Project", + "dependencies": { + "OpenSearch.Stack.ArtifactsApi": "1.0.0", + "Proc": "0.6.1", + "System.Net.Http": "4.3.4" + } + }, + "opensearch.stack.artifactsapi": { + "type": "Project", + "dependencies": { + "SemanticVersioning": "0.8.0", + "System.Net.Http": "4.3.4", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Text.Json": "6.0.5" + } } } } diff --git a/tests/Tests.Core/Tests.Core.csproj b/tests/Tests.Core/Tests.Core.csproj index aade4c0dba..9b9879e83a 100644 --- a/tests/Tests.Core/Tests.Core.csproj +++ b/tests/Tests.Core/Tests.Core.csproj @@ -16,7 +16,7 @@ - + diff --git a/tests/Tests.Core/packages.lock.json b/tests/Tests.Core/packages.lock.json index c0c166e85c..a8b70a72f9 100644 --- a/tests/Tests.Core/packages.lock.json +++ b/tests/Tests.Core/packages.lock.json @@ -27,13 +27,19 @@ "type": "Direct", "requested": "[16.5.0, )", "resolved": "16.5.0", - "contentHash": "yHZOhVSPuGqgHi+KhHiAZqNY08avkQraXKvgKgDU8c/ztmGzw7gmukkv49EaTq6T3xmp4XroWk3gAlbJHMxl8w==" + "contentHash": "yHZOhVSPuGqgHi+KhHiAZqNY08avkQraXKvgKgDU8c/ztmGzw7gmukkv49EaTq6T3xmp4XroWk3gAlbJHMxl8w==", + "dependencies": { + "Microsoft.CodeCoverage": "16.5.0" + } }, "Microsoft.NETFramework.ReferenceAssemblies": { "type": "Direct", "requested": "[1.0.0-preview.2, )", "resolved": "1.0.0-preview.2", - "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==" + "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==", + "dependencies": { + "Microsoft.NETFramework.ReferenceAssemblies.net461": "1.0.0-preview.2" + } }, "NETStandard.Library": { "type": "Direct", @@ -53,16 +59,6 @@ "Microsoft.TestPlatform.ObjectModel": "15.8.0" } }, - "OpenSearch.OpenSearch.Xunit": { - "type": "Direct", - "requested": "[0.1.0-canary.0.277, )", - "resolved": "0.1.0-canary.0.277", - "contentHash": "hNAJp5xM9ounExLOS+CmLCTCwpPfirZ5rOTY0UfR2AU+19wp4HLKerwjmJV4cAJM0ba6JvzrjLQcnMGYazM0og==", - "dependencies": { - "OpenSearch.OpenSearch.Ephemeral": "0.1.0-canary.0.277", - "xunit": "2.4.2" - } - }, "Proc": { "type": "Direct", "requested": "[0.6.1, )", @@ -97,6 +93,11 @@ "System.Threading.Tasks.Extensions": "4.5.4" } }, + "Microsoft.CodeCoverage": { + "type": "Transitive", + "resolved": "16.5.0", + "contentHash": "PM5YLtyN45EyUGePJpaNogndlaQPrMgQQXHKMhMESC6KfSVvt+j7+dxBi8NYC6X6dZVysf7ngwhSW3wwvPJRSQ==" + }, "Microsoft.CSharp": { "type": "Transitive", "resolved": "4.6.0", @@ -112,6 +113,11 @@ "resolved": "1.1.0", "contentHash": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==" }, + "Microsoft.NETFramework.ReferenceAssemblies.net461": { + "type": "Transitive", + "resolved": "1.0.0-preview.2", + "contentHash": "59D9ISjzCpfHG41r5x4BNZNNOCmE2o5YX8vcdOwsqfxOA0+6vQnxZrYq8KtthUU2JSvC13g941rSr5GRaNQOJg==" + }, "Microsoft.TestPlatform.ObjectModel": { "type": "Transitive", "resolved": "15.8.0", @@ -163,36 +169,6 @@ "resolved": "13.0.1", "contentHash": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==" }, - "OpenSearch.OpenSearch.Ephemeral": { - "type": "Transitive", - "resolved": "0.1.0-canary.0.277", - "contentHash": "LAAfOtWvcjoCxUq47BGbwfFst12nsvd3FYDRR9OUfSp69BzevNp3bhAd5O2sdaspBg9MkuOD5Mhp8TvWRHCG7g==", - "dependencies": { - "OpenSearch.OpenSearch.Managed": "0.1.0-canary.0.277", - "SharpZipLib.NETStandard": "1.0.7" - } - }, - "OpenSearch.OpenSearch.Managed": { - "type": "Transitive", - "resolved": "0.1.0-canary.0.277", - "contentHash": "BoLSf2fiCphayR0TQulvm0m0MISy8kCL+JrPv1QGrlR4YujWAeSi0izb+vnYEWT9+a8IviTMjU2TGZwpcKSuBQ==", - "dependencies": { - "OpenSearch.Stack.ArtifactsApi": "0.1.0-canary.0.277", - "Proc": "0.6.1", - "System.Net.Http": "4.3.4" - } - }, - "OpenSearch.Stack.ArtifactsApi": { - "type": "Transitive", - "resolved": "0.1.0-canary.0.277", - "contentHash": "S3Mxf2FhxL/WJg9f0LGoGLmpvRyFCH0HitsC3bDAgBweO9aqSNmpVeAm7DvKHMwGpSAglUL0+pOBvo2dCi/iVg==", - "dependencies": { - "SemanticVersioning": "0.8.0", - "System.Net.Http": "4.3.4", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Text.Json": "6.0.5" - } - }, "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": { "type": "Transitive", "resolved": "4.3.2", @@ -1322,10 +1298,41 @@ "System.Reflection.Emit.Lightweight": "4.3.0" } }, + "opensearch.opensearch.ephemeral": { + "type": "Project", + "dependencies": { + "OpenSearch.OpenSearch.Managed": "1.0.0", + "SharpZipLib.NETStandard": "1.0.7" + } + }, + "opensearch.opensearch.managed": { + "type": "Project", + "dependencies": { + "OpenSearch.Stack.ArtifactsApi": "1.0.0", + "Proc": "0.6.1", + "System.Net.Http": "4.3.4" + } + }, + "opensearch.opensearch.xunit": { + "type": "Project", + "dependencies": { + "OpenSearch.OpenSearch.Ephemeral": "1.0.0", + "xunit": "2.4.2" + } + }, + "opensearch.stack.artifactsapi": { + "type": "Project", + "dependencies": { + "SemanticVersioning": "0.8.0", + "System.Net.Http": "4.3.4", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Text.Json": "6.0.5" + } + }, "tests.configuration": { "type": "Project", "dependencies": { - "OpenSearch.OpenSearch.Managed": "0.1.0-canary.0.277" + "OpenSearch.OpenSearch.Managed": "1.0.0" } }, "tests.domain": { @@ -1334,7 +1341,7 @@ "Bogus": "22.1.2", "Newtonsoft.Json": "13.0.1", "OpenSearch.Client": "1.0.0", - "OpenSearch.OpenSearch.Managed": "0.1.0-canary.0.277", + "OpenSearch.OpenSearch.Managed": "1.0.0", "Tests.Configuration": "1.0.0" } } diff --git a/tests/Tests.Domain/Tests.Domain.csproj b/tests/Tests.Domain/Tests.Domain.csproj index cd224dd1d4..9cce889493 100644 --- a/tests/Tests.Domain/Tests.Domain.csproj +++ b/tests/Tests.Domain/Tests.Domain.csproj @@ -11,7 +11,7 @@ - + diff --git a/tests/Tests.Domain/packages.lock.json b/tests/Tests.Domain/packages.lock.json index 11c530080b..21352e24a3 100644 --- a/tests/Tests.Domain/packages.lock.json +++ b/tests/Tests.Domain/packages.lock.json @@ -12,7 +12,10 @@ "type": "Direct", "requested": "[1.0.0-preview.2, )", "resolved": "1.0.0-preview.2", - "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==" + "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==", + "dependencies": { + "Microsoft.NETFramework.ReferenceAssemblies.net461": "1.0.0-preview.2" + } }, "NETStandard.Library": { "type": "Direct", @@ -29,17 +32,6 @@ "resolved": "13.0.1", "contentHash": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==" }, - "OpenSearch.OpenSearch.Managed": { - "type": "Direct", - "requested": "[0.1.0-canary.0.277, )", - "resolved": "0.1.0-canary.0.277", - "contentHash": "BoLSf2fiCphayR0TQulvm0m0MISy8kCL+JrPv1QGrlR4YujWAeSi0izb+vnYEWT9+a8IviTMjU2TGZwpcKSuBQ==", - "dependencies": { - "OpenSearch.Stack.ArtifactsApi": "0.1.0-canary.0.277", - "Proc": "0.6.1", - "System.Net.Http": "4.3.4" - } - }, "Microsoft.Bcl.AsyncInterfaces": { "type": "Transitive", "resolved": "6.0.0", @@ -63,6 +55,11 @@ "resolved": "1.1.0", "contentHash": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==" }, + "Microsoft.NETFramework.ReferenceAssemblies.net461": { + "type": "Transitive", + "resolved": "1.0.0-preview.2", + "contentHash": "59D9ISjzCpfHG41r5x4BNZNNOCmE2o5YX8vcdOwsqfxOA0+6vQnxZrYq8KtthUU2JSvC13g941rSr5GRaNQOJg==" + }, "Microsoft.Win32.Primitives": { "type": "Transitive", "resolved": "4.3.0", @@ -88,17 +85,6 @@ "System.Runtime.InteropServices": "4.3.0" } }, - "OpenSearch.Stack.ArtifactsApi": { - "type": "Transitive", - "resolved": "0.1.0-canary.0.277", - "contentHash": "S3Mxf2FhxL/WJg9f0LGoGLmpvRyFCH0HitsC3bDAgBweO9aqSNmpVeAm7DvKHMwGpSAglUL0+pOBvo2dCi/iVg==", - "dependencies": { - "SemanticVersioning": "0.8.0", - "System.Net.Http": "4.3.4", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Text.Json": "6.0.5" - } - }, "Proc": { "type": "Transitive", "resolved": "0.6.1", @@ -842,10 +828,27 @@ "System.Reflection.Emit.Lightweight": "4.3.0" } }, + "opensearch.opensearch.managed": { + "type": "Project", + "dependencies": { + "OpenSearch.Stack.ArtifactsApi": "1.0.0", + "Proc": "0.6.1", + "System.Net.Http": "4.3.4" + } + }, + "opensearch.stack.artifactsapi": { + "type": "Project", + "dependencies": { + "SemanticVersioning": "0.8.0", + "System.Net.Http": "4.3.4", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Text.Json": "6.0.5" + } + }, "tests.configuration": { "type": "Project", "dependencies": { - "OpenSearch.OpenSearch.Managed": "0.1.0-canary.0.277" + "OpenSearch.OpenSearch.Managed": "1.0.0" } } } diff --git a/tests/Tests.Reproduce/packages.lock.json b/tests/Tests.Reproduce/packages.lock.json index 59216b2d2c..20b78b3974 100644 --- a/tests/Tests.Reproduce/packages.lock.json +++ b/tests/Tests.Reproduce/packages.lock.json @@ -16,7 +16,10 @@ "type": "Direct", "requested": "[1.0.0-preview.2, )", "resolved": "1.0.0-preview.2", - "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==" + "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==", + "dependencies": { + "Microsoft.NETFramework.ReferenceAssemblies.net461": "1.0.0-preview.2" + } }, "Bogus": { "type": "Transitive", @@ -61,6 +64,11 @@ "resolved": "1.1.0", "contentHash": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==" }, + "Microsoft.NETFramework.ReferenceAssemblies.net461": { + "type": "Transitive", + "resolved": "1.0.0-preview.2", + "contentHash": "59D9ISjzCpfHG41r5x4BNZNNOCmE2o5YX8vcdOwsqfxOA0+6vQnxZrYq8KtthUU2JSvC13g941rSr5GRaNQOJg==" + }, "Microsoft.TestPlatform.ObjectModel": { "type": "Transitive", "resolved": "16.5.0", @@ -121,45 +129,6 @@ "Microsoft.TestPlatform.ObjectModel": "15.8.0" } }, - "OpenSearch.OpenSearch.Ephemeral": { - "type": "Transitive", - "resolved": "0.1.0-canary.0.277", - "contentHash": "LAAfOtWvcjoCxUq47BGbwfFst12nsvd3FYDRR9OUfSp69BzevNp3bhAd5O2sdaspBg9MkuOD5Mhp8TvWRHCG7g==", - "dependencies": { - "OpenSearch.OpenSearch.Managed": "0.1.0-canary.0.277", - "SharpZipLib.NETStandard": "1.0.7" - } - }, - "OpenSearch.OpenSearch.Managed": { - "type": "Transitive", - "resolved": "0.1.0-canary.0.277", - "contentHash": "BoLSf2fiCphayR0TQulvm0m0MISy8kCL+JrPv1QGrlR4YujWAeSi0izb+vnYEWT9+a8IviTMjU2TGZwpcKSuBQ==", - "dependencies": { - "OpenSearch.Stack.ArtifactsApi": "0.1.0-canary.0.277", - "Proc": "0.6.1", - "System.Net.Http": "4.3.4" - } - }, - "OpenSearch.OpenSearch.Xunit": { - "type": "Transitive", - "resolved": "0.1.0-canary.0.277", - "contentHash": "hNAJp5xM9ounExLOS+CmLCTCwpPfirZ5rOTY0UfR2AU+19wp4HLKerwjmJV4cAJM0ba6JvzrjLQcnMGYazM0og==", - "dependencies": { - "OpenSearch.OpenSearch.Ephemeral": "0.1.0-canary.0.277", - "xunit": "2.4.2" - } - }, - "OpenSearch.Stack.ArtifactsApi": { - "type": "Transitive", - "resolved": "0.1.0-canary.0.277", - "contentHash": "S3Mxf2FhxL/WJg9f0LGoGLmpvRyFCH0HitsC3bDAgBweO9aqSNmpVeAm7DvKHMwGpSAglUL0+pOBvo2dCi/iVg==", - "dependencies": { - "SemanticVersioning": "0.8.0", - "System.Net.Http": "4.3.4", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Text.Json": "6.0.5" - } - }, "Proc": { "type": "Transitive", "resolved": "0.6.1", @@ -917,10 +886,41 @@ "System.Diagnostics.DiagnosticSource": "5.0.0" } }, + "opensearch.opensearch.ephemeral": { + "type": "Project", + "dependencies": { + "OpenSearch.OpenSearch.Managed": "1.0.0", + "SharpZipLib.NETStandard": "1.0.7" + } + }, + "opensearch.opensearch.managed": { + "type": "Project", + "dependencies": { + "OpenSearch.Stack.ArtifactsApi": "1.0.0", + "Proc": "0.6.1", + "System.Net.Http": "4.3.4" + } + }, + "opensearch.opensearch.xunit": { + "type": "Project", + "dependencies": { + "OpenSearch.OpenSearch.Ephemeral": "1.0.0", + "xunit": "2.4.2" + } + }, + "opensearch.stack.artifactsapi": { + "type": "Project", + "dependencies": { + "SemanticVersioning": "0.8.0", + "System.Net.Http": "4.3.4", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Text.Json": "6.0.5" + } + }, "tests.configuration": { "type": "Project", "dependencies": { - "OpenSearch.OpenSearch.Managed": "0.1.0-canary.0.277" + "OpenSearch.OpenSearch.Managed": "1.0.0" } }, "tests.core": { @@ -932,7 +932,7 @@ "Microsoft.NET.Test.Sdk": "16.5.0", "Nullean.VsTest.Pretty.TestLogger": "0.3.0", "OpenSearch.Client.JsonNetSerializer": "1.0.0", - "OpenSearch.OpenSearch.Xunit": "0.1.0-canary.0.277", + "OpenSearch.OpenSearch.Xunit": "1.0.0", "Proc": "0.6.1", "Tests.Domain": "1.0.0", "xunit": "2.4.2" @@ -944,7 +944,7 @@ "Bogus": "22.1.2", "Newtonsoft.Json": "13.0.1", "OpenSearch.Client": "1.0.0", - "OpenSearch.OpenSearch.Managed": "0.1.0-canary.0.277", + "OpenSearch.OpenSearch.Managed": "1.0.0", "Tests.Configuration": "1.0.0" } } diff --git a/tests/Tests.ScratchPad/packages.lock.json b/tests/Tests.ScratchPad/packages.lock.json index 1e49856762..eab77e1ac3 100644 --- a/tests/Tests.ScratchPad/packages.lock.json +++ b/tests/Tests.ScratchPad/packages.lock.json @@ -29,7 +29,10 @@ "type": "Direct", "requested": "[1.0.0-preview.2, )", "resolved": "1.0.0-preview.2", - "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==" + "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==", + "dependencies": { + "Microsoft.NETFramework.ReferenceAssemblies.net461": "1.0.0-preview.2" + } }, "System.Diagnostics.DiagnosticSource": { "type": "Direct", @@ -197,6 +200,11 @@ "resolved": "1.1.0", "contentHash": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==" }, + "Microsoft.NETFramework.ReferenceAssemblies.net461": { + "type": "Transitive", + "resolved": "1.0.0-preview.2", + "contentHash": "59D9ISjzCpfHG41r5x4BNZNNOCmE2o5YX8vcdOwsqfxOA0+6vQnxZrYq8KtthUU2JSvC13g941rSr5GRaNQOJg==" + }, "Microsoft.TestPlatform.ObjectModel": { "type": "Transitive", "resolved": "16.5.0", @@ -251,45 +259,6 @@ "Microsoft.TestPlatform.ObjectModel": "15.8.0" } }, - "OpenSearch.OpenSearch.Ephemeral": { - "type": "Transitive", - "resolved": "0.1.0-canary.0.277", - "contentHash": "LAAfOtWvcjoCxUq47BGbwfFst12nsvd3FYDRR9OUfSp69BzevNp3bhAd5O2sdaspBg9MkuOD5Mhp8TvWRHCG7g==", - "dependencies": { - "OpenSearch.OpenSearch.Managed": "0.1.0-canary.0.277", - "SharpZipLib.NETStandard": "1.0.7" - } - }, - "OpenSearch.OpenSearch.Managed": { - "type": "Transitive", - "resolved": "0.1.0-canary.0.277", - "contentHash": "BoLSf2fiCphayR0TQulvm0m0MISy8kCL+JrPv1QGrlR4YujWAeSi0izb+vnYEWT9+a8IviTMjU2TGZwpcKSuBQ==", - "dependencies": { - "OpenSearch.Stack.ArtifactsApi": "0.1.0-canary.0.277", - "Proc": "0.6.1", - "System.Net.Http": "4.3.4" - } - }, - "OpenSearch.OpenSearch.Xunit": { - "type": "Transitive", - "resolved": "0.1.0-canary.0.277", - "contentHash": "hNAJp5xM9ounExLOS+CmLCTCwpPfirZ5rOTY0UfR2AU+19wp4HLKerwjmJV4cAJM0ba6JvzrjLQcnMGYazM0og==", - "dependencies": { - "OpenSearch.OpenSearch.Ephemeral": "0.1.0-canary.0.277", - "xunit": "2.4.2" - } - }, - "OpenSearch.Stack.ArtifactsApi": { - "type": "Transitive", - "resolved": "0.1.0-canary.0.277", - "contentHash": "S3Mxf2FhxL/WJg9f0LGoGLmpvRyFCH0HitsC3bDAgBweO9aqSNmpVeAm7DvKHMwGpSAglUL0+pOBvo2dCi/iVg==", - "dependencies": { - "SemanticVersioning": "0.8.0", - "System.Net.Http": "4.3.4", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Text.Json": "6.0.5" - } - }, "Perfolizer": { "type": "Transitive", "resolved": "0.2.1", @@ -1426,10 +1395,41 @@ "System.Diagnostics.DiagnosticSource": "5.0.0" } }, + "opensearch.opensearch.ephemeral": { + "type": "Project", + "dependencies": { + "OpenSearch.OpenSearch.Managed": "1.0.0", + "SharpZipLib.NETStandard": "1.0.7" + } + }, + "opensearch.opensearch.managed": { + "type": "Project", + "dependencies": { + "OpenSearch.Stack.ArtifactsApi": "1.0.0", + "Proc": "0.6.1", + "System.Net.Http": "4.3.4" + } + }, + "opensearch.opensearch.xunit": { + "type": "Project", + "dependencies": { + "OpenSearch.OpenSearch.Ephemeral": "1.0.0", + "xunit": "2.4.2" + } + }, + "opensearch.stack.artifactsapi": { + "type": "Project", + "dependencies": { + "SemanticVersioning": "0.8.0", + "System.Net.Http": "4.3.4", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Text.Json": "6.0.5" + } + }, "tests.configuration": { "type": "Project", "dependencies": { - "OpenSearch.OpenSearch.Managed": "0.1.0-canary.0.277" + "OpenSearch.OpenSearch.Managed": "1.0.0" } }, "tests.core": { @@ -1441,7 +1441,7 @@ "Microsoft.NET.Test.Sdk": "16.5.0", "Nullean.VsTest.Pretty.TestLogger": "0.3.0", "OpenSearch.Client.JsonNetSerializer": "1.0.0", - "OpenSearch.OpenSearch.Xunit": "0.1.0-canary.0.277", + "OpenSearch.OpenSearch.Xunit": "1.0.0", "Proc": "0.6.1", "Tests.Domain": "1.0.0", "xunit": "2.4.2" @@ -1453,7 +1453,7 @@ "Bogus": "22.1.2", "Newtonsoft.Json": "13.0.1", "OpenSearch.Client": "1.0.0", - "OpenSearch.OpenSearch.Managed": "0.1.0-canary.0.277", + "OpenSearch.OpenSearch.Managed": "1.0.0", "Tests.Configuration": "1.0.0" } } diff --git a/tests/Tests.YamlRunner/packages.lock.json b/tests/Tests.YamlRunner/packages.lock.json index 7aa8ae06dd..8ce7399c8c 100644 --- a/tests/Tests.YamlRunner/packages.lock.json +++ b/tests/Tests.YamlRunner/packages.lock.json @@ -31,7 +31,10 @@ "type": "Direct", "requested": "[1.0.0-preview.2, )", "resolved": "1.0.0-preview.2", - "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==" + "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==", + "dependencies": { + "Microsoft.NETFramework.ReferenceAssemblies.net461": "1.0.0-preview.2" + } }, "Newtonsoft.Json": { "type": "Direct", @@ -78,6 +81,11 @@ "resolved": "1.1.0", "contentHash": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==" }, + "Microsoft.NETFramework.ReferenceAssemblies.net461": { + "type": "Transitive", + "resolved": "1.0.0-preview.2", + "contentHash": "59D9ISjzCpfHG41r5x4BNZNNOCmE2o5YX8vcdOwsqfxOA0+6vQnxZrYq8KtthUU2JSvC13g941rSr5GRaNQOJg==" + }, "System.Buffers": { "type": "Transitive", "resolved": "4.5.1", diff --git a/tests/Tests/packages.lock.json b/tests/Tests/packages.lock.json index 35abc4c3b4..d1d8f230b0 100644 --- a/tests/Tests/packages.lock.json +++ b/tests/Tests/packages.lock.json @@ -31,7 +31,10 @@ "type": "Direct", "requested": "[1.0.0-preview.2, )", "resolved": "1.0.0-preview.2", - "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==" + "contentHash": "m+pJPEO7HyXvrOna5Sr3s77ewXonjYWJTNL6drh8xACnMNxnlqUDKx9HfGeSE9wmfY0lQwppaeZpFTPGaH7kZg==", + "dependencies": { + "Microsoft.NETFramework.ReferenceAssemblies.net461": "1.0.0-preview.2" + } }, "SemanticVersioning": { "type": "Direct", @@ -100,6 +103,11 @@ "resolved": "1.1.0", "contentHash": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==" }, + "Microsoft.NETFramework.ReferenceAssemblies.net461": { + "type": "Transitive", + "resolved": "1.0.0-preview.2", + "contentHash": "59D9ISjzCpfHG41r5x4BNZNNOCmE2o5YX8vcdOwsqfxOA0+6vQnxZrYq8KtthUU2JSvC13g941rSr5GRaNQOJg==" + }, "Microsoft.TestPlatform.ObjectModel": { "type": "Transitive", "resolved": "16.5.0", @@ -211,45 +219,6 @@ "Microsoft.TestPlatform.ObjectModel": "15.8.0" } }, - "OpenSearch.OpenSearch.Ephemeral": { - "type": "Transitive", - "resolved": "0.1.0-canary.0.277", - "contentHash": "LAAfOtWvcjoCxUq47BGbwfFst12nsvd3FYDRR9OUfSp69BzevNp3bhAd5O2sdaspBg9MkuOD5Mhp8TvWRHCG7g==", - "dependencies": { - "OpenSearch.OpenSearch.Managed": "0.1.0-canary.0.277", - "SharpZipLib.NETStandard": "1.0.7" - } - }, - "OpenSearch.OpenSearch.Managed": { - "type": "Transitive", - "resolved": "0.1.0-canary.0.277", - "contentHash": "BoLSf2fiCphayR0TQulvm0m0MISy8kCL+JrPv1QGrlR4YujWAeSi0izb+vnYEWT9+a8IviTMjU2TGZwpcKSuBQ==", - "dependencies": { - "OpenSearch.Stack.ArtifactsApi": "0.1.0-canary.0.277", - "Proc": "0.6.1", - "System.Net.Http": "4.3.4" - } - }, - "OpenSearch.OpenSearch.Xunit": { - "type": "Transitive", - "resolved": "0.1.0-canary.0.277", - "contentHash": "hNAJp5xM9ounExLOS+CmLCTCwpPfirZ5rOTY0UfR2AU+19wp4HLKerwjmJV4cAJM0ba6JvzrjLQcnMGYazM0og==", - "dependencies": { - "OpenSearch.OpenSearch.Ephemeral": "0.1.0-canary.0.277", - "xunit": "2.4.2" - } - }, - "OpenSearch.Stack.ArtifactsApi": { - "type": "Transitive", - "resolved": "0.1.0-canary.0.277", - "contentHash": "S3Mxf2FhxL/WJg9f0LGoGLmpvRyFCH0HitsC3bDAgBweO9aqSNmpVeAm7DvKHMwGpSAglUL0+pOBvo2dCi/iVg==", - "dependencies": { - "SemanticVersioning": "0.8.0", - "System.Net.Http": "4.3.4", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Text.Json": "6.0.5" - } - }, "Proc": { "type": "Transitive", "resolved": "0.6.1", @@ -1335,10 +1304,41 @@ "OpenSearch.Net": "1.0.0" } }, + "opensearch.opensearch.ephemeral": { + "type": "Project", + "dependencies": { + "OpenSearch.OpenSearch.Managed": "1.0.0", + "SharpZipLib.NETStandard": "1.0.7" + } + }, + "opensearch.opensearch.managed": { + "type": "Project", + "dependencies": { + "OpenSearch.Stack.ArtifactsApi": "1.0.0", + "Proc": "0.6.1", + "System.Net.Http": "4.3.4" + } + }, + "opensearch.opensearch.xunit": { + "type": "Project", + "dependencies": { + "OpenSearch.OpenSearch.Ephemeral": "1.0.0", + "xunit": "2.4.2" + } + }, + "opensearch.stack.artifactsapi": { + "type": "Project", + "dependencies": { + "SemanticVersioning": "0.8.0", + "System.Net.Http": "4.3.4", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Text.Json": "6.0.5" + } + }, "tests.configuration": { "type": "Project", "dependencies": { - "OpenSearch.OpenSearch.Managed": "0.1.0-canary.0.277" + "OpenSearch.OpenSearch.Managed": "1.0.0" } }, "tests.core": { @@ -1350,7 +1350,7 @@ "Microsoft.NET.Test.Sdk": "16.5.0", "Nullean.VsTest.Pretty.TestLogger": "0.3.0", "OpenSearch.Client.JsonNetSerializer": "1.0.0", - "OpenSearch.OpenSearch.Xunit": "0.1.0-canary.0.277", + "OpenSearch.OpenSearch.Xunit": "1.0.0", "Proc": "0.6.1", "Tests.Domain": "1.0.0", "xunit": "2.4.2" @@ -1362,7 +1362,7 @@ "Bogus": "22.1.2", "Newtonsoft.Json": "13.0.1", "OpenSearch.Client": "1.0.0", - "OpenSearch.OpenSearch.Managed": "0.1.0-canary.0.277", + "OpenSearch.OpenSearch.Managed": "1.0.0", "Tests.Configuration": "1.0.0" } }