grntest 1.8.7 → 1.8.8

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: 7c59c4eb36a3ebc1ac542ffc9bbc5f87d2756ec899c58a105976958f01821a3d
4
- data.tar.gz: 17a66afc2d549cbf0234f03cca393bed5dd8c86dd6841ec26492625f4fdfe3d8
3
+ metadata.gz: 7acee753079da4976950cdffdd023e4bea5f5d8573938795618c71dd3a4e4589
4
+ data.tar.gz: f3a7f2162af9d338fc079b44eb3ea6843da0728e652738c4db7588bb8e85c53b
5
5
  SHA512:
6
- metadata.gz: 0b4468d6a5513043ac62d1d5b1596d093a46bfaf9709f492500bacffa2de6c384fb564c00bacfaa2de659d805c092d6bffadb53991a46d3e2aa8bf54d388972b
7
- data.tar.gz: b265cd5cd7cdca7eb31477feff524fc111b2d334a2e5f19495882dc2df83e2bb3a31c0ff9a1b7ba346a39622d181314545be251cd1fabba058712fb50db9710f
6
+ metadata.gz: 206475d143b25fc45acf5c4bdb511f9c691025d5c0d9bbab122e5e3c1a5cd40626a7d51604200222d0711cfc74d148bf15342e4133eef2fde87de68ced921178
7
+ data.tar.gz: 1a8b75f6ac99ee2cc18b81ca9c64065cf0a77bcca0a33bcbd8e85b4ac01b3439a68ce156e307b110d683413f92ec1c0919228aa7c9e1edbc790e997077c9c339
data/doc/text/news.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # News
2
2
 
3
+ ## 1.8.7: 2026-09-07
4
+
5
+ ### Improvements
6
+
7
+ * `#@sort-query-log-operations`: Made sort result stable.
8
+
3
9
  ## 1.8.7: 2026-09-06
4
10
 
5
11
  ### Improvements
@@ -998,28 +998,28 @@ module Grntest
998
998
  if name.start_with?("select[")
999
999
  if sort_shard
1000
1000
  first_shard_select_index ||= i
1001
- [first_shard_select_index, name]
1001
+ [first_shard_select_index, name, i]
1002
1002
  else
1003
1003
  [i]
1004
1004
  end
1005
1005
  elsif name.start_with?("filter[")
1006
1006
  if sort_shard
1007
1007
  first_shard_filter_index ||= i
1008
- [first_shard_filter_index, name]
1008
+ [first_shard_filter_index, name, i]
1009
1009
  else
1010
1010
  [i]
1011
1011
  end
1012
1012
  elsif name.start_with?("drilldowns[")
1013
1013
  if sort_drilldown and not name.end_with?(".sort")
1014
1014
  first_drilldowns_index ||= i
1015
- [first_drilldowns_index, name]
1015
+ [first_drilldowns_index, name, i]
1016
1016
  else
1017
1017
  [i]
1018
1018
  end
1019
1019
  elsif name.start_with?("drilldown")
1020
1020
  if sort_drilldown and not name.end_with?(".sort")
1021
1021
  first_drilldown_index ||= i
1022
- [first_drilldown_index, name, operation[:extra]]
1022
+ [first_drilldown_index, name, operation[:extra], i]
1023
1023
  else
1024
1024
  [i]
1025
1025
  end
@@ -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.8.7"
17
+ VERSION = "1.8.8"
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.8.7
4
+ version: 1.8.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kouhei Sutou