|
| 1 | +--- |
| 2 | +title: SharePoint Framework v1.17.3 release notes |
| 3 | +description: Release notes for the SharePoint Framework v1.17.3 release |
| 4 | +ms.date: 05/09/2023 |
| 5 | +ms.localizationpriority: high |
| 6 | +--- |
| 7 | +# SharePoint Framework v1.17.2 release notes |
| 8 | + |
| 9 | +This release is a _minor bump_ that fixes the issues around SharePoint Framework solution packaging as listed further down in this document. |
| 10 | + |
| 11 | +We're looking into release more frequent smaller release to be available also in future to address new findings or to address any other known issues, which have been fixed. |
| 12 | + |
| 13 | +> [!TIP] |
| 14 | +> It's safe to keep on using SharePoint Framework 1.17 version, but we do recommend using always the latest version in the production, which in this case would be the 1.17.3, which has few minor improvements as listed in this document. |
| 15 | +
|
| 16 | +**Released:** May 31, 2023 |
| 17 | + |
| 18 | +[!INCLUDE [spfx-release-notes-common](../../includes/snippets/spfx-release-notes-common.md)] |
| 19 | + |
| 20 | +## Install the latest version |
| 21 | + |
| 22 | +Install the latest release of the SharePoint Framework (SPFx) by including the **@latest** tag: |
| 23 | + |
| 24 | +```console |
| 25 | +npm install @microsoft/generator-sharepoint@latest --global |
| 26 | +``` |
| 27 | + |
| 28 | +## Upgrading projects from v1.17 to v1.17.3 |
| 29 | + |
| 30 | +1. In the project's **package.json** file, identify all SPFx v1.17 packages. For each SPFx package: |
| 31 | + 1. Uninstall the existing v1.17 package: |
| 32 | + |
| 33 | + ```console |
| 34 | + npm uninstall @microsoft/{spfx-package-name}@1.17 |
| 35 | + ``` |
| 36 | + |
| 37 | + 1. Install the new v1.17.3 package: |
| 38 | + |
| 39 | + ```console |
| 40 | + npm install @microsoft/{spfx-package-name}@latest --save --save-exact |
| 41 | + ``` |
| 42 | + |
| 43 | +[!INCLUDE [spfx-release-upgrade-tip](../../includes/snippets/spfx-release-upgrade-tip.md)] |
| 44 | + |
| 45 | +## Fixed Issues |
| 46 | + |
| 47 | +Here's a list of specific issues fixed around SharePoint Framework since the previous public release. |
| 48 | + |
| 49 | +- `@fluentui/react` package is referenced both as `dependecy` and `devDependency` in the generated `package.json` file for React Web Part |
| 50 | +- [#8966](https://github.com/SharePoint/sp-dev-docs/issues/8966) - Web part missing,Vanishes 1.17/1.17.1/1.17.2 |
| 51 | +- [#8953](https://github.com/SharePoint/sp-dev-docs/issues/8953) - Lint error occurred with "@typescript-eslint/no-extra-semi" |
0 commit comments