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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed
- Fixed a bug where interop deployment manager would in some cases fail because it tried to load unrelated items from the repo (#977)
- Fixed bug causing compilation errors when first adding an IRIS Interoperability BPL or BR (#984)
- Fixed bugs causing compilation errors when first adding an IRIS Interoperability BPL or BR (#984)

## [2.17.0] - 2026-06-22

Expand Down
3 changes: 3 additions & 0 deletions cls/SourceControl/Git/Extension.cls
Original file line number Diff line number Diff line change
Expand Up @@ -461,12 +461,15 @@ Method OnAfterDelete(InternalName As %String) As %Status
/// change in the class. The <var>Location</var> is the global reference to the class definition that was changed.
Method OnAfterStorage(InternalName As %String, Location As %String = "") As %Status
{
$$$SuspendErrorCount
if (InternalName '= "") {
write !,"Item '"_InternalName_"' changed during compile so exporting new version."
set ..Modified(InternalName) = 1
set sc = ..OnAfterSave(InternalName)
if $$$ISERR(sc) {
do $System.OBJ.DisplayError(sc)
do $System.Status.DecomposeStatus(sc, .errorlog)
$$$IncErrorNums(errorlog)
}
}
return $$$OK
Expand Down
Loading