aws-sdk-ecr 1.98.0 → 1.99.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 73e9b95a954a912ed8e2ec0a3b068eacbc3bb738bf2cb9cf563e78d4105a8e44
4
- data.tar.gz: b2b0b79205e4f15dcaa7a3676a7fd5744debdabb50a0bbaf4c5cfba04e59789c
3
+ metadata.gz: 3bde772667d3c7be1b425142450d7a968ad5fea4f321168a7edfc829b67c0e69
4
+ data.tar.gz: 48f5b387cca4bbf2d1c93fbef0c3234a1d5e598257ce8989e2d538f160d93edf
5
5
  SHA512:
6
- metadata.gz: 26cdf11391e23fc036d28a18efd270f97a7aad6fc41525a4713ca6e1e6bffa3d64a0cc54fc442486299b1a219af31b33c4a095c91e87d9efdc045813d90d0fd1
7
- data.tar.gz: c48dffd005aea2289f2f709e4810284663d5bf51b3ff3ce062f6e131addd6b807e193d98cfa03841bba2c910142d2052babf4722e6b1155746031659139caa9f
6
+ metadata.gz: 04eaa573abcfcf8a05644d8d0bf9e7c2bdfb65dd6d7117a3b5e55080e3fdf8912c1156653a064f130e4df226f8da805f282d7ff86c73fee12bb20ce3f3704c3c
7
+ data.tar.gz: 888b9a96077f5ca9e68143442722cfa7ee5803355a871c3e2894b9a2e7f975d3e2c03c1dca27e6d387c434662130caa06250f2661449209449d63f06aee33510
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.99.0 (2025-04-02)
5
+ ------------------
6
+
7
+ * Feature - Fix for customer issues related to AWS account ID and size limitation for token.
8
+
4
9
  1.98.0 (2025-03-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.98.0
1
+ 1.99.0
@@ -847,7 +847,7 @@ module Aws::ECR
847
847
  # for the pull through cache rule. The following is the syntax to use
848
848
  # for each supported upstream registry.
849
849
  #
850
- # * Amazon ECR (`ecr`) – `dkr.ecr.<region>.amazonaws.com`
850
+ # * Amazon ECR (`ecr`) – `<accountId>.dkr.ecr.<region>.amazonaws.com`
851
851
  #
852
852
  # * Amazon ECR Public (`ecr-public`) – `public.ecr.aws`
853
853
  #
@@ -1729,11 +1729,11 @@ module Aws::ECR
1729
1729
 
1730
1730
  # Returns metadata about the images in a repository.
1731
1731
  #
1732
- # <note markdown="1"> Beginning with Docker version 1.9, the Docker client compresses image
1732
+ # <note markdown="1"> Starting with Docker version 1.9, the Docker client compresses image
1733
1733
  # layers before pushing them to a V2 Docker registry. The output of the
1734
- # `docker images` command shows the uncompressed image size, so it may
1735
- # return a larger image size than the image sizes returned by
1736
- # DescribeImages.
1734
+ # `docker images` command shows the uncompressed image size. Therefore,
1735
+ # Docker might return a larger image than the image shown in the Amazon
1736
+ # Web Services Management Console.
1737
1737
  #
1738
1738
  # </note>
1739
1739
  #
@@ -3749,7 +3749,7 @@ module Aws::ECR
3749
3749
  tracer: tracer
3750
3750
  )
3751
3751
  context[:gem_name] = 'aws-sdk-ecr'
3752
- context[:gem_version] = '1.98.0'
3752
+ context[:gem_version] = '1.99.0'
3753
3753
  Seahorse::Client::Request.new(handlers, context)
3754
3754
  end
3755
3755
 
@@ -352,7 +352,7 @@ module Aws::ECR
352
352
  # source for the pull through cache rule. The following is the syntax
353
353
  # to use for each supported upstream registry.
354
354
  #
355
- # * Amazon ECR (`ecr`) – `dkr.ecr.<region>.amazonaws.com`
355
+ # * Amazon ECR (`ecr`) – `<accountId>.dkr.ecr.<region>.amazonaws.com`
356
356
  #
357
357
  # * Amazon ECR Public (`ecr-public`) – `public.ecr.aws`
358
358
  #
@@ -1707,6 +1707,12 @@ module Aws::ECR
1707
1707
  # @!attribute [rw] authorization_data
1708
1708
  # A list of authorization token data objects that correspond to the
1709
1709
  # `registryIds` values in the request.
1710
+ #
1711
+ # <note markdown="1"> The size of the authorization token returned by Amazon ECR is not
1712
+ # fixed. We recommend that you don't make assumptions about the
1713
+ # maximum size.
1714
+ #
1715
+ # </note>
1710
1716
  # @return [Array<Types::AuthorizationData>]
1711
1717
  #
1712
1718
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/GetAuthorizationTokenResponse AWS API Documentation
@@ -2074,8 +2080,8 @@ module Aws::ECR
2074
2080
  # <note markdown="1"> Starting with Docker version 1.9, the Docker client compresses image
2075
2081
  # layers before pushing them to a V2 Docker registry. The output of
2076
2082
  # the `docker images` command shows the uncompressed image size.
2077
- # Therefore, Docker might return a larger image than the image sizes
2078
- # returned by DescribeImages.
2083
+ # Therefore, Docker might return a larger image than the image shown
2084
+ # in the Amazon Web Services Management Console.
2079
2085
  #
2080
2086
  # </note>
2081
2087
  # @return [Integer]
data/lib/aws-sdk-ecr.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::ECR
55
55
  autoload :EndpointProvider, 'aws-sdk-ecr/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-ecr/endpoints'
57
57
 
58
- GEM_VERSION = '1.98.0'
58
+ GEM_VERSION = '1.99.0'
59
59
 
60
60
  end
61
61
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ecr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.98.0
4
+ version: 1.99.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-11 00:00:00.000000000 Z
11
+ date: 2025-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core