Skip to content

Commit b476099

Browse files
committed
Packages updated
1 parent d835147 commit b476099

29 files changed

+18
-3103
lines changed

APLSource/GitHubAPIv3.aplc

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
:Class GitHubAPIv3
22
⍝ This class offers methods that allows one to communicate with GitHub by using GitHub's REST API from Dyalog APL.
3-
⍝ Note that this is version 3 of the GitHub API; Later versions doe **not** use REST.\\
3+
⍝ Note that this is version 3 of the GitHub API; Later versions do **not** use REST.\\
44
⍝ Most methods of this class become available only by instantiating the class. `⎕NEW` requires an owner as argument.\\
55
⍝ However, there are also a few shared methods beyond `Version` and `History` available.\\
66
⍝ Kai Jaeger\\
@@ -10,11 +10,13 @@
1010

1111
∇ r←Version
1212
:Access Public Shared
13-
r←'GitHubAPIv3' '1.1.0' '2023-12-10'
13+
r←'GitHubAPIv3' '1.2.0' '2024-03-19'
1414
1515

1616
∇ History
1717
:Access Public Shared
18+
⍝ * 1.2.0
19+
⍝ * Dependencies updated
1820
⍝ * 1.1.0
1921
⍝ Dependencies updated: HttpCommand and APLTreeUtil2
2022
⍝ * 1.0.1
@@ -128,8 +130,8 @@
128130
∇ ns←{addPullRequests}GetAllIssues repoName;gitPath
129131
:Access Public Instance
130132
⍝ Returns all issues for a given repository but no pull requests by default.\\
131-
⍝ In GitHub, every pull request is an issue, but now all issues are pull requests.
132-
This function does not show pull requests by default, by you can change this by passing a 1 as left argument.
133+
⍝ In GitHub, every pull request is an issue, but not all issues are pull requests.
134+
You can enforce Pull Requests by passing a 1 as left argument.
133135
addPullRequests←{0<⎕NC ⍵:⍎⍵ ⋄ 0}'addPullRequests'
134136
gitPath←'https://api.github.com/repos/',(_owner),'/',repoName,'/issues'
135137
ns←GetJson gitPath

packages/apl-buildlist.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
packageID: [
3-
"dyalog-HttpCommand-5.4.4",
4-
"aplteam-APLTreeUtils2-1.3.1",
3+
"dyalog-HttpCommand-5.6.0",
4+
"aplteam-APLTreeUtils2-1.4.0",
55
],
66
principal: [
77
1,

packages/apl-dependencies.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
aplteam-APLTreeUtils2-1.3.1
2-
dyalog-HttpCommand-5.4.4
1+
aplteam-APLTreeUtils2-1.4.0
2+
dyalog-HttpCommand-5.6.0

packages_dev/apl-buildlist.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
packageID: [
3-
"aplteam-Tester2-3.5.0",
3+
"aplteam-Tester2-3.7.0",
44
"aplteam-OS-3.1.1",
5-
"aplteam-FilesAndDirs-5.5.1",
5+
"aplteam-FilesAndDirs-5.7.1",
66
"aplteam-CommTools-1.7.1",
7-
"aplteam-CodeCoverage-0.10.3",
8-
"aplteam-APLTreeUtils2-1.3.1",
7+
"aplteam-CodeCoverage-0.10.6",
8+
"aplteam-APLTreeUtils2-1.4.0",
99
"aplteam-IniFiles-5.0.3",
1010
],
1111
principal: [

packages_dev/apl-dependencies.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
aplteam-APLTreeUtils2-1.3.1
2-
aplteam-Tester2-3.5.0
3-
aplteam-CodeCoverage-0.10.3
4-
aplteam-FilesAndDirs-5.5.1
1+
aplteam-APLTreeUtils2-1.4.0
2+
aplteam-Tester2-3.7.0
3+
aplteam-CodeCoverage-0.10.6
4+
aplteam-FilesAndDirs-5.7.1
55
aplteam-OS-3.1.1
66
aplteam-CommTools-1.7.1

0 commit comments

Comments
 (0)