Skip to content

Commit

Permalink
Merge branch 'master' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
NamelessCoder committed Nov 13, 2023
2 parents 9e9ee98 + 57bd169 commit 20d3ab1
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 12 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
@@ -1,7 +1,8 @@
Latest release: 7.0.0 (2023/09/07 11:21:38)
Latest release: 7.0.1 (2023/11/13 11:28:00)

All previous release change logs:

* [7.0.1 (2023/11/13)](Documentation/Changelog/7.0.1.md) [Full list of changes](https://github.com/FluidTYPO3/vhs/compare/7.0.0...7.0.1)
* [7.0.0 (2023/09/07)](Documentation/Changelog/7.0.0.md) [Full list of changes](https://github.com/FluidTYPO3/vhs/compare/6.1.3...7.0.0)
* [6.1.3 (2023/01/07)](Documentation/Changelog/6.1.3.md) [Full list of changes](https://github.com/FluidTYPO3/vhs/compare/6.1.2...6.1.3)
* [6.1.2 (2022/06/16)](Documentation/Changelog/6.1.2.md) [Full list of changes](https://github.com/FluidTYPO3/vhs/compare/6.1.1...6.1.2)
Expand Down
20 changes: 20 additions & 0 deletions Documentation/Changelog/7.0.1.md
@@ -0,0 +1,20 @@
## Release: 7.0.1 (2023/11/13 11:28:00)

* 2023-11-13 [BUGFIX] Match trait method signature with default null value of argument (Commit 9e9ee989 by Claus Due)
* 2023-11-13 [BUGFIX] Flip "disable group access" boolean (Commit a01f30b2 by Claus Due)
* 2023-10-12 [BUGFIX] Prevent null-instead-of-string error with PHP 8 (Commit f5f151fb by Claus Due)
* 2023-10-10 [BUGFIX] Relax return type for potential doctrine legacy version (Commit ae80794b by Claus Due)
* 2023-09-15 [BUGFIX] Fix FAL record slide limit calculation problem (Commit 26b9026f by Steffen Mächtel)

Generated by:

```
git log --since="2023/09/07 11:24:21" --until="2023/11/13 11:28:00" --abbrev-commit --pretty='%ad %s (Commit %h by %an)' \
--date=short | egrep '(\[FEATURE|BUGFIX|REMOVAL\])+'`
```

Full list of changes: https://github.com/FluidTYPO3/vhs/compare/7.0.0...7.0.1

*Please note: the change list above does not contain any TASK commits since they are considered
infrastructure-only and not relevant to end users. The full list includes these!*

22 changes: 11 additions & 11 deletions ext_emconf.php
Expand Up @@ -11,42 +11,42 @@
'conflicts' => '',
'priority' => '',
'module' => '',
'state' => 'beta',
'state' => 'stable',
'internal' => '',
'uploadfolder' => 0,
'createDirs' => '',
'modify_tables' => '',
'clearCacheOnLoad' => 0,
'lockType' => '',
'version' => '7.0.0',
'constraints' =>
'version' => '7.0.1',
'constraints' =>
array (
'depends' =>
'depends' =>
array (
'php' => '7.4.0-8.2.99',
'typo3' => '10.4.0-12.4.99',
),
'conflicts' =>
'conflicts' =>
array (
),
'suggests' =>
'suggests' =>
array (
),
),
'suggests' =>
'suggests' =>
array (
),
'_md5_values_when_last_written' => '',
'autoload' =>
'autoload' =>
array (
'psr-4' =>
'psr-4' =>
array (
'FluidTYPO3\\Vhs\\' => 'Classes/',
),
),
'autoload-dev' =>
'autoload-dev' =>
array (
'psr-4' =>
'psr-4' =>
array (
'FluidTYPO3\\Vhs\\Tests\\' => 'Tests/',
),
Expand Down

0 comments on commit 20d3ab1

Please sign in to comment.