appsignal 3.0.0 → 3.0.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: 4c26398b5b700795b49209e6245bd40002eadd730b9425d639cf5763fa65db31
4
- data.tar.gz: ce3e67fe98e5cb067ef1f7857a8486256c09ad01de753b48d3a625eecefc7b63
3
+ metadata.gz: 910363fe3209739eb4d13b30c32b8734e6748b6aec96a33ce67c8864a5942d6a
4
+ data.tar.gz: ef7eaef9a4807c260da2f9fd108fdaaa77433f3d2de9f9e19cc1a0990672c93a
5
5
  SHA512:
6
- metadata.gz: f1ca336399aa8f4b0916286f367b612e48db0719fbf32e51d3950a0853304bb2bc41504fe9b5c1835110ed407a0aa3f3cd827f78611576f4376af3e6f4b61399
7
- data.tar.gz: 94a9998aa6407bb4c9f08e92d43baa9113ccf4c4f6018612cd5fe4be6789dc1f54a0fcf11562984a20d76ccbbb75e24c7d32d748e99210d40513c3714729ed80
6
+ metadata.gz: 70e566c271c78ef702e0293ae2beb6d1bf1ec279a9c128838a1fcb5f99b6b813aac691e4647874fecea37345cd7b73c8dfed86d55cedd5c70ec96c8e686175fc
7
+ data.tar.gz: 70af3b4d4da83147fd1e35f8f144b5a7ff319b4d5665c52ac235412b0e7891732c11dbd9985b4068adcbe15dc70c44bc3116baae8de47e6d955a10f9b58ce7a1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ # 3.0.1
4
+ - Fix error occurring on APPSIGNAL_DNS_SERVER environment variable option
5
+ parsing. PR #709
6
+
3
7
  # 3.0.0
4
8
 
5
9
  Please read our [upgrade from version 2 to 3 guide][upgrade3] before upgrading.
@@ -81,7 +81,6 @@ module Appsignal
81
81
  ENV_STRING_KEYS = %w[
82
82
  APPSIGNAL_APP_NAME
83
83
  APPSIGNAL_CA_FILE_PATH
84
- APPSIGNAL_DNS_SERVERS
85
84
  APPSIGNAL_HOSTNAME
86
85
  APPSIGNAL_HTTP_PROXY
87
86
  APPSIGNAL_LOG
@@ -112,6 +111,7 @@ module Appsignal
112
111
  ].freeze
113
112
  # @api private
114
113
  ENV_ARRAY_KEYS = %w[
114
+ APPSIGNAL_DNS_SERVERS
115
115
  APPSIGNAL_FILTER_PARAMETERS
116
116
  APPSIGNAL_FILTER_SESSION_DATA
117
117
  APPSIGNAL_IGNORE_ACTIONS
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Appsignal
4
- VERSION = "3.0.0".freeze
4
+ VERSION = "3.0.1".freeze
5
5
  end
@@ -374,6 +374,7 @@ describe Appsignal::Config do
374
374
  :active => true,
375
375
  :name => "App name",
376
376
  :debug => true,
377
+ :dns_servers => ["8.8.8.8", "8.8.4.4"],
377
378
  :ignore_actions => %w[action1 action2],
378
379
  :ignore_errors => %w[ExampleStandardError AnotherError],
379
380
  :ignore_namespaces => %w[admin private_namespace],
@@ -393,6 +394,7 @@ describe Appsignal::Config do
393
394
  ENV["APPSIGNAL_ACTIVE"] = "true"
394
395
  ENV["APPSIGNAL_APP_NAME"] = "App name"
395
396
  ENV["APPSIGNAL_DEBUG"] = "true"
397
+ ENV["APPSIGNAL_DNS_SERVERS"] = "8.8.8.8,8.8.4.4"
396
398
  ENV["APPSIGNAL_IGNORE_ACTIONS"] = "action1,action2"
397
399
  ENV["APPSIGNAL_IGNORE_ERRORS"] = "ExampleStandardError,AnotherError"
398
400
  ENV["APPSIGNAL_IGNORE_NAMESPACES"] = "admin,private_namespace"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appsignal
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Beekman
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2021-03-01 00:00:00.000000000 Z
13
+ date: 2021-03-10 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rack