Batch fetch projects api calls and updated changelog

This commit is contained in:
Julien Dessaux 2023-08-03 00:47:30 +02:00
parent c24cf0f443
commit aa825e5aae
Signed by: adyxax
GPG key ID: F92E51B86E07177E
2 changed files with 10 additions and 1 deletions

View file

@ -1,3 +1,12 @@
## 0.0.6 - 2023-08-03
### Features
* Add project datasource
### Notes
* Added identities and jobs datasources usage examples
* Batch FetchProjects api calls
## 0.0.5 - 2023-07-31
### Features

View file

@ -112,7 +112,7 @@ func (c *Client) SendRequest(method string, relURI *url.URL, body, dest interfac
func (c *Client) FetchProjects() (eventline.Projects, error) {
var projects eventline.Projects
cursor := eventline.Cursor{Size: 1}
cursor := eventline.Cursor{Size: 20}
for {
var page ProjectPage