Skip to content

Commit 6110288

Browse files
committed
Adding release notes for the 1.18.1 preview
1 parent 136bf89 commit 6110288

File tree

3 files changed

+84
-2
lines changed

3 files changed

+84
-2
lines changed

docs/spfx/release-1.18.1.md

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
---
2+
title: SharePoint Framework v1.18.1 preview release notes
3+
description: Release notes for the SharePoint Framework v1.18.1 preview release
4+
ms.date: 10/10/2023
5+
ms.localizationpriority: high
6+
---
7+
# SharePoint Framework v1.18.1 preview release notes
8+
9+
This is a _minor release_ that introduces new properly targeting Adaptive Card Extensions for better mobile experience.
10+
11+
[!INCLUDE [spfx-release-beta](../../includes/snippets/spfx-release-beta.md)]
12+
13+
- beta.0 **Released**: October 10, 2023
14+
15+
[!INCLUDE [spfx-release-notes-common](../../includes/snippets/spfx-release-notes-common.md)]
16+
17+
## Install the latest version
18+
19+
Install the latest release of the SharePoint Framework (SPFx) by including the **@latest** tag:
20+
21+
```console
22+
npm install @microsoft/generator-sharepoint@next --global
23+
```
24+
25+
## Upgrading projects from v1.18 to v1.18.1
26+
27+
In the project's **package.json** file, identify all SPFx packages. For each SPFx package:
28+
29+
1. Uninstall the existing packages:
30+
31+
```console
32+
npm uninstall @microsoft/{spfx-package-name}
33+
```
34+
35+
2. Install the new v1.18.1 package:
36+
37+
```console
38+
npm install @microsoft/{spfx-package-name}@next --save --save-exact
39+
```
40+
41+
[!INCLUDE [spfx-release-upgrade-tip](../../includes/snippets/spfx-release-upgrade-tip.md)]
42+
43+
## New features and capabilities
44+
45+
### Partial Support for Teams JS SDK in Adaptive Card Extensions (Mobile only)
46+
47+
Developers can access **partial** Teams JS SDK in Adaptive Card Extensions via ACE's context (in the same way as in web parts).
48+
49+
```typescript
50+
class AdaptiveCardExtensionContext {
51+
// ...
52+
public sdks: IPartialSDKs | undefined;cx
53+
}
54+
55+
// Accessing the theme details using context
56+
this.setState({
57+
theme: context.app.appInfo.theme
58+
});
59+
//...
60+
```
61+
62+
> [!NOTE]
63+
> Currently availability of this SDK is limited to Viva Connections Mobile only. We are working on introducing the support for this feature also for deskot and web site in future releases.
64+
65+
> [!NOTE]
66+
> Currently we only provide access to the `theme` property of the `appInfo` object of the Teams' context for Adaptive Card Extensions.
67+
68+
See more details on the use cases with code samples from the following updated documentation
69+
70+
* [Making Quick View compatible with dark mode in mobile devices](./viva/get-started/making-quickview-compatable-darkmode-mobile.md)
71+
* [Quick view design guidance](./viva/design/designing-quick-view.md)
72+
73+
## Summary
74+
75+
Version 1.18.1 is expected to be a small release with the limited new capabilities. If you find any issues or have other feedback on the provided capabilities, report them at the [SPFx issue list](https://aka.ms/spfx/issues). Thank you for your input advance.

docs/spfx/roadmap.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: SharePoint Framework roadmap
33
description: Key modern customization capabilities released after General Availability.
4-
ms.date: 03/01/2022
4+
ms.date: 10/10/2023
55
ms.localizationpriority: high
66
---
77

@@ -55,13 +55,18 @@ Refer to the table of contents menu for details on each of the SharePoint Framew
5555
- Store acquisition - target SPFx solutions directly to Microsoft Teams store
5656
- Teams store support for partner SPFx solutions
5757

58+
- Microsoft Viva Connections improvements
59+
- New card shapes
60+
- More flexibiliy with the quick view
61+
5862
- Store improvements
5963
- Modernize Store app catalog and store UX
6064
- Modernize end-to-end acquisition process for store solutions
65+
6166
- Improved communications
6267
- More transparency also on server-side improvements
6368
- More visibility on the issue resolution
6469
- Quality improvements
6570

6671
> [!NOTE]
67-
> The current state of the SharePoint Framework is reviewed near the beginning of the bi-weekly [SPFx & JavaScript Special Interest Group (SIG) community call](https://pnp.github.io/#community). Previous SPFx & JavaScript SIG meeting recordings can be found on the [Microsoft 365 YouTube Channel's playlist: SharePoint Framework & JavaScript SIG Meetings](https://www.youtube.com/playlist?list=PLR9nK3mnD-OXdcwfcHGsGr78nHWLRsv1x)
72+
> The current state of the SharePoint Framework is reviewed near the beginning of the bi-weekly [Viva Connections & SharePoint Framework community call](https://aka.ms/community/calls). Previous Viva Connections & SharePoint Framework call recordings can be found on the [Microsoft 365 & Power Platform Communtiy YouTube Channel's playlist](https://www.youtube.com/watch?v=z4_5_IQjYRQ&list=PLR9nK3mnD-OXdcwfcHGsGr78nHWLRsv1x)

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.18.1 - October 10, 2023
470+
href: spfx/release-1.18.1.md
469471
- name: SPFx v1.18 - September 12, 2023
470472
href: spfx/release-1.18.md
471473
- name: SPFx v1.17.4 - June 21, 2023

0 commit comments

Comments
 (0)