google-cloud-trace 0.41.0 → 0.41.1

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: 8d80aa4d6a48ec1f93a09807e5fb1625deb0697515eb9835026f31e62df940bb
4
- data.tar.gz: bfe0c8868cbc08c22db777e89f6d0adb76b27e85556a25e4b953d5b91224986d
3
+ metadata.gz: 3e542ada29156a89aa795dbf189b03e7f6dffdabb4e11e04bd29259e29026505
4
+ data.tar.gz: 28007dbf96b5019bd7ed1fc8408c0b502d571773ca3a79ea0e706c17fc161c1d
5
5
  SHA512:
6
- metadata.gz: e29839ff82637001a33196a308c28c7d8b0446691a81ef19287d6cf81c81c18434ee861e87374d12ebb42e72396284e743cb79c26fba34be275e66121330549f
7
- data.tar.gz: 5e9520928f53bf8c734e253579f1f27e36427442efbbaf449fb2c01a2d41a5a15bb4f24e631b9308816671ca68c8eca6e52f5fccf7862442ca5311e0b91aafdd
6
+ metadata.gz: f97fe14f152ff1e1f3aa7238d6ea03248680739d6dd45f0b4735b4728ac15ce22f9bc7af933eead1182b87880c87b7e442f8f6ab3b5211db0f8a47da46c810a3
7
+ data.tar.gz: c9676193bbcdf7bd6d919612b9a3e737336702002e771d02585727b2dd325b4a1200350396b760f4d2ad1cccb9fcfef613a66758e41a1df1d0ec60a070059d11
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Release History
2
2
 
3
+ ### 0.41.1 / 2021-06-17
4
+
5
+ #### Bug Fixes
6
+
7
+ * Fixed Ruby 3 keyword argument error in GRPC::ActiveCallWithTrace patch
8
+
3
9
  ### 0.41.0 / 2021-03-11
4
10
 
5
11
  #### Features
data/CONTRIBUTING.md CHANGED
@@ -119,15 +119,14 @@ If you alter an example's title, you may encounter breaking tests.
119
119
  ### Trace Acceptance Tests
120
120
 
121
121
  The Trace acceptance tests interact with the live service API. Follow the
122
- instructions in the {file:AUTHENTICATION.md Authentication guide} for enabling
122
+ instructions in the {file:AUTHENTICATION.md Authentication Guide} for enabling
123
123
  the Trace API. Occasionally, some API features may not yet be generally
124
124
  available, making it difficult for some contributors to successfully run the
125
125
  entire acceptance test suite. However, please ensure that you do successfully
126
126
  run acceptance tests for any code areas covered by your pull request.
127
127
 
128
128
  To run the acceptance tests, first create and configure a project in the Google
129
- Developers Console, as described in the {file:AUTHENTICATION.md Authentication
130
- guide}. Be sure to download the JSON KEY file. Make note of the PROJECT_ID and
129
+ Developers Console, as described in the {file:AUTHENTICATION.md Authentication Guide}. Be sure to download the JSON KEY file. Make note of the PROJECT_ID and
131
130
  the KEYFILE location on your system.
132
131
 
133
132
  Before you can run the Trace acceptance tests, you must first create indexes
data/OVERVIEW.md CHANGED
@@ -157,5 +157,4 @@ trace_client.patch_traces trace
157
157
  ## Additional information
158
158
 
159
159
  Stackdriver Trace can be configured to be used in Rack applications or to use
160
- gRPC's logging. To learn more, see the {file:INSTRUMENTATION.md Instrumentation
161
- Guide} and {file:LOGGING.md Logging guide}.
160
+ gRPC's logging. To learn more, see the {file:INSTRUMENTATION.md Instrumentation Guide} and {file:LOGGING.md Logging guide}.
@@ -27,7 +27,7 @@ module GRPC
27
27
  # Override GRPC::ActiveCall#request_response method. Wrap the original
28
28
  # method with a trace span that will get submitted with the overall request
29
29
  # trace span tree.
30
- def request_response *args
30
+ def request_response *args, **kwargs
31
31
  Google::Cloud::Trace.in_span SPAN_NAME do |span|
32
32
  if span && !args.empty?
33
33
  grpc_request = args[0]
@@ -16,7 +16,7 @@
16
16
  module Google
17
17
  module Cloud
18
18
  module Trace
19
- VERSION = "0.41.0".freeze
19
+ VERSION = "0.41.1".freeze
20
20
  end
21
21
  end
22
22
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-trace
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.41.0
4
+ version: 0.41.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Azuma
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-11 00:00:00.000000000 Z
11
+ date: 2021-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-cloud-core
@@ -319,7 +319,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
319
319
  - !ruby/object:Gem::Version
320
320
  version: '0'
321
321
  requirements: []
322
- rubygems_version: 3.2.13
322
+ rubygems_version: 3.2.17
323
323
  signing_key:
324
324
  specification_version: 4
325
325
  summary: Application Instrumentation and API Client library for Stackdriver Trace