stackdriver 0.21.0 → 0.21.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: 1b5103d3f70b60cb4822c2adaca9568e45bd5dd53036c605cd8a5942dd98337e
4
- data.tar.gz: eecd7fe060f3c475b9f6c0161a7f9ce721d3cc10815af2b9cbb474ab86723be3
3
+ metadata.gz: 60570f917d32ac543de94d8771cce7da817974b5ed4aa6aac7e26d22cf419922
4
+ data.tar.gz: 382ff63dbb045dc9e9ae595846ce24819018b20b5b095df38beef6b68ee4f7c1
5
5
  SHA512:
6
- metadata.gz: 93101da564d75d89be38824112163a9b5c0c12183f88300dfcd87ac7b19b5b27d02628edd25e272475c491c1f19efedab5449ffc50b1f4721aa719b045a67b24
7
- data.tar.gz: c7ac77c9c72ef0eb08d5c2838cfa56d8c92587d55bb9f35947ce21f59470b7e1069bbf139a172ce6ced93d3e8626c910a1c572a9037686530b948f484c67caf1
6
+ metadata.gz: e4c0b89992639935993a51ff69f8736c934178ccb76c9ce8051322b1d6a53ba0f87d72207df6ce0fc1828f209fb062200dfe53b6e93d0186219ba8386a889a22
7
+ data.tar.gz: aa625c5ec4afb80feef3def42a9591318c41d154bc958b19caf5cef8140eb11d2a5d7e353958a59470db1764b767b71e7a030c8baca730006f9aa779c46eb6f1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Release History
2
2
 
3
+ ### 0.21.1 / 2021-05-18
4
+
5
+ #### Documentation
6
+
7
+ * Remove Debugger description from the readmes
8
+
3
9
  ### 0.21.0 / 2021-03-10
4
10
 
5
11
  #### Features
@@ -42,13 +42,6 @@ Google::Cloud::ErrorReporting.configure do |config|
42
42
  config.service_name = "my-service"
43
43
  end
44
44
 
45
- # Debugger specific configurations
46
- Google::Cloud::Debugger.configure do |config|
47
- config.project_id = "debugger-project"
48
- config.service_name = "my-service"
49
- config.allow_mutating_methods = true
50
- end
51
-
52
45
  # Logging specific configurations
53
46
  Google::Cloud::Logging.configure do |config|
54
47
  config.project_id = "error-reporting-project"
@@ -73,7 +66,6 @@ end
73
66
  * `project_id`: [`String`] Shared Google Cloud Platform Project identifier. Self discovered on GCP.
74
67
  * `credentials`: [`String`] Path to shared service account JSON keyfile. Self discovered on GCP.
75
68
  * `use_error_reporting`: [`Boolean`] Explicitly enable or disable Error Reporting features. Default: `Rails.env.production?`
76
- * `use_debugger`: [`Boolean`] Explicitly enable or disable Debugger features. Default: `Rails.env.production?`
77
69
  * `use_logging`: [`Boolean`] Explicitly enable or disable Logging middleware. Default: `Rails.env.production?`
78
70
  * `use_trace`: [`Boolean`] Explicitly enable or disable Trace features. Default: `Rails.env.production?`
79
71
 
@@ -85,16 +77,6 @@ end
85
77
  * `error_reporting.service_version`: [`String`] Version identifier to running service. Self discovered on GCP.
86
78
  * `error_reporting.ignore_classes`: [`Array`] An Array of Exception classes to ignore. Default: `[]`
87
79
 
88
- #### Debugger
89
-
90
- * `debugger.project_id`: [`String`] Google Cloud Platform Project identifier just for Debugger. Self discovered on GCP.
91
- * `debugger.credentials`: [`String`] Path to service account JSON keyfile. Self discovered on GCP.
92
- * `debugger.service_name`: [`String`] Identifier to running service. Self discovered on GCP. Default: `"ruby-app"`
93
- * `debugger.service_version`: [`String`] Version identifier to running service. Self discovered on GCP.
94
- * `debugger.root`: [`String`] The root directory of the debuggee application in absolute file path form. Default: `Rack::Directory#root` if the application framework is rack-based,i.e. Ruby on Rails, Sinatra. Otherwise use current working directory.
95
- * `debugger.allow_mutating_methods`: [`boolean`] Whether to allow expressions to call methods that could mutate program state. Default is `false`.
96
- * `debugger.evaluation_time_limit`: [`Numeric`] The time limit in seconds for evaluating expressions. Default is `0.05`.
97
-
98
80
  #### Logging
99
81
 
100
82
  * `logging.project_id`: [`String`] Google Cloud Platform Project identifier just for Logging. Self discovered on GCP.
@@ -14,5 +14,5 @@
14
14
 
15
15
 
16
16
  module Stackdriver
17
- VERSION = "0.21.0".freeze
17
+ VERSION = "0.21.1".freeze
18
18
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stackdriver
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.21.0
4
+ version: 0.21.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Heng Xiong
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-11 00:00:00.000000000 Z
11
+ date: 2021-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-cloud-error_reporting
@@ -241,7 +241,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
241
241
  - !ruby/object:Gem::Version
242
242
  version: '0'
243
243
  requirements: []
244
- rubygems_version: 3.2.13
244
+ rubygems_version: 3.2.17
245
245
  signing_key:
246
246
  specification_version: 4
247
247
  summary: API Client library for Google Stackdriver