aws-sdk-codebuild 1.105.0 → 1.106.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-codebuild/client.rb +1 -1
- data/lib/aws-sdk-codebuild/types.rb +33 -10
- data/lib/aws-sdk-codebuild.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e1a7543ba3f2d1ba3bbb50e81f88bc40c6088332ee694444e21c59dcf5e57d76
|
4
|
+
data.tar.gz: b4b8519123d71bff5b16f76880b2d0429ce21e37334ef3a603c4f163afd23f44
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 15234e7e0a6ae0312816c2691f9690d8410f56abcbb8c340f1b67c0a5df8ef333651924b2bc46bec25bb3206b5b0f3f57b272405f41b4803c0488d2e6eb0da2a
|
7
|
+
data.tar.gz: 10a55ce15117e196aa57eb4319b1f9be78405cef9a413e2f8f6753873bc32200e571c78cd1fb2f8ac4a137b96b0f4a4da240479f2a99700c2b619215e371e3a1
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.106.0 (2024-03-20)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for new webhook events (RELEASED and PRERELEASED) and filter types (TAG_NAME and RELEASE_NAME).
|
8
|
+
|
4
9
|
1.105.0 (2024-03-15)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.106.0
|
@@ -5641,7 +5641,7 @@ module Aws::CodeBuild
|
|
5641
5641
|
params: params,
|
5642
5642
|
config: config)
|
5643
5643
|
context[:gem_name] = 'aws-sdk-codebuild'
|
5644
|
-
context[:gem_version] = '1.
|
5644
|
+
context[:gem_version] = '1.106.0'
|
5645
5645
|
Seahorse::Client::Request.new(handlers, context)
|
5646
5646
|
end
|
5647
5647
|
|
@@ -6824,22 +6824,25 @@ module Aws::CodeBuild
|
|
6824
6824
|
# A filter used to determine which webhooks trigger a build.
|
6825
6825
|
#
|
6826
6826
|
# @!attribute [rw] type
|
6827
|
-
# The type of webhook filter. There are
|
6827
|
+
# The type of webhook filter. There are eight webhook filter types:
|
6828
6828
|
# `EVENT`, `ACTOR_ACCOUNT_ID`, `HEAD_REF`, `BASE_REF`, `FILE_PATH`,
|
6829
|
-
# and `
|
6829
|
+
# `COMMIT_MESSAGE`, `TAG_NAME`, and `RELEASE_NAME`.
|
6830
6830
|
#
|
6831
6831
|
# * EVENT
|
6832
6832
|
#
|
6833
6833
|
# * A webhook event triggers a build when the provided `pattern`
|
6834
|
-
# matches one of
|
6835
|
-
# `
|
6836
|
-
# `
|
6837
|
-
#
|
6838
|
-
# `
|
6839
|
-
#
|
6834
|
+
# matches one of eight event types: `PUSH`,
|
6835
|
+
# `PULL_REQUEST_CREATED`, `PULL_REQUEST_UPDATED`,
|
6836
|
+
# `PULL_REQUEST_CLOSED`, `PULL_REQUEST_REOPENED`,
|
6837
|
+
# `PULL_REQUEST_MERGED`, `RELEASED`, and `PRERELEASED`. The
|
6838
|
+
# `EVENT` patterns are specified as a comma-separated string. For
|
6839
|
+
# example, `PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED`
|
6840
|
+
# filters all push, pull request created, and pull request updated
|
6841
|
+
# events.
|
6840
6842
|
#
|
6841
6843
|
# <note markdown="1"> The `PULL_REQUEST_REOPENED` works with GitHub and GitHub
|
6842
|
-
# Enterprise only.
|
6844
|
+
# Enterprise only. The `RELEASED` and `PRERELEASED` work with
|
6845
|
+
# GitHub only.
|
6843
6846
|
#
|
6844
6847
|
# </note>
|
6845
6848
|
#
|
@@ -6857,10 +6860,12 @@ module Aws::CodeBuild
|
|
6857
6860
|
# the regular expression `pattern`. For example,
|
6858
6861
|
# `refs/heads/branch-name` and `refs/tags/tag-name`.
|
6859
6862
|
#
|
6860
|
-
# Works with GitHub and GitHub Enterprise push, GitHub and GitHub
|
6863
|
+
# <note markdown="1"> Works with GitHub and GitHub Enterprise push, GitHub and GitHub
|
6861
6864
|
# Enterprise pull request, Bitbucket push, and Bitbucket pull
|
6862
6865
|
# request events.
|
6863
6866
|
#
|
6867
|
+
# </note>
|
6868
|
+
#
|
6864
6869
|
# * BASE\_REF
|
6865
6870
|
#
|
6866
6871
|
# * A webhook event triggers a build when the base reference matches
|
@@ -6892,6 +6897,24 @@ module Aws::CodeBuild
|
|
6892
6897
|
# not work with GitHub Enterprise pull request events.
|
6893
6898
|
#
|
6894
6899
|
# </note>
|
6900
|
+
#
|
6901
|
+
# * TAG\_NAME
|
6902
|
+
#
|
6903
|
+
# * A webhook triggers a build when the tag name of the release
|
6904
|
+
# matches the regular expression `pattern`.
|
6905
|
+
#
|
6906
|
+
# <note markdown="1"> Works with `RELEASED` and `PRERELEASED` events only.
|
6907
|
+
#
|
6908
|
+
# </note>
|
6909
|
+
#
|
6910
|
+
# * RELEASE\_NAME
|
6911
|
+
#
|
6912
|
+
# * A webhook triggers a build when the release name matches the
|
6913
|
+
# regular expression `pattern`.
|
6914
|
+
#
|
6915
|
+
# <note markdown="1"> Works with `RELEASED` and `PRERELEASED` events only.
|
6916
|
+
#
|
6917
|
+
# </note>
|
6895
6918
|
# @return [String]
|
6896
6919
|
#
|
6897
6920
|
# @!attribute [rw] pattern
|
data/lib/aws-sdk-codebuild.rb
CHANGED
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.
|
4
|
+
version: 1.106.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-03-
|
11
|
+
date: 2024-03-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|