Skip to content

Releases: microsoft/powerplatform-actions

v1.5.1

16 May 23:07
0b01078
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.5.0...v1.5.1

v1.5.0

14 May 19:00
7bfe977
Compare
Choose a tag to compare

Release Notes

  • pac CLI 1.32.5 (May Refresh), Release Notes on nuget.org
  • (Preview) Service Principals and User-Assigned Managed Identities can now authenticate via Workload Identity Federation by @tehcrashxor in #540
    • See configuration instructions in Announcement #576
  • create-environment now supports setting security-group-id by @devkeydet in #541
  • create-environment now supports the on-behalf-of creation for 'developer' type environments by @devkeydet in #562
  • import-data supports PAC's --connection-count argument by @devkeydet in #566
  • actions-install supports adding PAC CLI to PATH environment variable by @devkeydet in #570 and #572

Full Changelog: v1.4.0...v1.5.0

v1.4.0, March Update

22 Mar 19:10
9fc6b7d
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.3.0...v1.4.0

v1.3.0, January Refresh

01 Feb 23:42
f91ea97
Compare
Choose a tag to compare

Release Notes

Full Changelog: v1.2.0...v1.3.0

v1.2.0, September Refresh

23 Oct 20:19
8cf9938
Compare
Choose a tag to compare

Release Notes

Full Changelog: v1.1.0...v1.2.0

v1.1.0, August Refresh

21 Sep 18:24
b1c443b
Compare
Choose a tag to compare

Release Notes

  • actions-install now supports obtaining and install PAC from sources other than public nuget.org via #441
    • nuget-feed-override can be set to any feed location, including private feeds or even a local folder where the *.nupkg files exist on the actions runner disk
    •  nuget-feed-username and nuget-feed-password can be set for authenticated feeds. Not that Azure DevOps feeds will typically use an PAT in the password field with any non-empty string for the username
    • Alternatively, users who already have PAC installed on their actions runner can point our actions to the preinstalled copy via the use-preinstalled-pac argument
  • branch-solution now sets the commiter's email address to the current actor's github noreply address, or falls back to the github actions bot if no user actor is present #438
  • corrected parameters used in update-solution-version and set-online-solution-version #435
     

PRs merged since last release

Full Changelog: v1.0.0...v1.1.0

v1.0.0, July Refresh

22 Aug 20:14
09afea1
Compare
Choose a tag to compare

What's Changed

  • New action set-online-solution-version, for updating the versions of solutions already present in Dataverse #412
  • Updated to new PAC v1.26.5
  • Major version increase to v1
    • Drastic reduction in size of release tarball/zipball by removing PAC from Git-LFS to help mitigate issue #416
    • New action actions-install required prior to running any other v1 action

Breaking Change

Converting an existing v0 pipeline to v1 requires first running the new actions-install action.
For example, converting this old action

jobs:
  my-job-name:
    runs-on: windows-latest
    steps:
      - name: WhoAmI
        uses: microsoft/powerplatform-actions/who-am-i@v0
        with:
          environment-url: ...
          user-name: ...
          password-secret: ...

to v1 would now look like

jobs:
  my-job-name:
    runs-on: windows-latest
    steps:
      - name: Power Platform Action Install
        uses: microsoft/powerplatform-actions/actions-install@v1
      - name: WhoAmI
        uses: microsoft/powerplatform-actions/who-am-i@v1
        with:
          environment-url: ...
          user-name: ...
          password-secret: ...

PRs merged since last release

New Contributors

Full Changelog: v0.10.10...v1.0.0

Branch Solution QFE

18 Jul 17:52
0c80aac
Compare
Choose a tag to compare

What's Changed

  • Fix branch-solution for Ubuntu runners. Fixes #229 by @sccle in #407

Full Changelog: v0...v0.10.10

June Refresh

17 Jul 22:04
e881f70
Compare
Choose a tag to compare

What's Changed

  • PAC updated to v1.25.2 (see its release notes on Nuget.org)
  • Updates to many dependencies, details in PR list below

PRs merged since last release:

Full Changelog: v0.10.8...v0.10.9

May refresh

19 Jun 14:43
657afe5
Compare
Choose a tag to compare
Fix case sensitive switches (#357)

* update cli wrapper

* update dist

---------

Co-authored-by: Swapnil Bhalgat <sbhalgat@microsoft.com>