Skip to content

Commit fabbce3

Browse files
authored
Update Node, PAC and add async operation (#1165)
* Update Node, PAC and add async operation * Update the build pipeline to pick up node 20 * Bump npm to version 11 and update build memory settings * Add async operation parameter to add-solution-component action test * Update AsyncOperation input to be optional and set default to false * Add Node 20 support to task execution configurations
1 parent 865c235 commit fabbce3

File tree

40 files changed

+5499
-14404
lines changed

40 files changed

+5499
-14404
lines changed

.github/workflows/PullRequest.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,19 @@ jobs:
3838
- name: Setup Node.js environment
3939
uses: actions/setup-node@v3
4040
with:
41-
node-version: 16
41+
node-version: 20
4242
registry-url: https://npm.pkg.github.com
4343

4444
- name: Configure npm
4545
run: npm config set //npm.pkg.github.com/:_authToken=${{ secrets.GPR_ACCESS_TOKEN }}
4646

47-
- name: Install npm@8 globally (windows)
47+
- name: Install npm@11 globally (windows)
4848
if: matrix.os == 'windows-latest'
49-
run: npm i -g npm@8
49+
run: npm i -g npm@11
5050

51-
- name: Install npm@9 globally (linux)
51+
- name: Install npm@11 globally (linux)
5252
if: matrix.os != 'windows-latest'
53-
run: npm i -g npm@9
53+
run: npm i -g npm@11
5454

5555
- name: Install npm dependencies
5656
run: npm ci

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Setup Node.js environment
5353
uses: actions/setup-node@v3
5454
with:
55-
node-version: 16
55+
node-version: 20
5656
registry-url: https://npm.pkg.github.com
5757

5858
- name: Configure npm

extension/overview.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ Please use the issues tracker in the home repo: <https://github.com/microsoft/po
2222
# Release Notes
2323

2424
{{NextReleaseVersion}}:
25+
- pac CLI 1.43, [Release Notes on nuget.org](https://www.nuget.org/packages/Microsoft.PowerApps.CLI/1.43.6#releasenotes-body-tab)
26+
27+
2.0.82
2528
- pac CLI 1.38, [Release Notes on nuget.org](https://www.nuget.org/packages/Microsoft.PowerApps.CLI)
2629

2730
2.0.81

nuget.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
"packages": [
33
{
44
"name": "Microsoft.PowerApps.CLI",
5-
"version": "1.38.3",
5+
"version": "1.43.6",
66
"internalName": "pac",
77
"useFeed": "nuget.org"
88
},
99
{
1010
"name": "Microsoft.PowerApps.CLI.Core.linux-x64",
11-
"version": "1.38.3",
11+
"version": "1.43.6",
1212
"internalName": "pac_linux",
1313
"chmod": "tools/pac",
1414
"useFeed": "nuget.org"

0 commit comments

Comments
 (0)