Skip to content

Latest commit

 

History

History
138 lines (108 loc) · 5.5 KB

CHANGELOG.md

File metadata and controls

138 lines (108 loc) · 5.5 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Version 1.8.1 - 2024-10-16

CHANGES:

  • fixed bug which causes malformat of issues

Version 1.8.0 - 2024-10-06

CHANGES:

Add new parameter '--excluded-path' in order to exclude specified paths for coverage and warnings-and-errors Add unit tests for the new feature Read submission ID from notarization call in order to echo the entire command for 'notarytool' info and 'notarytool log', so we can copy and paste it into the terminal Add new xcresult file to test xcresult with errors

Version 1.7.2 - 2024-07-31

CHANGES:

  • Swift 5.9 is better choice over 5.10 in terms of compatibility

Version 1.7.1 - 2024-07-30

CHANGES:

  • revert changes to Package.swift so we can build with Xcode 15 again

Version 1.7.0 - 2024-07-28

CHANGES:

  • Use XcresultKit 1.1.0, which is Xcode 16 compatible by supporting the xcresulttool --legacy flag
  • Make the package Swift 6 compatible, which just meant to eliminate an anyway not so nice global variable.
  • Add a few more missing, not so important, tests.

Version 1.6.5 - 2024-07-04

CHANGES:

Changed the Junit xml slightly in order to be compatible with Jenkins plugin

It looks like the Jenkins plugin (https://plugins.jenkins.io/xunit/) expects: only 3 decimal places after the . in the time attribute an errors attribute, even if errors=0 on the testsuite

Version 1.6.4 - 2024-06-16

CHANGES:

removed swiftlint plugin from Package.swift file, as it seems to not work with commandline tools?

Version 1.6.3 - 2024-06-16

CHANGES:

Reverted swift package version back to 5.6 Fixed bug introduced in last version, which broke unit tests as well

Version 1.6.2 - 2024-06-14

CHANGES:

Fix crash for cobertura coverage converter

The DTD URL changed and the fallback file, which was supposed to be read from the bundle crashed the app. No surprise, because the command line tool is not a bundle. DUH! The fix is to include the DTD as string in the code. Also removed the online poll of the DTD, as it will probably never change!

Version 1.6.1 - 2024-05-19

CHANGES:

Adds support for configurying the coverage report format

Version 1.6.0 - 2024-05-19

CHANGES:

Updated the tool for Xcode 15 xccov tool. ATTENTION: use version 1.5.2 of this tool, if you are still using Xcode 14. Coverage won't work otherwise. The big change is that now we can get all the coverage data at once from xccov command line. No tedious getting coverage data for each single file. That defeats the original purpose of this tool to generate coverage data faster than the shel script, which was provided by sonar. Now this tool is not much faster at that task, as the shell script. But meanwhile xcresultparser offers more than only converting coverage data to xml. The Readme has you covered on this.

Version 1.5.2 - 2023-12-15

CHANGES:

Add support for multiple testsuites in junit xml

Version 1.5.1 - 2023-12-01

CHANGES:

Adds support for Skipped and Expected Failure test statuses

Version 1.5.0 - 2023-10-16

CHANGES:

Version 1.4.2 - 2023-05-25

CHANGES:

Version 1.3.1 - 2023-02-12

CHANGES:

Fixed bug where coverage would gather coverage for duplicate files

Version 1.3 - 2023-02-11

CHANGES:

Added support for the targets filter for the coverage functions as well Added new method to just list all target names contained in the xcresult archive

Version 1.2.2 - 2023-01-08

CHANGES:

Fixes the junit output formatter, set cobertura timestamp to test execution time and improves the entire test suite.

Version 1.2.1 - 2023-01-03

CHANGES:

Make output test report format for xml output selectable.

Version 1.2.0 - 2022-12-15

CHANGES:

Added output format for coverage data: cobertura XML (this format is the only one supported by GitLab coverage visualizer). (Credits go to Eliot Lash)

Version 1.1.6 - 2022-10-06

CHANGES:

Fixed crash in coverage XML when output is concurrently modified. (Credits go to Björn Dahlgren)

Version 1.1.5 - 2022-06-05

CHANGES:

escaped quotes in markdown changed formatting in markdown to better suit the needs for teams web hook

Version 1.1.4 - 2022-06-01

CHANGES:

Added simple markdown output (first implemented for use in Teams Webhook message).

Version 1.1.3 - 2022-04-04

CHANGES:

Changed format of test duration for sonar now from double to long

Version 1.1.2 - 2022-04-04

CHANGES:

Fixed format of test duration for sonar

Version 1.1.1 - 2022-04-03

CHANGES:

  • added -v switch to output version of the tool

Version 1.1.0 - 2022-04-03

CHANGES:

(Kind of) Fixed the file paths in test results xml for sonarqube. Unfortunately I didn't find the file paths for the tests in the xcresult archive. Only the classnames of the test classes are exposed. So I use grep to find the file in the directory provided with the '-p' parameter. That will only work on the machine where the .xcresult file was created, because only there the files exist, which can be found by grep.