Skip to content

Releases: igoravl/TfsCmdlets

Release 2.9.0+3583.93

15 Aug 17:02
e428cbd
Compare
Choose a tag to compare

This release adds new process-related cmdlets along with some fixes, enhancements and a couple minor but potentially breaking changes.

New cmdlets

  • Get-ProcessFieldDefinition: Gets information from one or more organization-wide work item fields
  • New-ProcessFieldDefinition: Creates a new organization-wide work item field
  • Remove-ProcessFieldDefinition: Removes an organization-wide work item field

Fixes

  • Get-TfsArtifact: Fixed an issue where it wouldn't list deleted packages.
  • Get-TfsArtifactFeed: Fixed an issue where it would ignore the -Project argument and thus not filter feeds by project.
  • Get-TfsWorkItemTag: Fixed an issue where it would fail when given a list of tags as input.
  • Get-TfsWorkItemType: Fixed an issue where it would throw a "Parameter count mismatch" error when trying to get the work item type of a given work item.

Changes and enhancements

  • Get-TfsGitBranch: Added a new -Compare argument to to get the "Compare" (base) branch of a given repository.
  • Connect-TfsTeamProjectCollection, Connect-TfsOrganization: Now it throws an error when trying to connect with invalid credentials instead of silently going into "anonymous mode". That help preventing subtle script errors where the lack of authorization would only be noticed later in the script, when trying to actually perform some command that required valid credentials. Now you get the warning that something is wrong as early in the script as possible.

Breaking changes

  • Get-TfsGitBranch: -Repository parameter is now mandatory. This is to reduce the ambiguity of the command when omitting that argument. Scripts that rely on the old behavior may need to be updated.
  • Get-TfsGitBranchPolicy: Both -Branch and -Repository parameters are now mandatory. This is to reduce the ambiguity of the command when omitting those arguments. Scripts that rely on the old behavior may need to be updated.

Release 2.8.2+3561.26

24 Jul 17:44
073ff45
Compare
Choose a tag to compare

This release brings some fixes and enhancements.

Enhancements

  • Add-TfsWorkItemLink: Added support for specifying the arguments -SuppressNotification and -BypassRules to suppress notifications and bypass rules when adding a work item link.
  • Now when when a cmdlet fails, a full exception dump will be sent to the verbose output stream in addition to the short error message sent to the error stream. So, if your script is failing and you don't know why, you can enable the verbose output to get more information about the error.

