google-events 0.6.0 → 0.7.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: 53e04ac49ef555d51724e42210eb21286d99b821c65d0883eb9e4c4f11611795
4
- data.tar.gz: 9d7af0913256fc73479ad66993fa7b94caf624c249162c2a92d4678206bb1edc
3
+ metadata.gz: 0715b5aa97901cbc56583e8e37376c7b8de431eb9705c8588071493c47c390fa
4
+ data.tar.gz: 0d2a8389233f2eb9880cd67c6b1801f79e8f4a36db487b67bf32bc0584ea45fe
5
5
  SHA512:
6
- metadata.gz: c3570631e2082f39f9629bdc42f990634d44c282873082cd810a76023b3bca4d4eddf81c82120f9d2d1eefe1bece8f1936843308399e3687696c0f9926ba7377
7
- data.tar.gz: 0fa878ef92944681c979cc8e875ae1ea02409d5e8c62b197abd30f1ca4179863f9aae5b7e1f5eff9d42e12636ab9136266fd1404d1a2a561c1d2ddf908770907
6
+ metadata.gz: f7faa1e535943cd423b396b80489e1267b012e72d698d3535975129124c87d3f0ccf0b0dc1b15359995983f34e84ec3e7feacd8aab9d0f366aa1f82027cf0647
7
+ data.tar.gz: 9ac08a61e5167559b41fca244bb5a0292d3c07a357f2d9300da1da15864f4c81e76efb9bc1e5bd018fe1a7b078726c94f380ef05c8b63ae798ed73bf75303620
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.7.0 (2025-01-13)
4
+
5
+ #### Features
6
+
7
+ * Require Ruby 3 ([#71](https://github.com/googleapis/google-cloudevents-ruby/issues/71))
8
+ * Updates for pubsub events ([#70](https://github.com/googleapis/google-cloudevents-ruby/issues/70))
9
+
3
10
  ### 0.6.0 (2024-07-25)
4
11
 
5
12
  #### Features
data/README.md CHANGED
@@ -4,7 +4,7 @@ This repository contains types for CloudEvents issued by Google.
4
4
 
5
5
  ## Prerequisites
6
6
 
7
- - Ruby 2.6 (or higher)
7
+ - Ruby 3.0 (or higher)
8
8
 
9
9
  ## Installation
10
10
 
@@ -7,7 +7,7 @@ require 'google/protobuf'
7
7
  require 'google/protobuf/timestamp_pb'
8
8
 
9
9
 
10
- descriptor_data = "\n(google/events/cloud/pubsub/v1/data.proto\x12\x1dgoogle.events.cloud.pubsub.v1\x1a\x1fgoogle/protobuf/timestamp.proto\"k\n\x14MessagePublishedData\x12=\n\x07message\x18\x01 \x01(\x0b\x32,.google.events.cloud.pubsub.v1.PubsubMessage\x12\x14\n\x0csubscription\x18\x02 \x01(\t\"\xfe\x01\n\rPubsubMessage\x12\x0c\n\x04\x64\x61ta\x18\x01 \x01(\x0c\x12P\n\nattributes\x18\x02 \x03(\x0b\x32<.google.events.cloud.pubsub.v1.PubsubMessage.AttributesEntry\x12\x12\n\nmessage_id\x18\x03 \x01(\t\x12\x30\n\x0cpublish_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x14\n\x0cordering_key\x18\x05 \x01(\t\x1a\x31\n\x0f\x41ttributesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x42m\xaa\x02&Google.Events.Protobuf.Cloud.PubSub.V1\xca\x02\x1dGoogle\\Events\\Cloud\\PubSub\\V1\xea\x02!Google::Events::Cloud::PubSub::V1b\x06proto3"
10
+ descriptor_data = "\n(google/events/cloud/pubsub/v1/data.proto\x12\x1dgoogle.events.cloud.pubsub.v1\x1a\x1fgoogle/protobuf/timestamp.proto\"\x85\x01\n\x14MessagePublishedData\x12=\n\x07message\x18\x01 \x01(\x0b\x32,.google.events.cloud.pubsub.v1.PubsubMessage\x12\x14\n\x0csubscription\x18\x02 \x01(\t\x12\x18\n\x10\x64\x65livery_attempt\x18\x03 \x01(\x05\"\xfe\x01\n\rPubsubMessage\x12\x0c\n\x04\x64\x61ta\x18\x01 \x01(\x0c\x12P\n\nattributes\x18\x02 \x03(\x0b\x32<.google.events.cloud.pubsub.v1.PubsubMessage.AttributesEntry\x12\x12\n\nmessage_id\x18\x03 \x01(\t\x12\x30\n\x0cpublish_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x14\n\x0cordering_key\x18\x05 \x01(\t\x1a\x31\n\x0f\x41ttributesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x42m\xaa\x02&Google.Events.Protobuf.Cloud.PubSub.V1\xca\x02\x1dGoogle\\Events\\Cloud\\PubSub\\V1\xea\x02!Google::Events::Cloud::PubSub::V1b\x06proto3"
11
11
 
12
12
  pool = Google::Protobuf::DescriptorPool.generated_pool
13
13
  pool.add_serialized_file(descriptor_data)
@@ -20,6 +20,6 @@ module Google
20
20
  # Version of the Google events library
21
21
  # @return [String]
22
22
  #
23
- VERSION = "0.6.0"
23
+ VERSION = "0.7.0"
24
24
  end
25
25
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-events
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Azuma
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-07-25 00:00:00.000000000 Z
10
+ date: 2025-01-13 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: googleapis-common-protos-types
@@ -154,7 +153,6 @@ metadata:
154
153
  source_code_uri: https://github.com/googleapis/google-cloudevents-ruby
155
154
  bug_tracker_uri: https://github.com/googleapis/google-cloudevents-ruby/issues
156
155
  documentation_uri: https://rubydoc.info/gems/google-cloudevents-ruby
157
- post_install_message:
158
156
  rdoc_options: []
159
157
  require_paths:
160
158
  - lib
@@ -162,15 +160,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
162
160
  requirements:
163
161
  - - ">="
164
162
  - !ruby/object:Gem::Version
165
- version: 2.6.0
163
+ version: '3.0'
166
164
  required_rubygems_version: !ruby/object:Gem::Requirement
167
165
  requirements:
168
166
  - - ">="
169
167
  - !ruby/object:Gem::Version
170
168
  version: '0'
171
169
  requirements: []
172
- rubygems_version: 3.5.6
173
- signing_key:
170
+ rubygems_version: 3.6.2
174
171
  specification_version: 4
175
172
  summary: Google CloudEvents types for Ruby
176
173
  test_files: []