aws-sdk-codebuild 1.77.0 → 1.81.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6b34cc60e456b0dbc514d690534252ca002b4c50198f09e4155839a82ee61ef4
4
- data.tar.gz: 73e1e1d126fa531e6dfedede6549639df811d3523bb3b393c565fa305182623f
3
+ metadata.gz: 92b4c9435d00b91897d1bf55bd817559daa383231086f2ffc5e41321bae4a6b8
4
+ data.tar.gz: 16b497f7197c5948e538d77ea9e546b0757f8fa832de46077175e43fc182c04c
5
5
  SHA512:
6
- metadata.gz: 7582511992ed16187a15628e531abbc411db55f885f371cc7c2d82941b941b440f4f49feba61df55a3d2cf590307173bd2d9881fc6fa82ebd56a6e432eb2bb75
7
- data.tar.gz: baf60870ae94231d16c3775dfac1306a244dcbe501064ff39064725cb80c3051f1e4896b2f1e1e015cffa34ca0ecca58a5b738fd271829591dfeef5ab1beb5f5
6
+ metadata.gz: 6ecf33e29685946c5f234fb2aca1dfe9244418df844ac22592c2a955e31151dbcc83f2fd49c268778ed0736cfd12b837b281eb2d98de91803d9863a1313aafa5
7
+ data.tar.gz: 18cda7c40a220757370adc4dab769bff68467d04d6adbb807a63eeb444614e79f5417b7737e2e02ab0b79f7c4814dfac23bd8d7d9fa9a45521d61b7c35b8b23e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.81.0 (2021-09-01)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.80.0 (2021-08-30)
10
+ ------------------
11
+
12
+ * Feature - Documentation updates for CodeBuild
13
+
14
+ 1.79.0 (2021-08-18)
15
+ ------------------
16
+
17
+ * Feature - CodeBuild now allows you to make the build results for your build projects available to the public without requiring access to an AWS account.
18
+
19
+ 1.78.0 (2021-08-16)
20
+ ------------------
21
+
22
+ * Feature - CodeBuild now allows you to select how batch build statuses are sent to the source provider for a project.
23
+
4
24
  1.77.0 (2021-08-11)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.77.0
1
+ 1.81.0
@@ -5026,7 +5026,7 @@ module Aws::CodeBuild
5026
5026
  params: params,
5027
5027
  config: config)
5028
5028
  context[:gem_name] = 'aws-sdk-codebuild'
5029
- context[:gem_version] = '1.77.0'
5029
+ context[:gem_version] = '1.81.0'
5030
5030
  Seahorse::Client::Request.new(handlers, context)
5031
5031
  end
5032
5032
 
@@ -938,11 +938,6 @@ module Aws::CodeBuild
938
938
  #
939
939
  # : The build phase is still in progress.
940
940
  #
941
- # QUEUED
942
- #
943
- # : The build has been submitted and is queued behind other submitted
944
- # builds.
945
- #
946
941
  # STOPPED
947
942
  #
948
943
  # : The build phase stopped.
@@ -1051,35 +1046,50 @@ module Aws::CodeBuild
1051
1046
  # @!attribute [rw] phase_type
1052
1047
  # The name of the build phase. Valid values include:
1053
1048
  #
1054
- # * `BUILD`\: Core build activities typically occur in this build
1055
- # phase.
1049
+ # BUILD
1050
+ #
1051
+ # : Core build activities typically occur in this build phase.
1052
+ #
1053
+ # COMPLETED
1056
1054
  #
1057
- # * `COMPLETED`\: The build has been completed.
1055
+ # : The build has been completed.
1058
1056
  #
1059
- # * `DOWNLOAD_SOURCE`\: Source code is being downloaded in this build
1060
- # phase.
1057
+ # DOWNLOAD\_SOURCE
1061
1058
  #
1062
- # * `FINALIZING`\: The build process is completing in this build
1063
- # phase.
1059
+ # : Source code is being downloaded in this build phase.
1064
1060
  #
1065
- # * `INSTALL`\: Installation activities typically occur in this build
1066
- # phase.
1061
+ # FINALIZING
1067
1062
  #
1068
- # * `POST_BUILD`\: Post-build activities typically occur in this build
1069
- # phase.
1063
+ # : The build process is completing in this build phase.
1070
1064
  #
1071
- # * `PRE_BUILD`\: Pre-build activities typically occur in this build
1072
- # phase.
1065
+ # INSTALL
1073
1066
  #
1074
- # * `PROVISIONING`\: The build environment is being set up.
1067
+ # : Installation activities typically occur in this build phase.
1075
1068
  #
1076
- # * `QUEUED`\: The build has been submitted and is queued behind other
1077
- # submitted builds.
1069
+ # POST\_BUILD
1078
1070
  #
1079
- # * `SUBMITTED`\: The build has been submitted.
1071
+ # : Post-build activities typically occur in this build phase.
1080
1072
  #
1081
- # * `UPLOAD_ARTIFACTS`\: Build output artifacts are being uploaded to
1082
- # the output location.
1073
+ # PRE\_BUILD
1074
+ #
1075
+ # : Pre-build activities typically occur in this build phase.
1076
+ #
1077
+ # PROVISIONING
1078
+ #
1079
+ # : The build environment is being set up.
1080
+ #
1081
+ # QUEUED
1082
+ #
1083
+ # : The build has been submitted and is queued behind other submitted
1084
+ # builds.
1085
+ #
1086
+ # SUBMITTED
1087
+ #
1088
+ # : The build has been submitted.
1089
+ #
1090
+ # UPLOAD\_ARTIFACTS
1091
+ #
1092
+ # : Build output artifacts are being uploaded to the output location.
1083
1093
  # @return [String]
1084
1094
  #
1085
1095
  # @!attribute [rw] phase_status
@@ -1097,11 +1107,6 @@ module Aws::CodeBuild
1097
1107
  #
1098
1108
  # : The build phase is still in progress.
1099
1109
  #
1100
- # QUEUED
1101
- #
1102
- # : The build has been submitted and is queued behind other submitted
1103
- # builds.
1104
- #
1105
1110
  # STOPPED
1106
1111
  #
1107
1112
  # : The build phase stopped.
@@ -4667,10 +4672,12 @@ module Aws::CodeBuild
4667
4672
  # cannot be updated. For more information, see [Source provider
4668
4673
  # access][1] in the *CodeBuild User Guide*.
4669
4674
  #
4670
- # <note markdown="1"> The status of a build triggered by a webhook is always reported to
4675
+ # The status of a build triggered by a webhook is always reported to
4671
4676
  # your source provider.
4672
4677
  #
4673
- # </note>
4678
+ # If your project's builds are triggered by a webhook, you must push
4679
+ # a new commit to the repo for a change to this property to take
4680
+ # effect.
4674
4681
  #
4675
4682
  #
4676
4683
  #
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-codebuild/customizations'
48
48
  # @!group service
49
49
  module Aws::CodeBuild
50
50
 
51
- GEM_VERSION = '1.77.0'
51
+ GEM_VERSION = '1.81.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-codebuild
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.77.0
4
+ version: 1.81.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: 2021-08-11 00:00:00.000000000 Z
11
+ date: 2021-09-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.119.0
22
+ version: 3.120.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.119.0
32
+ version: 3.120.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
76
76
  requirements:
77
77
  - - ">="
78
78
  - !ruby/object:Gem::Version
79
- version: '0'
79
+ version: '2.3'
80
80
  required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - ">="