aws-sdk-codecommit 1.76.0 → 1.78.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: 6a6e137353434436f18c2477525033f684a8b96b2519d7c39517bfb1065b23a5
4
- data.tar.gz: ed6668b55e82492c1d63297076b3f2b0e6b95361031d61f9a81799a4fb0ef84f
3
+ metadata.gz: 25923416d705a9a298cf86292773276c12dc3e9d026ae2f50065cbb03fedb0cf
4
+ data.tar.gz: 79699807d80a61a90efb16cd9f5eb914f90f5e437a7c91c39c53b4c5dbe91e8d
5
5
  SHA512:
6
- metadata.gz: 01cd65d2eab6c48b202f7e365fd570f96e54c1b2103d9f1170268ef613e21a085040322ceafc9443ad150ec6f0bb65bb312a8dca2e8437b6551c7eaa6ed32712
7
- data.tar.gz: 8229cba73064f0406733e0e4c442e058dfc5970a9b4208dc1ea2ddc745dd4ab193dbbb5f9c990070d3f0d645e7369706bbc02a03d16bafed00b1a88a39c47fac
6
+ metadata.gz: 574c1ddfa97f08560911d83b0e0c834227eb3559aa4bcdc83cb404b8c371908b3440a35d4598968811d1f26603a509ff09509b626d7ad58a69e874c71fd46027
7
+ data.tar.gz: 79cd5e9e869277a7542060b7c8674d86ce6bdbb5863427cd782167690ffd9df9fe5c835f1d8790391eb6129d645e5a6cea6d17bbd1d02ffdf9eaed974bcc24ba
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.78.0 (2024-09-24)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.77.0 (2024-09-23)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.76.0 (2024-09-20)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.76.0
1
+ 1.78.0
@@ -36,8 +36,6 @@ require 'aws-sdk-core/plugins/telemetry.rb'
36
36
  require 'aws-sdk-core/plugins/sign.rb'
37
37
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
38
38
 
39
- Aws::Plugins::GlobalConfiguration.add_identifier(:codecommit)
40
-
41
39
  module Aws::CodeCommit
42
40
  # An API client for CodeCommit. To construct a client, you need to configure a `:region` and `:credentials`.
43
41
  #
@@ -5185,7 +5183,7 @@ module Aws::CodeCommit
5185
5183
  tracer: tracer
5186
5184
  )
5187
5185
  context[:gem_name] = 'aws-sdk-codecommit'
5188
- context[:gem_version] = '1.76.0'
5186
+ context[:gem_version] = '1.78.0'
5189
5187
  Seahorse::Client::Request.new(handlers, context)
5190
5188
  end
5191
5189
 
@@ -7,6 +7,7 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
+
10
11
  module Aws::CodeCommit
11
12
  # @api private
12
13
  module ClientApi
@@ -7235,3 +7235,4 @@ module Aws::CodeCommit
7235
7235
 
7236
7236
  end
7237
7237
  end
7238
+
@@ -11,16 +11,7 @@
11
11
  require 'aws-sdk-core'
12
12
  require 'aws-sigv4'
13
13
 
14
- require_relative 'aws-sdk-codecommit/types'
15
- require_relative 'aws-sdk-codecommit/client_api'
16
- require_relative 'aws-sdk-codecommit/plugins/endpoints.rb'
17
- require_relative 'aws-sdk-codecommit/client'
18
- require_relative 'aws-sdk-codecommit/errors'
19
- require_relative 'aws-sdk-codecommit/resource'
20
- require_relative 'aws-sdk-codecommit/endpoint_parameters'
21
- require_relative 'aws-sdk-codecommit/endpoint_provider'
22
- require_relative 'aws-sdk-codecommit/endpoints'
23
- require_relative 'aws-sdk-codecommit/customizations'
14
+ Aws::Plugins::GlobalConfiguration.add_identifier(:codecommit)
24
15
 
25
16
  # This module provides support for AWS CodeCommit. This module is available in the
26
17
  # `aws-sdk-codecommit` gem.
@@ -51,7 +42,20 @@ require_relative 'aws-sdk-codecommit/customizations'
51
42
  #
52
43
  # @!group service
53
44
  module Aws::CodeCommit
45
+ autoload :Types, 'aws-sdk-codecommit/types'
46
+ autoload :ClientApi, 'aws-sdk-codecommit/client_api'
47
+ module Plugins
48
+ autoload :Endpoints, 'aws-sdk-codecommit/plugins/endpoints.rb'
49
+ end
50
+ autoload :Client, 'aws-sdk-codecommit/client'
51
+ autoload :Errors, 'aws-sdk-codecommit/errors'
52
+ autoload :Resource, 'aws-sdk-codecommit/resource'
53
+ autoload :EndpointParameters, 'aws-sdk-codecommit/endpoint_parameters'
54
+ autoload :EndpointProvider, 'aws-sdk-codecommit/endpoint_provider'
55
+ autoload :Endpoints, 'aws-sdk-codecommit/endpoints'
54
56
 
55
- GEM_VERSION = '1.76.0'
57
+ GEM_VERSION = '1.78.0'
56
58
 
57
59
  end
60
+
61
+ require_relative 'aws-sdk-codecommit/customizations'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-codecommit
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.76.0
4
+ version: 1.78.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: 2024-09-20 00:00:00.000000000 Z
11
+ date: 2024-09-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core