google-apis-generator 0.15.1 → 0.17.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: 567f0da957689c657e3be0a741d2b23ba6ca830ea5e1db3a50bcb411109eaeb0
4
- data.tar.gz: 3f1762a7e0a852c7280ae53ade6e462581eef693bd8d2ce5dd4ba8f737b44dc0
3
+ metadata.gz: fdb917da68ac83948ac3127c13b84acec1ba647e0bf3945cf7dfc5f3b2f4fec8
4
+ data.tar.gz: 9dfeac413bcbbd8bb90efe11bec7b81bca23a89c65f849575eb786580afa91cc
5
5
  SHA512:
6
- metadata.gz: '0686b00cb282e2318cc0f570ab7261256b83fb9ad35bf386284f49c138c3b29404bde2a9c56335b1b95334c3ed4dd12caa1f840cf88e1bb2168f55f059fa42b1'
7
- data.tar.gz: c788fff1be00f7a7a75cc84344baade826f5265423298452523ba3b6c190ee94a504e466868b6de1083f422dd18b111d1165500397b973236b996381726e2fa1
6
+ metadata.gz: 2562eeee22ac0e5902d4e1c520da78acb89065168ea5ccd1ecfd2ab94ecd6d2a57b2518918751fd0f9093c99104c5558e2b5fb76a918200c7a18393cd14ef180
7
+ data.tar.gz: 862d75a325c8ff5214cbcd476e1dbb06cc03207f424745324b1c07d1d525b51313880d244920ea9b73066055930729a38626ba717ab1c8c8c38c2025478a83ad
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release History
2
2
 
3
+ ### 0.17.0 (2025-04-30)
4
+
5
+ #### Features
6
+
7
+ * ruby 3.1 minimum, 3.4 default ([#22594](https://github.com/googleapis/google-api-ruby-client/issues/22594))
8
+
9
+ ### 0.16.0 (2025-01-10)
10
+
11
+ #### Bug Fixes
12
+
13
+ * fix a corner case with a missing ref ([#21133](https://github.com/googleapis/google-api-ruby-client/issues/21133))
14
+
3
15
  ### 0.15.1 (2024-07-29)
4
16
 
5
17
  #### Bug Fixes
@@ -112,7 +112,7 @@ module Google
112
112
  parts = method.id.split('.')
113
113
  parts.shift
114
114
  verb = ActiveSupport::Inflector.underscore(parts.pop)
115
- match = method.request._ref.match(/(.*)(?i:request)/)
115
+ match = method.request._ref&.match(/(.*)(?i:request)/)
116
116
  return nil if match.nil?
117
117
  name = ActiveSupport::Inflector.underscore(match[1])
118
118
  return nil unless name == verb || name.start_with?(verb + '_')
@@ -28,6 +28,6 @@ Gem::Specification.new do |gem|
28
28
  gem.files = Dir.glob("lib/**/*.rb") + Dir.glob("*.md") + [".yardopts"]
29
29
  gem.require_paths = ["lib"]
30
30
 
31
- gem.required_ruby_version = '>= 2.7'
31
+ gem.required_ruby_version = '>= 3.1'
32
32
  gem.add_runtime_dependency "google-apis-core", ">= 0.15.0", "< 2.a"
33
33
  end
@@ -83,7 +83,7 @@ The [product documentation](<%= api.documentation_link %>) may provide guidance
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.7+.
86
+ This library is supported on Ruby 3.1+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -15,7 +15,7 @@
15
15
  module Google
16
16
  module Apis
17
17
  class Generator
18
- VERSION = "0.15.1"
18
+ VERSION = "0.17.0"
19
19
  end
20
20
  end
21
21
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-generator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.1
4
+ version: 0.17.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-07-29 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: activesupport
@@ -92,7 +91,6 @@ dependencies:
92
91
  - - "<"
93
92
  - !ruby/object:Gem::Version
94
93
  version: 2.a
95
- description:
96
94
  email: googleapis-packages@google.com
97
95
  executables:
98
96
  - generate-api
@@ -138,9 +136,8 @@ licenses:
138
136
  metadata:
139
137
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
140
138
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/google-apis-generator/CHANGELOG.md
141
- documentation_uri: https://googleapis.dev/ruby/google-apis-generator/v0.15.1
139
+ documentation_uri: https://googleapis.dev/ruby/google-apis-generator/v0.17.0
142
140
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/google-apis-generator
143
- post_install_message:
144
141
  rdoc_options: []
145
142
  require_paths:
146
143
  - lib
@@ -148,15 +145,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
148
145
  requirements:
149
146
  - - ">="
150
147
  - !ruby/object:Gem::Version
151
- version: '2.7'
148
+ version: '3.1'
152
149
  required_rubygems_version: !ruby/object:Gem::Requirement
153
150
  requirements:
154
151
  - - ">="
155
152
  - !ruby/object:Gem::Version
156
153
  version: '0'
157
154
  requirements: []
158
- rubygems_version: 3.5.6
159
- signing_key:
155
+ rubygems_version: 3.6.8
160
156
  specification_version: 4
161
157
  summary: Code generator for legacy Google REST clients
162
158
  test_files: []