Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump AWS S3 SDK to V2 #808

Merged
merged 28 commits into from
Feb 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
19f5ed7
Bump AWS S3 SDK to V2
tomas-sexenian Nov 23, 2023
68a3ac5
Try fix missing credentials when gettin presinged url
tomas-sexenian Nov 23, 2023
08db9b6
Fix null resource name from URL
tomas-sexenian Nov 24, 2023
38c2154
Wrong permission level in class method
tomas-sexenian Nov 27, 2023
261858f
Removed usage of com.amazonaws.version and bump software.awssdk.versi…
tomas-sexenian Dec 4, 2023
852eeea
Merge branch 'master' into BumpAwsS3ToV2
tomas-sexenian Dec 4, 2023
1b55b5f
Fixed broken file extension when uploading images
tomas-sexenian Dec 5, 2023
b25e85a
Merge branch 'BumpAwsS3ToV2' of https://github.com/genexuslabs/JavaCl…
tomas-sexenian Dec 5, 2023
acac409
Fix broken retrival of object name from bucket
tomas-sexenian Dec 5, 2023
7a11ac5
Consider storage region when getting storage uri
tomas-sexenian Dec 5, 2023
2cd54b0
Do not catch non-existant resource exception
tomas-sexenian Dec 6, 2023
8b78a8d
Merge branch 'master' into BumpAwsS3ToV2
tomas-sexenian Dec 6, 2023
94c47f4
Change copy strategy. Download bytes and reupload
tomas-sexenian Dec 13, 2023
5176398
Merge branch 'BumpAwsS3ToV2' of https://github.com/genexuslabs/JavaCl…
tomas-sexenian Dec 13, 2023
5ae6f85
Fixed HTTP 500 error when confirming TRN update
tomas-sexenian Dec 18, 2023
44ad303
Don't use ACL feature when using custom endpoint
tomas-sexenian Dec 20, 2023
7a54156
Keep support for legacy S3 client
tomas-sexenian Jan 2, 2024
1fe2180
Revert "Keep support for legacy S3 client"
tomas-sexenian Jan 2, 2024
600ed1f
Revert "Revert "Keep support for legacy S3 client""
tomas-sexenian Jan 3, 2024
46d660d
Keep support for old S3 client
tomas-sexenian Jan 8, 2024
cdee1b1
Fix SLF4J failed to load class error
tomas-sexenian Jan 17, 2024
d04887c
URL-encode external file name when getting resource url
tomas-sexenian Jan 22, 2024
f2ae814
Try to determine content type before sending resource to bucket
tomas-sexenian Jan 22, 2024
24ec296
Use hashmap instead of matrix
tomas-sexenian Jan 22, 2024
f68fc37
Only encode file name and not the entire path
tomas-sexenian Jan 29, 2024
44f8667
Update class names in preprocess
tomas-sexenian Feb 1, 2024
54d4ff3
Swich default s3 storage provider implementation
tomas-sexenian Feb 6, 2024
f16d044
Merge branch 'master' into BumpAwsS3ToV2
tomas-sexenian Feb 19, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
<version>${revision}${changelist}</version>
</parent>

<artifactId>gxcloudstorage-awss3</artifactId>
<name>GeneXus AWS S3 Cloud Storage</name>
<artifactId>gxcloudstorage-awss3-v1</artifactId>
<name>GeneXus AWS S3 (V1) Cloud Storage</name>

<dependencies>
<dependency>
Expand All @@ -27,7 +27,7 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-s3</artifactId>
<version>${com.amazonaws.version}</version>
<version>1.12.587</version>
</dependency>
</dependencies>
</project>
Loading
Loading