move storage headers (#837)
* move blob.hpp * move headers * add changelog
This commit is contained in:
parent
08e364e1cd
commit
e09a891383
@ -1,5 +1,11 @@
|
||||
# Release History
|
||||
|
||||
## 1.0.0-beta.5 (Unreleased)
|
||||
|
||||
### Breaking Changes
|
||||
|
||||
* Move header `azure/storage/blobs/blob.hpp` to `azure/storage/blobs.hpp`
|
||||
|
||||
## 1.0.0-beta.4 (2020-10-16)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
@ -4,8 +4,8 @@
|
||||
cmake_minimum_required (VERSION 3.13)
|
||||
|
||||
set (AZURE_STORAGE_BLOB_HEADER
|
||||
inc/azure/storage/blobs.hpp
|
||||
inc/azure/storage/blobs/append_blob_client.hpp
|
||||
inc/azure/storage/blobs/blob.hpp
|
||||
inc/azure/storage/blobs/blob_batch_client.hpp
|
||||
inc/azure/storage/blobs/blob_client.hpp
|
||||
inc/azure/storage/blobs/blob_container_client.hpp
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
#include "azure/storage/blobs/blob_batch_client.hpp"
|
||||
#include "azure/storage/blobs/blob_client.hpp"
|
||||
#include "azure/storage/blobs/blob_container_client.hpp"
|
||||
#include "azure/storage/blobs/blob_sas_builder.hpp"
|
||||
#include "azure/storage/blobs/blob_service_client.hpp"
|
||||
#include "azure/storage/blobs/block_blob_client.hpp"
|
||||
#include "azure/storage/blobs/page_blob_client.hpp"
|
||||
@ -3,7 +3,7 @@
|
||||
|
||||
#include <iostream>
|
||||
|
||||
#include "azure/storage/blobs/blob.hpp"
|
||||
#include "azure/storage/blobs.hpp"
|
||||
#include "samples_common.hpp"
|
||||
|
||||
SAMPLE(BlobsGettingStarted, BlobsGettingStarted)
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "azure/storage/blobs/blob.hpp"
|
||||
#include "azure/storage/blobs.hpp"
|
||||
#include "blob_container_client_test.hpp"
|
||||
#include "test_base.hpp"
|
||||
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "azure/storage/blobs/blob.hpp"
|
||||
#include "azure/storage/blobs.hpp"
|
||||
#include "azure/storage/blobs/blob_sas_builder.hpp"
|
||||
#include "test_base.hpp"
|
||||
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "azure/storage/blobs/blob.hpp"
|
||||
#include "azure/storage/blobs.hpp"
|
||||
#include "test_base.hpp"
|
||||
|
||||
namespace Azure { namespace Storage { namespace Test {
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "azure/storage/blobs/blob.hpp"
|
||||
#include "azure/storage/blobs.hpp"
|
||||
#include "test_base.hpp"
|
||||
|
||||
#include <thread>
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "azure/storage/blobs/blob.hpp"
|
||||
#include "azure/storage/blobs.hpp"
|
||||
#include "blob_container_client_test.hpp"
|
||||
#include "test_base.hpp"
|
||||
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "azure/storage/blobs/blob.hpp"
|
||||
#include "azure/storage/blobs.hpp"
|
||||
#include "azure/storage/common/file_io.hpp"
|
||||
#include "test_base.hpp"
|
||||
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "azure/storage/blobs/blob.hpp"
|
||||
#include "azure/storage/blobs.hpp"
|
||||
#include "blob_container_client_test.hpp"
|
||||
#include "test_base.hpp"
|
||||
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "azure/storage/blobs/blob.hpp"
|
||||
#include "azure/storage/blobs.hpp"
|
||||
#include "test_base.hpp"
|
||||
|
||||
#include <chrono>
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "azure/identity/client_secret_credential.hpp"
|
||||
#include "azure/storage/blobs/blob.hpp"
|
||||
#include "azure/storage/blobs.hpp"
|
||||
#include "test_base.hpp"
|
||||
|
||||
namespace Azure { namespace Storage { namespace Test {
|
||||
|
||||
@ -1,5 +1,11 @@
|
||||
# Release History
|
||||
|
||||
## 1.0.0-beta.5 (Unreleased)
|
||||
|
||||
### Breaking Changes
|
||||
|
||||
* Move header `azure/storage/files/datalake/datalake.hpp` to `azure/storage/files/datalake.hpp`
|
||||
|
||||
## 1.0.0-beta.4 (2020-10-16)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
cmake_minimum_required (VERSION 3.13)
|
||||
|
||||
set (AZURE_STORAGE_DATALAKE_HEADER
|
||||
inc/azure/storage/files/datalake/datalake.hpp
|
||||
inc/azure/storage/files/datalake.hpp
|
||||
inc/azure/storage/files/datalake/datalake_directory_client.hpp
|
||||
inc/azure/storage/files/datalake/datalake_file_client.hpp
|
||||
inc/azure/storage/files/datalake/datalake_file_system_client.hpp
|
||||
|
||||
@ -7,4 +7,5 @@
|
||||
#include "azure/storage/files/datalake/datalake_file_client.hpp"
|
||||
#include "azure/storage/files/datalake/datalake_file_system_client.hpp"
|
||||
#include "azure/storage/files/datalake/datalake_path_client.hpp"
|
||||
#include "azure/storage/files/datalake/datalake_sas_builder.hpp"
|
||||
#include "azure/storage/files/datalake/datalake_service_client.hpp"
|
||||
@ -3,7 +3,7 @@
|
||||
|
||||
#include <iostream>
|
||||
|
||||
#include "azure/storage/files/datalake/datalake.hpp"
|
||||
#include "azure/storage/files/datalake.hpp"
|
||||
#include "samples_common.hpp"
|
||||
|
||||
SAMPLE(DataLakeGettingStarted, DataLakeGettingStarted)
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "azure/storage/files/datalake/datalake.hpp"
|
||||
#include "azure/storage/files/datalake.hpp"
|
||||
#include "datalake_path_client_test.hpp"
|
||||
#include "test_base.hpp"
|
||||
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "azure/storage/files/datalake/datalake.hpp"
|
||||
#include "azure/storage/files/datalake.hpp"
|
||||
#include "datalake_file_system_client_test.hpp"
|
||||
#include "test_base.hpp"
|
||||
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "azure/storage/files/datalake/datalake.hpp"
|
||||
#include "azure/storage/files/datalake.hpp"
|
||||
#include "test_base.hpp"
|
||||
|
||||
namespace Azure { namespace Storage { namespace Test {
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "azure/storage/files/datalake/datalake.hpp"
|
||||
#include "azure/storage/files/datalake.hpp"
|
||||
#include "datalake_file_system_client_test.hpp"
|
||||
#include "test_base.hpp"
|
||||
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "azure/storage/files/datalake/datalake.hpp"
|
||||
#include "azure/storage/files/datalake.hpp"
|
||||
#include "test_base.hpp"
|
||||
|
||||
namespace Azure { namespace Storage { namespace Test {
|
||||
|
||||
@ -1,5 +1,12 @@
|
||||
# Release History
|
||||
|
||||
## 1.0.0-beta.5 (Unreleased)
|
||||
|
||||
### Breaking Changes
|
||||
|
||||
* Move header `azure/storage/files/shares/shares.hpp` to `azure/storage/files/shares.hpp`
|
||||
|
||||
|
||||
## 1.0.0-beta.4 (2020-10-16)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
@ -4,6 +4,7 @@
|
||||
cmake_minimum_required (VERSION 3.13)
|
||||
|
||||
set (AZURE_STORAGE_SHARES_HEADER
|
||||
inc/azure/storage/files/shares.hpp
|
||||
inc/azure/storage/files/shares/protocol/share_rest_client.hpp
|
||||
inc/azure/storage/files/shares/share_client.hpp
|
||||
inc/azure/storage/files/shares/share_constants.hpp
|
||||
@ -14,7 +15,6 @@ set (AZURE_STORAGE_SHARES_HEADER
|
||||
inc/azure/storage/files/shares/share_responses.hpp
|
||||
inc/azure/storage/files/shares/share_sas_builder.hpp
|
||||
inc/azure/storage/files/shares/share_service_client.hpp
|
||||
inc/azure/storage/files/shares/shares.hpp
|
||||
)
|
||||
|
||||
set (AZURE_STORAGE_SHARES_SOURCE
|
||||
|
||||
@ -6,4 +6,5 @@
|
||||
#include "azure/storage/files/shares/share_client.hpp"
|
||||
#include "azure/storage/files/shares/share_directory_client.hpp"
|
||||
#include "azure/storage/files/shares/share_file_client.hpp"
|
||||
#include "azure/storage/files/shares/share_sas_builder.hpp"
|
||||
#include "azure/storage/files/shares/share_service_client.hpp"
|
||||
@ -3,7 +3,7 @@
|
||||
|
||||
#include <iostream>
|
||||
|
||||
#include "azure/storage/files/shares/shares.hpp"
|
||||
#include "azure/storage/files/shares.hpp"
|
||||
#include "samples_common.hpp"
|
||||
|
||||
SAMPLE(FileShareGettingStarted, FileShareGettingStarted)
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "azure/storage/files/shares/shares.hpp"
|
||||
#include "azure/storage/files/shares.hpp"
|
||||
#include "test_base.hpp"
|
||||
|
||||
namespace Azure { namespace Storage { namespace Test {
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "azure/storage/files/shares/shares.hpp"
|
||||
#include "azure/storage/files/shares.hpp"
|
||||
#include "share_client_test.hpp"
|
||||
#include "test_base.hpp"
|
||||
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "azure/storage/files/shares/shares.hpp"
|
||||
#include "azure/storage/files/shares.hpp"
|
||||
#include "share_directory_client_test.hpp"
|
||||
#include "test_base.hpp"
|
||||
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "azure/storage/files/shares/shares.hpp"
|
||||
#include "azure/storage/files/shares.hpp"
|
||||
#include "test_base.hpp"
|
||||
|
||||
namespace Azure { namespace Storage { namespace Test {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user