parent
1a6b614049
commit
7eeb60960c
@ -2,6 +2,8 @@
|
||||
|
||||
## 1.11.0-beta.3 (Unreleased)
|
||||
|
||||
- Added 'OPTIONS' HTTP method to `Azure::Core::Http::HttpMethod` enum.
|
||||
|
||||
### Features Added
|
||||
|
||||
### Breaking Changes
|
||||
|
||||
@ -159,6 +159,12 @@ namespace Azure { namespace Core { namespace Http {
|
||||
*/
|
||||
AZ_CORE_DLLEXPORT const static HttpMethod Patch;
|
||||
|
||||
/**
|
||||
* @brief The representation of an `OPTIONS` HTTP method based on [RFC 2616]
|
||||
* (https://datatracker.ietf.org/doc/html/rfc2616).
|
||||
*/
|
||||
AZ_CORE_DLLEXPORT const static HttpMethod Options;
|
||||
|
||||
private:
|
||||
std::string m_value;
|
||||
}; // extensible enum HttpMethod
|
||||
|
||||
@ -26,6 +26,7 @@ const HttpMethod HttpMethod::Post("POST");
|
||||
const HttpMethod HttpMethod::Put("PUT");
|
||||
const HttpMethod HttpMethod::Delete("DELETE");
|
||||
const HttpMethod HttpMethod::Patch("PATCH");
|
||||
const HttpMethod HttpMethod::Options("OPTIONS");
|
||||
|
||||
namespace {
|
||||
bool IsInvalidHeaderNameChar(char c)
|
||||
|
||||
@ -19,7 +19,7 @@ Where namespace will be created if missing , search directory can be any folder
|
||||
|
||||
ATM the docker image is build by hand and hard-coded in the chart to simplify matters.
|
||||
|
||||
To build the image run "docker build -t <acr>/azuresdkforcpp/curlstress:v8 --build-arg targetTest=azure-core-libcurl-stress-test --build-arg build=on ."
|
||||
To build the image run "docker build -t <acr>/azuresdkforcpp/curlstress:v8 --build-arg targetTest=azure-core-libcurl-stress-test --build-arg build=on -f .\Dockerfile .\..\..\..\..\..\"
|
||||
|
||||
To push to mcr : "docker push <acr>/azuresdkforcpp/curlstress:v8"
|
||||
Obviously after logging in to the acr "az acr login -n <acr>"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user