* storage 12.1.0 release
* a
* Apply suggestions from code review
Co-authored-by: Anton Kolesnyk <41349689+antkmsft@users.noreply.github.com>
Co-authored-by: Anton Kolesnyk <41349689+antkmsft@users.noreply.github.com>
* Update changelog for Clang 11 comunity contribution
* Move to correct place, arrange in correct order
Co-authored-by: Anton Kolesnyk <antkmsft@users.noreply.github.com>
With clang 11, the build fails with:
```
azure-sdk-for-cpp/sdk/core/azure-core/inc/azure/core/datetime.hpp:285:14: error: no viable conversion from returned value of type 'time_point<Azure::_detail::Clock, typename common_type<duration<long, ratio<1, 10000000> >, duration<long long, ratio<1, 1> > >::type>' (aka 'time_point<Azure::_detail::Clock, duration<long long, ratio<__static_gcd<ratio<1, 10000000>::num, ratio<1, 1>::num>::value, __static_lcm<ratio<1, 10000000>::den, ratio<1, 1>::den>::value> > >') to function return type 'Azure::DateTime'
return DateTime(1970) + std::chrono::seconds(posixTime);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
```
* fix doc warnings
* get rid of bad merge
* fix doc warnings
* get rid of bad merge
* fix doc warnings
* get rid of bad merge
* code complete
* fix doc warnings
* get rid of bad merge
* fix doc warnings
* get rid of bad merge
* fix doc warnings
* get rid of bad merge
* test
* also restore
* new line
* fix doc warnings
* get rid of bad merge
* fix doc warnings
* get rid of bad merge
* fix doc warnings
* get rid of bad merge
* fixes for PR and build issues
* add header for linux build
* fix UT for mac
* remove offending issues
* rename from data to response
* added overload
* response -> result
* remove overload
* Make WinHTTP transport adapter to NOT use SSL/TLS for unsecured HTTP connections
* Update changelog for identity as well
* LocaleInvariantCaseInsensitiveEqual + micro-optimization to avoid creating&allocating std::string each time
* Update sdk/identity/azure-identity/CHANGELOG.md
Co-authored-by: Rick Winter <rick.winter@microsoft.com>
Co-authored-by: Anton Kolesnyk <antkmsft@users.noreply.github.com>
Co-authored-by: Rick Winter <rick.winter@microsoft.com>
* fix doc warnings
* working
* update the tag serialization
* get rid of files that were not supposed to be edited
* add convenience method
* fix doc warnings
* get rid of bad merge
* fix doc warnings
* get rid of bad merge
* fix doc warnings
* get rid of bad merge
* updates for merge
* PR comments
* Progress stream reader
* format
* Update sdk/core/azure-core/src/io/body_stream.cpp
Co-authored-by: JinmingHu <jinmhu@microsoft.com>
* PR comments
* remove
* one more comment
* replaced if null with azure_assert
* moved from pointer to reference
* first pass
* src builds
* new line
* huzaaaaa
* readme
* strating point
* get progress, need to deserialize now
* serializer
* some more
* tests
* more tests
* some refactor
* start
* comment and formatting
* set secret serializer
* added serializer ut
* add headers
* working again
* add cmake
* cleanup relative paths
* couple of updates
* clang
* working as expected
* remove pedantic ;
* include
* pr comments
* clang format
* trigger
* trigger 2
* PR comments
* name value swap
* updates from merge
* pre PR
* format
* remove hpp from list
* remove unused #include
* put back hpp file
* put the methods in a namespace
* PR comments
* some more comments
* fixes
Co-authored-by: JinmingHu <jinmhu@microsoft.com>
* Progress stream reader
* format
* Update sdk/core/azure-core/src/io/body_stream.cpp
Co-authored-by: JinmingHu <jinmhu@microsoft.com>
* PR comments
* remove
* one more comment
* replaced if null with azure_assert
* moved from pointer to reference
* first pass
* src builds
* new line
* huzaaaaa
* readme
* strating point
* get progress, need to deserialize now
* serializer
* some more
* tests
* more tests
* some refactor
* start
* comment and formatting
* working again
* couple of updates
* clang
* remove pedantic ;
* include
* pr comments
* clang format
* trigger
* trigger 2
* PR comments
* name value swap
Co-authored-by: JinmingHu <jinmhu@microsoft.com>
The issue came from a missformatted json file , the fix is straight forward ,
The number of commits can be ignored, the merge is squashed,
the operations i performed were : \
git checkout pipeline
git pull upstream main
git push
^^^^^
Enumerating objects: 1, done.
Counting objects: 100% (1/1), done.
Writing objects: 100% (1/1), 276 bytes | 276.00 KiB/s, done.
Total 1 (delta 0), reused 0 (delta 0), pack-reused 0
To https://github.com/gearama/azure-sdk-for-cpp.git
85b8e3f..032f2b3 pipeline -> pipeline
* Progress stream reader
* format
* Update sdk/core/azure-core/src/io/body_stream.cpp
Co-authored-by: JinmingHu <jinmhu@microsoft.com>
* PR comments
* fix doc warnings
* remove
* one more comment
* replaced if null with azure_assert
* moved from pointer to reference
* first pass
* src builds
* new line
* huzaaaaa
* maybe
* add resource for tests
* readme
* formatting
* build break url
* put proper link
* darn link
* comments from PR
* update to use gtest_main
* fix vcpkg build break
Co-authored-by: JinmingHu <jinmhu@microsoft.com>
* Consolidate keyvault options and model files into single headers.
* Consolidate cryptography client model headers into a single header.
* Fix up merge conflict
* Consolidate LROs into one, and fixup PagedResponse name.
* Fix up clang formatting and match cpp file name with hpp.
* Fix clang formatting.
* Move LROs and PagedResponse types into models as well.
* Move encrypt and decrypt parameter types into cryptography model header
file.
* Fix clang format, reodering of headers.
* Update to match recent changes.
* Update CL
* Progress stream reader
* format
* Update sdk/core/azure-core/src/io/body_stream.cpp
Co-authored-by: JinmingHu <jinmhu@microsoft.com>
* PR comments
* fix doc warnings
* remove
* one more comment
* replaced if null with azure_assert
* moved from pointer to reference
* first pass
* src builds
* new line
* huzaaaaa
* maybe
* add resource for tests
* readme
* formatting
* build break url
* put proper link
* darn link
* comments from PR
* update to use gtest_main
Co-authored-by: JinmingHu <jinmhu@microsoft.com>
Context::Cancel() sets the deadline to DateTime::min(), which throws a range
exception when cast to system_clock::time_point. Instead, cast
system_clock::now() to DateTime.