groonga-query-log 1.7.3 → 1.7.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 42f97011dbf416acd740d5095065c1bda8cc0403859c4ba98806bec34b6632b8
|
|
4
|
+
data.tar.gz: ef7afede08bace5e8501f4ec8f908199456f534414fa02933638140ef442c82e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4b27ab90ae62bde2b92612ec53ec1a8a9c96706e808a3dd269d20dfc29713c7827bdb00c344ccf767be7b8b9683f4b5d85526c280e3a2c5c55a07abed4bb749e
|
|
7
|
+
data.tar.gz: fecd5305be5273df56e4e3b92a5adf87ba9efd65b22a352ba9cd4d9254c504d026c26418757164eb6a9d6a348cddae0b0fb35e8f5971e07051513a8197ed8e00
|
data/doc/text/news.md
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
# News
|
|
2
2
|
|
|
3
|
+
## 1.7.4: 2020-11-12
|
|
4
|
+
|
|
5
|
+
### Fixes
|
|
6
|
+
|
|
7
|
+
* `server-verifier`: Fixed a bug that `--max-limit` doesn't work..
|
|
8
|
+
|
|
9
|
+
* `run-regression-test`: Fixed a bug that `--max-limit` doesn't work..
|
|
10
|
+
|
|
3
11
|
## 1.7.3: 2020-11-12
|
|
4
12
|
|
|
5
13
|
### Improvements
|
|
6
14
|
|
|
7
15
|
* `check-crash`: Added support for showing Groonga version.
|
|
8
16
|
|
|
9
|
-
* `server-verifier`: Added
|
|
17
|
+
* `server-verifier`: Added `--max-limit` option.
|
|
10
18
|
|
|
11
19
|
* `run-regression-test`: Added `--max-limit` option.
|
|
12
20
|
|
|
@@ -314,7 +314,7 @@ module GroongaQueryLog
|
|
|
314
314
|
"(#{@omit_rate})") do |rate|
|
|
315
315
|
@omit_rate = rate
|
|
316
316
|
end
|
|
317
|
-
parser.on("--max-limit=LIMIT",
|
|
317
|
+
parser.on("--max-limit=LIMIT", Integer,
|
|
318
318
|
"Use LIMIT as the max limit value",
|
|
319
319
|
"Negative value doesn't rewrite the limit parameter",
|
|
320
320
|
"(#{@max_limit})") do |limit|
|
|
@@ -280,7 +280,7 @@ module GroongaQueryLog
|
|
|
280
280
|
@options.nullable_reference_number_accessors << accessor
|
|
281
281
|
end
|
|
282
282
|
|
|
283
|
-
parser.on("--max-limit=LIMIT",
|
|
283
|
+
parser.on("--max-limit=LIMIT", Integer,
|
|
284
284
|
"Use LIMIT as the max limit value",
|
|
285
285
|
"Negative value doesn't rewrite the limit parameter",
|
|
286
286
|
"(#{@options.max_limit})") do |limit|
|