typesense 1.1.0 → 2.0.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: 173e451d6ea840eb9dd625340b7f0350ae3e7343dacfff09584b3749116e7090
4
- data.tar.gz: c0fbeb2881f825e49ec507cea288482ed52d398d8bf81bbc45da699f1a5305cf
3
+ metadata.gz: 941ee507b1ee46cb3235f82ac93318de3dbc625f572620f8deadb679eea694d5
4
+ data.tar.gz: a0955db04b6a1396321b99d3f27d7493cef43061b18b9d39730e6e585933cc76
5
5
  SHA512:
6
- metadata.gz: 56d66cb6510b179d25e33ea7534bd4a75f299d9dd5e51392654d9e88d62850004b1a2c099e73aa8261deddb01f2a8cc8e77f9775fea532fce0acd922bd98716e
7
- data.tar.gz: b6f6ea0103b926619e56e5f9a4d44d06ee33fde3822c2c6e20029a2506d2d699d5f8c2c53ea0c620389f20f2dff6a27429aa003d1cd55d62b096a99e9ee1f965
6
+ metadata.gz: ea253619d869583cd9e6945c05a693eb74444fc0506d3526a1eceec3eecebc38850f6f79051489bd68dde242618f2a0c40835048738fc6fa89917b52b3437892
7
+ data.tar.gz: 441c80f4304b6944c888bd73ddccda5cb361af247fd01d545a8e663f909a131758e1611b3936337fca39e4c981d636a6c61e208c64bb37b4205018c7e2348867
@@ -18,7 +18,7 @@ module Typesense
18
18
  private
19
19
 
20
20
  def endpoint_path
21
- "#{Aliases::RESOURCE_PATH}/#{@name}"
21
+ "#{Aliases::RESOURCE_PATH}/#{ERB::Util.url_encode(@name)}"
22
22
  end
23
23
  end
24
24
  end
@@ -24,7 +24,7 @@ module Typesense
24
24
  private
25
25
 
26
26
  def endpoint_path(alias_name)
27
- "#{Aliases::RESOURCE_PATH}/#{alias_name}"
27
+ "#{Aliases::RESOURCE_PATH}/#{ERB::Util.url_encode(alias_name)}"
28
28
  end
29
29
  end
30
30
  end
@@ -18,7 +18,7 @@ module Typesense
18
18
  private
19
19
 
20
20
  def endpoint_path
21
- "#{AnalyticsRules::RESOURCE_PATH}/#{@rule_name}"
21
+ "#{AnalyticsRules::RESOURCE_PATH}/#{ERB::Util.url_encode(@rule_name)}"
22
22
  end
23
23
  end
24
24
  end
@@ -24,7 +24,7 @@ module Typesense
24
24
  private
25
25
 
26
26
  def endpoint_path(operation = nil)
27
- "#{AnalyticsRules::RESOURCE_PATH}#{operation.nil? ? '' : "/#{operation}"}"
27
+ "#{AnalyticsRules::RESOURCE_PATH}#{operation.nil? ? '' : "/#{ERB::Util.url_encode(operation)}"}"
28
28
  end
29
29
  end
30
30
  end
@@ -27,7 +27,7 @@ module Typesense
27
27
  private
28
28
 
29
29
  def endpoint_path
30
- "#{Collections::RESOURCE_PATH}/#{@name}"
30
+ "#{Collections::RESOURCE_PATH}/#{ERB::Util.url_encode(@name)}"
31
31
  end
32
32
  end
33
33
  end
@@ -23,7 +23,7 @@ module Typesense
23
23
  private
24
24
 
25
25
  def endpoint_path
26
- "#{Collections::RESOURCE_PATH}/#{@collection_name}#{Documents::RESOURCE_PATH}/#{@document_id}"
26
+ "#{Collections::RESOURCE_PATH}/#{ERB::Util.url_encode(@collection_name)}#{Documents::RESOURCE_PATH}/#{ERB::Util.url_encode(@document_id)}"
27
27
  end
28
28
  end
29
29
  end
@@ -75,7 +75,7 @@ module Typesense
75
75
  private
76
76
 
77
77
  def endpoint_path(operation = nil)
78
- "#{Collections::RESOURCE_PATH}/#{@collection_name}#{Documents::RESOURCE_PATH}#{operation.nil? ? '' : "/#{operation}"}"
78
+ "#{Collections::RESOURCE_PATH}/#{ERB::Util.url_encode(@collection_name)}#{Documents::RESOURCE_PATH}#{operation.nil? ? '' : "/#{operation}"}"
79
79
  end
80
80
  end
81
81
  end
data/lib/typesense/key.rb CHANGED
@@ -18,7 +18,7 @@ module Typesense
18
18
  private
19
19
 
20
20
  def endpoint_path
21
- "#{Keys::RESOURCE_PATH}/#{@id}"
21
+ "#{Keys::RESOURCE_PATH}/#{ERB::Util.url_encode(@id)}"
22
22
  end
23
23
  end
24
24
  end
@@ -19,7 +19,7 @@ module Typesense
19
19
  private
20
20
 
21
21
  def endpoint_path
22
- "#{Collections::RESOURCE_PATH}/#{@collection_name}#{Overrides::RESOURCE_PATH}/#{@override_id}"
22
+ "#{Collections::RESOURCE_PATH}/#{ERB::Util.url_encode(@collection_name)}#{Overrides::RESOURCE_PATH}/#{ERB::Util.url_encode(@override_id)}"
23
23
  end
24
24
  end
25
25
  end
@@ -25,7 +25,7 @@ module Typesense
25
25
  private
26
26
 
27
27
  def endpoint_path(operation = nil)
28
- "#{Collections::RESOURCE_PATH}/#{@collection_name}#{Overrides::RESOURCE_PATH}#{operation.nil? ? '' : "/#{operation}"}"
28
+ "#{Collections::RESOURCE_PATH}/#{ERB::Util.url_encode(@collection_name)}#{Overrides::RESOURCE_PATH}#{operation.nil? ? '' : "/#{ERB::Util.url_encode(operation)}"}"
29
29
  end
30
30
  end
31
31
  end
@@ -18,7 +18,7 @@ module Typesense
18
18
  private
19
19
 
20
20
  def endpoint_path
21
- "#{Presets::RESOURCE_PATH}/#{@preset_name}"
21
+ "#{Presets::RESOURCE_PATH}/#{ERB::Util.url_encode(@preset_name)}"
22
22
  end
23
23
  end
24
24
  end
@@ -24,7 +24,7 @@ module Typesense
24
24
  private
25
25
 
26
26
  def endpoint_path(operation = nil)
27
- "#{Presets::RESOURCE_PATH}#{operation.nil? ? '' : "/#{operation}"}"
27
+ "#{Presets::RESOURCE_PATH}#{operation.nil? ? '' : "/#{ERB::Util.url_encode(operation)}"}"
28
28
  end
29
29
  end
30
30
  end
@@ -19,7 +19,7 @@ module Typesense
19
19
  private
20
20
 
21
21
  def endpoint_path
22
- "#{Collections::RESOURCE_PATH}/#{@collection_name}#{Synonyms::RESOURCE_PATH}/#{@synonym_id}"
22
+ "#{Collections::RESOURCE_PATH}/#{ERB::Util.url_encode(@collection_name)}#{Synonyms::RESOURCE_PATH}/#{ERB::Util.url_encode(@synonym_id)}"
23
23
  end
24
24
  end
25
25
  end
@@ -25,7 +25,7 @@ module Typesense
25
25
  private
26
26
 
27
27
  def endpoint_path(operation = nil)
28
- "#{Collections::RESOURCE_PATH}/#{@collection_name}#{Synonyms::RESOURCE_PATH}#{operation.nil? ? '' : "/#{operation}"}"
28
+ "#{Collections::RESOURCE_PATH}/#{ERB::Util.url_encode(@collection_name)}#{Synonyms::RESOURCE_PATH}#{operation.nil? ? '' : "/#{ERB::Util.url_encode(operation)}"}"
29
29
  end
30
30
  end
31
31
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Typesense
4
- VERSION = '1.1.0'
4
+ VERSION = '2.0.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: typesense
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Typesense, Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-08-05 00:00:00.000000000 Z
11
+ date: 2024-09-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: oj