gapic-generator 0.3.1 → 0.3.3

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: c03115844b852a0a3434c5f17fa3140e49c9c2eccefd12f66bc7613c5117ea35
4
- data.tar.gz: 265ca6503985d740d36bc4d0660c14d37f877d3362f181b56bed1d5ddd1ffb2f
3
+ metadata.gz: 141fbba25c93dca9ccac5c4a380f7a0f8c1c1643ef2e9517fbb158ba92db822c
4
+ data.tar.gz: c61466f199a4d34b6c1fefea9aa8773abc7d9514dfb232385a1e6806e49140f2
5
5
  SHA512:
6
- metadata.gz: a8319b1bd6e1ac17ab22b365e97056b09d4f7537390e4689dca4f58d3d1587ef749ed95f0bd457bc2d30943a8b418204a416743003fb4e5339a983cb839673f4
7
- data.tar.gz: 8b3bfae44552ee39a3f642aa9703dbc6a9eebe01174dfff0e20a9c0aecd69c3ddfb0ec669f62a63b51d275fd458ed4e65948bc3a434a15ed18b14316b3f2ff12
6
+ metadata.gz: 1cefa5cb936a4d9f211c0af9f03a9bcbd4ba76f35417cc3a1723164c949dc93b0f9f8be3602ac882d19c2a1109eed7b47150f4be4587ab5d5a368d7942df14f5
7
+ data.tar.gz: eab763dd18a81db68af29cc55e54b69f7f8fe504bca56aa93925a66e0c8f548335a4700c0cb89cb13aef65f5de7d640dc8dc0a704190e6a06f7ecdaeb294b065
@@ -1,5 +1,13 @@
1
1
  # Release History for gapic-generator
2
2
 
3
+ ### 0.3.3 / 2020-04-13
4
+
5
+ * Fix cross-reference links to multi-word enum values.
6
+
7
+ ### 0.3.2 / 2020-04-12
8
+
9
+ * Fix the talent.v4beta1 hack.
10
+
3
11
  ### 0.3.1 / 2020-04-11
4
12
 
5
13
  * Disable ModuleLength metric for generated code.
@@ -140,8 +140,10 @@ module Gapic
140
140
  "{#{convert_address_to_ruby entity}::Client #{text}}"
141
141
  when Gapic::Schema::Method
142
142
  "{#{convert_address_to_ruby entity.parent}::Client##{entity.name.underscore} #{text}}"
143
- when Gapic::Schema::Message, Gapic::Schema::Enum, Gapic::Schema::EnumValue
143
+ when Gapic::Schema::Message, Gapic::Schema::Enum
144
144
  "{#{convert_address_to_ruby entity} #{text}}"
145
+ when Gapic::Schema::EnumValue
146
+ "{#{convert_address_to_ruby entity.parent}::#{entity.name} #{text}}"
145
147
  when Gapic::Schema::Field
146
148
  "{#{convert_address_to_ruby entity.parent}##{entity.name} #{text}}"
147
149
  end
@@ -16,6 +16,6 @@
16
16
 
17
17
  module Gapic
18
18
  module Generator
19
- VERSION = "0.3.1"
19
+ VERSION = "0.3.3"
20
20
  end
21
21
  end
@@ -166,8 +166,9 @@ module Gapic
166
166
  # to be removed when these methods no longer conform to AIP-4233.) For
167
167
  # detailed information, see internal link go/actools-talent-pagination.
168
168
  address = @method.address.join "."
169
- return false if address == "google.cloud.talent.v4beta1.SearchProfiles"
170
- return false if address == "google.cloud.talent.v4beta1.SearchJobs"
169
+ return false if address == "google.cloud.talent.v4beta1.ProfileService.SearchProfiles"
170
+ return false if address == "google.cloud.talent.v4beta1.JobService.SearchJobs"
171
+ return false if address == "google.cloud.talent.v4beta1.JobService.SearchJobsForAlert"
171
172
 
172
173
  paged_request?(@method.input) && paged_response?(@method.output)
173
174
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gapic-generator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ernest Landrito
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2020-04-11 00:00:00.000000000 Z
13
+ date: 2020-04-13 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: actionpack