-
Notifications
You must be signed in to change notification settings - Fork 99
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
Unable to open a Sequential DS after renaming a favourited Sequential DS #3453
Open
SanthoshiBoyina1
wants to merge
39
commits into
main
Choose a base branch
from
fix/renameSeqDs
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 17 commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
333c57b
To include additional parameter in the renameNode function
SanthoshiBoyina1 0e34233
To fix error with opening a dataset member from the ds tree upon rena…
SanthoshiBoyina1 0612743
fix: to fix error seen with opening a seq ds from ds tree view after …
SanthoshiBoyina1 7d073e9
To add additional attribute newUri for the renameFavorite function
SanthoshiBoyina1 f6269af
fix: to fix error seen with opening a sequential ds from favorites tr…
SanthoshiBoyina1 8f66e11
To add contextValue property in the IZoweTreeOpts interface
SanthoshiBoyina1 6deae9b
fix: To fix failing test cases
SanthoshiBoyina1 65a8ec2
Merge branch 'main' into fix/renameSeqDs
SanthoshiBoyina1 58cc393
to add unit test coverage for rename of seq ds
SanthoshiBoyina1 ed4e2c7
To improve unit test coverage for rename of favorited seq ds
SanthoshiBoyina1 1c5aacd
to add unit test case for opening a pds after renaming a favorited pds
SanthoshiBoyina1 763834f
To make minor modifications for the renameNode Function
SanthoshiBoyina1 37952e1
To make sure rename logic is not applied on an undefined node
SanthoshiBoyina1 f1a119f
To make renameNode work correctly irrespective of the profile used
SanthoshiBoyina1 96e24bc
To make sure rename logic is not applied on an undefined node in rena…
SanthoshiBoyina1 234deec
To make renameFavorite function perform correctly irrespective of the…
SanthoshiBoyina1 fcc6bc4
To make renameDataset function properly irrespective of profile used
SanthoshiBoyina1 b6eb201
Merge branch 'main' into fix/renameSeqDs
SanthoshiBoyina1 3b88b42
To revert back to renameFavorite function definition
SanthoshiBoyina1 6dadfd0
To create newUri in the renameFavorite function itself
SanthoshiBoyina1 b53b2a8
To remove additional parameter newUri from renameFavorite in the Zowe…
SanthoshiBoyina1 23a7fa7
To remove newUri parameter in renameFavorite from IZoweTree interface
SanthoshiBoyina1 0f4e74a
To remove newUri description from renameFavorite
SanthoshiBoyina1 37cac62
To revert back to renameNode definition
SanthoshiBoyina1 1cd2eb0
To create newUri inside renameNode
SanthoshiBoyina1 44cc634
To revert back to renameNode declaration in ZoweTreeProvider class
SanthoshiBoyina1 381c619
To revert back to renameNode de
SanthoshiBoyina1 db6b033
To modify renameNode parameter in a unit test case
SanthoshiBoyina1 812885b
To fix unable to open pds member from favorite after renaming pds in …
SanthoshiBoyina1 0327aba
To add unit test case to rename a favorited PDS
SanthoshiBoyina1 13e262e
Merge branch 'main' into fix/renameSeqDs
SanthoshiBoyina1 63732e5
To add back afterLabel parameter in the renameNode
SanthoshiBoyina1 32d42d6
To add afterEach() in the rename function test suite
SanthoshiBoyina1 e14ec33
To add unit test case to check rename of favorite pds
SanthoshiBoyina1 f8f8039
Merge branch 'main' into fix/renameSeqDs
SanthoshiBoyina1 f57f5d8
Merge branch 'main' into fix/renameSeqDs
SanthoshiBoyina1 194fcf0
To revert contextOverride property
SanthoshiBoyina1 a6db56b
Merge branch 'main' into fix/renameSeqDs
JillieBeanSim f395734
Merge branch 'main' into fix/renameSeqDs
JillieBeanSim File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Do we need to add
contextValue
here? It feels redundant since it's already defined on tree nodes, and theIZoweTreeOpts
type (which is only used in constructors) hascontextOverride
to support overriding the default context value.