Compare commits

...

8 Commits
5.5.4 ... 5.5.6

Author SHA1 Message Date
James Cole
34dc1f9f53 Merge branch 'release/5.5.6' into main 2021-04-09 06:20:39 +02:00
James Cole
b9d949d259 Changelog and version. 2021-04-09 06:20:10 +02:00
James Cole
3376e1e663 Fix issue in date format. 2021-04-09 06:19:43 +02:00
James Cole
ea98c2631f Merge branch 'release/5.5.5' into main 2021-04-09 06:07:05 +02:00
James Cole
50b9fe649d Merge tag '5.5.5' into develop
5.5.5
2021-04-09 06:07:05 +02:00
James Cole
56054531a3 Jump to 5.5.5 2021-04-09 06:06:41 +02:00
James Cole
1912e46113 Remove strict CSP header for #4622 2021-04-09 06:05:27 +02:00
James Cole
075f951cfe Merge tag '5.5.4' into develop
5.5.4
2021-04-09 03:06:18 +02:00
6 changed files with 16 additions and 8 deletions

View File

@@ -53,8 +53,6 @@ class SecureHeaders
$csp = [
"default-src 'none'",
"object-src 'none'",
"require-trusted-types-for 'script'",
//sprintf("script-src 'unsafe-inline' 'strict-dynamic' 'nonce-%1s' %2s", $nonce, $trackingScriptSrc),
sprintf("script-src 'unsafe-eval' 'strict-dynamic' 'self' 'unsafe-inline' 'nonce-%1s' %2s", $nonce, $trackingScriptSrc),
"style-src 'unsafe-inline' 'self'",
"base-uri 'self'",

View File

@@ -2,7 +2,7 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## 5.5.4 (API 1.5.2) 2021-04-09
## 5.5.6 (API 1.5.2) 2021-04-09
Firefly III features a new *experimental* layout that I'm currently building. You can enable it by setting environment variable `FIREFLY_III_LAYOUT=v2`. Check out [GitHub](https://github.com/firefly-iii/firefly-iii/issues/4618) for the announcement and status updates. This release features an update API version. Check out [the difference](https://github.com/firefly-iii/api-docs-generator/compare/1.5.1...1.5.2).
@@ -20,6 +20,14 @@ Firefly III features a new *experimental* layout that I'm currently building. Yo
- New endpoint to bulk update transactions.
- The chart API endpoint includes the time in the labels.
## 5.5.5
Skipped.
## 5.5.4
Skipped.
## 5.5.3 (API 1.5.1) 2021-04-03
### Changed

View File

@@ -99,7 +99,7 @@ return [
'webhooks' => false,
],
'version' => '5.5.4',
'version' => '5.5.6',
'api_version' => '1.5.2',
'db_version' => 16,
'maxUploadSize' => 1073741824, // 1 GB

View File

@@ -117,6 +117,7 @@ import TransactionGroupTitle from "./TransactionGroupTitle";
import SplitForm from "./SplitForm";
import {mapGetters, mapMutations} from "vuex";
export default {
name: "Create",
components: {
@@ -135,8 +136,9 @@ export default {
let type = parts[parts.length - 1];
// set a basic date-time string:
this.date = format(new Date, "yyyy-MM-dd'T'00:00");
console.log('Date is set to "' + this.date + '"');
this.date = (new Date).toISOString().split('T')[0] + 'T00:00';
//console.log('Date is set to "' + this.date + '"');
this.setTransactionType(type[0].toUpperCase() + type.substring(1));
this.getExpectedSourceTypes();

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long