agoo 2.11.4 → 2.11.5

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of agoo might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 53c762d0c9613e6c4de53d77d1137bada69a6ea5cf821d24aa1481b98248027c
4
- data.tar.gz: d613a36f1bee36135e3f97a1bfc3aac9695e0b33e71368cc831addca745bc583
3
+ metadata.gz: ce68645d5351caf6ee4ee9ed8a847664fe6c9e1334947f984783cc8f6d5c248b
4
+ data.tar.gz: 3466c51b026c045567b6534783bc490dfc9410a408dbdcb46bffd85728f145cf
5
5
  SHA512:
6
- metadata.gz: 6349a5640d5506e34862f9f64e13dff3ba8286ee1b87acf71fa05e65acb23fc30bd97b1fe82d8c4cb506af8e5dd5bdb19bf776c415755a2d3883bb563c38d4a2
7
- data.tar.gz: f05c7c3fdcc179bf424e1c571b1bdf6bf25056b6236e50cec4703ce4fffb9ffe37a228f189c671d40778febf79213142361cc895e18e906c51024e55cc01a95f
6
+ metadata.gz: da955066a9c61a1cfd61d20e60e391f42f6308944914c01ead803ea0241ea4511a86a493dce1aa5d43ea465114a2db73d4225df85479530ba775ad0230a56d4a
7
+ data.tar.gz: 795e1b466ddbe193afba133355471c1b7ecf753199a696a89bb3733c791c90d900605333cade4fffc5694011f105622fc028c9bd3309d9bde2f35f979857af68
@@ -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
@@ -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/)
@@ -1,5 +1,5 @@
1
1
 
2
2
  module Agoo
3
3
  # Agoo version.
4
- VERSION = '2.11.4'
4
+ VERSION = '2.11.5'
5
5
  end
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
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-10 00:00:00.000000000 Z
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/early_hints_test.rb
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