Changelog for PSWorkItem
v1.0.0 - 2023-03-12 13:50:54
This is a major update with significant changes. If this is your first time installing the module, no further action is required. If you are upgrading from a previous version of this module, you will need to run Update-PSWorkItemDatabase
. See the README file for more information.
Added
- Added command
Update-PSWorkItemDatabase
to add the newID
column to thetasks
andarchive
tables. - Added command
Get-PSWorkItemReport
. - Added command
Remove-PSWorkItemArchive
. - Added format file
psWorkitemreport.format.ps1xml
. - Added property set
ProgressSet
for thePSWorkItem
type. - Added property type extension
Age
forPSWorkItem
to show the age of the item since it was created. - Added a table format view called
Age
for PSWorkItems.
Changed
- Modified module to add an
ID
property that will be the same in both theTasks
andArchive
tables. Commands have been modified to use theRowID
for theID
property for the first task. After that, the next ID will be one more than the highest ID found in the tasks or archive table. This is a major breaking change. Issue #7 - Modified the class definitions into distinct items so that the
PSWorkItemArchive
doesn't inherit properties likeOverdue
that don't belong. This is a potential breaking change. Issue #8 - updated the sample PSWorkItem database.
- General code cleanup.
- help updates.
- Updated
README.md
.
Removed
- Removed
readme.txt
from the Types folder
Fixed
- Fixed bug in
Complete-PSWorkItem
when using-PassThru