Acknowledge community contribution in changelog (#4656)
* Acknowledge community contribution in changelog --------- Co-authored-by: Anton Kolesnyk <antkmsft@users.noreply.github.com>
This commit is contained in:
parent
b8551b9ae8
commit
b4236bd0f3
2
.vscode/cspell.json
vendored
2
.vscode/cspell.json
vendored
@ -47,6 +47,7 @@
|
||||
"azuresdkforcpp",
|
||||
"centralus",
|
||||
"centraluseuap",
|
||||
"Chukwu",
|
||||
"cmake",
|
||||
"CMOCKA",
|
||||
"Cobertura",
|
||||
@ -89,6 +90,7 @@
|
||||
"iusg",
|
||||
"jepio",
|
||||
"Jeremi",
|
||||
"jnyfah",
|
||||
"Kirilov",
|
||||
"lcov",
|
||||
"LIBCMTD",
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -1,9 +1,12 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "test_traits.hpp"
|
||||
|
||||
#include <azure/core/etag.hpp>
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
#include <limits>
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
@ -1,3 +1,6 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include <type_traits>
|
||||
|
||||
template <typename T, typename... Args> struct ClassTraits
|
||||
@ -129,4 +132,4 @@ template <typename T, typename... Args> struct ClassTraits
|
||||
|
||||
// Check if T has virtual destructor
|
||||
static constexpr bool has_virtual_destructor() { return std::has_virtual_destructor<T>::value; }
|
||||
};
|
||||
};
|
||||
|
||||
Loading…
Reference in New Issue
Block a user