Skip to content

Commit 7246137

Browse files
committed
SPFx v1.17 beta 3 release notes update
1 parent edb0b6c commit 7246137

File tree

2 files changed

+45
-2
lines changed

2 files changed

+45
-2
lines changed

docs/spfx/release-1.17.md

Lines changed: 44 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: SharePoint Framework v1.17 preview release notes
33
description: Release notes for the SharePoint Framework v1.17 preview release
4-
ms.date: 03/08/2023
4+
ms.date: 03/21/2023
55
ms.localizationpriority: high
66
---
77
# SharePoint Framework v1.17 preview release notes
@@ -10,6 +10,7 @@ This release introduces updates across the features around Microsoft Viva, Micro
1010

1111
[!INCLUDE [spfx-release-beta](../../includes/snippets/spfx-release-beta.md)]
1212

13+
- beta.3 **Released:** March 21, 2023
1314
- beta.1 **Released:** February 23, 2023
1415

1516
[!INCLUDE [spfx-release-notes-common](../../includes/snippets/spfx-release-notes-common.md)]
@@ -41,6 +42,45 @@ npm install @microsoft/generator-sharepoint@next --global
4142

4243
## New features and capabilities
4344

45+
### Teams JS SDK v2.9.1 support
46+
47+
[Microsoft Teams JS SDK](https://learn.microsoft.com/en-us/javascript/api/overview/msteams-client?view=msteams-client-js-latest&tabs=npm) was bumped to v2.9.1 to support new API, such as `LiveShare`.
48+
49+
### Support for Microsoft Teams Manifest v1.16 in Sync to Teams
50+
51+
"Sync to Teams" operation in SharePoint App Catalog now supports Teams Manifest v1.16. This means that any SPFx solution which is sync'd to Microsoft Teams is served served automatically across Microsoft 365 (Microsoft Teams, Outlook, Microsoft 365 app).
52+
53+
### Ability to use SPFX_SERVE_TENANT_DOMAIN OS environment variable for serve configurations
54+
55+
Developers can use the `SPFX_SERVE_TENANT_DOMAIN` OS environment variable to specify the tenant ___domain (or site URL) for serve configurations across different SPFx solutions. If a URL in the serve configuration (for example, `pageUrl` for Field Customizer) contains the `{tenantDomain}` placeholder, it will be automatically replaced with the variable's value.
56+
57+
### Top Actions-specific types
58+
59+
In previous versions Web Parts Top Actions' configuration was based on proxied Property Pane types. It led to some issues and confusion as not all the properties worked or were supported.
60+
61+
In this version we introduce Top Actions-specific types to avoid confusion and make the configuration more clear.
62+
63+
### onBeforeAction handler for Adaptive Card Extesions
64+
65+
`onBeforeAction` handler is added to `BaseAdaptiveCardExtension` class to allow developers to run custom code before the action is executed.
66+
67+
```typescript
68+
/** @virtual */
69+
onBeforeAction(action: IOnBeforeActionArguments): void;
70+
```
71+
72+
> [!NOTE]
73+
> This method is not intended to be used to cancel the action or to change the flow. We do not recommend changing the state or the action argument.
74+
75+
### Ability to specify initial focus element in an Adaptive Card Extension Quick View
76+
77+
New `focusParameters` virtual property allows to set focus when the view is rendered for accessibility purposes. If not overriden, the focus element defaulted to the first actionable element of the quick view.
78+
79+
```typescript
80+
/** @virtual */
81+
get focusParameters(): IFocusParameters | undefined;
82+
```
83+
4484
### Support for SharePoint Pages 'iframing' in Teams applications
4585

4686
Developers can specify `supportsSelfFramingInTeams` flag in a web part's manifest if the scenario requires the web part to render SharePoint page in an `<iframe>`.
@@ -91,6 +131,9 @@ interface IPropertyPaneLinkProps {
91131

92132
Here's a list of specific issues fixed around SharePoint Framework since the previous public release.
93133

134+
### February-March Timeframe
135+
- [#8705](https://github.com/SharePoint/sp-dev-docs/issues/8705) - LiveShare SDK does not work in SPFx web part
136+
94137
### December-February Time Frame
95138

96139
- [#8623](https://github.com/SharePoint/sp-dev-docs/issues/8623) - 1.16.1 Issue: Cannot find manifest for f9e737b7-f0df-4597-ba8c-3060f82380db_1.16.1. Store had [1.16.0]. Service worker version: (none),DurableN1=true

docs/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@
462462
items:
463463
- name: Overview
464464
href: spfx/roadmap.md
465-
- name: SPFx v1.17 - February 23, 2023
465+
- name: SPFx v1.17 - March 21, 2023
466466
href: spfx/release-1.17.md
467467
- name: SPFx v1.16.1 - November 30, 2022
468468
href: spfx/release-1.16.1.md

0 commit comments

Comments
 (0)