Skip to content

v1.0.0, July Refresh

Compare
Choose a tag to compare
@tehcrashxor tehcrashxor released this 22 Aug 20:14
· 52 commits to main since this release
09afea1

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