skylight 1.4.0.beta.2 → 1.4.0
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 +6 -10
- data/lib/skylight/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 81d34206e4d95a6d7509c32216c42a091bd32695
|
|
4
|
+
data.tar.gz: acae10292fbdad3e373f2d5538617068c7b9568e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6a3a5404d1c2359ea25344b29beb15e9e4f69f1f3230c0ab32ea215cc7c22b8b2bf7f744c89e5a64764e13688a85426156dfb9e9cfc732d665e1650134132fb1
|
|
7
|
+
data.tar.gz: 74833a91205ddc80818ce10f4e340231d297b58f1dc485ebca5c6589ae3cb8992e3567925810c2698632a18ede5cf6952ed56e456dc1ee2d563f7d25532bd259
|
data/CHANGELOG.md
CHANGED
|
@@ -1,18 +1,14 @@
|
|
|
1
|
-
## 1.4.0
|
|
1
|
+
## 1.4.0 (October 4, 2017)
|
|
2
2
|
|
|
3
|
-
* [FEATURE]
|
|
4
|
-
* [FEATURE] Rack Middleware probe enabled by default
|
|
3
|
+
* [FEATURE] Add probe for Rack Middlewares
|
|
5
4
|
* [FEATURE] ActiveRecord Instantiation instrumentation
|
|
6
|
-
* [
|
|
7
|
-
* [EXPERIMENTAL] ActionJob Enqueue instrumentation. (Only tracks the enqueuing of new jobs. Does not instrument jobs themselves. Off by default since it's not clear how useful it is. To enable: `require 'skylight/normalizers/active_job/enqueue_at`.)
|
|
8
|
-
* [EXPERIMENTAL] FreeBSD support. (This should work automatically on FreeBSD systems, but real-world testing has been minimal.)
|
|
9
|
-
|
|
10
|
-
## 1.4.0-beta (July 13, 2017)
|
|
11
|
-
|
|
12
|
-
* [FEATURE] Add probe for Rack Middlewares. To enable, add 'middleware' to `config.skylight.probes` list.
|
|
5
|
+
* [FEATURE] Faraday instrumentation. Add 'faraday' to your probes list.
|
|
13
6
|
* [IMPROVEMENT] Increase limit for items tracked in a requests
|
|
14
7
|
* [IMPROVEMENT] Allow for more fine-grained control over position of Skylight::Middleware
|
|
8
|
+
* [IMPROVEMENT] Improved handling of the user-level configuration options
|
|
15
9
|
* [IMPROVEMENT] Avoid processing Skylight::Middleware unnecessarily
|
|
10
|
+
* [EXPERIMENTAL] FreeBSD support. (This should work automatically on FreeBSD systems, but real-world testing has been minimal.)
|
|
11
|
+
* [EXPERIMENTAL] ActionJob Enqueue instrumentation. (Only tracks the enqueuing of new jobs. Does not instrument jobs themselves. Off by default since it's not clear how useful it is. To enable: `require 'skylight/normalizers/active_job/enqueue_at'`.)
|
|
16
12
|
|
|
17
13
|
## 1.3.1 (May 17, 2017)
|
|
18
14
|
|
data/lib/skylight/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: skylight
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.0
|
|
4
|
+
version: 1.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tilde, Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-10-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -190,12 +190,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
190
190
|
version: 1.9.2
|
|
191
191
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
192
192
|
requirements:
|
|
193
|
-
- - "
|
|
193
|
+
- - ">="
|
|
194
194
|
- !ruby/object:Gem::Version
|
|
195
|
-
version:
|
|
195
|
+
version: '0'
|
|
196
196
|
requirements: []
|
|
197
197
|
rubyforge_project:
|
|
198
|
-
rubygems_version: 2.6.
|
|
198
|
+
rubygems_version: 2.6.13
|
|
199
199
|
signing_key:
|
|
200
200
|
specification_version: 4
|
|
201
201
|
summary: Skylight is a smart profiler for Rails apps
|