Skip to content

Commit

Permalink
Merge branch 'main' into v0.9.x-fix-lang-ext-upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
isc-shuliu authored Jan 6, 2025
2 parents d656438 + e29c5eb commit b23be95
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased - 0.9.2+snapshot]
### Fixed
- #681 Convert specified namespaces to upper case for `enable` and `unmap` commands.
- #678 Only update comment-flagged part of the language extension, allowing users to keep their custom code when upgrading

## [0.9.1] - 2024-12-18
Expand Down
2 changes: 2 additions & 0 deletions src/cls/IPM/Main.cls
Original file line number Diff line number Diff line change
Expand Up @@ -2871,6 +2871,7 @@ ClassMethod EnableIPM(ByRef pCommandInfo)
Set localOnly = $$$HasModifier(pCommandInfo, "local-only")
Set version = $$$GetModifier(pCommandInfo, "version")
Set namespaces = $$$GetModifier(pCommandInfo, "namespaces")
Set namespaces = $$$ucase(namespaces)
Set allowUpgrade = $$$HasModifier(pCommandInfo,"allow-upgrade")
Set mapRepos = $$$HasModifier(pCommandInfo,"repos")
Set useLocal = 1 // var to store the final decision of whether to use local manifest or get from server
Expand Down Expand Up @@ -3206,6 +3207,7 @@ ClassMethod UnmapIPM(ByRef pCommandInfo)
{
Set globally = $$$HasModifier(pCommandInfo,"globally")
Set namespaces = $ListFromString($$$GetModifier(pCommandInfo,"namespaces"), ",")
Set namespaces = $$$ucase(namespaces)
Set verbose = '$$$HasModifier(pCommandInfo,"quiet")
set reposOnly = $$$HasModifier(pCommandInfo,"repos-only")
// Sanity check
Expand Down

0 comments on commit b23be95

Please sign in to comment.