Skip to content

Commit

Permalink
Users/nityagi/fix cross geo flagread and release notes update (#964)
Browse files Browse the repository at this point in the history
* Auth Profile listing fix (#841) (#842)

* Fix Enhanced data model filename language fetch and populate (#835)

* February release notes updates for web extension (#831)

* February release notes updates for web extension

* Update for bug fix and release extension version

* Auth Profile listing fix (#841) (#842)

* Invoking Language server only for PowerPages workspace (#952)

Co-authored-by: amitjoshi <[email protected]>

* Fix EnvId getting null for Web extension flow (#963)

* Auth Profile listing fix (#841) (#842)

* Fix Enhanced data model filename language fetch and populate (#835)

* February release notes updates for web extension (#831)

* February release notes updates for web extension

* Update for bug fix and release extension version

* Auth Profile listing fix (#841) (#842)

* Invoking Language server only for PowerPages workspace (#952)

Co-authored-by: amitjoshi <[email protected]>

* envID fix for desktop extension

---------

Co-authored-by: Crash Collison <[email protected]>
Co-authored-by: amitjoshi438 <[email protected]>
Co-authored-by: amitjoshi <[email protected]>

* Update release notes and fix cross geo flag read and use

* nit: fix spacing

---------

Co-authored-by: Crash Collison <[email protected]>
Co-authored-by: amitjoshi438 <[email protected]>
Co-authored-by: amitjoshi <[email protected]>
  • Loading branch information
4 people authored May 24, 2024
1 parent f8af474 commit 0f9c3f4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# Change Log - Power Platform Extension

## NEXTRELEASE
## 2.0.58
- pac CLI 1.32.7, (May 2024 refresh, see release notes on [nuget.org](https://www.nuget.org/packages/Microsoft.PowerApps.CLI/))
- Web extension updates
- Copilot available in public regions that has " Move data across regions" option enabled per [Turn on copilots and generative AI features](https://learn.microsoft.com/en-us/power-platform/admin/geographical-availability-copilot#turn-on-copilots-and-generative-ai-features-1)

## 2.0.49
Web extension updates
- Copresence support - Find out who's working on a site (Power Pages Studio and Power Pages VS Code for the Web) at the same time as you with copresence
- Web extension updates
- Copresence support - Find out who's working on a site (Power Pages Studio and Power Pages VS Code for the Web) at the same time as you with copresence

## 2.0.41
- pac CLI 1.31.6, (February 2024 refresh, see release notes on [nuget.org](https://www.nuget.org/packages/Microsoft.PowerApps.CLI/))
Expand Down
2 changes: 1 addition & 1 deletion src/common/services/ArtemisService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class ArtemisService {

const intelligenceEndpoint = `https://aibuildertextapiservice.${geoName}-${'il' + clusterNumber}.gateway.${environment}.island.powerapps.com/v1.0/${orgId}/appintelligence/chat`

return { intelligenceEndpoint: intelligenceEndpoint, geoName: geoName, crossGeoDataMovementEnabledPPACFlag: false };
return { intelligenceEndpoint: intelligenceEndpoint, geoName: geoName, crossGeoDataMovementEnabledPPACFlag: crossGeoDataMovementEnabledPPACFlag };
}

return { intelligenceEndpoint: null, geoName: null, crossGeoDataMovementEnabledPPACFlag: false };
Expand Down
4 changes: 2 additions & 2 deletions src/common/services/BAPService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ export class BAPService {

if (response.ok) {
const data = await response.json();
sendTelemetryEvent(telemetry, { eventName: VSCODE_EXTENSION_GET_CROSS_GEO_DATA_MOVEMENT_ENABLED_FLAG_COMPLETED, data: data.enabled });
return data.enabled;
sendTelemetryEvent(telemetry, { eventName: VSCODE_EXTENSION_GET_CROSS_GEO_DATA_MOVEMENT_ENABLED_FLAG_COMPLETED, data: data.properties.copilotPolicies?.crossGeoCopilotDataMovementEnabled });
return data.properties.copilotPolicies?.crossGeoCopilotDataMovementEnabled;
}

} catch (error) {
Expand Down

0 comments on commit 0f9c3f4

Please sign in to comment.