Skip to content

Releases: microsoft/powerplatform-actions

v1.2.0, September Refresh

23 Oct 20:19
8cf9938

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

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

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

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

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

Choose a tag to compare

Fix case sensitive switches (#357)

* update cli wrapper

* update dist

---------

Co-authored-by: Swapnil Bhalgat <[email protected]>

Solution Import QFE

01 Jun 23:46
1bedc3a

Choose a tag to compare

Full Changelog: v0.10.6...v0.10.7

April refresh

17 May 20:21
a2e1f95

Choose a tag to compare

  • updated to pac CLI 1.23.3 #315
  • added install-catalog action
  • added submit-catalog action
  • added catalog-status action

Solution Checker QFE

25 Apr 20:59
21c8b80

Choose a tag to compare

  • Enable to Fail or Ignore if the Power Apps Checker analysis is returned as Failed or FinishedWithErrors

March Refresh

24 Apr 20:24
bfc8b50

Choose a tag to compare

  • pac CLI 1.22.3 #304
  • fixed issue where the Publish Solution task would ignore the max-async-wait-time parameter in #285