diff --git a/.borg.template.toml b/.borg.template.toml deleted file mode 100644 index 1b64822..0000000 --- a/.borg.template.toml +++ /dev/null @@ -1,15 +0,0 @@ -# This file configures `borg` when this repository is used as a source. -# This file should only be present in a template repository. - -# If this file is present in a child repository, it should be deleted. - -[template] -files = [ - ".github/workflows/pr_reminder.yml", - ".github/workflows/cleanup.yml", - "CODE_OF_CONDUCT.md", - "SECURITY.md", -] -[generate.gitattributes] -# Include all template files above -include_template_files = true diff --git a/.github/workflows/PublishToGallery.ps1 b/.github/workflows/PublishToGallery.ps1 new file mode 100644 index 0000000..2daef85 --- /dev/null +++ b/.github/workflows/PublishToGallery.ps1 @@ -0,0 +1,7 @@ +try{ + Set-PSRepository -Name 'PSGallery' -InstallationPolicy 'Trusted' + Publish-Module -Path '.\src\UofIBox' -Repository 'PSGallery' -NuGetApiKey $ENV:NuGetApiKey -Force +} +catch{ + throw $_ +} diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bc22af..8a2d2d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed +## [0.0.2] - 2026-03-24 + + - Updated license file, and remove borg template + ## [0.0.1] - 2026-03-17 ### Added diff --git a/LICENSE b/LICENSE index d82e321..6ad5bc5 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,7 @@ -Copyright (c) 2026 University of Illinois. All rights reserved. +University of Illinois/NCSA Open Source License + +Copyright (c) 2026 Richard Donovan and the Board of Trustees of the +University of Illinois Developed by: Cybersecurity Engineering diff --git a/README.md b/README.md index 712552b..9297854 100644 --- a/README.md +++ b/README.md @@ -89,6 +89,14 @@ New-BoxFolderWithCollaboration ` -Login user@company.com ` -Role editor +#End-of-Life and End-of-Support Dates + +As of the last update to this README, the expected End-of-Life and End-of-Support dates of this product are November 2026. + +End-of-Life was decided upon based on these dependencies and their End-of-Life dates: + +Powershell 7.4 (November 2026) + # How do I help? Contributions are welcome. You can help by: diff --git a/src/UofIBox/UofIBox.psd1 b/src/UofIBox/UofIBox.psd1 index ce4f63e..c82fc18 100644 --- a/src/UofIBox/UofIBox.psd1 +++ b/src/UofIBox/UofIBox.psd1 @@ -68,15 +68,16 @@ PowerShellVersion = '7.0' # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @( - 'Get-BoxFolderData,' + 'Get-BoxFolderData', 'Get-BoxFileData', 'Invoke-BoxRestCall', - 'New-BoxFolderCollaboration' + 'New-BoxCollaboration', + 'New-BoxFolder', 'New-BoxSession', 'Receive-BoxFile', 'Receive-BoxFolder', 'Remove-BoxFolder', - 'Remove-BoxFile' + 'Remove-BoxFile', 'Send-BoxFile' ) @@ -85,7 +86,7 @@ FunctionsToExport = @( CmdletsToExport = @() # Variables to export from this module -VariablesToExport = @() +VariablesToExport = '*' # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. AliasesToExport = @()