From ace82a6829239076626e8a5b18e250d8e008c375 Mon Sep 17 00:00:00 2001 From: DMG Date: Thu, 21 Nov 2024 15:36:45 -0800 Subject: [PATCH 1/3] Put bodySize direct in RB --- include/pistache/client.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/pistache/client.h b/include/pistache/client.h index 36f3f54d8..c2079cf78 100644 --- a/include/pistache/client.h +++ b/include/pistache/client.h @@ -186,6 +186,8 @@ namespace Pistache::Http::Experimental RequestBuilder& cookie(const Cookie& cookie); RequestBuilder& body(const std::string& val); RequestBuilder& body(std::string&& val); + std::size_t bodySize() { return(request_.body().size()); } + RequestBuilder& timeout(std::chrono::milliseconds val); Async::Promise send(); From deadfdd6c105290a5e07dd5573962b78cf5650ef Mon Sep 17 00:00:00 2001 From: DMG Date: Fri, 22 Nov 2024 11:42:45 -0800 Subject: [PATCH 2/3] Fix: Revert "Put bodySize direct in RB" This reverts commit ace82a6829239076626e8a5b18e250d8e008c375. --- include/pistache/client.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/pistache/client.h b/include/pistache/client.h index c2079cf78..36f3f54d8 100644 --- a/include/pistache/client.h +++ b/include/pistache/client.h @@ -186,8 +186,6 @@ namespace Pistache::Http::Experimental RequestBuilder& cookie(const Cookie& cookie); RequestBuilder& body(const std::string& val); RequestBuilder& body(std::string&& val); - std::size_t bodySize() { return(request_.body().size()); } - RequestBuilder& timeout(std::chrono::milliseconds val); Async::Promise send(); From 6e7725330c66de172b2ebcbc2997bd22e4929004 Mon Sep 17 00:00:00 2001 From: DMG Date: Wed, 4 Dec 2024 15:57:58 -0800 Subject: [PATCH 3/3] Fix: Remove macOS 12 from GitHub Runner macos.yaml * GitHub fully deprecated support for their macOS 12 image as of Dec 3rd 2024 per: https://github.com/actions/runner-images/issues/10721 --- .github/workflows/macos.yaml | 2 +- version.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos.yaml b/.github/workflows/macos.yaml index 1f84acbd5..10ca688a7 100644 --- a/.github/workflows/macos.yaml +++ b/.github/workflows/macos.yaml @@ -31,7 +31,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ 'macos-12', 'macos-13', 'macos-14', 'macos-15' ] + os: [ 'macos-13', 'macos-14', 'macos-15' ] compiler: [ 'gcc', 'clang' ] sanitizer: [ 'address', 'undefined', 'none' ] tls: [ 'true', 'false' ] diff --git a/version.txt b/version.txt index 9a8a7cb62..af61eda2f 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.4.22.20241122 +0.4.23.20241204