-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge master into next #2142
Merge master into next #2142
Conversation
Signed-off-by: Andrew W. Harn <[email protected]>
Signed-off-by: Andrew W. Harn <[email protected]>
Signed-off-by: Andrew W. Harn <[email protected]>
Signed-off-by: Fernando Rijo Cedeno <[email protected]>
Create dco.yml
Signed-off-by: Gene Johnston <[email protected]>
Signed-off-by: Gene Johnston <[email protected]>
Signed-off-by: Gene Johnston <[email protected]>
Signed-off-by: Gene Johnston <[email protected]>
Signed-off-by: Gene Johnston <[email protected]>
Signed-off-by: Gene Johnston <[email protected]>
Signed-off-by: Gene Johnston <[email protected]>
Signed-off-by: Gene Johnston <[email protected]>
Reinstate token precedence over password in AbstractRestClient
Signed-off-by: zowe-robot <[email protected]>
Signed-off-by: Timothy Johnson <[email protected]>
Signed-off-by: Timothy Johnson <[email protected]>
Signed-off-by: Timothy Johnson <[email protected]>
Signed-off-by: Timothy Johnson <[email protected]>
Signed-off-by: Timothy Johnson <[email protected]>
[v2] Fix pre-commit script to support Git worktrees
Fix macOS tgz containing extra `GNUSparseFile.0` directory
Signed-off-by: zowe-robot <[email protected]>
Signed-off-by: Timothy Johnson <[email protected]>
Signed-off-by: Timothy Johnson <[email protected]>
Signed-off-by: Andrew W. Harn <[email protected]>
Show strings instead of regexes for allowed values in CLI help
Signed-off-by: Andrew W. Harn <[email protected]>
Signed-off-by: Andrew W. Harn <[email protected]>
Signed-off-by: Andrew W. Harn <[email protected]>
Signed-off-by: Andrew W. Harn <[email protected]>
Signed-off-by: Andrew W. Harn <[email protected]>
Signed-off-by: Andrew W. Harn <[email protected]>
Add encoding to job spool operations
…oding Signed-off-by: Andrew W. Harn <[email protected]>
Add encoding to Submit Jobs CLI and APIs (local-file and stdin)
Signed-off-by: zowe-robot <[email protected]>
Signed-off-by: Andrew W. Harn <[email protected]>
Signed-off-by: Andrew W. Harn <[email protected]>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## next #2142 +/- ##
=======================================
Coverage 91.20% 91.21%
=======================================
Files 628 628
Lines 17877 17888 +11
Branches 3750 3689 -61
=======================================
+ Hits 16305 16316 +11
Misses 1571 1571
Partials 1 1 ☔ View full report in Codecov by Sentry. |
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The port of al of those PRs LGTM! 😋
left a few questions to see if we would want to make a slight breaking change here 😋
@@ -366,13 +367,14 @@ export class GetJobs { | |||
* @returns {Promise<string>} - promise that resolves to the spool content | |||
* @memberof GetJobs | |||
*/ | |||
public static async getSpoolContentById(session: AbstractSession, jobname: string, jobid: string, spoolId: number) { | |||
public static async getSpoolContentById(session: AbstractSession, jobname: string, jobid: string, spoolId: number, encoding?: string) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we move the params to a typed object? (in V3)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was thinking that any changes to interfaces and parameters would be a different story, since this was primarily meant to get the two branches reconciled. It might be nice to do that change on this API....
@@ -106,16 +106,23 @@ export class SubmitJobs { | |||
* @returns {Promise<IJob>} - Promise that resolves to an IJob document with details about the submitted job | |||
* @memberof SubmitJobs | |||
*/ | |||
public static submitJcl(session: AbstractSession, jcl: string, internalReaderRecfm?: string, internalReaderLrecl?: string) { | |||
public static submitJcl(session: AbstractSession, jcl: string, internalReaderRecfm?: string, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as previous commnet...
Should we move everything after jcl
(or include jcl
too) into a typed object (with its own interface)?
This can be done in V3, and we can follow the example of submitJobCommon
in this file 😋
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
...however, on this API, we already call submitJclCommon. Frankly, I think it would be nice to just get rid of some of these redundant APIs, since they all do relatively similar things. At least for submitJCL, the change would be relatively small, since all we did was print a trace message, then call submitJclCommon with the same parameters.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks @awharn
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks @awharn!
Release succeeded for the The following packages have been published:
Powered by Octorelease 🚀 |
What It Does
Updates Next to contain the following enhancements and bug fixes from Master:
GNUSparseFile.0
directory #2126How to Test
Review Checklist
I certify that I have:
Additional Comments