skylight 6.0.0.beta2 → 6.0.1
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 +5 -3
- data/ext/libskylight.yml +9 -9
- data/lib/skylight/railtie.rb +1 -1
- data/lib/skylight/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '097ec2e176e9d98ee5a7bcb33884feaef776496212dfcc5bfaf33a9e060fcc0b'
|
|
4
|
+
data.tar.gz: 00a4397b119dca5663b5470b8aed7351e7e4dceec0d61edf18052acf927b7d40
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8c833dcd2984c931cd63f891a10029ae429c9e4734e92084d382e414ef6b8124e33c6433fbd8864e418fe7a1dd90e8ef5175442ec695a2492420f1c7b850fa8b
|
|
7
|
+
data.tar.gz: 6c219a9192a359c28a5ab54b63ca7aecd970f8f40439d5e549e62bee5164fcbb7ac580e2b3be03e9622b404b228a6ec70c84d3f9123c377d0122c768d500bab3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
## 6.0.
|
|
2
|
-
- [
|
|
1
|
+
## 6.0.1 (September 12, 2023)
|
|
2
|
+
- [BUGFIX] Fix a logger message that could raise an error when I18n is misconfigured or unconfigured.
|
|
3
|
+
- [BUGFIX] Fix an issue with proxy config in skylightd.
|
|
3
4
|
|
|
4
|
-
## 6.0.0
|
|
5
|
+
## 6.0.0 (September 11, 2023)
|
|
5
6
|
- [BREAKING] End support for Ruby 2.6
|
|
6
7
|
- The following libraries are no longer tested and are not guaranteed to work with Skylight 6:
|
|
7
8
|
- Sinatra 1.x
|
|
@@ -16,6 +17,7 @@
|
|
|
16
17
|
the 'error' segment), rather than under the exception handler's controller and action name.
|
|
17
18
|
- [IMPROVEMENT] (Once again) Provide native support for FreeBSD.
|
|
18
19
|
- [BUGFIX] Fix an issue in which the daemon could time out if the processes file descriptor count was set very high (e.g. on Heroku's Performance dynos)
|
|
20
|
+
- [IMPROVEMENT] Better support for GraphQL versions >= 2.0.18.
|
|
19
21
|
|
|
20
22
|
## 5.3.4 (October 17, 2022)
|
|
21
23
|
|
data/ext/libskylight.yml
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
version: "5.2.0-
|
|
1
|
+
version: "5.2.0-15d2f2b"
|
|
2
2
|
checksums:
|
|
3
|
-
x86-linux: "
|
|
4
|
-
x86_64-linux: "
|
|
5
|
-
x86_64-linux-musl: "
|
|
6
|
-
x86_64-darwin: "
|
|
7
|
-
x86_64-freebsd: "
|
|
8
|
-
aarch64-linux: "
|
|
9
|
-
aarch64-linux-musl: "
|
|
10
|
-
aarch64-darwin: "
|
|
3
|
+
x86-linux: "ae972e44ac926411971c7c2161f7b63d885108818bcdb9b67a34aef72650a01e"
|
|
4
|
+
x86_64-linux: "385369da7811b7ab9a71990c873858a21fd0c44b2b44c480c269a5632d886e5f"
|
|
5
|
+
x86_64-linux-musl: "a3404b9d02fd82dfc20bfa06889da79122626099a1aca0e3c009fe3724ba94b1"
|
|
6
|
+
x86_64-darwin: "779198627e376d4bf281f484a8b5ed818a500439ffe57f965b3797c4eac0c096"
|
|
7
|
+
x86_64-freebsd: "40fd09224f2ccd8d49c87eb9f27f6c4aa3b5e7d982f6c1c87de9b1038188e7ff"
|
|
8
|
+
aarch64-linux: "855e3ac01054b35a7eefbfd764ee87b07b54055a9397b969f7c25d442e514319"
|
|
9
|
+
aarch64-linux-musl: "59295e2a8183258aabaa9af7dbab222d3cd3fd2b22c287c3adf85f0d1669cb83"
|
|
10
|
+
aarch64-darwin: "adc070c71413520afb7186b6c6c04e1149120965c1609a60fa2b427615b51cf9"
|
data/lib/skylight/railtie.rb
CHANGED
|
@@ -45,7 +45,7 @@ module Skylight
|
|
|
45
45
|
|
|
46
46
|
return if reasons.empty?
|
|
47
47
|
|
|
48
|
-
sk_config.logger.warn("Activating Skylight for Background Jobs because #{reasons.to_sentence}")
|
|
48
|
+
sk_config.logger.warn("Activating Skylight for Background Jobs because #{reasons.to_sentence(locale: false)}")
|
|
49
49
|
end
|
|
50
50
|
|
|
51
51
|
def log_prefix
|
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: 6.0.
|
|
4
|
+
version: 6.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tilde, Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-09-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -396,11 +396,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
396
396
|
version: '2.7'
|
|
397
397
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
398
398
|
requirements:
|
|
399
|
-
- - "
|
|
399
|
+
- - ">="
|
|
400
400
|
- !ruby/object:Gem::Version
|
|
401
|
-
version:
|
|
401
|
+
version: '0'
|
|
402
402
|
requirements: []
|
|
403
|
-
rubygems_version: 3.
|
|
403
|
+
rubygems_version: 3.3.26
|
|
404
404
|
signing_key:
|
|
405
405
|
specification_version: 4
|
|
406
406
|
summary: Skylight is a smart profiler for Rails, Sinatra, and other Ruby apps.
|