-
Notifications
You must be signed in to change notification settings - Fork 12
feat: add tracking #60
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
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
6f141dc
feat: add tracking
shyim e0bc008
feat: add tests for one-time tasks table creation and MySQL version v…
shyim c538c8e
fix: initialize responses array in TrackingService
shyim 2dbc751
fix: add error handling for tracking MySQL version and deployment hel…
shyim 2efedc7
fix: update RunCommand to track MySQL version conditionally and adjus…
shyim 50f0692
fix: add CLAUDE_CONFIG_DIR to container environment in devcontainer c…
shyim dc0d8f0
fix: add CLAUDE_CONFIG_DIR and RW_DIRECTORIES to container environmen…
shyim d88094e
fix: refactor tracking in RunCommand to ensure PHP and MySQL versions…
shyim ff29402
fix: remove unused variable comment in track method to improve code c…
shyim a184281
fix: ensure id is set correctly in getId method of TrackingService
shyim a9c284f
fix: add check for id existence before setting it in persistId method…
shyim 383f45e
fix: update tracking endpoint in track method of TrackingService to u…
shyim 7d66169
feat: add ConsoleOutputInterface and DefaultConsoleOutput for improve…
shyim 01df54c
feat: disable telemetry during test runs by adding DO_NOT_TRACK varia…
shyim 30cbd25
feat: update paths in integration.yml to use static-plugins directory…
shyim d36337e
feat: update integration.yml and shopware-deployment-helper to suppor…
shyim 94a06f0
fix: remove devcontainer.json
shyim 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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,8 @@ | ||
| /.idea | ||
| /.claude | ||
| /vendor | ||
| /composer.lock | ||
| /var/cache | ||
| /build/coverage | ||
| /coverage | ||
| /.junie |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| <?php | ||
|
|
||
| declare(strict_types=1); | ||
|
|
||
| namespace Shopware\Deployment\Helper; | ||
|
|
||
| interface ConsoleOutputInterface | ||
| { | ||
| public function writeStdout(string $message): void; | ||
|
|
||
| public function writeStderr(string $message): void; | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| <?php | ||
|
|
||
| declare(strict_types=1); | ||
|
|
||
| namespace Shopware\Deployment\Helper; | ||
|
|
||
| class DefaultConsoleOutput implements ConsoleOutputInterface | ||
| { | ||
| public function writeStdout(string $message): void | ||
| { | ||
| fwrite(\STDOUT, $message); | ||
| } | ||
|
|
||
| public function writeStderr(string $message): void | ||
| { | ||
| fwrite(\STDERR, $message); | ||
| } | ||
| } |
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.
Uh oh!
There was an error while loading. Please reload this page.