Releases: microsoft/powerplatform-actions
Releases · microsoft/powerplatform-actions
v1.7.0
What's Changed
- pac CLI 1.34.4 (August Refresh), Release Notes on nuget.org
- The
import-solution
'sforce-overwrite
parameter now defaults to false by @petrochuk in #599
Full Changelog: v1.6.0...v1.7.0
v1.6.0
What's Changed
- pac CLI 1.33.5 (July Refresh), Release Notes on nuget.org
- Updated
pac auth create
calls to use the--environment
argument instead of the obsoleted--url
argument by @tehcrashxor in #589 - Add support for target-environment to install-catalog action by @devkeydet in #592
Full Changelog: v1.5.2...v1.6.0
v1.5.2
What's Changed
- Minor PAC update to v1.32.8 for Power Pages hotfix by @tehcrashxor in #582, addressing microsoft/powerplatform-build-tools#897
Full Changelog: v1.5.1...v1.5.2
v1.5.1
What's Changed
- Minor PAC update to v1.32.7 by @tehcrashxor in #580, to address microsoft/powerplatform-build-tools#885
Full Changelog: v1.5.0...v1.5.1
v1.5.0
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 #541create-environment
now supports the on-behalf-of creation for 'developer' type environments by @devkeydet in #562import-data
supports PAC's --connection-count argument by @devkeydet in #566actions-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
v1.3.0, January Refresh
Release Notes
- pac CLI 1.30.6 (January Refresh), Release Notes on nuget.org in #516
Full Changelog: v1.2.0...v1.3.0
v1.2.0, September Refresh
Release Notes
- pac CLI 1.28.3 (September Refresh), Release Notes on nuget.org in #470
- import-solution now supports stage-and-upgrade option in #470
Full Changelog: v1.1.0...v1.2.0
v1.1.0, August Refresh
Release Notes
actions-install
now supports obtaining and install PAC from sources other than public nuget.org via #441nuget-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
andnuget-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
andset-online-solution-version
#435
PRs merged since last release
- Fixes for the two Solution Version actions by @tehcrashxor in #435
- branch-solution commit author fix by @tehcrashxor in #438
- Updating actions-install to permit overriding the nuget feed by @tehcrashxor in #441
- Replacing old SPN used in rolling instance actions by @tehcrashxor in #446
- Update test SPN again by @tehcrashxor in #447
- Bump esbuild from 0.18.11 to 0.19.3 by @dependabot in #449
- Bump eslint from 8.44.0 to 8.49.0 by @dependabot in #443
- Bump glob from 10.3.3 to 10.3.4 by @dependabot in #439
- Bump node-fetch from 3.3.1 to 3.3.2 by @dependabot in #429
- August Refresh by @tehcrashxor in #453
Full Changelog: v1.0.0...v1.1.0
v1.0.0, July Refresh
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
- Bump winston from 3.9.0 to 3.10.0 by @dependabot in #409
- Gavenkat updateonlinesolutionversion by @gavenkat78 in #412
- Bump gulp-eslint-new from 1.8.2 to 1.8.3 by @dependabot in #413
- Bump @types/node from 20.4.1 to 20.4.8 by @dependabot in #419
- Proposal - remove PAC files from repo (and thus tarball/zipball of actions) and install via nuget by @tehcrashxor in #424
- July Refresh by @tehcrashxor in #426
- Rolling Instance Build Fix by @tehcrashxor in #427
- Bump postcss from 8.4.25 to 8.4.28 by @dependabot in #425
- Better error messages and warnings by @tehcrashxor in #428
- Update readme for v1 changes by @tehcrashxor in #431
New Contributors
- @gavenkat78 made their first contribution in #412
Full Changelog: v0.10.10...v1.0.0