skylight 6.0.4 → 6.1.0.beta
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 +9 -0
- data/ext/extconf.rb +9 -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: d780476141077955da4d5e8c7ca2fdbb7ae6c34d12e4fc4d02936d57c7280860
|
|
4
|
+
data.tar.gz: 6342fb5535a2bab178fe1ad50d6987586bab709a43ac0b350957e269ed551a01
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a8dc8c057b7837f951b360fde644aab87371800cefd18131224238c6c9753a955c26df62d89331410f0b00028d0b961257079a540811b6e5d7342448098a0dea
|
|
7
|
+
data.tar.gz: 5ac028176833f79a0205c2a952df35c70c4996876b5b3cd0ac3f1562de041edb883b3a6e17d22d7a7960f030060f6a05e9828cdc20e29afd26b6cc5b0fbd1313
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
|
+
## 6.1.0.beta (June 11, 2024)
|
|
2
|
+
|
|
3
|
+
- [IMPROVEMENT] Initial support for parsing queries from activerecord-sqlserver-adapter
|
|
4
|
+
|
|
1
5
|
## 6.0.4 (February 23, 2024)
|
|
6
|
+
|
|
2
7
|
- [IMPROVEMENT] Set "turbo-frame" in the request segment when making a Turbo-Frame request
|
|
3
8
|
|
|
4
9
|
## 6.0.3 (January 18, 2024)
|
|
10
|
+
|
|
5
11
|
- [IMPROVEMENT] Remove an outdated "abbrev" requirement
|
|
6
12
|
|
|
7
13
|
## 6.0.2 (January 9, 2024)
|
|
@@ -9,10 +15,12 @@
|
|
|
9
15
|
- [IMPROVEMENT] When using certain versions of Rubygems (< 3.4.9), some users experienced a Rubygems bug in which the wrong version of Psych native extensions were loaded during Skylight's native extension building. We have inlined the data needed to download libskylight, so YAML is no longer required during installation. Note that for existing versions of Skylight, this issue may also be corrected by updating Rubygems to at least 3.4.9.
|
|
10
16
|
|
|
11
17
|
## 6.0.1 (September 12, 2023)
|
|
18
|
+
|
|
12
19
|
- [BUGFIX] Fix a logger message that could raise an error when I18n is misconfigured or unconfigured.
|
|
13
20
|
- [BUGFIX] Fix an issue with proxy config in skylightd.
|
|
14
21
|
|
|
15
22
|
## 6.0.0 (September 11, 2023)
|
|
23
|
+
|
|
16
24
|
- [BREAKING] End support for Ruby 2.6
|
|
17
25
|
- The following libraries are no longer tested and are not guaranteed to work with Skylight 6:
|
|
18
26
|
- Sinatra 1.x
|
|
@@ -30,6 +38,7 @@
|
|
|
30
38
|
- [IMPROVEMENT] Better support for GraphQL versions >= 2.0.18.
|
|
31
39
|
|
|
32
40
|
## 5.3.5 (January 18, 2024)
|
|
41
|
+
|
|
33
42
|
- [IMPROVEMENT] Remove an outdated "abbrev" requirement
|
|
34
43
|
|
|
35
44
|
## 5.3.4 (October 17, 2022)
|
data/ext/extconf.rb
CHANGED
|
@@ -12,16 +12,16 @@ GLIBC_MIN = 2.23
|
|
|
12
12
|
GLIBC_V4_MIN = 2.15
|
|
13
13
|
|
|
14
14
|
LIBSKYLIGHT_INFO = {
|
|
15
|
-
"version" => "5.2.
|
|
15
|
+
"version" => "5.2.1-0a9bfee",
|
|
16
16
|
"checksums" => {
|
|
17
|
-
"x86-linux" => "
|
|
18
|
-
"x86_64-linux" => "
|
|
19
|
-
"x86_64-linux-musl" => "
|
|
20
|
-
"x86_64-darwin" => "
|
|
21
|
-
"x86_64-freebsd" => "
|
|
22
|
-
"aarch64-linux" => "
|
|
23
|
-
"aarch64-linux-musl" => "
|
|
24
|
-
"aarch64-darwin" => "
|
|
17
|
+
"x86-linux" => "af118eee2d41a0b989ec7620c7ee090cd1b75d5bb515cf09213fb977b9018fc7",
|
|
18
|
+
"x86_64-linux" => "26e752796a4b6c6e22668903a056958743b234d1c43973bc427c41280b2da0ec",
|
|
19
|
+
"x86_64-linux-musl" => "d082c465b48b8ac8c4149ecd052588bd7c65d8c9593de61c86996aa5a4cbc060",
|
|
20
|
+
"x86_64-darwin" => "bc0eb0f5aa45ab0dd1a85f446fa4533977ba5b9607c77c81fc81b1a4763a1888",
|
|
21
|
+
"x86_64-freebsd" => "a4328e817928650b50f1e011c048c45dcecbcad094e3bc63f2a06ad24ad8868b",
|
|
22
|
+
"aarch64-linux" => "d365c375d3de478d27d08c947bedee9377127bc8bd311e220372cfc0fe8e2ad4",
|
|
23
|
+
"aarch64-linux-musl" => "de66e234540e6af734d678bec49b0c1fdb23bc925b9e051e605e559e0a97e981",
|
|
24
|
+
"aarch64-darwin" => "f747dd6a934869a4a5865a3051b1ade9588ef3a73026376c043ac114876c0b12"
|
|
25
25
|
}.freeze
|
|
26
26
|
}.freeze
|
|
27
27
|
|
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.1.0.beta
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tilde, Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-06-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -395,9 +395,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
395
395
|
version: '2.7'
|
|
396
396
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
397
397
|
requirements:
|
|
398
|
-
- - "
|
|
398
|
+
- - ">"
|
|
399
399
|
- !ruby/object:Gem::Version
|
|
400
|
-
version:
|
|
400
|
+
version: 1.3.1
|
|
401
401
|
requirements: []
|
|
402
402
|
rubygems_version: 3.4.10
|
|
403
403
|
signing_key:
|