Skip to content
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 beta into master #45

Merged
merged 30 commits into from
Apr 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
0513668
chore: Added semantic release (#30)
jansentjeu Mar 12, 2024
cf12d81
chore: Updated README for semantic release
jansentjeu Mar 15, 2024
ebbc38c
chore: Updated README for semantic release
jansentjeu Mar 15, 2024
fb6a144
Merge branch 'master' into beta
jansentjeu Mar 15, 2024
481d97e
chore: Added Youwe Testing Suite
jansentjeu Mar 8, 2024
b4da8d2
chore: Added Magento secrets in testing suite action
jansentjeu Mar 15, 2024
e838c5b
chore: Disabled phpstan linter
jansentjeu Mar 15, 2024
2f407a2
chore: Fixed phpmd linter
jansentjeu Mar 15, 2024
387f2ef
chore: Run grumphp directly with PHP
jansentjeu Mar 15, 2024
7b325cb
fix: use id instead of SKU (#39)
ah-net Mar 29, 2024
486bc11
chore(release): 6.0.3-beta.1 [skip ci]
semantic-release-bot Mar 29, 2024
d7e82dd
perf: Applied phpcs and phpmd rules
jansentjeu Mar 15, 2024
a6d0109
fix: Fixed DriverInterface issue
jansentjeu Mar 29, 2024
35b1682
chore(release): 7.0.0-beta.1 [skip ci]
semantic-release-bot Mar 29, 2024
d289fd3
fix: Fixed issue in FeedContent construct
jansentjeu Apr 5, 2024
3319779
chore(release): 7.0.0-beta.1 [skip ci]
semantic-release-bot Apr 5, 2024
19555a2
chore: Changed release job permissions
jansentjeu Apr 5, 2024
bb5c073
chore(release): 7.0.0-beta.1 [skip ci]
semantic-release-bot Apr 5, 2024
8deb100
Bump version nr
ah-net Apr 9, 2024
ab45570
chore(release): 7.0.0-beta.1 [skip ci]
semantic-release-bot Apr 9, 2024
389dad7
fix: use id instead of SKU (#39)
ah-net Apr 9, 2024
0f9b4d7
Merge branch 'beta' of https://github.com/EmicoEcommerce/Magento2Twea…
ah-net Apr 9, 2024
2263a31
chore(release): 7.0.0-beta.1 [skip ci]
semantic-release-bot Apr 9, 2024
f807f74
Merge branch 'master' into beta
ah-net Apr 9, 2024
3576069
fix: use id instead of SKU #39
ah-net Apr 9, 2024
f31f809
chore(release): 7.0.0-beta.2 [skip ci]
semantic-release-bot Apr 9, 2024
dad3813
perf: Applied phpcs and phpmd rules
ah-net Apr 10, 2024
7f8fa8a
fix: use id instead of sku #39
ah-net Apr 10, 2024
96eb24c
chore(release): 7.0.0-beta.3 [skip ci]
semantic-release-bot Apr 10, 2024
acb33aa
Merge branch 'master' into beta
ah-net Apr 10, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
# [7.0.0-beta.3](https://github.com/EmicoEcommerce/Magento2TweakwiseExport/compare/v7.0.0-beta.2...v7.0.0-beta.3) (2024-04-10)


### Bug Fixes

* use id instead of sku [#39](https://github.com/EmicoEcommerce/Magento2TweakwiseExport/issues/39) ([7f8fa8a](https://github.com/EmicoEcommerce/Magento2TweakwiseExport/commit/7f8fa8ab19cb024d280210d168713a61be0da2e9))


### Performance Improvements

* Applied phpcs and phpmd rules ([dad3813](https://github.com/EmicoEcommerce/Magento2TweakwiseExport/commit/dad3813f743f615d5459c5eb78be3f5109044efa))


### BREAKING CHANGES

* Code is refactored based on phpcs and phpmd rules. #37 #36

# [7.0.0-beta.2](https://github.com/EmicoEcommerce/Magento2TweakwiseExport/compare/v7.0.0-beta.1...v7.0.0-beta.2) (2024-04-09)


Expand Down
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,8 @@ Install package using composer
composer require tweakwise/magento2-tweakwise-export
```


Enable module

If 'Store Level Export' enabled single store feed can be generated using the command line.
```sh
php bin/magento tweakwise:export --store '<storecode>'
```

Run installers
```sh
php bin/magento module:enable Tweakwise_Magento2TweakwiseExport
Expand All @@ -33,6 +27,11 @@ php bin/magento tweakwise:export -t price //price export
php bin/magento tweakwise:export -s storecode //store level export, only works is store level export is enabled
```

If 'Store Level Export' enabled single store feed can be generated using the command line.
```sh
php bin/magento tweakwise:export --store '<storecode>'
```

## Debugging
Debugging is done using the default debugging functionality of Magento / PHP. You can enable indentation of the feed by setting deploy mode to developer.
```sh
Expand Down
Loading