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:
Anton Kolesnyk 2023-05-30 11:41:37 -07:00 committed by GitHub
parent b8551b9ae8
commit b4236bd0f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 18 additions and 2 deletions

2
.vscode/cspell.json vendored
View File

@ -47,6 +47,7 @@
"azuresdkforcpp",
"centralus",
"centraluseuap",
"Chukwu",
"cmake",
"CMOCKA",
"Cobertura",
@ -89,6 +90,7 @@
"iusg",
"jepio",
"Jeremi",
"jnyfah",
"Kirilov",
"lcov",
"LIBCMTD",

View File

@ -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

View File

@ -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

View File

@ -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>

View File

@ -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; }
};
};