-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Oracle OOB Release #28805
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Oracle OOB Release #28805
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -3,7 +3,7 @@ | |||||
| # | ||||||
| # Generated by: Microsoft Corporation | ||||||
| # | ||||||
| # Generated on: 10/13/2025 | ||||||
| # Generated on: 11/5/2025 | ||||||
| # | ||||||
|
|
||||||
| @{ | ||||||
|
|
@@ -12,7 +12,7 @@ | |||||
| # RootModule = '' | ||||||
|
|
||||||
| # Version number of this module. | ||||||
| ModuleVersion = '1.2.0' | ||||||
| ModuleVersion = '1.2.1' | ||||||
|
|
||||||
| # Supported PSEditions | ||||||
| CompatiblePSEditions = 'Core', 'Desktop' | ||||||
|
|
@@ -57,10 +57,10 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.3.0'; }) | |||||
| RequiredAssemblies = 'Oracle.Autorest/bin/Az.Oracle.private.dll' | ||||||
|
|
||||||
| # Script files (.ps1) that are run in the caller's environment prior to importing this module. | ||||||
| ScriptsToProcess = @() | ||||||
| # ScriptsToProcess = @() | ||||||
|
|
||||||
| # Type files (.ps1xml) to be loaded when importing this module | ||||||
| TypesToProcess = @() | ||||||
| # TypesToProcess = @() | ||||||
|
||||||
| # TypesToProcess = @() |
Copilot
AI
Nov 7, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The formatting of the Tags array has been changed from space-separated to comma-only separated values. This inconsistency with the previous format (line shows spaces after commas were removed) may cause issues with automated tooling that expects consistent formatting.
| Tags = 'Azure','ResourceManager','ARM','PSModule','Oracle' | |
| Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'Oracle' |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,12 @@ | ||
| # Exchange the contents of OneBranchNuget.Config and Nuget.Config | ||
|
|
||
| $oneBranchConfigPath = Join-Path $PSScriptRoot 'OneBranchNuget.Config' | ||
| $devConfigPath = Join-Path ($PSScriptRoot | Split-path -Parent | Split-path -Parent) 'Nuget.Config' | ||
|
|
||
| $oneBranchContent = Get-Content $oneBranchConfigPath -Raw | ||
| $devContent = Get-Content $devConfigPath -Raw | ||
| # Read content as byte arrays to preserve exact formatting | ||
| $oneBranchContent = [System.IO.File]::ReadAllText($oneBranchConfigPath, [System.Text.Encoding]::UTF8) | ||
| $devContent = [System.IO.File]::ReadAllText($devConfigPath, [System.Text.Encoding]::UTF8) | ||
|
|
||
| $oneBranchContent | Set-Content $devConfigPath -Force | ||
| $devContent | Set-Content $oneBranchConfigPath -Force | ||
| # Write content as byte arrays to preserve exact formatting | ||
| [System.IO.File]::WriteAllText($devConfigPath, $oneBranchContent, [System.Text.Encoding]::UTF8) | ||
| [System.IO.File]::WriteAllText($oneBranchConfigPath, $devContent, [System.Text.Encoding]::UTF8) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] The ScriptsToProcess assignment has been commented out. If this is intentional and no scripts need to be processed, the line should be removed entirely rather than commented out to keep the manifest file clean.