skylight 5.3.1 → 5.3.2
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 -2
- data/ext/libskylight.yml +8 -8
- data/lib/skylight/probes.rb +8 -9
- data/lib/skylight/version.rb +1 -1
- 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: f70688b41eae2aba12100dfdc0fa2376de752498b870b951a215779dfab6f402
|
4
|
+
data.tar.gz: 07141a17727dd08c96059361ce86168ac45a34ff222ef8ebb77aa29ad6effce9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4cae620358ed7fa0eabad6464346899217813cdccacc68980a0abd6a4b31c0416b0b65b0d66b6cf7f7746f73ca0ff00e689b72011990d1482c012b22b8f5fdb5
|
7
|
+
data.tar.gz: 75cfe4636a13c3fa194788f5153b114c816b249c2f57e3a7358df44a9fef4818fa452fe02268f4a01c4b4a7703bacff5394dd256c194de1c586cd5a38802c3e2
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,12 @@
|
|
1
|
+
## 5.3.2 (April 6, 2022)
|
2
|
+
|
3
|
+
- [BUGFIX] Fix case-sensitivity issue when computing relative paths
|
4
|
+
|
1
5
|
## 5.3.1 (February 28, 2022)
|
2
6
|
|
3
7
|
- [BUGFIX] Fix Elasticsearch integration for gem versions >= 8.
|
4
8
|
|
5
|
-
## 5.3.0 (February
|
9
|
+
## 5.3.0 (February 9, 2022)
|
6
10
|
|
7
11
|
- [FEATURE] Support for Rails 7's `load_async`.
|
8
12
|
- [IMPROVEMENT] `skylight doctor` now checks glibc compatibility.
|
@@ -21,7 +25,7 @@
|
|
21
25
|
|
22
26
|
- [BUGFIX] Correct ruby version requirement in skylight.gemspec
|
23
27
|
|
24
|
-
## 5.1.0 (May 24, 2021)
|
28
|
+
## 5.1.0 (May 24, 2021) [YANKED]
|
25
29
|
|
26
30
|
- [FEATURE] Add experimental tcp-based `skylightd` (may be enabled with `SKYLIGHT_ENABLE_TCP=true`)
|
27
31
|
|
data/ext/libskylight.yml
CHANGED
@@ -1,9 +1,9 @@
|
|
1
|
-
version: "5.1.0-
|
1
|
+
version: "5.1.0-cd7d6af"
|
2
2
|
checksums:
|
3
|
-
x86-linux: "
|
4
|
-
x86_64-linux: "
|
5
|
-
x86_64-linux-musl: "
|
6
|
-
x86_64-darwin: "
|
7
|
-
aarch64-linux: "
|
8
|
-
aarch64-linux-musl: "
|
9
|
-
aarch64-darwin: "
|
3
|
+
x86-linux: "921381c014b87e67fa2049e9891377f737b5abb10963228ddcd65caede7b58d2"
|
4
|
+
x86_64-linux: "e89f0ec3f39ecca060b757fcd1b9d8f38e5846f65579785454bb69a968e8528f"
|
5
|
+
x86_64-linux-musl: "78239bc7581c124c2a00cfbc42ec6cf73e7ed280ed1a27d85bb915531a683f1a"
|
6
|
+
x86_64-darwin: "faa7363ada4bf476511f6700856fd91b9d61fed055297417ce41d83aa11fe07c"
|
7
|
+
aarch64-linux: "e172515a6f7923552e842d21319b3630bdc6e264b6a434b43d2db682dcde18cc"
|
8
|
+
aarch64-linux-musl: "1665adf149bd2c12e409f387de5d796ef9e55d4cfd9a886f69c42cab59a51926"
|
9
|
+
aarch64-darwin: "027bec103668e89f318b55ddc2a48ca5c84c7a6dcd1dd273cc9b7b46d918ef12"
|
data/lib/skylight/probes.rb
CHANGED
@@ -78,15 +78,14 @@ module Skylight
|
|
78
78
|
end
|
79
79
|
|
80
80
|
def add_path(path)
|
81
|
-
|
82
|
-
|
83
|
-
.
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
end
|
81
|
+
Dir.glob("**/*.rb", base: path) do |f|
|
82
|
+
name = Pathname.new(f).sub_ext("").to_s
|
83
|
+
full_path = File.expand_path(f, path)
|
84
|
+
|
85
|
+
raise "duplicate probe name: #{name}; original=#{available[name]}; new=#{full_path}" if available.key?(name)
|
86
|
+
|
87
|
+
available[name] = full_path
|
88
|
+
end
|
90
89
|
end
|
91
90
|
|
92
91
|
def available
|
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: 5.3.
|
4
|
+
version: 5.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tilde, Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-04-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -142,14 +142,14 @@ dependencies:
|
|
142
142
|
requirements:
|
143
143
|
- - "~>"
|
144
144
|
- !ruby/object:Gem::Version
|
145
|
-
version: 1.
|
145
|
+
version: 1.26.1
|
146
146
|
type: :development
|
147
147
|
prerelease: false
|
148
148
|
version_requirements: !ruby/object:Gem::Requirement
|
149
149
|
requirements:
|
150
150
|
- - "~>"
|
151
151
|
- !ruby/object:Gem::Version
|
152
|
-
version: 1.
|
152
|
+
version: 1.26.1
|
153
153
|
- !ruby/object:Gem::Dependency
|
154
154
|
name: simplecov
|
155
155
|
requirement: !ruby/object:Gem::Requirement
|