appsignal 3.0.0.rc.1-java → 3.0.1-java
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 +4 -4
- data/CHANGELOG.md +10 -1
- data/lib/appsignal/config.rb +1 -1
- data/lib/appsignal/version.rb +1 -1
- data/spec/lib/appsignal/config_spec.rb +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b240089c1e884503ce80e92df14f9cd1eca793aeee9c0a69e3d21354b8c3dd48
|
|
4
|
+
data.tar.gz: ef7eaef9a4807c260da2f9fd108fdaaa77433f3d2de9f9e19cc1a0990672c93a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a81ffe00bef5611e1e4e8817a7681c9247ccbf97282e4e8c9cf74aee9fef61fb2e89da4de7edb7c4e28266655aa88a75f5aa40d5476661574781f41418098887
|
|
7
|
+
data.tar.gz: 70af3b4d4da83147fd1e35f8f144b5a7ff319b4d5665c52ac235412b0e7891732c11dbd9985b4068adcbe15dc70c44bc3116baae8de47e6d955a10f9b58ce7a1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,20 @@
|
|
|
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
|
|
8
|
+
|
|
9
|
+
Please read our [upgrade from version 2 to 3 guide][upgrade3] before upgrading.
|
|
10
|
+
|
|
11
|
+
[upgrade3]: https://docs.appsignal.com/ruby/installation/upgrade-from-2-to-3.html
|
|
12
|
+
|
|
4
13
|
- Drop Ruby 1.9 support. PR #683, #682, #688, #694
|
|
5
14
|
- Require Ruby 2.0 or newer for gem. PR #701
|
|
6
15
|
- Use Module.prepend for all gem integrations. Fixes #603 in combination with
|
|
7
16
|
other gems that provide instrumentation for gems. PR #683
|
|
8
|
-
- Remove deprecated integrations, classes, methods and arguments. PR #685
|
|
17
|
+
- Remove deprecated integrations, classes, methods and arguments. PR #685, #686
|
|
9
18
|
- Deprecate `set_error` and `send_error` error helpers `tags` and `namespace`
|
|
10
19
|
arguments. PR #702
|
|
11
20
|
- Add Sidekiq error handler. Report more Sidekiq errors that happen around job
|
data/lib/appsignal/config.rb
CHANGED
|
@@ -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
|
data/lib/appsignal/version.rb
CHANGED
|
@@ -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.
|
|
4
|
+
version: 3.0.1
|
|
5
5
|
platform: java
|
|
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-
|
|
13
|
+
date: 2021-03-10 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rack
|
|
@@ -423,9 +423,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
423
423
|
version: '2.0'
|
|
424
424
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
425
425
|
requirements:
|
|
426
|
-
- - "
|
|
426
|
+
- - ">="
|
|
427
427
|
- !ruby/object:Gem::Version
|
|
428
|
-
version:
|
|
428
|
+
version: '0'
|
|
429
429
|
requirements: []
|
|
430
430
|
rubygems_version: 3.2.8
|
|
431
431
|
signing_key:
|