move storage headers (#837)

* move blob.hpp

* move headers

* add changelog
This commit is contained in:
JinmingHu 2020-10-23 11:39:29 +08:00 committed by GitHub
parent 08e364e1cd
commit e09a891383
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
30 changed files with 46 additions and 24 deletions

View File

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

View File

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

View File

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

View File

@ -3,7 +3,7 @@
#include <iostream>
#include "azure/storage/blobs/blob.hpp"
#include "azure/storage/blobs.hpp"
#include "samples_common.hpp"
SAMPLE(BlobsGettingStarted, BlobsGettingStarted)

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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