|
| 1 | +--- |
| 2 | +title: SharePoint Framework v1.16.1 release notes |
| 3 | +description: Release notes for the SharePoint Framework v1.16.1 release |
| 4 | +ms.date: 11/30/2022 |
| 5 | +ms.localizationpriority: high |
| 6 | +--- |
| 7 | +# SharePoint Framework v1.16.1 release notes |
| 8 | + |
| 9 | +This is a _minor bump_ that fixes the issues around SharePoint Framework solution packaging, provides improved default scaffolding and few other minor regressions which were in the previously [released 1.16 version](release-1.16.md). |
| 10 | + |
| 11 | +**Released:** November 30, 2022 |
| 12 | + |
| 13 | +[!INCLUDE [spfx-release-notes-common](../../includes/snippets/spfx-release-notes-common.md)] |
| 14 | + |
| 15 | +## Install the latest version |
| 16 | + |
| 17 | +Install the latest release of the SharePoint Framework (SPFx) by including the **@latest** tag: |
| 18 | + |
| 19 | +```console |
| 20 | +npm install @microsoft/generator-sharepoint@next --global |
| 21 | +``` |
| 22 | + |
| 23 | +## Upgrading projects from v1.16 to v1.16.1 |
| 24 | + |
| 25 | +1. In the project's **package.json** file, identify all SPFx v1.16 packages. For each SPFx package: |
| 26 | + 1. Uninstall the existing v1.16 package: |
| 27 | + |
| 28 | + ```console |
| 29 | + npm uninstall @microsoft/{spfx-package-name}@1.16 |
| 30 | + ``` |
| 31 | + |
| 32 | + 2. Install the new v1.16 package: |
| 33 | + |
| 34 | + ```console |
| 35 | + npm install @microsoft/{spfx-package-name}@latest --save --save-exact |
| 36 | + ``` |
| 37 | + |
| 38 | +[!INCLUDE [spfx-release-upgrade-tip](../../includes/snippets/spfx-release-upgrade-tip.md)] |
| 39 | + |
| 40 | +## New features and capabilities |
| 41 | + |
| 42 | +### Promoting `config/sass.json` file |
| 43 | + |
| 44 | +Starting with this version, there will be a `config/sass.json` file in all scaffolded solutions. Developers can use this file to customize or adjust the SASS task used by SPFx build routing to process SASS files. This file is not required and can be removed if not needed. |
| 45 | + |
| 46 | +## Fixed Issues |
| 47 | + |
| 48 | +Here's a list of specific issues fixed around SharePoint Framework since the previous public release. |
| 49 | + |
| 50 | +- [#8599](https://github.com/SharePoint/sp-dev-docs/issues/8599) - SPFx 1.16.0 webpart final package size is almost 4x larger compared to 1.15.2 |
| 51 | +- [#8549](https://github.com/SharePoint/sp-dev-docs/issues/8549) - webpart in viva connection unexpected link behaviour issue |
| 52 | +- [#8550](https://github.com/SharePoint/sp-dev-docs/issues/8550) - SPFx application customizer no longer works on modern Site Contents page |
| 53 | +- [#8489](https://github.com/SharePoint/sp-dev-docs/issues/8489) - SPFx Web Part Dependencies not loaded correctly any more (relative-path.invalid Network Error) |
| 54 | +- [#8458](https://github.com/SharePoint/sp-dev-docs/issues/8458) - SharePointFullPage loses expand button for users without edit permissions |
0 commit comments