Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Commit 03317b2

Browse files
authored
Merge pull request #141 from microsoftgraph/chore/prepare_release
Update changelog
2 parents 326f623 + efeda69 commit 03317b2

File tree

2 files changed

+22
-3
lines changed

2 files changed

+22
-3
lines changed

CHANGELOG.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,23 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
10+
### Added
11+
12+
### Changed
13+
14+
## [0.1.0-preview.5] - 2022-06-10
915
### Added
1016
- Add item sub-command for indexer paths (paths with id). `GET /users/{user-id}` changes from `mgc users get --user-id` to `mgc users item get --user-id`
17+
- Add command samples.
18+
- Add automatic page iteration via the `--all` command option.
1119

1220
### Changed
13-
- Login command scopes are now optional
14-
- Fix issue with nullable boolean options
21+
- Login command scopes are now optional.
22+
- Fix issue with nullable boolean options.
23+
- Fix issue with incorrect OData parameter names.
24+
- Fix issue with docker container missing capabilities when running as a non-root user.
25+
- API requests now send an `Accept` header to the server. The value of the header is determined by the schema.
1526

1627
## [0.1.0-preview.4] - 2022-04-19
1728

samples/3-UsersAndGroups.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
## Microsoft Graph Users and Groups Snippets
22

3-
### List of Users
3+
### List of users (paged)
4+
5+
Get first page of users. If the `--top` command option is not provided, the page size is determined by the server.
46

57
```sh
68
mgc users list --select "id, displayName, OfficeLocation, BusinessPhones"
79
```
810

11+
### List of all users
12+
13+
```sh
14+
mgc users list --select "id, displayName, OfficeLocation, BusinessPhones" --all
15+
```
16+
917
### List users with count
1018

1119
```sh

0 commit comments

Comments
 (0)