Skip to content

Commit a0e9584

Browse files
committed
Adding release notes for 1.17.1
1 parent d96e814 commit a0e9584

File tree

2 files changed

+50
-0
lines changed

2 files changed

+50
-0
lines changed

docs/spfx/release-1.17.1.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
---
2+
title: SharePoint Framework v1.17.1 release notes
3+
description: Release notes for the SharePoint Framework v1.17.1 release
4+
ms.date: 04/12/2023
5+
ms.localizationpriority: high
6+
---
7+
# SharePoint Framework v1.17.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 adjustments which were in the previous [released 1.17 version](release-1.17.md).
10+
11+
> [!TIP]
12+
> 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.1, which has few minor improvements as listed below.
13+
14+
**Released:** April 12, 2023
15+
16+
[!INCLUDE [spfx-release-notes-common](../../includes/snippets/spfx-release-notes-common.md)]
17+
18+
## Install the latest version
19+
20+
Install the latest release of the SharePoint Framework (SPFx) by including the **@latest** tag:
21+
22+
```console
23+
npm install @microsoft/generator-sharepoint@next --global
24+
```
25+
26+
## Upgrading projects from v1.17 to v1.17.1
27+
28+
1. In the project's **package.json** file, identify all SPFx v1.17 packages. For each SPFx package:
29+
1. Uninstall the existing v1.17 package:
30+
31+
```console
32+
npm uninstall @microsoft/{spfx-package-name}@1.17
33+
```
34+
35+
2. Install the new v1.17.1 package:
36+
37+
```console
38+
npm install @microsoft/{spfx-package-name}@latest --save --save-exact
39+
```
40+
41+
[!INCLUDE [spfx-release-upgrade-tip](../../includes/snippets/spfx-release-upgrade-tip.md)]
42+
43+
## Fixed Issues
44+
45+
Here's a list of specific issues fixed around SharePoint Framework since the previous public release.
46+
47+
- `PopupEventArgs` is missing from the [public documentation](https://learn.microsoft.com/en-us/javascript/api/sp-http-base/popupeventargs?view=sp-typescript-latest)
48+
- [#8878](https://github.com/SharePoint/sp-dev-docs/issues/8878) - SPFx v1.17 - ACE - Default QuickView uses old Adaptive Card schema

docs/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -464,6 +464,8 @@
464464
items:
465465
- name: Overview
466466
href: spfx/roadmap.md
467+
- name: SPFx v1.17.1 - April 12, 2023
468+
href: spfx/release-1.17.1.md
467469
- name: SPFx v1.17 - April 4, 2023
468470
href: spfx/release-1.17.md
469471
- name: SPFx v1.16.1 - November 30, 2022

0 commit comments

Comments
 (0)