Skip to content

Commit

Permalink
Fix ECS tenant flag and update PAC-CLI version (#1036)
Browse files Browse the repository at this point in the history
  • Loading branch information
tyaginidhi authored Sep 10, 2024
1 parent 5db529f commit 22e79f2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log - Power Platform Extension

## 2.0.64
- pac CLI 1.34.4, (August 2024 refresh, see release notes on [nuget.org](https://www.nuget.org/packages/Microsoft.PowerApps.CLI/))

## 2.0.62
- pac CLI 1.33.5, (July 2024 refresh, see release notes on [nuget.org](https://www.nuget.org/packages/Microsoft.PowerApps.CLI/))
- Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ async function snapshot() {
}
}

const cliVersion = '1.33.5';
const cliVersion = '1.34.4';

const recompile = gulp.series(
clean,
Expand Down
2 changes: 1 addition & 1 deletion src/common/copilot/utils/copilotUtil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export function getDisabledOrgList() {

export function getDisabledTenantList() {

const disallowedProDevCopilotTenants = ECSFeaturesClient.getConfig(CopilotDisableList).disallowedProDevCopilotOrgs;
const disallowedProDevCopilotTenants = ECSFeaturesClient.getConfig(CopilotDisableList).disallowedProDevCopilotTenants;

if (disallowedProDevCopilotTenants === undefined || disallowedProDevCopilotTenants === "") {
return [];
Expand Down

0 comments on commit 22e79f2

Please sign in to comment.