Skip to content

Commit ba1411e

Browse files
committed
Including 1.17.3 release notes
1 parent 941a14b commit ba1411e

File tree

3 files changed

+55
-2
lines changed

3 files changed

+55
-2
lines changed

docs/spfx/release-1.17.2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: SharePoint Framework v1.17.12 release notes
2+
title: SharePoint Framework v1.17.2 release notes
33
description: Release notes for the SharePoint Framework v1.17.2 release
44
ms.date: 05/09/2023
55
ms.localizationpriority: high
@@ -25,7 +25,7 @@ Install the latest release of the SharePoint Framework (SPFx) by including the *
2525
npm install @microsoft/generator-sharepoint@latest --global
2626
```
2727

28-
## Upgrading projects from v1.17 to v1.17.1
28+
## Upgrading projects from v1.17 to v1.17.2
2929

3030
1. In the project's **package.json** file, identify all SPFx v1.17 packages. For each SPFx package:
3131
1. Uninstall the existing v1.17 package:

docs/spfx/release-1.17.3.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
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"

docs/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -466,6 +466,8 @@
466466
items:
467467
- name: Overview
468468
href: spfx/roadmap.md
469+
- name: SPFx v1.17.3 - May 31, 2023
470+
href: spfx/release-1.17.3.md
469471
- name: SPFx v1.17.2 - May 9, 2023
470472
href: spfx/release-1.17.2.md
471473
- name: SPFx v1.17.1 - April 12, 2023

0 commit comments

Comments
 (0)