Fixes

  • Fixed an issue where the Get-TfsTeam cmdlet would not work when specifying the -Default parameter.
  • Fixed an issue where Invoke-TfsRestApi would ignore the parameters passed via the -Parameters argument [#228]

Release 2.8.1+3553.1

16 Jul 15:08
ca2d168
Compare
Choose a tag to compare

This release fixes an issue with the New-TfsUser cmdlet.

Fixes

  • Fixed an issue where the New-TfsUser cmdlet could throw an error when not supplying project entitlements via the -Project argument.

Release 2.8.0+3546.2

09 Jul 06:58
645b1fd
Compare
Choose a tag to compare

This release adds two new cmdlets: New-TfsUser and Remove-TfsUser.

New cmdlets

  • New-TfsUser: Creates a new user in the organization and optionally adds them to projects.
  • Remove-TfsUser: Removes a user from the organization.

Release 2.7.1+3540.1

03 Jul 19:27
4e35fb0
Compare
Choose a tag to compare

This release fixes an issue with the Chocolatey publishing process. No changes have been made to the cmdlets.

Release 2.7.0+3540.2

03 Jul 17:46
e570b7d
Compare
Choose a tag to compare

This release adds support for suppressing notifications when creating or updating work items.

New features

  • Adds -SuppressNotifications switch to New-TfsWorkItem and Set-TfsWorkItem to suppress notifications when creating or updating work items. This is useful when you are creating or updating a large number of work items and don't want to flood the notification feed of team members.

Release 2.6.1+3491.1

15 May 16:10
a8ad84b
Compare
Choose a tag to compare

Ouch! It's been a while since the last release! Sometimes life gets in the way, but I'm back!

This release fixes bugs in Get-TfsWorkItem, Get-TfsArea, Get-TfsIteration, Invoke-TfsRestApi, New-TfsTeam and Set-TfsTeam.

Fixes

  • Fixes #211, where Get-TfsWorkItem would throw an error when the -Fields parameter was "*".
  • Fixes a bug in Invoke-TfsRestApi where Azure DevOps APIs whose responses were missing the content-type header would throw an error.
  • Fixes a bug in Get-TfsArea and Get-TfsIteration where team projects containing Regex-reserved characters (such as parentheses) would throw an error. This bug would indirectly affect New-TfsTeam and Set-TfsTeam due to their reliance on the same underlying class to handle area and iteration paths when creating/updating teams.
  • Fixes a bug in Get-TfsWorkItem where the -AreaPath and -IterationPath parameters would not work when the specified path either started with a backslash or did not contain the team project name.
  • Adds the installed module version to the Azure DevOps Shell startup command to prevent loading an older version of the module when the PSModulePath variable contains an older version of the module listed earlier in the search path.

Release 2.6.0+2898.5

01 Oct 00:10
276cfc9
Compare
Choose a tag to compare

This release fixes a bug in Get-TfsWorkItemQuery and Get-TfsWorkItemQueryFolder, and adds two new cmdlets.

New cmdlets

  • Undo-TfsWorkItemQueryRemoval and Undo-TfsWorkItemQueryFolderRemoval allow you to undo the deletion of a query or query folder. This is useful when you accidentally delete a query or query folder and want to restore it.

To restore a deleted query:

# You can either pipe the deleted query from Get-TfsWorkItemQuery to Undo-TfsWorkItemQueryRemoval...
Get-TfsWorkItemQuery 'My Deleted Query' -Scope Personal -Deleted | Undo-TfsWorkItemQueryRemoval

# ... or you can specify the query directly when calling Undo-TfsWorkItemQueryRemoval
Undo-TfsWorkItemQueryRemoval 'My Deleted Query' -Scope Personal

The same applies to query folders - with the distinction that folder can be restored recursively by specifying the -Recursive switch. When -Recursive is omitted, only the folder itself is restored, without any of its contents. You can then restore its contents by issuing further calls to Undo-TfsWorkItemQueryRemoval and/or Undo-TfsWorkItemQueryFolderRemoval.

# You can either pipe the deleted folder from Get-TfsWorkItemQueryFolder to Undo-TfsWorkItemQueryFolderRemoval...
Get-TfsWorkItemQueryFolder 'My Deleted Folder' -Scope Personal -Deleted | Undo-TfsWorkItemQueryRemoval -Recursive

# ... or you can specify the folder directly when calling Undo-TfsWorkItemQueryFolderRemoval
Undo-TfsWorkItemQueryFolderRemoval 'My Deleted Folder' -Scope Personal -Recursive

Fixes

  • Fixes a bug in Get-TfsWorkItemQuery and Get-TfsWorkItemQueryFolder where the -Deleted switch was not respected and deleted items would not be returned.

Release 2.5.1+2859.4

22 Aug 05:28
4b27681
Compare
Choose a tag to compare

This release fixes a bug in New-TfsWorkItem.

Fixes

  • Fixes #191, where AreaPath and IterationPath arguments are switched.

Release 2.5.0+2840.2

03 Aug 02:34
f91c738
Compare
Choose a tag to compare

This release introduces new cmdlets and fixes a few bugs.

New cmdlets

  • Start-TfsBuild: Starts a pipeline (YAML) / build (Classic).
  • Get-TfsTeamProjectMember: Returns the members of a team project, as shown in the "Members" widget in the team project's Summary page (closes #59).

Fixes

  • Fixes a bug in New-TfsWorkItem and Set-TfsWorkItem where IterationPath was not being set.