skylight 1.4.3 → 1.4.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 85741f51a63ae3c379cc67d73d6485e410092b73
4
- data.tar.gz: e1d00fd14d49ec7b706bd9af4b4ea481c1c895d1
3
+ metadata.gz: 14beed2152c9792a9f554eb74f63d5172eb92a11
4
+ data.tar.gz: '02378ab496fdf3483f3bef6fc37ec864a7deb0bc'
5
5
  SHA512:
6
- metadata.gz: c3225e66c4fad5975de891882ab96b11c700b0e70bad78e520cc50a23c1b7676f997e9dffbca8f68f151a4154f3531e6e1e332938003358391900a73f4071bda
7
- data.tar.gz: 52d864479ccae948f965a6fe41a76acb2a769b1acaf7fc6f0e3e7e42eca912bc132ae7dbe940d09d96c1bceb079daa2a14c3d4d8e709feb9e67824bf93a19989
6
+ metadata.gz: 4ea715250be7e1f2c7d7f8a3e6772b3b6ea57f56d305cfb3a1989e2e912f6d560b86fc74d756cea5f4ef72660796427ef55805176183507147680546a256cc4c
7
+ data.tar.gz: 80dc5105a4e76dcc9ac625a37260adbbcb2b565ac198fb32d47cf3b7d318a36ef129a41565d0e0ccae8a1c911d550718c056b542a11547b60aea7102577f40ba
@@ -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.
@@ -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
- unless version = libskylight_info["version"]
104
- fail "libskylight version missing from `#{libskylight_yml}`"
105
- end
106
-
107
- unless checksums = libskylight_info["checksums"]
108
- fail "libskylight checksums missing from `#{libskylight_yml}`"
109
- end
110
-
111
- unless checksum = checksums[Platform.tuple]
112
- fail "no checksum entry for requested architecture -- " \
113
- "this probably means the requested architecture is not supported; " \
114
- "platform=#{Platform.tuple}; available=#{checksums.keys}", :info
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
 
@@ -1,8 +1,11 @@
1
1
  ---
2
- version: "1.4.1-33c50db"
2
+ version: "1.4.0-7aecded"
3
3
  checksums:
4
- x86-linux: "2c82641166a4b2303ba365b2e841b0f41366aec61aa7167a71e0507886267ec6"
5
- x86_64-linux: "981c3f7091fc0c13d0ebaabbbee98781ce56c64c6349819df4461ac9c21a1fa5"
6
- x86_64-linux-musl: "62cf4bf8436ad27befd26d54fe84c830d7893abea86e3b813aac9a0bbd0cca34"
7
- x86_64-darwin: "f141cc1b5063caa11f1ec953a333ef83b72cd25cca938666de71ad42d831af6a"
8
- x86_64-freebsd: "c71d958fdba4c6ea1f62aea03474e2b479e787d5e21a436dabf00218ea25d2b0"
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"
@@ -1,4 +1,4 @@
1
1
  module Skylight
2
- VERSION = '1.4.3'
2
+ VERSION = '1.4.4'
3
3
  end
4
4
 
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.3
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-10-18 00:00:00.000000000 Z
11
+ date: 2017-11-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport