Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-blob/assets.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "java",
"TagPrefix": "java/storage/azure-storage-blob",
"Tag": "java/storage/azure-storage-blob_016cdfc60b"
"Tag": "java/storage/azure-storage-blob_043be4a1dc"
}
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,12 @@ public enum BlobServiceVersion implements ServiceVersion {
/**
* Service version {@code 2023-08-03}.
*/
V2023_08_03("2023-08-03");
V2023_08_03("2023-08-03"),

/**
* Service version {@code 2023-11-03}.
*/
V2023_11_03("2023-11-03");

private final String version;

Expand All @@ -124,6 +129,6 @@ public String getVersion() {
* @return the latest {@link BlobServiceVersion}
*/
public static BlobServiceVersion getLatest() {
return V2023_08_03;
return V2023_11_03;
}
}
4 changes: 2 additions & 2 deletions sdk/storage/azure-storage-common/ci.system.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
AZURE_LIVE_TEST_SERVICE_VERSION=V2023_08_03
AZURE_STORAGE_SAS_SERVICE_VERSION=2023-08-03
AZURE_LIVE_TEST_SERVICE_VERSION=V2023_11_03
AZURE_STORAGE_SAS_SERVICE_VERSION=2023-11-03
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public final class Constants {
public static final String PROPERTY_AZURE_STORAGE_SAS_SERVICE_VERSION = "AZURE_STORAGE_SAS_SERVICE_VERSION";

public static final String SAS_SERVICE_VERSION = Configuration.getGlobalConfiguration()
.get(PROPERTY_AZURE_STORAGE_SAS_SERVICE_VERSION, "2023-08-03");
.get(PROPERTY_AZURE_STORAGE_SAS_SERVICE_VERSION, "2023-11-03");

private Constants() {
}
Expand Down Expand Up @@ -216,7 +216,7 @@ public static final class HeaderConstants {
* @deprecated For SAS Service Version use {@link Constants#SAS_SERVICE_VERSION}.
*/
@Deprecated
public static final String TARGET_STORAGE_VERSION = "2023-08-03";
public static final String TARGET_STORAGE_VERSION = "2023-11-03";

/**
* Error code returned from the service.
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-file-datalake/assets.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "java",
"TagPrefix": "java/storage/azure-storage-file-datalake",
"Tag": "java/storage/azure-storage-file-datalake_b9cf22c9e8"
"Tag": "java/storage/azure-storage-file-datalake_76014fd7b2"
}
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,12 @@ public enum DataLakeServiceVersion implements ServiceVersion {
/**
* Service version {@code 2023-08-03}.
*/
V2023_08_03("2023-08-03");
V2023_08_03("2023-08-03"),

/**
* Service version {@code 2023-11-03}.
*/
V2023_11_03("2023-11-03");

private final String version;

Expand All @@ -124,6 +129,6 @@ public String getVersion() {
* @return the latest {@link DataLakeServiceVersion}
*/
public static DataLakeServiceVersion getLatest() {
return V2023_08_03;
return V2023_11_03;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ public static BlobServiceVersion toBlobServiceVersion(DataLakeServiceVersion ver
return BlobServiceVersion.V2023_05_03;
} else if (DataLakeServiceVersion.V2023_08_03.ordinal() == version.ordinal()) {
return BlobServiceVersion.V2023_08_03;
} else if (DataLakeServiceVersion.V2023_11_03.ordinal() == version.ordinal()) {
return BlobServiceVersion.V2023_11_03;
}

return null;
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-file-share/assets.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "java",
"TagPrefix": "java/storage/azure-storage-file-share",
"Tag": "java/storage/azure-storage-file-share_aecfe78702"
"Tag": "java/storage/azure-storage-file-share_a6c362763c"
}
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,12 @@ public enum ShareServiceVersion implements ServiceVersion {
/**
* Service version {@code 2023-08-03}.
*/
V2023_08_03("2023-08-03");
V2023_08_03("2023-08-03"),

/**
* Service version {@code 2023-11-03}.
*/
V2023_11_03("2023-11-03");

private final String version;

Expand All @@ -125,6 +130,6 @@ public String getVersion() {
* @return the latest {@link ShareServiceVersion}
*/
public static ShareServiceVersion getLatest() {
return V2023_08_03;
return V2023_11_03;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,12 @@ public enum QueueServiceVersion implements ServiceVersion {
/**
* Service version {@code 2023-08-03}.
*/
V2023_08_03("2023-08-03");
V2023_08_03("2023-08-03"),

/**
* Service version {@code 2023-11-03}.
*/
V2023_11_03("2023-11-03");

private final String version;

Expand All @@ -124,6 +129,6 @@ public String getVersion() {
* @return the latest {@link QueueServiceVersion}
*/
public static QueueServiceVersion getLatest() {
return V2023_08_03;
return V2023_11_03;
}
}