Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions .borg.template.toml

This file was deleted.

7 changes: 7 additions & 0 deletions .github/workflows/PublishToGallery.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
try{
Set-PSRepository -Name 'PSGallery' -InstallationPolicy 'Trusted'
Publish-Module -Path '.\src\UofIBox' -Repository 'PSGallery' -NuGetApiKey $ENV:NuGetApiKey -Force
}
catch{
throw $_
}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 4 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
9 changes: 5 additions & 4 deletions src/UofIBox/UofIBox.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -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'
)

Expand All @@ -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 = @()
Expand Down