diff --git a/CHANGELOG.md b/CHANGELOG.md index 30a4754..8d69767 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased](https://git.d3data.de/D3Public/MyModule/compare/2.0.0.0...rel_2.x) +## [Unreleased](https://git.d3data.de/D3Public/MyModule/compare/2.1.0.0...rel_2.x) -## [2.0.0.1](https://git.d3data.de/D3Public/MailConfigChecker/releases/tag/2.0.0.1) - 2024-04-11 +## [2.1.0.0](https://git.d3data.de/D3Public/MailConfigChecker/compare/2.0.0.1...2.1.0.0) - 2024-06-05 +### Added +- check for DMARC DNS record + +## [2.0.0.1](https://git.d3data.de/D3Public/MailConfigChecker/compare/2.0.0.0...2.0.0.1) - 2024-04-11 ### Fixed - MailConfigCheck need a valid "from" mailadress to check smtp correctly diff --git a/composer.json b/composer.json index 7731668..ab4cc06 100644 --- a/composer.json +++ b/composer.json @@ -12,6 +12,7 @@ "SMTP", "phpMailer", "SPF", + "DMARC". "testing" ], "authors": [ diff --git a/metadata.php b/metadata.php index 3f5fb45..a1f1833 100644 --- a/metadata.php +++ b/metadata.php @@ -40,7 +40,7 @@ $aModule = [ 'en' => '', ], 'thumbnail' => 'picture.svg', - 'version' => '2.0.0.1', + 'version' => '2.1.0.0', 'author' => 'D³ Data Development (Inh.: Thomas Dartsch)', 'email' => 'support@shopmodule.com', 'url' => 'https://www.oxidmodule.com/', diff --git a/migration/README.md b/migration/README.md deleted file mode 100644 index b6a412c..0000000 --- a/migration/README.md +++ /dev/null @@ -1,38 +0,0 @@ -# Arbeiten mit [Doctrine Migrations](https://www.doctrine-project.org/projects/doctrine-migrations/en/3.6/reference/introduction.html) - -Migrations bilden die Veränderung der Datenbankstruktur in programmierter Form ab. Jede Strukturänderung wird in einer einzelnen (jeweils neuen) Migrationsdatei abgelegt, die Teil des Moduls ist. - -Passe die `migrations.yml` an Dein Modul an. - -## Erstellen eines Skeletons für die erste oder zusätzliche Migrationen - -``` -./vendor/bin/oe-eshop-doctrine_migration migrations:generate d3moduleid -``` - -Arbeite die angelegte Datei entsprechend Deinen Anforderungen um. - -## Ausführen der noch nicht ausgeführten Migrations - -Doctrine überwacht selbst, welche Migrationen schon ausgeführt wurden und verhindert damit mehrfache Ausführungen der selben Migration. - -Im OXID-Shop werden Migrations mit folgendem Befehl ausgeführt: - -``` -./vendor/bin/oe-eshop-db_migrate migrations:migrate -``` - -Als Argument kann noch die Suite mitgegeben werden, wenn nur bestimmte Migrations ausgeführt werden sollen. Mögliche Angaben sind: - -- CE - für alle CE-Migrations -- PE - für alle PE-Migrations -- EE - für alle EE-Migrations -- PR - für alle Projekt-Migrations -- ModuleId - für alle Migrations des jeweiligen Moduls -- ohne Angabe - werden die Migrations aller Suiten nacheinander ausgeführt - -## Abweichungen zwischen Doctrine Migrations und dem OXID Migration Wrapper - -In den originalen Doctrine Migrations können keine Suiten angegeben werden. Dafür gibt es die Möglichkeit, die Richtung (up / down) und eine Zielversion anzugeben. - -Bei OXID können Migrations ausschließlich aufwärts (up) und immer fix bis zur aktuellsten Version ausgeführt werden. \ No newline at end of file diff --git a/migration/migrations.yml b/migration/migrations.yml deleted file mode 100644 index ea631eb..0000000 --- a/migration/migrations.yml +++ /dev/null @@ -1,4 +0,0 @@ -name: D3 module name -migrations_namespace: D3\ThisModule\Migrations -table_name: d3migrations_modulename -migrations_directory: data \ No newline at end of file