Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 1.85 KB

File metadata and controls

51 lines (34 loc) · 1.85 KB

Changelog

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

3.0 (2026-03-24)

BREAKING CHANGES

Action runtime upgraded from node20 to node24. This requires GitHub Actions runners with Node.js 24 support.

Features

  • Upgraded action runtime from node20 to node24

Maintenance

  • Modernized codebase to ES modules (internal change)
  • Upgraded all dependencies to latest versions
    • @actions/core to v3.0.0
    • @actions/github to v9.0.0
    • @aws-sdk/client-device-farm to v3.1015.0
    • axios to v1.13.6
  • Removed fast-xml-parser security override (resolved in dependency updates)
  • Switched build toolchain from @vercel/ncc to rollup (following GitHub's official documentation)
  • Migrated test framework from Jest to Vitest for native ES modules support
  • Updated ESLint to v10 with new flat config format
  • All tests passing with 100% code coverage

2.3 (2024-08-14)

Fixed dependabot security finding #7.

2.2 (2024-07-30)

Fixed dependabot security finding #6.

2.1 (2024-06-04)

Fixed bug identified in issue #8 where configuration section in run-settings-json could not be excluded.

2.0 (2023-10-13)

BREAKING CHANGES

Inputs run-name and run-settings-path have been removed in this release.

Features

  • Replaced input run-settings-path with run-settings-json - Issue #1
  • Added output console-url Issue #2
  • Upgraded runtime to node20 from node16