diff --git a/.vscode/cspell.json b/.vscode/cspell.json index e2c6cefd3..af6dea762 100644 --- a/.vscode/cspell.json +++ b/.vscode/cspell.json @@ -47,6 +47,7 @@ "azuresdkforcpp", "centralus", "centraluseuap", + "Chukwu", "cmake", "CMOCKA", "Cobertura", @@ -89,6 +90,7 @@ "iusg", "jepio", "Jeremi", + "jnyfah", "Kirilov", "lcov", "LIBCMTD", diff --git a/sdk/core/azure-core/CHANGELOG.md b/sdk/core/azure-core/CHANGELOG.md index 8d32a52d5..0397f2ce4 100644 --- a/sdk/core/azure-core/CHANGELOG.md +++ b/sdk/core/azure-core/CHANGELOG.md @@ -10,6 +10,14 @@ ### Other Changes +- [[#3964]](https://github.com/Azure/azure-sdk-for-cpp/issues/3964) Ensuring some Azure SDK types have the expected default operations. (A community contribution, courtesy of _[jnyfah](https://github.com/jnyfah)_) + +### Acknowledgments + +Thank you to our developer community members who helped to make Azure Core better with their contributions to this release: + +- Jennifer Chukwu _([GitHub](https://github.com/jnyfah))_ + ## 1.10.0-beta.1 (2023-05-04) ### Features Added diff --git a/sdk/core/azure-core/test/ut/CMakeLists.txt b/sdk/core/azure-core/test/ut/CMakeLists.txt index 13d5878cd..efa23d2ad 100644 --- a/sdk/core/azure-core/test/ut/CMakeLists.txt +++ b/sdk/core/azure-core/test/ut/CMakeLists.txt @@ -42,7 +42,6 @@ endif() add_executable ( azure-core-test - test_traits.hpp authorization_challenge_parser_test.cpp azure_core_test.cpp base64_test.cpp @@ -84,6 +83,7 @@ add_executable ( simplified_header_test.cpp string_test.cpp telemetry_policy_test.cpp + test_traits.hpp transport_adapter_base_test.cpp transport_adapter_base_test.hpp transport_adapter_implementation_test.cpp diff --git a/sdk/core/azure-core/test/ut/etag_test.cpp b/sdk/core/azure-core/test/ut/etag_test.cpp index bc5cb3d98..6ea700f7b 100644 --- a/sdk/core/azure-core/test/ut/etag_test.cpp +++ b/sdk/core/azure-core/test/ut/etag_test.cpp @@ -1,9 +1,12 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // SPDX-License-Identifier: MIT + #include "test_traits.hpp" #include +#include + #include #include diff --git a/sdk/core/azure-core/test/ut/test_traits.hpp b/sdk/core/azure-core/test/ut/test_traits.hpp index bac24179c..a719f2d9d 100644 --- a/sdk/core/azure-core/test/ut/test_traits.hpp +++ b/sdk/core/azure-core/test/ut/test_traits.hpp @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// SPDX-License-Identifier: MIT + #include template struct ClassTraits @@ -129,4 +132,4 @@ template struct ClassTraits // Check if T has virtual destructor static constexpr bool has_virtual_destructor() { return std::has_virtual_destructor::value; } -}; \ No newline at end of file +};