File tree 3 files changed +9
-2
lines changed
3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 29
29
- name : Test
30
30
run : |
31
31
choco install azure-cosmosdb-emulator
32
- & "C:\Program Files\Azure Cosmos DB Emulator\Microsoft.Azure.Cosmos.Emulator.exe"
32
+ & "C:\Program Files\Azure Cosmos DB Emulator\Microsoft.Azure.Cosmos.Emulator.exe" /DisableRateLimiting /NoUI /NoExplorer
33
33
Start-Sleep -s 120
34
34
try { Invoke-RestMethod -Method GET https://127.0.0.1:8081/ } catch {}
35
35
netstat -nt
Original file line number Diff line number Diff line change 1
1
# gocosmos release notes
2
2
3
+ ## 2022-12-02 - v0.1.8
4
+
5
+ - REST client: rewrite ` RestClient.QueryDocuments ` . TODO:
6
+ - [x] (v0.1.7+) simple cross-partition queries (+paging)
7
+ - [ -] cross-partition queries with ordering (+paging) / partial supported if number of pkrange == 1
8
+ - [ -] cross-partition queries with group-by (+paging) / partial supported if number of pkrange == 1
9
+
3
10
## 2022-12-02 - v0.1.7
4
11
5
12
- REST client: fix a bug where function ` QueryDocuments ` does not return all documents if the query is cross-partition.
Original file line number Diff line number Diff line change @@ -3,5 +3,5 @@ package gocosmos
3
3
4
4
const (
5
5
// Version of package gocosmos.
6
- Version = "0.1.7 "
6
+ Version = "0.1.8 "
7
7
)
You can’t perform that action at this time.
0 commit comments