1.1.0-beta.4 (2023-04-11)
Breaking Changes from version 1.1.0-beta.3
ContainerRegistryBlobClientBuilder
,ContainerRegistryBlobClient
andContainerRegistryBlobAsyncClient
were renamed toContainerRegistryContentClientBuilder
,
ContainerRegistryContentClient
, andContainerRegistryContentAsyncClient
and moved tocom.azure.containers.containerregistry
package.UploadBlobResult
was renamed toUploadRegistryBlobResult
ContainerRegistryContentClient
andContainerRegistryContentAsyncClient
changes:uploadManifest
method was renamed tosetManifest
,uploadManifestWithResponse
renamed tosetManifestWithResponse
, the return type of these methods was renamed toSetManifestResult
.
UploadManifestOptions
renamed toSetManifestOptions
.downloadManifest
method was renamed togetManifest
,downloadManifestWithResponse
renamed togetManifestWithResponse
, the return type of these methods renamed toGetManifestResult
.- Removed
DownloadBlobAsyncResult
and changesContainerRegistryContentAsyncClient.downloadStream
return type toMono<BinaryData>
. - Removed
Collection<ManifestMediaType> mediaTypes
parameter fromdownloadManifestWithResponse
method on blob clients. - Renamed
ContainerRegistryContentClientBuilder.repository
method torepositoryName
. - Removed
ContainerRegistryContentAsyncClient.uploadBlob(Flux<ByteBuffer> content)
andContainerRegistryContentClient.uploadBlob(ReadableByteChannel stream, Context context)
, useuploadBlob
methods that takeBinaryData
instead
- Renamed
GetManifestResult.getMediaType
andUploadManifestOptions.getMediaType
togetManifestMediaType
. - Removed
GetManifestResult.asOciManifest
- useGetManifestResult.getManifest().toObject(OciImageManifest.class)
instead. - Renamed
OciImageManifest.getConfig
andsetConfig
methods togetConfiguration
andsetConfiguration
. - Renamed
OciAnnotations.getCreated
andsetCreated
methods togetCreatedOn
andsetCreatedOn
.
Other Changes
Dependency Updates
- Upgraded
azure-core-http-netty
from1.13.0
to version1.13.2
. - Upgraded
azure-core
from1.37.0
to version1.38.0
.