jay_api 27.5.0 → 27.5.1

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: 0023753053e15b7b8982ebe074f705a6fd2ff103c4088b5913a961fe113e010d
4
- data.tar.gz: 978121f009ece07730bcb0821d21f3ad5798caaf9589a446a31f02e5e25897e3
3
+ metadata.gz: 85b92a0e16c122e30d5fbea1e95975d93f0321bd44a326c39d7f604c48814033
4
+ data.tar.gz: 2b5bf62988ede1d159ceaba1a80cc534e458e964be8daf966e5ba01c9d52d091
5
5
  SHA512:
6
- metadata.gz: f7ca59c3d9de98e6e3887afd0cae27959703ebf4c213335142dccd6532ed2342f895f15de1deed4c9b73ca910e161293c56bf41e90c45673213ba72b63be3dab
7
- data.tar.gz: a53fc7870322d03b7fd986c3598a3c7e629253a8ebf142006b7ea713f161eed71d752ee02c77e1714ca89ab552de91196baaa7745a483980536338cdd6ebd059
6
+ metadata.gz: 76ec51ec5b5f8803e12e1acd6753afa20b646a0044a5e8d1fd629ab143f8b0a082cc16a0432a5fa4cfa069cff622725c726a67ddb8d2ecd5ecf3b58eb5771a68
7
+ data.tar.gz: c2019ff8249f7fe0a4fd0d72502d00f3a9ed8fb1ed1bdd1622c0df565fa3050c89aae004d275ac53e5d74d574c0fd0b1eda764beb985df77d07be54baee0e85c
data/CHANGELOG.md CHANGED
@@ -8,6 +8,12 @@ Please mark backwards incompatible changes with an exclamation mark at the start
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ ## [27.5.1] - 2025-04-24
12
+
13
+ ### Fixed
14
+ - The `Aggregations::TopHits` class cloning. The nested aggregations are now
15
+ also being cloned as expected.
16
+
11
17
  ## [27.5.0] - 2025-04-22
12
18
 
13
19
  ### Added
@@ -28,7 +28,9 @@ module JayAPI
28
28
 
29
29
  # @return [self] A copy of the receiver.
30
30
  def clone
31
- self.class.new(name, size: size)
31
+ copy = self.class.new(name, size: size)
32
+ copy.aggregations = aggregations.clone
33
+ copy
32
34
  end
33
35
 
34
36
  # @return [Hash] The Hash representation of the +Aggregation+.
@@ -2,5 +2,5 @@
2
2
 
3
3
  module JayAPI
4
4
  # JayAPI gem's semantic version
5
- VERSION = '27.5.0'
5
+ VERSION = '27.5.1'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jay_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 27.5.0
4
+ version: 27.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Accenture-Industry X
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2025-04-22 00:00:00.000000000 Z
12
+ date: 2025-04-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport