Skip to content

Commit

Permalink
Merge branch 'pnp:main' into team-user-app-remove
Browse files Browse the repository at this point in the history
  • Loading branch information
reshmee011 authored Oct 9, 2023
2 parents 5094b7c + 8b56e1d commit 5cdf5ff
Show file tree
Hide file tree
Showing 520 changed files with 20,561 additions and 9,928 deletions.
1 change: 0 additions & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ LABEL name="CLI for Microsoft 365 Development" \
maintainers="Waldek Mastykarz <[email protected]>, \
Garry Trinder <[email protected]>, \
Albert-Jan Schot <[email protected]>, \
Rabia Williams <[email protected]>, \
Patrick Lamber <[email protected]>, \
Arjun Menon <[email protected]>, \
Adam Wojcik <[email protected]>, \
Expand Down
1 change: 1 addition & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ module.exports = {
"rules": {
"cli-microsoft365/correct-command-class-name": ["error", sortedDictionary, capitalized],
"cli-microsoft365/correct-command-name": "error",
"cli-microsoft365/no-by-server-relative-url-usage": "error",
"indent": "off",
"@typescript-eslint/indent": [
"error",
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/check_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,6 @@ jobs:
# node versions on which code was built and should be tested
nodeBuild: [18]
include:
- os: ubuntu-latest
nodeRun: 16
nodeBuild: 18
- os: ubuntu-latest
nodeRun: 20
nodeBuild: 18
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/release_next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,6 @@ jobs:
# node versions on which code was built and should be tested
nodeBuild: [18]
include:
- os: ubuntu-latest
nodeRun: 16
nodeBuild: 18
- os: ubuntu-latest
nodeRun: 20
nodeBuild: 18
Expand Down
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ LABEL name="m365pnp/cli-microsoft365:${CLI_VERSION}" \
maintainers="Waldek Mastykarz <[email protected]>, \
Garry Trinder <[email protected]>, \
Albert-Jan Schot <[email protected]>, \
Rabia Williams <[email protected]>, \
Patrick Lamber <[email protected]>, \
Arjun Menon <[email protected]>, \
Adam Wojcik <[email protected]>, \
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
alt="Discord" />
</a>

<a href="https://twitter.com/climicrosoft365">
<img src="https://img.shields.io/badge/Twitter-%40climicrosoft365-blue?style=flat-square"
alt="Twitter" />
<a href="https://x.com/climicrosoft365">
<img src="https://img.shields.io/badge/X-%40climicrosoft365-blue?style=flat-square"
alt="X" />
</a>
</p>

Expand Down Expand Up @@ -101,7 +101,7 @@
- Upgrade your projects
- Check your environment compatibility

> Follow our [Twitter](https://twitter.com/climicrosoft365) account to keep yourself updated about new features, improvements, and bug fixes.
> Follow our [X](https://x.com/climicrosoft365) account to keep yourself updated about new features, improvements, and bug fixes.
## Install

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/_clisettings.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ Setting name|Definition|Default value
`helpMode`|Defines what part of command's help to display. Allowed values are `options`, `examples`, `remarks`, `response`, `full`|`options`
`output`|Defines the default output when issuing a command. Allowed values are `json`, `text`, `csv`, `md`, `none`|`json`
`printErrorsAsPlainText`|When output mode is set to `json`, print error messages as plain-text rather than JSON|`true`
`prompt`|Prompts for missing values in required options and enables interactive selection when multiple values are available for a command that requires a specific value to be retrieved.|`false`
`prompt`|Prompts for missing values in required options and enables interactive selection when multiple values are available for a command that requires a specific value to be retrieved.|`true`
`showHelpOnFailure`|Automatically display help when executing a command failed|`true`
`showSpinner`|Display spinner when executing commands|`true`
65 changes: 62 additions & 3 deletions docs/docs/about/release-notes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,30 @@ sidebar_position: 4

# Release notes

## [v7.0.0 (beta)](https://github.com/pnp/cli-microsoft365/releases/tag/v7.0.0)
## v7.1.0 (beta)

### Changes

- added new eslint rule: Prevent usage of 'ByServerRelativeUrl' endpoint [#5333](https://github.com/pnp/cli-microsoft365/issues/5333)

## [v7.0.0](https://github.com/pnp/cli-microsoft365/releases/tag/v7.0.0)

### New commands

**Azure Active Directory:**

- [aad group remove](../cmd/aad/group/group-remove.mdx) - removes an Azure AD group [#5426](https://github.com/pnp/cli-microsoft365/issues/5426)

**SharePoint:**

- [spo listitem attachment add](../cmd/spo/listitem/listitem-attachment-add.mdx) - adds an attachment to a list item [#5219](https://github.com/pnp/cli-microsoft365/issues/5219)
- [spo listitem attachment get](../cmd/spo/listitem/listitem-attachment-get.mdx) - gets an attachment from a list item [#5221](https://github.com/pnp/cli-microsoft365/issues/5221)
- [spo listitem attachment remove](../cmd/spo/listitem/listitem-attachment-remove.mdx) - removes an attachment from a list item [#5220](https://github.com/pnp/cli-microsoft365/issues/5220)
- [spo listitem attachment set](../cmd/spo/listitem/listitem-attachment-set.mdx) - updates an attachment from a list item [#5222](https://github.com/pnp/cli-microsoft365/issues/5222)

**Tenant:**

- [tenant info get](../cmd/tenant/info/info-get.mdx) - gets information about any tenant [#5389](https://github.com/pnp/cli-microsoft365/issues/5389)

### Changes

Expand All @@ -16,8 +39,8 @@ sidebar_position: 4
- removed 'deleted' option from 'aad user list' command [#4516](https://github.com/pnp/cli-microsoft365/issues/4516)
- extended 'spo tenant commandset set' with get options 'id', 'title' or 'clientSideComponentId' [#4961](https://github.com/pnp/cli-microsoft365/issues/4961)
- updated command output of few 'flow' commands [#4444](https://github.com/pnp/cli-microsoft365/issues/4444)
- migrated CLI to esm [#4306](https://github.com/pnp/cli-microsoft365/issues/4306)
- migrated scripts to esm
- migrated CLI to ESM [#4306](https://github.com/pnp/cli-microsoft365/issues/4306)
- migrated scripts to ESM
- updated 'spo tenant applicationcustomizer get' command [#4872](https://github.com/pnp/cli-microsoft365/issues/4872)
- updated default help mode to 'options' [#5182](https://github.com/pnp/cli-microsoft365/issues/5182)
- removed deprecated options from 'spo retentionlabel ensure' [#4207](https://github.com/pnp/cli-microsoft365/issues/4207)
Expand All @@ -32,6 +55,42 @@ sidebar_position: 4
- fixed spinner when logging verbose messages [#5378](https://github.com/pnp/cli-microsoft365/issues/5378)
- removed pa pcf commands [#5391](https://github.com/pnp/cli-microsoft365/issues/5391)
- removed `--deleted` option from `spo site list` [#5392](https://github.com/pnp/cli-microsoft365/issues/5392)
- removed `--deleted` option from `aad group list` [#5429](https://github.com/pnp/cli-microsoft365/issues/5429)
- aligned option name for `aad group get` [#5425](https://github.com/pnp/cli-microsoft365/issues/5425)
- updated documentation to use ESM [#5416](https://github.com/pnp/cli-microsoft365/issues/5416)
- fixed response of command `spo site list` [#5461](https://github.com/pnp/cli-microsoft365/issues/5461)
- aligned option names for command `pa app export` [#5368](https://github.com/pnp/cli-microsoft365/issues/5368)
- removed duplicate ID property from SharePoint list item responses [#5463](https://github.com/pnp/cli-microsoft365/issues/5463)
- refactored to async/await - util constants [#5144](https://github.com/pnp/cli-microsoft365/issues/5144)
- updated 'teams team list' command [#5377](https://github.com/pnp/cli-microsoft365/issues/5377)
- renamed Twitter to X [#5415](https://github.com/pnp/cli-microsoft365/pull/5415)
- fixed 'aad m365group add' resourceBehaviorOptions [#5408](https://github.com/pnp/cli-microsoft365/issues/5408)
- added support for upgrading SPFx projects to v1.18.0-rc.1. [#5453](https://github.com/pnp/cli-microsoft365/issues/5453)
- fixed dark theme syntax highlighting [#5468](https://github.com/pnp/cli-microsoft365/issues/5468)
- enhanced 'spo page section add' with vertical section templates and zoneEmphasis [#1759](https://github.com/pnp/cli-microsoft365/issues/1759)
- fixed redundant white spaces in docs [#5418](https://github.com/pnp/cli-microsoft365/issues/5418)
- fixed 'teams team clone' command [#5451](https://github.com/pnp/cli-microsoft365/issues/5451)
- added support for interactive mode for disambiguation prompts [#5053](https://github.com/pnp/cli-microsoft365/issues/5053)
- fixed planner options to be parsed as string [#5177](https://github.com/pnp/cli-microsoft365/issues/5177)
- renamed few options to plural that accept more than 1 value [#4522](https://github.com/pnp/cli-microsoft365/issues/4522)
- updated version metadata of sample scripts [#5440](https://github.com/pnp/cli-microsoft365/issues/5440)
- extended 'spfx project upgrade' with support for 1.18.0 [#5493](https://github.com/pnp/cli-microsoft365/issues/5493)
- extended 'spfx doctor' with support for 1.18.0 [#5493](https://github.com/pnp/cli-microsoft365/issues/5493)
- extended 'spfx project doctor' with support for 1.18.0 [#5493](https://github.com/pnp/cli-microsoft365/issues/5493)
- adds visibility option to 'aad m365group add' command. [#5477](https://github.com/pnp/cli-microsoft365/issues/5477)
- aligns short option for multiple commands. [#5478](https://github.com/pnp/cli-microsoft365/issues/5478)
- adds user-friendly option values for 'spo site commsite enable'. [#5199](https://github.com/pnp/cli-microsoft365/issues/5199)
- enhances 'spo page set' command [#4840](https://github.com/pnp/cli-microsoft365/issues/4840)
- adds name option to 'teams app remove'. [#5445](https://github.com/pnp/cli-microsoft365/issues/5445)
- fixed 'spfx project upgrade' for v1.18.0. [#5500](https://github.com/pnp/cli-microsoft365/issues/5500)
- fixed docs build
- updated show login message using spinner. [#5484](https://github.com/pnp/cli-microsoft365/issues/5484)
- fixed 'planner task list' command without options. [#5503](https://github.com/pnp/cli-microsoft365/issues/5503)
- added interactive mode as default [#5181](https://github.com/pnp/cli-microsoft365/issues/5181)
- updated aad m365group command only works for m365 groups [#5438](https://github.com/pnp/cli-microsoft365/issues/5438)
- removed Node 16 workflow
- aligned options and documentation power platform. [#5411](https://github.com/pnp/cli-microsoft365/issues/5411)
- renamed option for 'spo user get'. [#5515](https://github.com/pnp/cli-microsoft365/issues/5515)

## [v6.11.0](https://github.com/pnp/cli-microsoft365/releases/tag/v6.11.0)

Expand Down
Loading

0 comments on commit 5cdf5ff

Please sign in to comment.