Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
503fb1f
Update Azure Storage SDK
Nov 9, 2025
c56ac2e
Keep legacy implementation
Nov 17, 2025
be9455c
Merge branch 'master' into feature/Update_AzureStorage_SDK
sjuarezgx Nov 17, 2025
684bebc
Define latest artifact instead of having legacy. Soy the original pac…
Nov 17, 2025
6138595
Merge branch 'master' into feature/Update_AzureStorage_SDK
sjuarezgx Nov 19, 2025
12972d9
Azure SDK v12.x encodes URI special characters. Decode before getting…
Nov 20, 2025
5e61e46
Merge branch 'master' into feature/Update_AzureStorage_SDK
sjuarezgx Nov 20, 2025
7f2eaf0
New Java SDK for Azure encodes the URL when it gets a BLOB Url. Decod…
Nov 21, 2025
037ef3c
Merge branch 'feature/Update_AzureStorage_SDK' of https://github.com/…
Nov 21, 2025
7a238ad
Fix error in saving image uri to database in web transactions.
Nov 21, 2025
7c853f1
Defensive code add as externalFileName may have a leading / and this …
Nov 22, 2025
4715c4c
getBlobClient SDK method returns URL encoded
Nov 22, 2025
bb72082
Throw errors to be captured and sent to final user.
Nov 23, 2025
6ea37de
Just decode raw path of URI, avoid decoding SAS signature
Nov 24, 2025
663e201
Some methods were not taking acl into account
Nov 25, 2025
aec41a8
Merge branch 'master' into feature/Update_AzureStorage_SDK
sjuarezgx Nov 25, 2025
640d4f0
Merge branch 'master' into feature/Update_AzureStorage_SDK
sjuarezgx Nov 25, 2025
469fcb0
Add Unit Tests
Nov 26, 2025
8ee5320
Merge branch 'feature/Update_AzureStorage_SDK' of https://github.com/…
Nov 26, 2025
ce28506
Merge branch 'master' into feature/Update_AzureStorage_SDK
sjuarezgx Nov 26, 2025
6ea4e0b
Merge branch 'master' into feature/Update_AzureStorage_SDK
sjuarezgx Dec 1, 2025
1d743b6
Fix race condition when creating containers
Dec 1, 2025
a404b21
Merge branch 'feature/Update_AzureStorage_SDK' of https://github.com/…
Dec 1, 2025
9aef70e
Comment added about the asynchronous server-side copy operation
Dec 1, 2025
73e43aa
Add Test for blob names with subfolders (to cover the case of decodin…
Dec 3, 2025
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
39 changes: 39 additions & 0 deletions gxcloudstorage-azureblob-latest/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.genexus</groupId>
<artifactId>parent</artifactId>
<version>${revision}${changelist}</version>
</parent>

<artifactId>gxcloudstorage-azureblob-latest</artifactId>
<name>GeneXus Azure Blob Cloud Storage</name>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gxclassR</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.genexus</groupId>
<artifactId>gxcloudstorage-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-blob</artifactId>
<version>12.32.0</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-identity</artifactId>
<version>1.18.1</version>
</dependency>
</dependencies>
</project>
Loading
Loading