Skip to content

Commit

Permalink
release v0.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Thanh Nguyen committed Dec 5, 2022
1 parent e6cd906 commit 20a173b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gocosmos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Test
run: |
choco install azure-cosmosdb-emulator
& "C:\Program Files\Azure Cosmos DB Emulator\Microsoft.Azure.Cosmos.Emulator.exe"
& "C:\Program Files\Azure Cosmos DB Emulator\Microsoft.Azure.Cosmos.Emulator.exe" /DisableRateLimiting /NoUI /NoExplorer
Start-Sleep -s 120
try { Invoke-RestMethod -Method GET https://127.0.0.1:8081/ } catch {}
netstat -nt
Expand Down
7 changes: 7 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# gocosmos release notes

## 2022-12-02 - v0.1.8

- REST client: rewrite `RestClient.QueryDocuments`. TODO:
- [x] (v0.1.7+) simple cross-partition queries (+paging)
- [-] cross-partition queries with ordering (+paging) / partial supported if number of pkrange == 1
- [-] cross-partition queries with group-by (+paging) / partial supported if number of pkrange == 1

## 2022-12-02 - v0.1.7

- REST client: fix a bug where function `QueryDocuments` does not return all documents if the query is cross-partition.
Expand Down
2 changes: 1 addition & 1 deletion gocosmos.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ package gocosmos

const (
// Version of package gocosmos.
Version = "0.1.7"
Version = "0.1.8"
)

0 comments on commit 20a173b

Please sign in to comment.