From e27d06758a5f2c81b8b4c2c5ea44136014d68511 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20W=C3=B3jcik?= <58668583+Adam-it@users.noreply.github.com> Date: Sun, 12 May 2024 22:59:19 +0200 Subject: [PATCH] Release v3.2.0 (#236) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 🎯 Aim Release 3.2.0 that adds SPFx 1.19.0 support ## 🔗 Related issue Closes: #233 --- README.md | 2 +- package-lock.json | 4 ++-- package.json | 2 +- src/services/Dependencies.ts | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d7f73b0..8427967 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ To ensure that you can develop SPFx solutions, you may use the **check dependenc This action will check if you have the required dependencies such as: -- Node version: 16 or 18 +- Node version: 18 - NPM dependencies: - gulp - yo diff --git a/package-lock.json b/package-lock.json index 7bc5a41..876732c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "viva-connections-toolkit", - "version": "3.1.0", + "version": "3.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "viva-connections-toolkit", - "version": "3.1.0", + "version": "3.2.0", "license": "MIT", "dependencies": { "@pnp/cli-microsoft365": "6.11.0", diff --git a/package.json b/package.json index defbf71..860fd58 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "viva-connections-toolkit", "displayName": "SharePoint Framework Toolkit", "description": "SharePoint Framework Toolkit aims to boost your productivity in developing and managing SharePoint Framework solutions helping at every stage of your development flow, from setting up your development workspace to deploying a solution straight to your tenant without the need to leave VS Code and now even create a CI/CD pipeline to introduce automate deployment of your app. This toolkit is provided by the community.", - "version": "3.1.0", + "version": "3.2.0", "publisher": "m365pnp", "preview": false, "homepage": "https://github.com/pnp/vscode-viva", diff --git a/src/services/Dependencies.ts b/src/services/Dependencies.ts index 805f26a..7fa5770 100644 --- a/src/services/Dependencies.ts +++ b/src/services/Dependencies.ts @@ -8,8 +8,8 @@ import { TerminalCommandExecuter } from './TerminalCommandExecuter'; import { Extension } from './Extension'; -const SUPPORTED_VERSIONS = ['16.13', '18.17.1']; -const DEPENDENCIES = ['gulp-cli', 'yo', '@microsoft/generator-sharepoint']; +const SUPPORTED_VERSIONS = ['18.17.1']; +const DEPENDENCIES = ['gulp-cli@3.0.0', 'yo@5.0.0', '@microsoft/generator-sharepoint@1.19.0']; export class Dependencies {