Skip to content

Commit 949b520

Browse files
committed
Merge branch 'main' of https://github.com/intersystems/git-source-control into issue-693
2 parents 4068281 + d413db4 commit 949b520

File tree

4 files changed

+12
-13
lines changed

4 files changed

+12
-13
lines changed

CHANGELOG.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [2.11.0] - Unreleased
8+
## [2.11.0] - 2025-04-23
99

1010
### Added
1111
- Pull event handler that does an IPM uninstall and load to handle deletes (#631)
@@ -15,12 +15,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
- Expanded Baseline Export to include custom HL7, X12, ASTM schemas and Lookup Tables (#693)
1616

1717
### Fixed
18-
- Changing system mode (environment name) in setting spersists after instance restart (#655)
19-
- Popping from stash is more responsive (#687)
18+
- Changing system mode (environment name) in settings persists after instance restart (#655)
19+
- Popping from stash is more responsive (#687, #747)
2020
- Favorites links for Git pages now works on recent IRIS versions (#734)
2121
- IDE editing of decomposed productions now properly handles adds and deletes (#643)
22-
23-
### Fixed
2422
- Fixed error running Import All when Git settings file does not exist (#713)
2523

2624
## [2.10.0] - 2025-02-10

cls/SourceControl/Git/Utils.cls

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2685,8 +2685,8 @@ ClassMethod ConfigureWeb()
26852685
new $Namespace
26862686
set $Namespace = "%SYS"
26872687
write !,"Adding favorites for all users:"
2688-
set sql = "insert or update into %SYS_Portal.Users (Username, Page, Data) "_
2689-
"select ID,?,$LISTBUILD(?) from Security.Users"
2688+
set sql = "insert or update %NOCHECK into %SYS_Portal.Users (Username, Page, Data) "_
2689+
"select ID,?,? from Security.Users"
26902690
set caption = "Git: "_installNamespace
26912691
set link = "/isc/studio/usertemplates/gitsourcecontrol/webuidriver.csp/"_installNamespace_"/"
26922692
write !,"Adding Git favorite... "
@@ -3198,3 +3198,4 @@ ClassMethod IsSchemaStandard(pName As %String = "") As %Boolean [ Internal ]
31983198
}
31993199

32003200
}
3201+

git-webui/release/share/git-webui/webui/js/git-webui.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2008,7 +2008,7 @@ webui.DiffView = function(sideBySide, hunkSelectionAllowed, parent, stashedCommi
20082008
webui.showSuccess("Applied stash item");
20092009
parent.update();
20102010
self.clear()
2011-
}, webui.showWarning(output), webui.showError(output));
2011+
});
20122012
}
20132013

20142014
self.popSelectedStash = function() {
@@ -2020,7 +2020,7 @@ webui.DiffView = function(sideBySide, hunkSelectionAllowed, parent, stashedCommi
20202020
webui.showSuccess("Popped from stash");
20212021
parent.update();
20222022
self.clear()
2023-
}, webui.showWarning(output), webui.showError(output));
2023+
});
20242024
}
20252025

20262026
self.dropSelectedStash = function() {
@@ -2032,7 +2032,7 @@ webui.DiffView = function(sideBySide, hunkSelectionAllowed, parent, stashedCommi
20322032
webui.showSuccess("Dropped from stash");
20332033
parent.update();
20342034
self.clear();
2035-
}, webui.showWarning(output), webui.showError(output));
2035+
});
20362036
}
20372037

20382038
var html = '<div class="diff-view-container panel panel-default">';

git-webui/src/share/git-webui/webui/js/git-webui.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2008,7 +2008,7 @@ webui.DiffView = function(sideBySide, hunkSelectionAllowed, parent, stashedCommi
20082008
webui.showSuccess("Applied stash item");
20092009
parent.update();
20102010
self.clear()
2011-
}, webui.showWarning(output), webui.showError(output));
2011+
});
20122012
}
20132013

20142014
self.popSelectedStash = function() {
@@ -2020,7 +2020,7 @@ webui.DiffView = function(sideBySide, hunkSelectionAllowed, parent, stashedCommi
20202020
webui.showSuccess("Popped from stash");
20212021
parent.update();
20222022
self.clear()
2023-
}, webui.showWarning(output), webui.showError(output));
2023+
});
20242024
}
20252025

20262026
self.dropSelectedStash = function() {
@@ -2032,7 +2032,7 @@ webui.DiffView = function(sideBySide, hunkSelectionAllowed, parent, stashedCommi
20322032
webui.showSuccess("Dropped from stash");
20332033
parent.update();
20342034
self.clear();
2035-
}, webui.showWarning(output), webui.showError(output));
2035+
});
20362036
}
20372037

20382038
var html = '<div class="diff-view-container panel panel-default">';

0 commit comments

Comments
 (0)