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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e8fd13a33b29c83a730ee0076f328cb22f14318c334a1ec1e6660ab5c2399ce2
4
- data.tar.gz: 1f11e087b701bec0459420b3971ebdd0cb90d0b5019759dd7910165da9f4a173
3
+ metadata.gz: e1a7543ba3f2d1ba3bbb50e81f88bc40c6088332ee694444e21c59dcf5e57d76
4
+ data.tar.gz: b4b8519123d71bff5b16f76880b2d0429ce21e37334ef3a603c4f163afd23f44
5
5
  SHA512:
6
- metadata.gz: 04f06047976451348fb7869fdff9f7897f0d7273a1fbf21a3260bea04538995500bc44cf06631779e90d1c815780ce264a10db05afc7070426f34ca59ddc5369
7
- data.tar.gz: e1c03f1f1594388df4cb34f45d277442d388d14d866cafc3ab6a435264bce68c7c8019c80fa619521ab640a3bdeacb3e381ff44c12386fe9daee079d54c782de
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.105.0
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.105.0'
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 six webhook filter types:
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 `COMMIT_MESSAGE`.
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 six event types: `PUSH`, `PULL_REQUEST_CREATED`,
6835
- # `PULL_REQUEST_UPDATED`, `PULL_REQUEST_CLOSED`,
6836
- # `PULL_REQUEST_REOPENED`, and `PULL_REQUEST_MERGED`. The `EVENT`
6837
- # patterns are specified as a comma-separated string. For example,
6838
- # `PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED` filters all
6839
- # push, pull request created, and pull request updated events.
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
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-codebuild/customizations'
52
52
  # @!group service
53
53
  module Aws::CodeBuild
54
54
 
55
- GEM_VERSION = '1.105.0'
55
+ GEM_VERSION = '1.106.0'
56
56
 
57
57
  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.105.0
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-15 00:00:00.000000000 Z
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