skylight 1.4.3 → 1.4.4
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 +4 -0
- data/ext/extconf.rb +22 -12
- data/ext/libskylight.yml +9 -6
- data/lib/skylight/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 14beed2152c9792a9f554eb74f63d5172eb92a11
|
|
4
|
+
data.tar.gz: '02378ab496fdf3483f3bef6fc37ec864a7deb0bc'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4ea715250be7e1f2c7d7f8a3e6772b3b6ea57f56d305cfb3a1989e2e912f6d560b86fc74d756cea5f4ef72660796427ef55805176183507147680546a256cc4c
|
|
7
|
+
data.tar.gz: 80dc5105a4e76dcc9ac625a37260adbbcb2b565ac198fb32d47cf3b7d318a36ef129a41565d0e0ccae8a1c911d550718c056b542a11547b60aea7102577f40ba
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## 1.4.4 (November 7, 2017)
|
|
2
|
+
|
|
3
|
+
* [BUGFIX] The minimum glibc requirement was errorneously bumped to 2.15. We have returned it to 2.5.
|
|
4
|
+
|
|
1
5
|
## 1.4.3 (October 18, 2017)
|
|
2
6
|
|
|
3
7
|
* [BUGFIX] In rare cases, Rails Middleware can be anonymous classes. We now handle those without raising an exception.
|
data/ext/extconf.rb
CHANGED
|
@@ -100,18 +100,28 @@ if !File.exist?(libskylight) && !File.exist?(skylight_dlopen_c) && !File.exist?(
|
|
|
100
100
|
fail "no checksum provided when using custom version"
|
|
101
101
|
end
|
|
102
102
|
else
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
103
|
+
if platform_info = libskylight_info[Platform.tuple]
|
|
104
|
+
unless version = platform_info["version"]
|
|
105
|
+
fail "libskylight version missing from `#{libskylight_yml}`; platform=#{Platform.tuple}"
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
unless checksum = platform_info["checksum"]
|
|
109
|
+
fail "checksum missing from `#{libskylight_yml}`; platform=#{Platform.tuple}"
|
|
110
|
+
end
|
|
111
|
+
else
|
|
112
|
+
unless version = libskylight_info["version"]
|
|
113
|
+
fail "libskylight version missing from `#{libskylight_yml}`"
|
|
114
|
+
end
|
|
115
|
+
|
|
116
|
+
unless checksums = libskylight_info["checksums"]
|
|
117
|
+
fail "libskylight checksums missing from `#{libskylight_yml}`"
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
unless checksum = checksums[Platform.tuple]
|
|
121
|
+
fail "no checksum entry for requested architecture -- " \
|
|
122
|
+
"this probably means the requested architecture is not supported; " \
|
|
123
|
+
"platform=#{Platform.tuple}; available=#{checksums.keys}", :info
|
|
124
|
+
end
|
|
115
125
|
end
|
|
116
126
|
end
|
|
117
127
|
|
data/ext/libskylight.yml
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
---
|
|
2
|
-
version: "1.4.
|
|
2
|
+
version: "1.4.0-7aecded"
|
|
3
3
|
checksums:
|
|
4
|
-
x86-linux: "
|
|
5
|
-
x86_64-linux: "
|
|
6
|
-
x86_64-linux-musl: "
|
|
7
|
-
x86_64-darwin: "
|
|
8
|
-
|
|
4
|
+
x86-linux: "79162dfc4dee8954869d2820e60e8d15d4f4915f66e29bedd15e68030acd5b27"
|
|
5
|
+
x86_64-linux: "117ac0ff29240a518717fcf52f7cd3eeec69a135c481693b8eb259bb4c2b528c"
|
|
6
|
+
x86_64-linux-musl: "bab4030060eb4b83d0543839e0f51b09545d7d5b20c3f7dd35ae6f81f3189499"
|
|
7
|
+
x86_64-darwin: "1c0fdb68c0dde34a1b0842403db2ea2ca6a0de2fb7d729e869f395f6d10383b5"
|
|
8
|
+
# Temporarily divergent Rust build for FreeBSD
|
|
9
|
+
x86_64-freebsd:
|
|
10
|
+
version: "1.4.1-33c50db"
|
|
11
|
+
checksum: "c71d958fdba4c6ea1f62aea03474e2b479e787d5e21a436dabf00218ea25d2b0"
|
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.
|
|
4
|
+
version: 1.4.4
|
|
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-11-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|