Skip to content

Commit 20a173b

Browse files
author
Thanh Nguyen
committed
release v0.1.8
1 parent e6cd906 commit 20a173b

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/workflows/gocosmos.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Test
3030
run: |
3131
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
3333
Start-Sleep -s 120
3434
try { Invoke-RestMethod -Method GET https://127.0.0.1:8081/ } catch {}
3535
netstat -nt

RELEASE-NOTES.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# gocosmos release notes
22

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+
310
## 2022-12-02 - v0.1.7
411

512
- REST client: fix a bug where function `QueryDocuments` does not return all documents if the query is cross-partition.

gocosmos.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ package gocosmos
33

44
const (
55
// Version of package gocosmos.
6-
Version = "0.1.7"
6+
Version = "0.1.8"
77
)

0 commit comments

Comments
 (0)