File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 82
82
83
83
- name : Produce CE Artifact
84
84
run : |
85
- echo "set version=##class(%ZPM.PackageManager.Developer .Module).NameOpen(\"git-source-control\").VersionString" > package.script
85
+ echo "set version=##class(%IPM.Storage .Module).NameOpen(\"git-source-control\").VersionString" > package.script
86
86
echo "set file=\"/$artifact_dir/git-source-control-\"_version_\".xml\" write !,file,!" >> package.script
87
87
echo "do ##class(SourceControl.Git.Utils).BuildCEInstallationPackage(file)" >> package.script
88
88
echo "halt" >> package.script
Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
- Pull event handler that does an IPM uninstall and load to handle deletes (#631 )
12
12
- Partial support for production decomposition with the new interoperability editors
13
13
14
+ ### Fixed
15
+ - Favorites links for Git pages now works on recent IRIS versions (#734 )
16
+
14
17
## [ 2.10.0] - 2025-02-10
15
18
16
19
### Added
Original file line number Diff line number Diff line change @@ -2681,7 +2681,7 @@ ClassMethod ConfigureWeb()
2681
2681
set $Namespace = " %SYS"
2682
2682
write !," Adding favorites for all users:"
2683
2683
set sql = " insert or update into %SYS_Portal.Users (Username, Page, Data) " _
2684
- " select ID,?,? from Security.Users"
2684
+ " select ID,?,$LISTBUILD(?) from Security.Users"
2685
2685
set caption = " Git: " _installNamespace
2686
2686
set link = " /isc/studio/usertemplates/gitsourcecontrol/webuidriver.csp/" _installNamespace _" /"
2687
2687
write !," Adding Git favorite... "
@@ -2890,11 +2890,10 @@ ClassMethod BuildCEInstallationPackage(ByRef destination As %String) As %Status
2890
2890
$$$ThrowOnError(project .AddItem (key _" .CLS" ))
2891
2891
}
2892
2892
$$$ThrowOnError(project .AddItem (" SourceControl.Git.INC" ))
2893
- $$$ThrowOnError(project .AddItem (" %ZPM.PackageManager.Core.Singleton.CLS" ))
2894
2893
2895
2894
// /isc/studio/usertemplates project
2896
2895
set sourcedir = ##class (%Library.File ).NormalizeDirectory ($$$sourcedir)
2897
- set archive = ##class (%ZPM.PackageManager.Core .XDataArchive ).%New (sourcedir )
2896
+ set archive = ##class (%IPM.Lifecycle.StudioProject .XDataArchive ).%New (sourcedir )
2898
2897
do archive .AddToProject (project )
2899
2898
2900
2899
kill $$$exportGBL
@@ -3178,3 +3177,4 @@ ClassMethod GitUnstage(Output output As %Library.DynamicObject) As %Status
3178
3177
}
3179
3178
3180
3179
}
3180
+
You can’t perform that action at this time.
0 commit comments