Skip to content

Commit ba3311c

Browse files
committed
1.22.1 release notes
1 parent 8f24d51 commit ba3311c

File tree

2 files changed

+50
-0
lines changed

2 files changed

+50
-0
lines changed

docs/spfx/release-1.22.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.22.1 release notes
3+
description: Release notes for the SharePoint Framework v1.22.1 release
4+
ms.date: 12/15/2025
5+
ms.localizationpriority: high
6+
---
7+
# SharePoint Framework v1.22.1 release notes
8+
9+
This is a _minor bump_ that fixes an issue where the a full screen error overlay was being displayed for runtime errors unrelated to third-party code.
10+
11+
> [!TIP]
12+
> It's safe to keep on using SharePoint Framework 1.22 version, but we do recommend using always the latest version in the production, which in this case would be the 1.22.1, which has fix on the reported GitHub issues as listed below.
13+
14+
**Released:** December 15, 2025
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.22 to v1.22.1
27+
28+
In the project's **package.json** file, identify all SPFx v1.22 packages. For each SPFx package:
29+
30+
1. Uninstall the existing v1.22 package:
31+
32+
```console
33+
npm uninstall @microsoft/{spfx-package-name}@1.22
34+
```
35+
36+
1. Install the new v1.22.1 package:
37+
38+
```console
39+
npm install @microsoft/{spfx-package-name}@latest --save --save-exact
40+
```
41+
42+
[!INCLUDE [spfx-release-upgrade-tip](../../includes/snippets/spfx-release-upgrade-tip.md)]
43+
44+
## Fixed Issues
45+
46+
Here's a list of specific issues fixed around SharePoint Framework since the previous public release.
47+
48+
- [#10525](https://github.com/SharePoint/sp-dev-docs/issues/10525) - [SPFx 1.22.0] - Uncaught runtime errors

docs/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,8 @@
496496
items:
497497
- name: Overview
498498
href: spfx/roadmap.md
499+
- name: SPFx v1.22.1 - December 15, 2025
500+
href: spfx/release-1.22.1.md
499501
- name: SPFx v1.22 - December 10, 2025
500502
href: spfx/release-1.22.md
501503
- name: SPFx v1.21.1 - May 3, 2025

0 commit comments

Comments
 (0)