grntest 1.5.9 → 1.6.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2c99cf81f130a001622b83bad35c60325f888508aad9c2ca3e48d1ec81eea253
4
- data.tar.gz: 8fdd429aef32866b83711a8523dac6a453941d2eaa9a6829733ffa6e53163bae
3
+ metadata.gz: 6671c17849f4aafbc27163d7c5a387b877fbc330b867dd5b8970366d936ace93
4
+ data.tar.gz: 3b9262457bbb69d422c1a33ab85572a81a4afd34f86554a3abecc0e96530629d
5
5
  SHA512:
6
- metadata.gz: d59793e2fcc4fc0497d583b382165c4dae0cd285e73e8a846c73b3cddcc1f398b12d516c649cf0f2d0463266c81750ef473bd621708de6dbbf4673312a418c5f
7
- data.tar.gz: fa949a43524548a6b77a0226f1df3a400b246c7c3b2559b8343d3c300ec114d984e22ac24f68e803a3edba565d2ffe2aed5fa132453fa32113432a151465737f
6
+ metadata.gz: 6993e535ae22bfa319ab2b0b60b6a499075056663f2765cb2e9aa10a3a81270afa58022c81183a56ac6fff4cea5ac4fd5f3089cce700c2970fdd00d0bb4b3e8a
7
+ data.tar.gz: f18839c07ad5e48ac14168c209e26148b6aad7c3281b1aa36e527906920ca0ffc651d3e1b7aa575ef03e5aeb3be23e074c518857812f7d6706032eef1bd9dc81
data/doc/text/news.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # News
2
2
 
3
+ ## 1.6.0: 2023-07-21
4
+
5
+ ### Improvements
6
+
7
+ * groonga-nginx: Set `client_body_temp_path`.
8
+
3
9
  ## 1.5.9: 2023-07-21
4
10
 
5
11
  ### Improvements
@@ -562,6 +562,7 @@ http {
562
562
  groonga_query_log_path #{context.query_log_path};
563
563
  groonga on;
564
564
  client_max_body_size 500m;
565
+ client_body_temp_path #{context.temporary_directory_path + "body"};
565
566
  }
566
567
  client_header_buffer_size 64k;
567
568
  large_client_header_buffers 4 64k;
@@ -14,5 +14,5 @@
14
14
  # along with this program. If not, see <http://www.gnu.org/licenses/>.
15
15
 
16
16
  module Grntest
17
- VERSION = "1.5.9"
17
+ VERSION = "1.6.0"
18
18
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grntest
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.9
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kouhei Sutou