Skip to content
This repository was archived by the owner on Nov 6, 2021. It is now read-only.

Commit 8115877

Browse files
author
Florian Horn
committed
Release version v1.3.0
1 parent aeffe4e commit 8115877

File tree

6 files changed

+21
-16
lines changed

6 files changed

+21
-16
lines changed

Changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to this project will be documented in this file, in reverse chronological order by release.
44

5+
## 1.3.0
6+
7+
- Added feature to export database with fuzzyfied content without altering current database content persistently.
8+
59
## 1.2.0
610

711
- Added unit test

README.md

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
11
# Content Fuzzyfyr Module for Magento® 2
22

3-
The **Content Fuzzyfyr** module for *Magento® 2* fills up empty content fields - and if needed - switches real content with dummy content.
3+
The **Content Fuzzyfyr** module for *Magento® 2* fills up empty content fields - and if needed - switches real content with dummy content.
44
This is for development purposes, e.g. save time to prepare test data and matching GDPR restrictions.
55

66

77
## Features:
88
* Fill up empty content fields with dummy content - completely automated
9-
* Match GDPR restrictions for development, when using production data
9+
* Match GDPR compliance for development, when using production data
10+
* Export your production database already matching GDPR compliance
1011
* Use parameters to control the sections required to be filled up with dummy content
1112

1213
## Installation
13-
The preferred way of installing `allindata/magento2-content-fuzzyfyr` is through Composer.
14+
The preferred way of installing `allindata/magento2-content-fuzzyfyr` is through Composer.
1415
Simply add `allindata/magento2-content-fuzzyfyr` as a dependency:
1516

1617
```
1718
composer.phar require allindata/magento2-content-fuzzyfyr
1819
```
1920

20-
Optional you can download the latest version [here](https://github.com/allin-data/magento2-content-fuzzyfyr/releases)
21+
Optional you can download the latest version [here](https://github.com/allin-data/magento2-content-fuzzyfyr/releases)
2122
and install the decompressed code in your projects directory under *app/code/AllInData/ContentFuzzyfyr*.
2223

2324
## Post-Install
@@ -30,9 +31,9 @@ bin/magento module:enable AllInData_ContentFuzzyfyr
3031

3132
## System Upgrade
3233

33-
After enabling the module, the *Magento® 2* system must be upgraded.
34+
After enabling the module, the *Magento® 2* system must be upgraded.
3435

35-
If the system mode is set to *production*, run the *compile* command first.
36+
If the system mode is set to *production*, run the *compile* command first.
3637
This is not necessary for the *developer* mode.
3738
```
3839
bin/magento setup:di:compile
@@ -51,17 +52,17 @@ Find the complete user guide [here](./docs/UserGuide.pdf "User Guide").
5152
### CLI
5253
#### Content Fuzzyfyr
5354

54-
The **Content Fuzzyfyr** Module for *Magento® 2* provides an *Magento® 2* CLI command *aid:content:fuzzyfyr* to modify
55+
The **Content Fuzzyfyr** Module for *Magento® 2* provides an *Magento® 2* CLI command *aid:content:fuzzyfyr* to modify
5556
existing content (or only empty fields with the *--only-empty* flag) to be switched with some defined default value:
5657

5758
bin/magento aid:content:fuzzyfyr [options]
58-
59+
5960
**Note:** Be aware the command only runs in non-production mode to avoid messing up production data on mistake.
6061

6162
You may want to switch to *default* or *developer* mode to run the command:
62-
63+
6364
bin/magento deploy:mode:set developer
64-
65+
6566
#### List of flags
6667

6768
Option | Description
@@ -98,11 +99,11 @@ database dump with already fuzzyfied content for existing content (or only empty
9899
switched with some defined default value:
99100

100101
bin/magento aid:content:export [options]
101-
102+
102103
**Note:** Running the code activates maintenance mode. The maintenance mode will be disabled, if the command has run
103-
successfully or erroneous and the maintenance mode has been disabled in the beginning. But it is recommended to check
104+
successfully or erroneous and the maintenance mode has been disabled in the beginning. But it is recommended to check
104105
manually on production system after running the command.
105-
106+
106107
#### List of flags
107108

108109
Option | Description

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "allindata/magento2-content-fuzzyfyr",
33
"description": "The Content Fuzzyfyr module for Magento2 fills up empty content fields - and if needed - switches real content with dummy content. This is for development purposes, e.g. save time to prepare test data and matching GDPR restrictions.",
44
"type": "magento2-module",
5-
"version": "1.2.0",
5+
"version": "1.3.0",
66
"minimum-stability": "stable",
77
"license": "Apache-2.0",
88
"authors": [

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/UserGuide.pdf

138 KB
Binary file not shown.

etc/module.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
-->
1212
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1313
xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
14-
<module name="AllInData_ContentFuzzyfyr" setup_version="1.2.0">
14+
<module name="AllInData_ContentFuzzyfyr" setup_version="1.3.0">
1515
<sequence>
1616
<module name="Magento_Catalog"/>
1717
<module name="Magento_Cms"/>

0 commit comments

Comments
 (0)