Compare commits
38 Commits
Author | SHA256 | Date | |
---|---|---|---|
5239ac4a10 | |||
20b95e5379 | |||
cb7b4e7311 | |||
e11ba8015e | |||
4c031674e3 | |||
1f49503852 | |||
7b5294429d | |||
3ba78a1dc3 | |||
fb2b5d67c2 | |||
0d24a9dac9 | |||
d5c468ad01 | |||
2be9bf71bc | |||
e0b842bfdc | |||
6960946e30 | |||
8dcb767bd3 | |||
95ef4a8483 | |||
f22c02146f | |||
5739b4e69e | |||
0aadecfdca | |||
d8fb9d4532 | |||
8e6f9179b4 | |||
b15858d298 | |||
464672f412 | |||
d19865568b | |||
3fe691312f | |||
efbc71eca8 | |||
7ec3661f50 | |||
1b300f5212 | |||
035c45af8d | |||
f69a0e9985 | |||
395d5a7e4f | |||
4bb0b6d2b9 | |||
787a978af9 | |||
d1cb44df16 | |||
22494a4830 | |||
e3fa15676c | |||
302a47e0e8 | |||
5fce18cadc |
@@ -1,44 +0,0 @@
|
|||||||
diff -Nru aws-c-s3-0.1.29.orig/CMakeLists.txt aws-c-s3-0.1.29/CMakeLists.txt
|
|
||||||
--- aws-c-s3-0.1.29.orig/CMakeLists.txt 2021-12-02 23:07:39.000000000 +0000
|
|
||||||
+++ aws-c-s3-0.1.29/CMakeLists.txt 2021-12-09 13:34:21.908897209 +0000
|
|
||||||
@@ -20,17 +20,12 @@
|
|
||||||
endif()
|
|
||||||
|
|
||||||
|
|
||||||
-if (UNIX AND NOT APPLE)
|
|
||||||
- include(GNUInstallDirs)
|
|
||||||
-elseif(NOT DEFINED CMAKE_INSTALL_LIBDIR)
|
|
||||||
- set(CMAKE_INSTALL_LIBDIR "lib")
|
|
||||||
-endif()
|
|
||||||
+find_package(aws-c-common REQUIRED)
|
|
||||||
+find_package(aws-checksums REQUIRED)
|
|
||||||
+set(CMAKE_MODULE_PATH ${aws-c-common_DIR})
|
|
||||||
|
|
||||||
-# This is required in order to append /lib/cmake to each element in CMAKE_PREFIX_PATH
|
|
||||||
-set(AWS_MODULE_DIR "/${CMAKE_INSTALL_LIBDIR}/cmake")
|
|
||||||
-string(REPLACE ";" "${AWS_MODULE_DIR};" AWS_MODULE_PATH "${CMAKE_PREFIX_PATH}${AWS_MODULE_DIR}")
|
|
||||||
-# Append that generated list to the module search path
|
|
||||||
-list(APPEND CMAKE_MODULE_PATH ${AWS_MODULE_PATH})
|
|
||||||
+list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake/modules")
|
|
||||||
+include(GNUInstallDirs)
|
|
||||||
|
|
||||||
include(AwsCFlags)
|
|
||||||
include(AwsCheckHeaders)
|
|
||||||
@@ -109,7 +104,7 @@
|
|
||||||
endif()
|
|
||||||
|
|
||||||
install(EXPORT "${PROJECT_NAME}-targets"
|
|
||||||
- DESTINATION "${LIBRARY_DIRECTORY}/${PROJECT_NAME}/cmake/${TARGET_DIR}/"
|
|
||||||
+ DESTINATION "${LIB_INSTALL_DIR}/cmake/${CMAKE_PROJECT_NAME}/${TARGET_DIR}/"
|
|
||||||
NAMESPACE AWS::
|
|
||||||
COMPONENT Development)
|
|
||||||
|
|
||||||
@@ -118,7 +113,7 @@
|
|
||||||
@ONLY)
|
|
||||||
|
|
||||||
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}-config.cmake"
|
|
||||||
- DESTINATION "${LIBRARY_DIRECTORY}/${PROJECT_NAME}/cmake/"
|
|
||||||
+ DESTINATION "${LIB_INSTALL_DIR}/cmake/${CMAKE_PROJECT_NAME}"
|
|
||||||
COMPONENT Development)
|
|
||||||
|
|
||||||
include(CTest)
|
|
173
aws-c-s3.changes
173
aws-c-s3.changes
@@ -1,3 +1,176 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Aug 12 12:50:55 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.8.7
|
||||||
|
* Change stale issue and discussion handling to run once a week
|
||||||
|
by @DmitriyMusatkin in (#541)
|
||||||
|
* [fix] Retry with checksum result in failure by @TingDaoK in (#543)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 23 08:07:30 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.8.6
|
||||||
|
* Add more getters for metrics by @DmitriyMusatkin in (#538)
|
||||||
|
* Revamp checksum - retry will reuse the checksum by @TingDaoK in (#532)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jul 21 12:39:09 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.8.5
|
||||||
|
* Move fulfilling pending future outside the lock and ignore
|
||||||
|
already completed futures by @DmitriyMusatkin in (#536)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jul 15 11:55:48 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.8.4
|
||||||
|
* More request metrics by @DmitriyMusatkin in (#530)
|
||||||
|
* Avoid releasing pending mem ticket future while holding
|
||||||
|
the lock by @DmitriyMusatkin in (#533)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 2 07:20:01 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.8.3
|
||||||
|
* Add user data to pool factory by @DmitriyMusatkin in (#529)
|
||||||
|
- from version 0.8.2
|
||||||
|
* Remove Windows 2019 and add Windows 2025 with MSVC-17
|
||||||
|
by @TingDaoK in (#524)
|
||||||
|
* Auto - Update S3 Ruleset & Partition by @TingDaoK in (#527)
|
||||||
|
* Fix issue with error response parting potentially overriding
|
||||||
|
upload buffer by @DmitriyMusatkin in (#528)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jun 10 07:07:10 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.8.1
|
||||||
|
* Fix race condition between mem acquire and cancel
|
||||||
|
by @DmitriyMusatkin in (#521)
|
||||||
|
- from version 0.8.0
|
||||||
|
* Remove clang-3 from CI by @sbSteveK in (#520)
|
||||||
|
* Memory pool interface by @DmitriyMusatkin in (#517)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon May 19 08:47:44 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.7.18
|
||||||
|
* Revert "[s3_meta_request]: Retry on ExpiredToken" by @waahm7 in (#518)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 7 11:27:41 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.7.17
|
||||||
|
* Default request without body by @TingDaoK in (#516)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 6 12:38:47 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.7.16
|
||||||
|
* Auto - Update S3 Ruleset & Partition by @waahm7 in (#508)
|
||||||
|
* Add init for checksums by @DmitriyMusatkin in (#501)
|
||||||
|
* Auto - Update S3 Ruleset & Partition by @waahm7 in (#511)
|
||||||
|
* Update first byte timeout algo by @TingDaoK in (#461)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Apr 4 11:00:40 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.7.15
|
||||||
|
* Add request ID to debug level log by @TingDaoK in (#504)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Apr 2 13:59:00 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.7.14
|
||||||
|
* Newer URL for aws-lc by @ProgramComputer in (#500)
|
||||||
|
* Update endpoints by @DmitriyMusatkin in (#502)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 18 08:38:25 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.7.13
|
||||||
|
* Missed one file from README by @TingDaoK in (#498)
|
||||||
|
* Bump Default Memory Limit for Higher Target Throughput
|
||||||
|
by @waahm7 in (#499)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 12 07:13:39 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.7.12
|
||||||
|
* Auto - Update S3 Ruleset & Partition by @waahm7 in (#493)
|
||||||
|
* Add life cycle to s3 express by @TingDaoK in (#494)
|
||||||
|
* Make public bucket optional by @TingDaoK in (#495)
|
||||||
|
* Adapt to aws_base64_compute_encoded_len() no longer adding
|
||||||
|
1 extra for null terminator by @graebm in (#497)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 30 11:41:34 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.7.11
|
||||||
|
* A bunch of CMake fixes by @graebm in (#480)
|
||||||
|
- from version 0.7.10
|
||||||
|
* Auto - Update S3 Ruleset & Partition by @waahm7 in (#491)
|
||||||
|
* S3Express CreateSession Allowlist Headers by @waahm7 in (#492)
|
||||||
|
- Drop acs_fix-cmake-modules-path.patch, fixed upstream
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 16 13:47:00 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.7.9
|
||||||
|
* Remove Const for copy_source_uri by @waahm7 in (#485)
|
||||||
|
- from version 0.7.8
|
||||||
|
* [s3_client]: retry on failed TLS negotiation by @grrtrr in (#478)
|
||||||
|
* Fix CI for GCC-13 on Ubuntu-18 by @waahm7 in (#479)
|
||||||
|
* Auto - Update S3 Ruleset & Partition by @waahm7 in (#483)
|
||||||
|
* Improve Copy Operation by taking the Source URI by @waahm7 in (#482)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jan 7 10:29:19 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.7.7
|
||||||
|
* Remove Extra Platform Info That Is Not Used by @waahm7 in (#475)
|
||||||
|
* [s3_meta_request]: Retry on ExpiredToken by @grrtrr in (#472)
|
||||||
|
- from version 0.7.6
|
||||||
|
* Add full object checksum callback by @TingDaoK in (#473)
|
||||||
|
* Respect checksum header over setting by @TingDaoK in (#474)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Dec 9 11:20:23 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.7.5
|
||||||
|
* Support full object checksum by @TingDaoK in (#468)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Dec 4 09:47:18 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.7.4
|
||||||
|
* Switch CI to use roles by @DmitriyMusatkin in (#463)
|
||||||
|
* [meta request]: Assign shutdown_callback inside
|
||||||
|
critical region by @grrtrr in (#470)
|
||||||
|
- from version 0.7.3
|
||||||
|
* Switch CI to use roles by @DmitriyMusatkin in (#463)
|
||||||
|
* [meta request]: Assign shutdown_callback inside
|
||||||
|
critical region by @grrtrr in (#470)
|
||||||
|
- from version 0.7.2
|
||||||
|
* Support if-none-match for upload by @TingDaoK in (#462)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Nov 14 12:32:52 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.7.1
|
||||||
|
* chore: Modified bug issue template to add checkbox to report
|
||||||
|
potential regression. by @ashishdhingra in (#452)
|
||||||
|
* Use proper public event loop group API by @bretambrose in (#460)
|
||||||
|
- from version 0.7.0
|
||||||
|
* Support header checksum by @TingDaoK in (#454)
|
||||||
|
* Update CMake to 3.9 by @waahm7 in (#458)
|
||||||
|
- from version 0.6.9
|
||||||
|
* Retry RequestTimeout error by S3. by @waahm7 in (#457)
|
||||||
|
- from version 0.6.8
|
||||||
|
* Validate Invalid Network Interface Names at Client Initialization
|
||||||
|
by @waahm7 in (#456)
|
||||||
|
- from version 0.6.7
|
||||||
|
* Supports copy object for same directory bucket by @TingDaoK in (#455)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Sep 23 09:55:40 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
Mon Sep 23 09:55:40 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
@@ -19,14 +19,13 @@
|
|||||||
%define library_version 1.0.0
|
%define library_version 1.0.0
|
||||||
%define library_soversion 0unstable
|
%define library_soversion 0unstable
|
||||||
Name: aws-c-s3
|
Name: aws-c-s3
|
||||||
Version: 0.6.6
|
Version: 0.8.7
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: AWS Cross-Platform, C99 wrapper for cryptography primitives
|
Summary: AWS Cross-Platform, C99 wrapper for cryptography primitives
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
URL: https://github.com/awslabs/aws-c-s3
|
URL: https://github.com/awslabs/aws-c-s3
|
||||||
Source0: https://github.com/awslabs/%{name}/archive/v%{version}.tar.gz
|
Source0: https://github.com/awslabs/%{name}/archive/v%{version}.tar.gz
|
||||||
Patch0: acs_fix-cmake-modules-path.patch
|
|
||||||
BuildRequires: cmake
|
BuildRequires: cmake
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: ninja
|
BuildRequires: ninja
|
||||||
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:2945ffb9e6529f560b34eee018ebdd4397288477f2df0126b5fd5cc2490fd056
|
|
||||||
size 343466
|
|
3
v0.8.7.tar.gz
Normal file
3
v0.8.7.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:bbe1159f089ac4e5ddcdf5ef96941489240a3f780c5e140f3c8462df45e787ac
|
||||||
|
size 376886
|
Reference in New Issue
Block a user