From cba28031ee72f8c607bc64181682c4d5cee90347 Mon Sep 17 00:00:00 2001 From: isc-tleavitt <73311181+isc-tleavitt@users.noreply.github.com> Date: Thu, 6 Feb 2025 12:27:02 -0500 Subject: [PATCH] fix: avoid global name conflict on upgrade --- CHANGELOG.md | 1 + src/cls/IPM/Repo/Http/Definition.cls | 3 +++ 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 29a1171a..7b995574 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - #700: Fix a bug due to incompatible conventions between SemVer and OCI tags - #669: Work with a wider variety of ORAS repos (removes _catalog call) - #726: Fixed a bug where loading a tarball doesn't install dependencies from `.modules` subfolder even when it's available +- #731: Issue upgrading from v0.9.x due to refactor of repo classes ### Security - diff --git a/src/cls/IPM/Repo/Http/Definition.cls b/src/cls/IPM/Repo/Http/Definition.cls index 8df079dd..c496bf91 100644 --- a/src/cls/IPM/Repo/Http/Definition.cls +++ b/src/cls/IPM/Repo/Http/Definition.cls @@ -7,6 +7,9 @@ Parameter MONIKER As String = "http"; /// Override this in subclasses to provide more padding. Parameter MaxDisplayTabCount As INTEGER = 4; +/// Overridden to avoid upgrade issues because of the refactor from Remote.Definition -> Http.Definition +Parameter MANAGEDEXTENT = 0; + Property URL As %IPM.DataType.RepoLocation [ Required ]; Index URL On URL [ Unique ];