Skip to content

Commit a7d395b

Browse files
New version of sdk 1.3.2 (#25)
1 parent 4a1ebc6 commit a7d395b

16 files changed

+135
-7
lines changed

library.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name=Azure SDK for C
2-
version=1.0.0-beta.4
2+
version=1.0.0-beta.5
33
author=Microsoft Corporation
44
maintainer=Microsoft Corporation <[email protected]>
55
sentence=Azure SDK for C library for Arduino.
6-
paragraph=This is an Arduino port of the Azure SDK for C (1.3.1). It allows you to use your Arduino device with Azure services like Azure IoT Hub and Azure Device Provisioning Service. See README.md for more details. Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.
6+
paragraph=This is an Arduino port of the Azure SDK for C (1.3.2). It allows you to use your Arduino device with Azure services like Azure IoT Hub and Azure Device Provisioning Service. See README.md for more details. Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.
77
category=Communication
8-
url=https://github.com/Azure/azure-sdk-for-c/tree/1.3.1
8+
url=https://github.com/Azure/azure-sdk-for-c/tree/1.3.2
99
architectures=*
1010
includes=az_core.h,az_iot.h,azure_ca.h

src/az_config_internal.h

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// SPDX-License-Identifier: MIT
33

4+
/**
5+
* @file
6+
*
7+
* @brief Defines internal constants.
8+
*
9+
* @note You MUST NOT use any symbols (macros, functions, structures, enums, etc.)
10+
* prefixed with an underscore ('_') directly in your application code. These symbols
11+
* are part of Azure SDK's internal implementation; we do not document these symbols
12+
* and they are subject to change in future versions of the SDK which would break your code.
13+
*/
14+
415
#ifndef _az_CONFIG_INTERNAL_H
516
#define _az_CONFIG_INTERNAL_H
617

src/az_credentials_internal.h

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// SPDX-License-Identifier: MIT
33

4+
/**
5+
* @file
6+
*
7+
* @brief Defines internals used by credentials.
8+
*
9+
* @note You MUST NOT use any symbols (macros, functions, structures, enums, etc.)
10+
* prefixed with an underscore ('_') directly in your application code. These symbols
11+
* are part of Azure SDK's internal implementation; we do not document these symbols
12+
* and they are subject to change in future versions of the SDK which would break your code.
13+
*/
14+
415
#ifndef _az_CREDENTIALS_INTERNAL_H
516
#define _az_CREDENTIALS_INTERNAL_H
617

src/az_hex_private.h

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// SPDX-License-Identifier: MIT
33

4+
/**
5+
* @file
6+
*
7+
* @brief Defines private implementation used by hex.
8+
*
9+
* @note You MUST NOT use any symbols (macros, functions, structures, enums, etc.)
10+
* prefixed with an underscore ('_') directly in your application code. These symbols
11+
* are part of Azure SDK's internal implementation; we do not document these symbols
12+
* and they are subject to change in future versions of the SDK which would break your code.
13+
*/
14+
415
#ifndef _az_HEX_PRIVATE_H
516
#define _az_HEX_PRIVATE_H
617

src/az_http_header_validation_private.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
* @brief This header defines a bit array that is used to validate whenever or not an ASCII char is
88
* valid within an http header name.
99
*
10+
* @note You MUST NOT use any symbols (macros, functions, structures, enums, etc.)
11+
* prefixed with an underscore ('_') directly in your application code. These symbols
12+
* are part of Azure SDK's internal implementation; we do not document these symbols
13+
* and they are subject to change in future versions of the SDK which would break your code.
1014
*/
1115

1216
#ifndef _az_HTTP_HEADER_VALIDATION_PRIVATE_H

src/az_http_internal.h

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// SPDX-License-Identifier: MIT
33

4+
/**
5+
* @file
6+
*
7+
* @brief Defines internals used by http.
8+
*
9+
* @note You MUST NOT use any symbols (macros, functions, structures, enums, etc.)
10+
* prefixed with an underscore ('_') directly in your application code. These symbols
11+
* are part of Azure SDK's internal implementation; we do not document these symbols
12+
* and they are subject to change in future versions of the SDK which would break your code.
13+
*/
14+
415
#ifndef _az_HTTP_INTERNAL_H
516
#define _az_HTTP_INTERNAL_H
617

src/az_http_policy_logging_private.h

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// SPDX-License-Identifier: MIT
33

4+
/**
5+
* @file
6+
*
7+
* @brief Defines private implementation used by http logging.
8+
*
9+
* @note You MUST NOT use any symbols (macros, functions, structures, enums, etc.)
10+
* prefixed with an underscore ('_') directly in your application code. These symbols
11+
* are part of Azure SDK's internal implementation; we do not document these symbols
12+
* and they are subject to change in future versions of the SDK which would break your code.
13+
*/
14+
415
#ifndef _az_HTTP_POLICY_LOGGING_PRIVATE_H
516
#define _az_HTTP_POLICY_LOGGING_PRIVATE_H
617

src/az_http_policy_retry.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,4 @@ AZ_NODISCARD az_result az_http_pipeline_policy_retry(
220220
}
221221
}
222222
}
223-
224-
return result;
225223
}

src/az_http_private.h

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// SPDX-License-Identifier: MIT
33

4+
/**
5+
* @file
6+
*
7+
* @brief Defines private implementation used by http.
8+
*
9+
* @note You MUST NOT use any symbols (macros, functions, structures, enums, etc.)
10+
* prefixed with an underscore ('_') directly in your application code. These symbols
11+
* are part of Azure SDK's internal implementation; we do not document these symbols
12+
* and they are subject to change in future versions of the SDK which would break your code.
13+
*/
14+
415
#ifndef _az_HTTP_PRIVATE_H
516
#define _az_HTTP_PRIVATE_H
617

src/az_json_private.h

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// SPDX-License-Identifier: MIT
33

4+
/**
5+
* @file
6+
*
7+
* @brief Defines private implementation used by json.
8+
*
9+
* @note You MUST NOT use any symbols (macros, functions, structures, enums, etc.)
10+
* prefixed with an underscore ('_') directly in your application code. These symbols
11+
* are part of Azure SDK's internal implementation; we do not document these symbols
12+
* and they are subject to change in future versions of the SDK which would break your code.
13+
*/
14+
415
#ifndef _az_JSON_PRIVATE_H
516
#define _az_JSON_PRIVATE_H
617

0 commit comments

Comments
 (0)