Skip to content
Snippets Groups Projects
Commit 2297d76f authored by David Prévot's avatar David Prévot
Browse files

New upstream version 12.3.1+dfsg

parents 827372e6 ddec29df
No related branches found
No related tags found
No related merge requests found
Pipeline #881684 failed
......@@ -7,7 +7,7 @@ on:
name: CI
env:
COMPOSER_ROOT_VERSION: "12.3.x-dev"
COMPOSER_ROOT_VERSION: 12.3.x-dev
jobs:
coding-guidelines:
......@@ -70,13 +70,13 @@ jobs:
- windows-latest
php-version:
- "8.3"
- "8.4"
- "8.5"
- 8.3
- 8.4
- 8.5
coverage-driver:
- "pcov"
- "xdebug3"
- pcov
- xdebug3
steps:
- name: Configure Git to avoid issues with line endings
......@@ -99,15 +99,19 @@ jobs:
run: php ./tools/composer update --no-ansi --no-interaction --no-progress
- name: Run tests with PHPUnit
run: vendor/bin/phpunit --log-junit junit.xml --coverage-clover=coverage.xml
run: ./vendor/bin/phpunit --log-junit test-results.xml --coverage-clover=code-coverage.xml
- name: Upload test results to Codecov.io
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
disable_search: true
files: ./test-results.xml
- name: Upload code coverage data to Codecov.io
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
disable_search: true
files: ./code-coverage.xml
......@@ -2,10 +2,18 @@
All notable changes are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
## [12.3.1] - 2025-06-18
### Changed
* Changed CSS for HTML report to not use common ligatures as this sometimes lead to hard-to-read code
* Updated Bootstrap to version 5.3.6 for HTML report
## [12.3.0] - 2025-05-23
### Changed
* [#1080](https://github.com/sebastianbergmann/php-code-coverage/pull/1080): Support for reporting code coverage information in OpenClover XML reporter; unlike the existing Clover XML reporter, which remains unchanged, this new reporter validates against the OpenClover project's XML schema definition, with one exception: we do not generate `<testproject>` element. This feature is experimental and the generated XML might change in order to improve compliance with the OpenClover project's XML schema definition further. Such changes will be made in bugfix and/or minor releases even if they break backward compatibility.
* [#1080](https://github.com/sebastianbergmann/php-code-coverage/pull/1080): Support for reporting code coverage information in OpenClover XML format; unlike the existing Clover XML reporter, which remains unchanged, the XML documents generated by this new reporter validate against the OpenClover project's XML schema definition, with one exception: we do not generate the `<testproject>` element. This feature is experimental and the generated XML might change in order to improve compliance with the OpenClover project's XML schema definition further. Such changes will be made in bugfix and/or minor releases even if they break backward compatibility.
[12.3.1]: https://github.com/sebastianbergmann/php-code-coverage/compare/12.3.0...12.3.1
[12.3.0]: https://github.com/sebastianbergmann/php-code-coverage/compare/12.2.1...12.3.0
......@@ -14,7 +14,6 @@ body {
font-family: sans-serif;
font-size: 1em;
font-kerning: normal;
font-variant-ligatures: common-ligatures;
text-rendering: optimizeLegibility;
padding-top: 10px;
}
......
......@@ -19,7 +19,7 @@ final class Version
public static function id(): string
{
if (self::$version === '') {
self::$version = (new VersionId('12.3.0', dirname(__DIR__)))->asString();
self::$version = (new VersionId('12.3.1', dirname(__DIR__)))->asString();
}
return self::$version;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment