algolia 3.0.0.beta.15 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aa356a7920a8c47434ef454abd4acbecfbe59d78f3674d831de62508befa5394
4
- data.tar.gz: 97ae7b4933e3502204cc99e47245d1a1867573f4c2fcc7f9a7255c5db5dfb8f7
3
+ metadata.gz: 7700a3f2ab4f77c826745c21fb2428a407116737c1a488ef9af5cb155163d59d
4
+ data.tar.gz: 9fcddcae163c98de150bb729d3bd8c2b7dc114172651a82cf75a1ff4badf8745
5
5
  SHA512:
6
- metadata.gz: b942ff296dc370086cb144b5cbfd282186b3603e09fb7f9c86788f2b6a2f373e1bb78a6ffe3d12063ae440e746264851a2afd1286cf372e9266418b4bc1e509c
7
- data.tar.gz: 151ab96c0f4f100a9bb90970e9440812999fc16e4c630ac8760941c40ece88d1b725d6fa1775fd7f2bd2687b027095899e5a78b4e0bebcbc40abd85851116b0f
6
+ metadata.gz: 8223f3033ef0b75848c1bea2d8e5b47bdd472e730ed842c172d511813292487a4f866d8159410369acf863f569fc4f1fbb52f611ad2ce208918e7c5d5631c3a2
7
+ data.tar.gz: 563dc0aaacdf45adcc0c890588fea0515adcd552d2c72391e984ed7ba4656f3f186638faca1c62fb4c177be2c4ac18704db4af9e4004bedbf86c6ac60fcb1125
data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## [3.0.0](https://github.com/algolia/algoliasearch-client-ruby/compare/3.0.0.beta.16...3.0.0)
2
+
3
+ New major version released! Browse [our documentation](https://www.algolia.com/doc/libraries/ruby)
4
+
5
+ - [22348001a](https://github.com/algolia/api-clients-automation/commit/22348001a) fix(specs): required ingestion search params ([#3516](https://github.com/algolia/api-clients-automation/pull/3516)) by [@shortcuts](https://github.com/shortcuts/)
6
+
7
+ ## [3.0.0.beta.16](https://github.com/algolia/algoliasearch-client-ruby/compare/3.0.0.beta.15...3.0.0.beta.16)
8
+
9
+ - [4c052002e](https://github.com/algolia/api-clients-automation/commit/4c052002e) feat(specs): recursive snippets and highlights result ([#3497](https://github.com/algolia/api-clients-automation/pull/3497)) by [@shortcuts](https://github.com/shortcuts/)
10
+
1
11
  ## [3.0.0.beta.15](https://github.com/algolia/algoliasearch-client-ruby/compare/3.0.0.beta.14...3.0.0.beta.15)
2
12
 
3
13
  - [7d2ab99ce](https://github.com/algolia/api-clients-automation/commit/7d2ab99ce) feat(specs): add authentications to ingestion transformations ([#3494](https://github.com/algolia/api-clients-automation/pull/3494)) by [@shortcuts](https://github.com/shortcuts/)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- algolia (3.0.0.beta.15)
4
+ algolia (3.0.0)
5
5
  base64 (>= 0.2.0, < 1)
6
6
  faraday (>= 1.0.1, < 3.0)
7
7
  faraday-net_http_persistent (>= 0.15, < 3)
@@ -61,6 +61,8 @@ module Algolia
61
61
  if (value = attributes[:transformation_ids]).is_a?(Array)
62
62
  self.transformation_ids = value
63
63
  end
64
+ else
65
+ self.transformation_ids = nil
64
66
  end
65
67
  end
66
68
 
@@ -11,6 +11,7 @@ module Algolia
11
11
  def openapi_one_of
12
12
  [
13
13
  :"Array<HighlightResultOption>",
14
+ :"Hash<String, HighlightResult>",
14
15
  :"Hash<String, HighlightResultOption>",
15
16
  :"HighlightResultOption"
16
17
  ]
@@ -11,6 +11,7 @@ module Algolia
11
11
  def openapi_one_of
12
12
  [
13
13
  :"Array<SnippetResultOption>",
14
+ :"Hash<String, SnippetResult>",
14
15
  :"Hash<String, SnippetResultOption>",
15
16
  :"SnippetResultOption"
16
17
  ]
@@ -11,6 +11,7 @@ module Algolia
11
11
  def openapi_one_of
12
12
  [
13
13
  :"Array<HighlightResultOption>",
14
+ :"Hash<String, HighlightResult>",
14
15
  :"Hash<String, HighlightResultOption>",
15
16
  :"HighlightResultOption"
16
17
  ]
@@ -11,6 +11,7 @@ module Algolia
11
11
  def openapi_one_of
12
12
  [
13
13
  :"Array<SnippetResultOption>",
14
+ :"Hash<String, SnippetResult>",
14
15
  :"Hash<String, SnippetResultOption>",
15
16
  :"SnippetResultOption"
16
17
  ]
@@ -1,5 +1,5 @@
1
1
  # Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
2
2
 
3
3
  module Algolia
4
- VERSION = "3.0.0.beta.15".freeze
4
+ VERSION = "3.0.0".freeze
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: algolia
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0.beta.15
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - https://alg.li/support
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-08 00:00:00.000000000 Z
11
+ date: 2024-08-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -701,9 +701,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
701
701
  version: '0'
702
702
  required_rubygems_version: !ruby/object:Gem::Requirement
703
703
  requirements:
704
- - - ">"
704
+ - - ">="
705
705
  - !ruby/object:Gem::Version
706
- version: 1.3.1
706
+ version: '0'
707
707
  requirements: []
708
708
  rubygems_version: 3.4.10
709
709
  signing_key: