agoo 2.11.4 → 2.11.5
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 +8 -0
- data/ext/agoo/extconf.rb +2 -0
- data/lib/agoo/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ce68645d5351caf6ee4ee9ed8a847664fe6c9e1334947f984783cc8f6d5c248b
|
|
4
|
+
data.tar.gz: 3466c51b026c045567b6534783bc490dfc9410a408dbdcb46bffd85728f145cf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: da955066a9c61a1cfd61d20e60e391f42f6308944914c01ead803ea0241ea4511a86a493dce1aa5d43ea465114a2db73d4225df85479530ba775ad0230a56d4a
|
|
7
|
+
data.tar.gz: 795e1b466ddbe193afba133355471c1b7ecf753199a696a89bb3733c791c90d900605333cade4fffc5694011f105622fc028c9bd3309d9bde2f35f979857af68
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@ All changes to the Agoo gem are documented here. Releases follow semantic versio
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [2.11.5] - [2019-11-11]
|
|
8
|
+
|
|
9
|
+
Alpine
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Added compiler directives to allow building on Alpine linux.
|
|
14
|
+
|
|
7
15
|
## [2.11.4] - [2019-11-10]
|
|
8
16
|
|
|
9
17
|
GraphQL Introspection
|
data/ext/agoo/extconf.rb
CHANGED
|
@@ -11,6 +11,8 @@ else
|
|
|
11
11
|
$CFLAGS += ' -std=c11'
|
|
12
12
|
end
|
|
13
13
|
|
|
14
|
+
$CFLAGS += ' -D_POSIX_SOURCE -D_GNU_SOURCE'
|
|
15
|
+
|
|
14
16
|
# Adding the __attribute__ flag only works with gcc compilers and even then it
|
|
15
17
|
# does not work to check args with varargs so just remove the check.
|
|
16
18
|
CONFIG['warnflags'].slice!(/ -Wsuggest-attribute=format/)
|
data/lib/agoo/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: agoo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.11.
|
|
4
|
+
version: 2.11.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Ohler
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-11-
|
|
11
|
+
date: 2019-11-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: oj
|
|
@@ -188,12 +188,12 @@ signing_key:
|
|
|
188
188
|
specification_version: 4
|
|
189
189
|
summary: An HTTP server
|
|
190
190
|
test_files:
|
|
191
|
-
- test/rack_handler_test.rb
|
|
192
|
-
- test/log_test.rb
|
|
193
|
-
- test/domain_test.rb
|
|
194
|
-
- test/bind_test.rb
|
|
195
191
|
- test/base_handler_test.rb
|
|
196
|
-
- test/
|
|
192
|
+
- test/bind_test.rb
|
|
197
193
|
- test/hijack_test.rb
|
|
194
|
+
- test/early_hints_test.rb
|
|
195
|
+
- test/rack_handler_test.rb
|
|
198
196
|
- test/static_test.rb
|
|
197
|
+
- test/log_test.rb
|
|
199
198
|
- test/graphql_test.rb
|
|
199
|
+
- test/domain_test.rb
|