- Removed MinIO SDK dependency completely
- Built custom HTTP client with AWS S3 signature v4 support
- Created synchronous operations optimized for PowerShell
- Added real progress reporting during transfers
- Implemented performance metrics in result objects
- Fixed null pointer warnings for code quality
- Removed Write-Host usage from test scripts
- Cleaned up unnecessary DLL dependencies
Available cmdlets:
- Connect-MinIO: Enhanced connection with certificate options
- Get-MinIOBucket: List buckets with sorting and filtering
- New-MinIOBucket: Create buckets with region support
- Test-MinIOBucketExists: Check bucket existence
- Get-MinIOObject: List objects with advanced filtering
- New-MinIOObject: Upload files with real progress
- Get-MinIOObjectContent: Download files with progress
This represents a complete architectural overhaul for better PowerShell compatibility and performance.
- Reorganized project structure with proper directory separation:
* All scripts moved to scripts/ directory (including examples)
* All documentation moved to docs/ directory (except README.md)
* Centralized version management in Version.ps1
- Implemented centralized version management system:
* Version.ps1 provides single source of truth for version information
* Automatic yyyy.MM.dd.HHmm versioning based on build time
* scripts/Update-Version.ps1 updates all version references
* src/Properties/AssemblyInfo.cs for assembly version information
- Enhanced build system:
* scripts/Build.ps1 - Full build with validation and packaging
* scripts/Quick-Build.ps1 - Fast build handling file locking issues
* Removed automatic copy from project file to avoid locking
* Integrated version updates into build process
- Updated PowerShell Gallery publishing:
* scripts/Publish-PSMinIOToGallery.ps1 updated for new structure
* docs/POWERSHELL-GALLERY-RELEASE.md comprehensive publishing guide
* Module manifest updated with proper metadata and release notes
- Updated all documentation and examples:
* README.md updated with PowerShell Gallery installation
* All example scripts updated with correct import paths
* scripts/examples/README.md updated for new location
* docs/PROJECT-STRUCTURE.md documents new organization
- Version updated to 2025.07.11.1151 with centralized management
- All import paths corrected for new structure
- Professional project organization following PowerShell best practices
- Updated MinIO SDK from 3.1.13 to 5.0.0
- Fixed all compilation errors and warnings for MinIO 5.0.0 compatibility
- Updated API calls to use new Args-based patterns (PutObjectArgs, GetObjectArgs, etc.)
- Fixed type compatibility issues (DateTime, ulong conversions)
- Removed deprecated APIs (WithCancellation, ProgressReport)
- Updated System.Text.Json to 9.0.0 to resolve security vulnerabilities
- Added Module directory to repository with built PSMinIO.dll
- Module is now ready for distribution and testing
- All builds pass with 0 errors and 0 warnings