From 101f9737738285397f0d3883a16cda361b9ce1c4 Mon Sep 17 00:00:00 2001 From: rdonovan92 Date: Tue, 24 Mar 2026 11:18:11 -0500 Subject: [PATCH 1/6] Removed Borg template and updated LICENSE per SecDev advisement --- .borg.template.toml | 15 --------------- CHANGELOG.md | 4 ++++ LICENSE | 3 ++- 3 files changed, 6 insertions(+), 16 deletions(-) delete mode 100644 .borg.template.toml 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/CHANGELOG.md b/CHANGELOG.md index 4bc22af..dfc2a91 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..7e3f76f 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,5 @@ -Copyright (c) 2026 University of Illinois. All rights reserved. +Copyright (c) 2026 Richard Donovan and the Board of Trustees of the +University of Illinois Developed by: Cybersecurity Engineering From 8d3142d932ddf17edb24a6671a7b8d44582f7ef8 Mon Sep 17 00:00:00 2001 From: rdonovan92 Date: Tue, 24 Mar 2026 13:13:45 -0500 Subject: [PATCH 2/6] updated End of Life --- CHANGELOG.md | 2 +- LICENSE | 2 ++ README.md | 8 ++++++++ 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dfc2a91..8a2d2d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.0.2] - 2026-03-24 - - Updated license file and remove borg template + - Updated license file, and remove borg template ## [0.0.1] - 2026-03-17 diff --git a/LICENSE b/LICENSE index 7e3f76f..6ad5bc5 100644 --- a/LICENSE +++ b/LICENSE @@ -1,3 +1,5 @@ +University of Illinois/NCSA Open Source License + Copyright (c) 2026 Richard Donovan and the Board of Trustees of the University of Illinois 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: From 668a9eacb78b2c15b681b251e987ae41ea899f79 Mon Sep 17 00:00:00 2001 From: rdonovan92 Date: Tue, 24 Mar 2026 16:07:47 -0500 Subject: [PATCH 3/6] added publishtogallery workflow --- .github/workflows/PublishToGallery.ps1 | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .github/workflows/PublishToGallery.ps1 diff --git a/.github/workflows/PublishToGallery.ps1 b/.github/workflows/PublishToGallery.ps1 new file mode 100644 index 0000000..fa3f8ad --- /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 $_ +} \ No newline at end of file From be6377add6c074a87cf88ed1960a39e7ec753ae1 Mon Sep 17 00:00:00 2001 From: rdonovan92 Date: Tue, 24 Mar 2026 16:08:18 -0500 Subject: [PATCH 4/6] end of file line --- .github/workflows/PublishToGallery.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PublishToGallery.ps1 b/.github/workflows/PublishToGallery.ps1 index fa3f8ad..2daef85 100644 --- a/.github/workflows/PublishToGallery.ps1 +++ b/.github/workflows/PublishToGallery.ps1 @@ -4,4 +4,4 @@ try{ } catch{ throw $_ -} \ No newline at end of file +} From 1c70f1c9527ee74d60fc5bfd3b8d35765a35f68b Mon Sep 17 00:00:00 2001 From: rdonovan92 Date: Tue, 24 Mar 2026 16:12:20 -0500 Subject: [PATCH 5/6] updated psd1 --- src/UofIBox/UofIBox.psd1 | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/UofIBox/UofIBox.psd1 b/src/UofIBox/UofIBox.psd1 index ce4f63e..ca0f8e6 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' ) From 5373ec59b75d8092661c8f351d6e0330348609c1 Mon Sep 17 00:00:00 2001 From: rdonovan92 Date: Tue, 24 Mar 2026 16:21:52 -0500 Subject: [PATCH 6/6] psd1 fixes --- src/UofIBox/UofIBox.psd1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UofIBox/UofIBox.psd1 b/src/UofIBox/UofIBox.psd1 index ca0f8e6..c82fc18 100644 --- a/src/UofIBox/UofIBox.psd1 +++ b/src/UofIBox/UofIBox.psd1 @@ -86,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 = @()