James Cole
775504acb6
Chore: Add phpdocs
2023-07-04 13:29:19 +02:00
James Cole
7840e37e1a
Merge pull request #7685 from tonicospinelli/testing
...
Create a Calendar Calculator and setup test suite
2023-07-04 13:13:29 +02:00
Antonio Spinelli
720fff4595
Fix typo, remove unused class and change the copyright author
2023-07-04 06:26:05 -03:00
Antonio Spinelli
551c1f4cda
Send code coverage to SonarCloud
2023-07-03 15:45:32 -03:00
Antonio Spinelli
7f0db0de04
Organize test suites into unit and integration
...
This is the goals of project organization composing different
combinations to run any number of tests together.
2023-07-03 13:46:30 -03:00
Antonio Spinelli
6ac3cc384b
Add Bimonthly periodicity for Support\Calendar
2023-07-03 13:46:30 -03:00
Antonio Spinelli
563879c218
Fix a bug for monthly calculation periodicity
...
This change reveals a bug in the Monthly calculation date where the
difference between more than one month was discarded. The new calendar
calculator was prepared to avoid overflow at the end of the month.
2023-07-03 13:46:29 -03:00
Antonio Spinelli
dbb7ed3d5d
Add the Calendar Calculator
...
It encapsulates some date operations like sum. The result will be the
calculated date when calling the nextDateByInterval method, given the
date, periodicity, and skipInterval parameters.
For example, given a date of 2019-12-31, monthly periodicity, and skip
interval 0, the results will be 2020-01-31. Also, if the skip interval
is 1, the result is 2020-02-29. This is because the next date will add
another month to the current range.
2023-07-03 13:46:29 -03:00
Antonio Spinelli
4e3c2ba72c
Calculate the next date using periodicity strategies.
...
All these strategies encapsulate how the Carbon library adds the
interval to the current date.
Monthly, Quarterly, Half-Yearly, and Yearly explicitly use the
overflow control to guarantee the end of the next month or year
adequately.
2023-07-03 13:46:29 -03:00
Antonio Spinelli
8e911491f6
Add tests for Navigation
...
It is responsible for calculating and manipulating Dates in financial
organization is a very important feature, and requires significant
coverage.
The first test case is just to create an understanding of how it
works.
2023-07-03 13:46:29 -03:00
James Cole
03c5f3cc2d
Merge pull request #7711 from firefly-iii/dependabot/composer/develop/spatie/laravel-ignition-2.2.0
2023-07-03 06:01:54 +02:00
dependabot[bot]
484565d600
chore(deps): bump spatie/laravel-ignition from 2.1.3 to 2.2.0
...
Bumps [spatie/laravel-ignition](https://github.com/spatie/laravel-ignition ) from 2.1.3 to 2.2.0.
- [Release notes](https://github.com/spatie/laravel-ignition/releases )
- [Changelog](https://github.com/spatie/laravel-ignition/blob/main/CHANGELOG.md )
- [Commits](https://github.com/spatie/laravel-ignition/compare/2.1.3...2.2.0 )
---
updated-dependencies:
- dependency-name: spatie/laravel-ignition
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
2023-07-03 04:00:30 +00:00
James Cole
163a979227
Merge pull request #7712 from firefly-iii/dependabot/composer/develop/phpstan/phpstan-1.10.22
2023-07-03 06:00:08 +02:00
James Cole
ed105fee1d
Merge pull request #7713 from firefly-iii/dependabot/composer/develop/laravel/framework-10.14.1
2023-07-03 05:59:59 +02:00
James Cole
3b82cfa486
Merge pull request #7714 from firefly-iii/dependabot/composer/develop/nunomaduro/collision-7.7.0
2023-07-03 05:59:28 +02:00
dependabot[bot]
834e52eb2e
chore(deps): bump nunomaduro/collision from 7.6.0 to 7.7.0
...
Bumps [nunomaduro/collision](https://github.com/nunomaduro/collision ) from 7.6.0 to 7.7.0.
- [Changelog](https://github.com/nunomaduro/collision/blob/v7.x/CHANGELOG.md )
- [Commits](https://github.com/nunomaduro/collision/compare/v7.6.0...v7.7.0 )
---
updated-dependencies:
- dependency-name: nunomaduro/collision
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
2023-07-03 03:52:51 +00:00
dependabot[bot]
7eb938fe23
chore(deps): bump laravel/framework from 10.13.5 to 10.14.1
...
Bumps [laravel/framework](https://github.com/laravel/framework ) from 10.13.5 to 10.14.1.
- [Release notes](https://github.com/laravel/framework/releases )
- [Changelog](https://github.com/laravel/framework/blob/10.x/CHANGELOG.md )
- [Commits](https://github.com/laravel/framework/compare/v10.13.5...v10.14.1 )
---
updated-dependencies:
- dependency-name: laravel/framework
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
2023-07-03 03:52:47 +00:00
dependabot[bot]
8db7a4c47d
chore(deps-dev): bump phpstan/phpstan from 1.10.21 to 1.10.22
...
Bumps [phpstan/phpstan](https://github.com/phpstan/phpstan ) from 1.10.21 to 1.10.22.
- [Release notes](https://github.com/phpstan/phpstan/releases )
- [Changelog](https://github.com/phpstan/phpstan/blob/1.11.x/CHANGELOG.md )
- [Commits](https://github.com/phpstan/phpstan/compare/1.10.21...1.10.22 )
---
updated-dependencies:
- dependency-name: phpstan/phpstan
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2023-07-03 03:52:37 +00:00
James Cole
b055a5d6af
Fix #7704
2023-07-01 12:18:07 +02:00
James Cole
ad0a1b9a24
Add moar debug
2023-06-29 11:47:08 +02:00
James Cole
05d190659a
More webhook debug
2023-06-29 11:35:46 +02:00
James Cole
9c6eaffba6
Better debug for webhooks
2023-06-29 11:34:34 +02:00
James Cole
3ee5e9aa04
Remove support for Heroku
2023-06-27 17:15:53 +02:00
James Cole
93a544fe53
Merge tag 'v6.0.16' into develop
...
v6.0.16
2023-06-27 15:02:07 +02:00
James Cole
3bc98bee20
Merge branch 'release/v6.0.16'
2023-06-27 15:02:06 +02:00
James Cole
f6302bc29b
Update meta data for new release.
2023-06-27 15:01:42 +02:00
James Cole
43aa1704a9
Slight refactor in CSS fix.
2023-06-27 14:08:21 +02:00
James Cole
14fe82e361
fix : #7655
2023-06-26 06:10:16 +02:00
James Cole
33317c15a2
Merge branch 'develop' of https://github.com/firefly-iii/firefly-iii into develop
2023-06-26 06:09:10 +02:00
James Cole
ff1b56c5ef
chore: update php cs fixer
2023-06-26 06:08:33 +02:00
James Cole
25e2063d70
Merge pull request #7690 from firefly-iii/dependabot/composer/develop/doctrine/dbal-3.6.4
...
chore(deps): bump doctrine/dbal from 3.6.3 to 3.6.4
2023-06-26 05:59:15 +02:00
James Cole
1d36c74934
Merge pull request #7689 from firefly-iii/dependabot/composer/develop/phpstan/phpstan-1.10.21
...
chore(deps-dev): bump phpstan/phpstan from 1.10.20 to 1.10.21
2023-06-26 05:59:06 +02:00
James Cole
aebe7908f0
Merge pull request #7687 from MateusBMP/develop
...
Low contrast ratio on .skin-firefly-iii .btn-info color with dark theme
2023-06-26 05:58:34 +02:00
dependabot[bot]
3e2b881296
chore(deps): bump doctrine/dbal from 3.6.3 to 3.6.4
...
Bumps [doctrine/dbal](https://github.com/doctrine/dbal ) from 3.6.3 to 3.6.4.
- [Release notes](https://github.com/doctrine/dbal/releases )
- [Commits](https://github.com/doctrine/dbal/compare/3.6.3...3.6.4 )
---
updated-dependencies:
- dependency-name: doctrine/dbal
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2023-06-26 03:56:30 +00:00
dependabot[bot]
c670a6991d
chore(deps-dev): bump phpstan/phpstan from 1.10.20 to 1.10.21
...
Bumps [phpstan/phpstan](https://github.com/phpstan/phpstan ) from 1.10.20 to 1.10.21.
- [Release notes](https://github.com/phpstan/phpstan/releases )
- [Changelog](https://github.com/phpstan/phpstan/blob/1.11.x/CHANGELOG.md )
- [Commits](https://github.com/phpstan/phpstan/compare/1.10.20...1.10.21 )
---
updated-dependencies:
- dependency-name: phpstan/phpstan
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2023-06-26 03:56:24 +00:00
Mateus Pereira
f76a7d59e0
Updating .btn-info color to #fff (issue #7686 )
2023-06-25 19:43:09 -03:00
James Cole
3d8bf3ec9b
Fix #7683
2023-06-25 06:24:08 +02:00
Sander Dorigo
55e4479454
fix #7683
2023-06-24 21:00:05 +02:00
Sander Dorigo
436fe9fea4
Improve transaction validation
2023-06-24 08:27:28 +02:00
Sander Dorigo
63a7a4b03b
New version
2023-06-23 11:07:50 +02:00
Sander Dorigo
0cab974048
Extended IBAN validation
2023-06-23 10:57:26 +02:00
James Cole
5fdcf37d06
Merge tag 'v6.0.15' into develop
...
v6.0.15
2023-06-21 13:13:11 +02:00
James Cole
4663fb2f12
Merge branch 'release/v6.0.15'
2023-06-21 13:13:10 +02:00
James Cole
e844ab592d
Update meta data for release v6.0.15
2023-06-21 13:11:08 +02:00
James Cole
3dcb35710b
chore: reformat code.
2023-06-21 12:34:58 +02:00
James Cole
8d87abde64
Fix https://github.com/firefly-iii/firefly-iii/issues/7678
2023-06-21 09:58:37 +02:00
James Cole
2b78485a61
Cleanup edit thing
2023-06-21 07:39:00 +02:00
James Cole
9d057b853f
Rule edit form: rule group would always select the top one.
2023-06-21 07:30:08 +02:00
James Cole
bd269eaadf
Merge tag 'v6.0.14' into develop
...
v6.0.14
2023-06-21 07:15:29 +02:00
James Cole
7096c65f50
Merge branch 'release/v6.0.14'
2023-06-21 07:15:28 +02:00