python-arango 8.2.3__py3-none-any.whl → 8.2.4__py3-none-any.whl

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.
arango/formatter.py CHANGED
@@ -116,6 +116,10 @@ def format_index(body: Json, formatter: bool = True) -> Json:
116
116
  if "optimizeTopK" in body:
117
117
  result["optimizeTopK"] = body["optimizeTopK"]
118
118
 
119
+ # Introduced via Vector Index in 3.12.6
120
+ if "params" in body:
121
+ result["params"] = body["params"]
122
+
119
123
  return verify_format(body, result)
120
124
 
121
125
 
@@ -899,6 +903,10 @@ def format_view_consolidation_policy(body: Json) -> Json:
899
903
  result["segments_bytes_floor"] = body["segmentsBytesFloor"]
900
904
  if "minScore" in body:
901
905
  result["min_score"] = body["minScore"]
906
+ if "maxSkewThreshold" in body:
907
+ result["max_skew_threshold"] = body["maxSkewThreshold"]
908
+ if "minDeletionRatio" in body:
909
+ result["min_deletion_ratio"] = body["minDeletionRatio"]
902
910
 
903
911
  return verify_format(body, result)
904
912
 
arango/request.py CHANGED
@@ -12,7 +12,7 @@ def normalize_headers(
12
12
  if driver_flags is not None:
13
13
  for flag in driver_flags:
14
14
  flags = flags + flag + ";"
15
- driver_version = "8.2.3"
15
+ driver_version = "8.2.4"
16
16
  driver_header = "python-arango/" + driver_version + " (" + flags + ")"
17
17
  normalized_headers: Headers = {
18
18
  "charset": "utf-8",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-arango
3
- Version: 8.2.3
3
+ Version: 8.2.4
4
4
  Summary: Python Driver for ArangoDB
5
5
  Author-email: Joohwan Oh <joohwan.oh@outlook.com>
6
6
  Maintainer-email: Joohwan Oh <joohwan.oh@outlook.com>, Alexandru Petenchea <alex.petenchea@gmail.com>, Anthony Mahanna <anthony.mahanna@arangodb.com>
@@ -11,7 +11,7 @@ arango/database.py,sha256=C26cYjr1sqinq9KYEoLB6bvk2sJuI5P2yjsM_lTEX8M,130179
11
11
  arango/errno.py,sha256=4oKY9IyyzjOitbywhjH8S214qeNtpDlQg7JsHENJNoU,25245
12
12
  arango/exceptions.py,sha256=h_CJbL5fKTGIlET7EXOJsHCVlky-X3NjC5eHAOlPjMo,25868
13
13
  arango/executor.py,sha256=ahez3ar-FLZLWv4pu1IYhAi_EdhbwsME82N_hkB1PSw,16000
14
- arango/formatter.py,sha256=VR_SqlBQa1QJ31Ft8k5PRE9q0ySk2CgFQojhltAyYSE,42210
14
+ arango/formatter.py,sha256=iEGYm_QVztLvxfav_n2JG0ChdAjmXWZQEDR3pb324VA,42520
15
15
  arango/foxx.py,sha256=JJrsfgWzGMqEobi3f_VGLYXEQrk2vsGJwfQeWTM6SGA,32737
16
16
  arango/graph.py,sha256=UPxiN0JgyzZGYc1aZZ1tiiOsz9fStInEGS6SySDaFW0,36282
17
17
  arango/http.py,sha256=36Us7VBcOcHH2kdWg8ZpPkD-4Po8U5ScQvR1MATGVr0,10215
@@ -19,15 +19,15 @@ arango/job.py,sha256=yLjlMVuSK5ibcyf3zAHozMzMXPSYk769A-VUfyNrY9c,7054
19
19
  arango/pregel.py,sha256=AqL8o8YaPYN_LkJiGhQTfXN_AzjGGoAr4nl-e5jus4A,5749
20
20
  arango/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
21
  arango/replication.py,sha256=r8kZJuJ186spTdU2x20P4ctoDELzMcexN5KuPTflNrg,33924
22
- arango/request.py,sha256=_KHS-Rllfssd5Wn8ehlAQvbDeJFp_bhLytkJIbKbgFs,4124
22
+ arango/request.py,sha256=o9t_FsBZEKuh6aust3sodtu59RtFr8qdEtzeC0gJi5g,4124
23
23
  arango/resolver.py,sha256=hhTJHzNKrg3KpzmKIa-eZSogUBwQuWAID5yfHJ9RYH8,4215
24
24
  arango/response.py,sha256=n55yXyrsUldOQV8FYUgX9PiVvTW-R9nVOyDUTcnsN1o,2164
25
25
  arango/result.py,sha256=nILp1HZCl06awosbDi1AL_LCDDXV0DEi1KBkywG6uoI,168
26
26
  arango/typings.py,sha256=G8BKOORxaVKSS3kaxHjVaXD0TIJkd1Cs8j2nuKwSKlQ,779
27
27
  arango/utils.py,sha256=PGUH06T4NXnr5-wGa13s4hAOpj_JcPwlFfbGiywueIY,4694
28
28
  arango/wal.py,sha256=aqt0ET7mP2FH9x4KHw15B4ZiEa0jYTyUdUs2rD2Zwmo,11207
29
- python_arango-8.2.3.dist-info/licenses/LICENSE,sha256=e86a4kkFfMBuoffCn4RLmQGC2LUqNs78i5npEsJ1b5I,1072
30
- python_arango-8.2.3.dist-info/METADATA,sha256=WCF6AmxKiWrnznibBhzZQXTqMDuHsEp0SeHwF4k7KTQ,8363
31
- python_arango-8.2.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
32
- python_arango-8.2.3.dist-info/top_level.txt,sha256=F8H1mznbOGduHSsSET9uiPd72kJ1fGbejiuzYMm9XqA,7
33
- python_arango-8.2.3.dist-info/RECORD,,
29
+ python_arango-8.2.4.dist-info/licenses/LICENSE,sha256=e86a4kkFfMBuoffCn4RLmQGC2LUqNs78i5npEsJ1b5I,1072
30
+ python_arango-8.2.4.dist-info/METADATA,sha256=ND83vFwDMMKZZmvXWTzzh-egPBvfV4Qk18-Z27BFe84,8363
31
+ python_arango-8.2.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
32
+ python_arango-8.2.4.dist-info/top_level.txt,sha256=F8H1mznbOGduHSsSET9uiPd72kJ1fGbejiuzYMm9XqA,7
33
+ python_arango-8.2.4.dist-info/RECORD,,