Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
5f8823a1
Commit
5f8823a1
authored
Jun 22, 2019
by
Carsten Rose
Browse files
New version 19.6.2
parent
651588a8
Pipeline
#2008
passed with stages
in 2 minutes and 45 seconds
Changes
8
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
5f8823a1
...
...
@@ -36,6 +36,36 @@ Features
Bug Fixes
^^^^^^^^^
Version 19.6.2
--------------
Date: 21.06.2019
Notes
^^^^^
The Rest API path changed:
-
old: typo3conf/ext/qfq/Source/api/rest.php
-
new: typo3conf/ext/qfq/Classes/Api/rest.php
QFQ is now PSR4 compliant.
Features
^^^^^^^^
*
#8520 / Switch to psr4 composer.
*
#8272 / Disable 'save' button as long as an upload is running.
*
#7529 / Guarantee Sip Action plays only once.
*
#8577 / Documentation enhanced for behaviour of SELECT '_test'.
Bug Fixes
^^^^^^^^^
*
#7903 / Delete with 'table' as parameter doesn't work anymore.
*
#8571 / Primary Key: report error if lower/uppercase don't match - in general if given primary key is not found in table definition.
*
#8465 / Var substitute: '{{name:R:::0}}' default not used if it is '0'.
Version 19.6.1
--------------
...
...
@@ -74,7 +104,6 @@ Notes
Bug Fixes
^^^^^^^^^
*
#8465 / Var substitute: '{{name:R:::0}}' default not used if it is '0'.
*
#8523 / htmlid: remove spaces (war #8460). Replace uniqid() by uniqIdQfq() which delivers a constant id in case of running unit tests
*
#8430 / QFQ Doc mising.
...
...
Documentation/Release.rst
View file @
5f8823a1
...
...
@@ -36,6 +36,36 @@ Features
Bug Fixes
^^^^^^^^^
Version 19.6.2
--------------
Date: 21.06.2019
Notes
^^^^^
The Rest API path changed:
- old: typo3conf/ext/qfq/Source/api/rest.php
- new: typo3conf/ext/qfq/Classes/Api/rest.php
QFQ is now PSR4 compliant.
Features
^^^^^^^^
* #8520 / Switch to psr4 composer.
* #8272 / Disable 'save' button as long as an upload is running.
* #7529 / Guarantee Sip Action plays only once.
* #8577 / Documentation enhanced for behaviour of SELECT '_test'.
Bug Fixes
^^^^^^^^^
* #7903 / Delete with 'table' as parameter doesn't work anymore.
* #8571 / Primary Key: report error if lower/uppercase don't match - in general if given primary key is not found in table definition.
* #8465 / Var substitute: '{{name:R:::0}}' default not used if it is '0'.
Version 19.6.1
--------------
...
...
@@ -74,7 +104,6 @@ Notes
Bug Fixes
^^^^^^^^^
* #8465 / Var substitute: '{{name:R:::0}}' default not used if it is '0'.
* #8523 / htmlid: remove spaces (war #8460). Replace uniqid() by uniqIdQfq() which delivers a constant id in case of running unit tests
* #8430 / QFQ Doc mising.
...
...
Documentation/Settings.cfg
View file @
5f8823a1
...
...
@@ -22,7 +22,7 @@
project = QFQ - Quick Form Query
version = 19.6
release = 19.6.
1
release = 19.6.
2
t3author = Carsten Rose
copyright = since 2017 by the author
...
...
doc/NewVersion.md
View file @
5f8823a1
...
...
@@ -46,7 +46,6 @@ Neue Versionsnummer
4)
**Documentation**
cd Documentation
make doc-local (dadurch fallen Fehler in der RESTdoc Syntax auf)
5)
**Update Version & Commit**
...
...
@@ -54,12 +53,12 @@ Neue Versionsnummer
*
Update the version number in this document (topic 6)
*
Commit & Push new version changes to master branch:
New version 19.6.
1
New version 19.6.
2
6)
**New Tag**
:
git tag v19.6.
1
git push -u origin v19.6.
1
git tag v19.6.
2
git push -u origin v19.6.
2
7) Tickets:
*
Schliessen und der QFQ Version zuweisen.
...
...
extension/Classes/Core/Evaluate.php
View file @
5f8823a1
...
...
@@ -8,6 +8,7 @@
namespace
IMATHUZH\Qfq\Core
;
use
IMATHUZH\Qfq\Core\Store\Sip
;
use
IMATHUZH\Qfq\Core\Store\Store
;
use
IMATHUZH\Qfq\Core\Database\Database
;
use
IMATHUZH\Qfq\Core\Typo3\Password
;
...
...
@@ -415,7 +416,7 @@ class Evaluate {
}
// Not found and a default is given: take the default.
if
(
$foundInStore
==
''
&&
strlen
(
$arrToken
[
VAR_INDEX_DEFAULT
]
)
>
0
)
{
if
(
$foundInStore
==
''
&&
$arrToken
[
VAR_INDEX_DEFAULT
]
!=
''
)
{
$foundInStore
=
TOKEN_FOUND_AS_DEFAULT
;
$value
=
str_replace
(
'\\:'
,
':'
,
$arrToken
[
VAR_INDEX_DEFAULT
]);
}
...
...
@@ -432,7 +433,7 @@ class Evaluate {
case
STORE_ZERO
:
break
;
default
:
throw
new
UserReportException
(
"Wipe not implemented for store
$foundInStore
"
,
ERROR_WIPE_NOT_IMPLEMENTED_FOR_STORE
);
throw
new
\
UserReportException
(
"Wipe not implemented for store
$foundInStore
"
,
ERROR_WIPE_NOT_IMPLEMENTED_FOR_STORE
);
}
}
...
...
extension/RELEASE.txt
View file @
5f8823a1
...
...
@@ -36,6 +36,36 @@ Features
Bug Fixes
^^^^^^^^^
Version 19.6.2
--------------
Date: 21.06.2019
Notes
^^^^^
The Rest API path changed:
- old: typo3conf/ext/qfq/Source/api/rest.php
- new: typo3conf/ext/qfq/Classes/Api/rest.php
QFQ is now PSR4 compliant.
Features
^^^^^^^^
* #8520 / Switch to psr4 composer.
* #8272 / Disable 'save' button as long as an upload is running.
* #7529 / Guarantee Sip Action plays only once.
* #8577 / Documentation enhanced for behaviour of SELECT '_test'.
Bug Fixes
^^^^^^^^^
* #7903 / Delete with 'table' as parameter doesn't work anymore.
* #8571 / Primary Key: report error if lower/uppercase don't match - in general if given primary key is not found in table definition.
* #8465 / Var substitute: '{{name:R:::0}}' default not used if it is '0'.
Version 19.6.1
--------------
...
...
@@ -74,7 +104,6 @@ Notes
Bug Fixes
^^^^^^^^^
* #8465 / Var substitute: '{{name:R:::0}}' default not used if it is '0'.
* #8523 / htmlid: remove spaces (war #8460). Replace uniqid() by uniqIdQfq() which delivers a constant id in case of running unit tests
* #8430 / QFQ Doc mising.
...
...
@@ -1971,7 +2000,7 @@ Bug Fixes
* Split PHP 'print.php' in a pure API file 'print.php' and a class 'Html2Pdf.php' - the class will be reused by Download.php.
* #3573 / TypeaheadLdap: Prefetch funktioniert nicht.
* #3547 / FE of type 'note' causes writing of empty fields.
* #3546 / Throw of a
\
UserFormException with wrong parameter. Fixed.
* #3546 / Throw of a UserFormException with wrong parameter. Fixed.
* #3545 / Errormessages via API/JSON not displayed.
* #3536 / a) Datum (datetime / timestamp) werden nicht angezeigt, b) Angezeigte Datumsformat String und aktzeptierte Eingabe matchen nicht.
* #3533 / afterSave: sqlUpdate auf child-record ändert xId von Hauptrecord auf 0.
...
...
extension/ext_emconf.php
View file @
5f8823a1
...
...
@@ -12,7 +12,7 @@ $EM_CONF[$_EXTKEY] = array(
'dependencies'
=>
'fluid,extbase'
,
'clearcacheonload'
=>
true
,
'state'
=>
'stable'
,
'version'
=>
'19.6.
1
'
,
'version'
=>
'19.6.
2
'
,
'constraints'
=>
[
'depends'
=>
[
'typo3'
=>
'7.0.0-9.9.99'
,
...
...
version
View file @
5f8823a1
19.6.
1
19.6.
2
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment