mirror of
https://github.com/DanielSiepmann/tracking.git
synced 2024-11-22 05:56:08 +01:00
Release 1.1.1
Add changelog entry. Raise version number.
This commit is contained in:
parent
92e7795752
commit
50741e6531
3 changed files with 61 additions and 2 deletions
56
Documentation/Changelog/1.1.1.rst
Normal file
56
Documentation/Changelog/1.1.1.rst
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
1.1.1
|
||||||
|
=====
|
||||||
|
|
||||||
|
Breaking
|
||||||
|
--------
|
||||||
|
|
||||||
|
Nothing
|
||||||
|
|
||||||
|
Features
|
||||||
|
--------
|
||||||
|
|
||||||
|
Nothing
|
||||||
|
|
||||||
|
Fixes
|
||||||
|
-----
|
||||||
|
|
||||||
|
* Allow copy of pages
|
||||||
|
|
||||||
|
Pages can not be copied by administrators as DataHandler will copy all
|
||||||
|
pages, including tx_tracking_* tables.
|
||||||
|
Those are not allowed on tables which will result in error messages.
|
||||||
|
|
||||||
|
A test is added to simulate the action and ensure it doesn't fail with
|
||||||
|
errors.
|
||||||
|
|
||||||
|
Resolves: :issue:`52`.
|
||||||
|
|
||||||
|
Tasks
|
||||||
|
-----
|
||||||
|
|
||||||
|
* Mark extension as stable within extension manager
|
||||||
|
|
||||||
|
This extension is already stable.
|
||||||
|
It is used since a year in multiple production systems.
|
||||||
|
Don't provide a bad feeling to integrators and users.
|
||||||
|
|
||||||
|
* Add missing changelog for 1.1.0
|
||||||
|
|
||||||
|
* Always use TestCase of testing framework
|
||||||
|
|
||||||
|
That way the framework can add extra logic like cleanup.
|
||||||
|
We don't have to worry about such things.
|
||||||
|
|
||||||
|
* Switch to ECS for coding style
|
||||||
|
|
||||||
|
This allows configuration via PHP.
|
||||||
|
It also combines code sniffer and php cs fixer.
|
||||||
|
|
||||||
|
* Remove --no-suggest from CI
|
||||||
|
|
||||||
|
This is no longer supported by composer V2.
|
||||||
|
|
||||||
|
Deprecation
|
||||||
|
-----------
|
||||||
|
|
||||||
|
Nothing
|
|
@ -1,6 +1,6 @@
|
||||||
[general]
|
[general]
|
||||||
project = Tracking Extension
|
project = Tracking Extension
|
||||||
release = 1.0.0
|
release = 1.1.1
|
||||||
copyright = since 2020 by Daniel Siepmann
|
copyright = since 2020 by Daniel Siepmann
|
||||||
|
|
||||||
[html_theme_options]
|
[html_theme_options]
|
||||||
|
@ -14,3 +14,6 @@ project_repository = https://github.com/DanielSiepmann/tracking/
|
||||||
[intersphinx_mapping]
|
[intersphinx_mapping]
|
||||||
t3coreapi = https://docs.typo3.org/m/typo3/reference-coreapi/master/en-us/
|
t3coreapi = https://docs.typo3.org/m/typo3/reference-coreapi/master/en-us/
|
||||||
t3dashboard = https://docs.typo3.org/c/typo3/cms-dashboard/master/en-us/
|
t3dashboard = https://docs.typo3.org/c/typo3/cms-dashboard/master/en-us/
|
||||||
|
|
||||||
|
[extlinks]
|
||||||
|
issue = https://github.com/DanielSiepmann/tracking/issues/%s | GitHub issue:
|
||||||
|
|
|
@ -11,7 +11,7 @@ $EM_CONF[$_EXTKEY] = [
|
||||||
'author' => 'Daniel Siepmann',
|
'author' => 'Daniel Siepmann',
|
||||||
'author_email' => 'coding@daniel-siepmann.de',
|
'author_email' => 'coding@daniel-siepmann.de',
|
||||||
'author_company' => '',
|
'author_company' => '',
|
||||||
'version' => '1.0.1',
|
'version' => '1.1.1',
|
||||||
'constraints' => [
|
'constraints' => [
|
||||||
'depends' => [
|
'depends' => [
|
||||||
'core' => '',
|
'core' => '',
|
||||||
|
|
Loading…
Reference in a new issue