Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.13 #4659

Merged
merged 40 commits into from
Mar 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
cd1ae4c
switch docker links
kevinpapst Feb 22, 2024
e1426f7
bump version
kevinpapst Feb 22, 2024
ccaa341
prevent 500 on plugin controller
kevinpapst Feb 26, 2024
96a5720
code style
kevinpapst Feb 26, 2024
fafc371
support voter caching
kevinpapst Feb 26, 2024
2227b2c
re-use supportsAttribute()
kevinpapst Feb 26, 2024
0d3a614
prevent error due to missing username
kevinpapst Feb 28, 2024
808b03e
bump composer
kevinpapst Feb 28, 2024
bbeb0b4
phpstan
kevinpapst Feb 28, 2024
c0809d1
phpstan
kevinpapst Feb 28, 2024
635a2ca
fix timezone reporting issue
kevinpapst Mar 4, 2024
5cee3a0
code style
kevinpapst Mar 4, 2024
5182958
allow filter customers by country
kevinpapst Mar 6, 2024
456185c
fix voter usage with Proxy objects
kevinpapst Mar 6, 2024
01156f5
code style
kevinpapst Mar 6, 2024
a9cd80a
rename menu IDs
kevinpapst Mar 6, 2024
fac089f
fix voter
kevinpapst Mar 7, 2024
e0fcc49
code style
kevinpapst Mar 7, 2024
91da611
bump composer packages
kevinpapst Mar 7, 2024
3d66227
support in-/decrementor in invoice date number generator
kevinpapst Mar 7, 2024
ac90ad1
code style
kevinpapst Mar 7, 2024
7216f31
code style
kevinpapst Mar 8, 2024
8508ca6
code style
kevinpapst Mar 8, 2024
4fe7c72
bump composer
kevinpapst Mar 8, 2024
dabf888
code safety
kevinpapst Mar 8, 2024
3e10687
remove redundant check
kevinpapst Mar 8, 2024
599b4a8
fix import
kevinpapst Mar 8, 2024
40582bb
revert import change
kevinpapst Mar 8, 2024
66ea758
fix tagged iterator type
kevinpapst Mar 8, 2024
e47f200
code style
kevinpapst Mar 8, 2024
f30d5bb
fix calendar locale
kevinpapst Mar 9, 2024
c15f98e
change order of daterange input and select
kevinpapst Mar 9, 2024
4384a29
remove unused import
kevinpapst Mar 10, 2024
7be2bfd
speed up permission checks
kevinpapst Mar 10, 2024
4e207a2
simplify code
kevinpapst Mar 10, 2024
a30775d
fix test
kevinpapst Mar 10, 2024
dc33f09
make sure current users permissions are respected during timesheet co…
kevinpapst Mar 10, 2024
6ceae0d
secure activity/project/custome detail api call
kevinpapst Mar 10, 2024
40a3b20
code style
kevinpapst Mar 10, 2024
5989db7
bump codecov action
kevinpapst Mar 10, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ version-resolver:
- 'translation'
default: patch
template: |
[Upgrade Kimai](https://www.kimai.org/documentation/updates.html) - [Install Kimai](https://www.kimai.org/documentation/installation.html) - [Docker](https://tobybatch.github.io/kimai2/)
[Upgrade Kimai](https://www.kimai.org/documentation/updates.html) - [Install Kimai](https://www.kimai.org/documentation/installation.html) - [Docker](https://www.kimai.org/documentation/docker.html)

**Compatible with PHP 8.1 to 8.3**

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:

- name: Upload code coverage
if: matrix.php == '8.2'
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ Support for PHP 8.2 and 8.3.

## Installation

- [Recommended setup](https://www.kimai.org/documentation/installation.html#recommended-setup) — with Git and Composer
- [Docker](https://hub.docker.com/r/kimai/kimai2) — containerized by [@tobybatch](https://github.com/tobybatch/kimai2)
- [Native setup](https://www.kimai.org/documentation/installation.html) — with Git and Composer
- [Docker](https://hub.docker.com/r/kimai/kimai2) — containerized by @tobybatch

There are also documentations for:
- [developer setups](https://www.kimai.org/documentation/developers.html) — on your local machine
Expand Down
2 changes: 1 addition & 1 deletion UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Perform EACH version specific task between your version and the new one, otherwi

## [2.0.30](https://github.com/kimai/kimai/releases/tag/2.0.30)

The `DATABASE_URL` in your environment settings ([.env](https://github.com/kimai/kimai/issues/4246) or in your [Docker](https://github.com/tobybatch/kimai2/issues/531) or webserver config)
The `DATABASE_URL` in your environment settings (e.g. [.env](https://github.com/kimai/kimai/issues/4246), [docker-compose.yaml](https://github.com/tobybatch/kimai2/issues/531) or webserver config)
now requires the `charset` and `serverVersion` params, e.g.: `DATABASE_URL=mysql://user:password@127.0.0.1:3306/database?charset=utf8mb4&serverVersion=10.5.8-MariaDB` (examples in `.env`).

## [2.0](https://github.com/kimai/kimai/releases/tag/2.0)
Expand Down