Skip to content

Latest commit

 

History

History
177 lines (93 loc) · 5.08 KB

RELEASENOTES.md

File metadata and controls

177 lines (93 loc) · 5.08 KB

TfsCmdlets Release Notes

Version 2.6.0 (30/Sep/2022)

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.

Previous Versions

Version 2.5.1 (22/Aug/2022)

See release notes here.

Version 2.5.0 (03/Aug/2022)

See release notes here.

Version 2.4.1 (20/Jul/2022)

See release notes here.

Version 2.4.0 (23/May/2022)

See release notes here.

Version 2.3.1 (08/Apr/2022)

See release notes here.

Version 2.3.0 (04/Mar/2022)

See release notes here.

Version 2.2.1 (10/Feb/2022)

See release notes here.

Version 2.2.0 (05/Feb/2022)

See release notes here.

Version 2.1.4 (30/Nov/2021)

See release notes here.

Version 2.1.3 (25/Nov/2021)

See release notes here.

Version 2.1.2 (10/Sep/2021)

See release notes here.

Version 2.1.1 (08/Sep/2021)

See release notes here.

Version 2.1.0 (13/Aug/2021)

See release notes here.

Version 2.0.1 (02/Aug/2021)

See release notes here.

Version 2.0.0 (02/Aug/2021)

See release notes here.

Version 2.0.0-rc.5 (17/Apr/2021)

See release notes here.

Version 2.0.0-rc.4 (05/Apr/2021)

See release notes here.

Version 2.0.0-rc.3 (19/Feb/2021)

See release notes here.

Version 2.0.0-rc.2 (30/Nov/2020)

See release notes here.

Version 2.0.0-rc.1 (21/Nov/2020)

See release notes here.

Version 2.0.0-beta.16 (26/Oct/2020)

See release notes here.

Version 2.0.0-beta.15 (21/Jul/2020)

See release notes here.

Version 2.0.0-beta.14 (19/Jul/2020)

See release notes here.

Version 2.0.0-beta.13 (18/Jul/2020)

See release notes here.

Version 2.0.0-beta.12 (14/Jul/2020)

See release notes here.

Version 2.0.0-beta.11 (21/Jan/2020)

See release notes here.

Version 2.0.0-beta.10 (12/Sep/2019)

See release notes here.

Version 2.0.0-beta.9 (10/Sep/2019)

See release notes here.

Version 2.0.0-beta.8 (06/Sep/2019)

See release notes here.

Version 2.0.0-beta.6 (02/Sep/2019)

See release notes here.

1.0.0-alpha7 (22/Oct/2015)

See release notes here.

1.0.0-alpha6 (22/Oct/2015)

See release notes here.

1.0.0-alpha5 (10/Sep/2015)

See release notes here.

1.0.0-alpha4 (03/Sep/2015)

See release notes here.

1.0.0-alpha3 (03/Sep/2015)

See release notes here.