-
Notifications
You must be signed in to change notification settings - Fork 0
0.0.0-rc.12 #654
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
Merged
0.0.0-rc.12 #654
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
3cde7d4
fix issue #640
oyeaussie cd1c8db
fix issue #641
oyeaussie f2f8be6
issue #640, fix bug with child process hitting the checkProcessIsRunning
oyeaussie 2bdd4e0
minor bug fix for issue #637
oyeaussie 1e71dd0
minor fix issue #633
oyeaussie 711562d
fix issue #642
oyeaussie 38cf944
fix issue #643
oyeaussie f8510b7
fix issue #644
oyeaussie 3151210
fix issue #645
oyeaussie 0e276ce
update #640, fixed some minor bugs.
oyeaussie 74dc025
fix issue #646
oyeaussie 06a21de
minor bug fix for issue #640
oyeaussie b3c5903
minor bug fix for issue #643
oyeaussie a464189
minor bug fix for #640
oyeaussie 8927fec
fix issue #648
oyeaussie dd5998a
fix issue #649
oyeaussie b4a6e56
update issue #649
oyeaussie 19d21b9
update issue #649. Added details of each process to be sent to the cl…
oyeaussie 5bf2895
fix minor bug #649
oyeaussie 818e37c
fix minor bug #649
oyeaussie f5fcc55
update issue #649
oyeaussie b47ee07
Initial commit issue #650
oyeaussie bbac370
update issue #649
oyeaussie 72abae6
fix issue #651
oyeaussie 37f52fa
fix issue #652. Changed method to include .fileHashes file for views …
oyeaussie fb8f36d
fix issue #653
oyeaussie 452fe95
update issue #650. Rewrite the FF method to get relation data increas…
oyeaussie 705c98d
update issue #650. If index is searched, we do not need to search aga…
oyeaussie 2c63fb7
update issue #650. removed writing of relationship information to fie…
oyeaussie 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 hidden or 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
370 changes: 201 additions & 169 deletions
370
apps/Core/Packages/Devtools/Modules/DevtoolsModules.php
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
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.
Check warning
Code scanning / CodeQL
Replacement of a substring with itself Medium
Copilot Autofix
AI 11 months ago
To fix the problem, we need to ensure that the replacement string correctly escapes the double quotes. Instead of using
'\"', which is interpreted as just a double quote, we should use'\\\"'to properly escape the double quotes. This change will ensure that the replacement operation correctly replaces double quotes with escaped double quotes.