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

String comparison (t.equals) fails on Windows alone #593

Closed
paambaati opened this issue May 6, 2023 · 5 comments
Closed

String comparison (t.equals) fails on Windows alone #593

paambaati opened this issue May 6, 2023 · 5 comments

Comments

@paambaati
Copy link

paambaati commented May 6, 2023

This is one of the strangest bugs I've come across, but my tape tests fail only on Windows, and only on t.equals comparisons of identical strings.

See https://github.com/paambaati/codeclimate-action/actions/runs/4900505606/jobs/8751202125?pr=666 for an example.

Screenshot 2023-05-06 at 1 32 01 PM

I've made sure to account for line-endings.

Any clue why this might be happening?

@ljharb
Copy link
Collaborator

ljharb commented May 6, 2023

What's the length of both the expected and actual strings? My guess is that there's an invisible character somewhere.

@paambaati
Copy link
Author

@ljharb
Copy link
Collaborator

ljharb commented May 7, 2023

for (var i = 0; i < a.length; i++) { if (a[i] !== b[i]) { console.log(i, a[i], b[i]); } }
339 I i
340 N n
341 D d
342 O o
343 W w
344 S s
644 I i
645 N n
646 D d
647 O o
648 W w
649 S s

seems like there's some capitalization differences between the strings. Specifically, I see some WINDOWS vs Windows. Any chance you haven't looked into the case-sensitivity of the disks in question?

paambaati added a commit to paambaati/codeclimate-action that referenced this issue May 7, 2023
See tape-testing/tape#593 (comment)

Looks like inside Windows (NTFS), all paths are case insensitive. The Windows laptop I used reported the default path as 'C:\WINDOWS', while the CI machine reports it as 'C:\Windows'
@paambaati
Copy link
Author

Lol, that was it. CI is green now – https://github.com/paambaati/codeclimate-action/actions/runs/4905472889/jobs/8759276954?pr=666. Thank you so much!

Looks like the root cause is that folder names are case-insensitive in Windows, and the machine I developed the tests on reported the path as C:\WINDOWS, while the GitHub Actions runner machine reports it as C:\Windows.

@ljharb
Copy link
Collaborator

ljharb commented May 7, 2023

That suggests they're not always case-insensitve in windows :-p glad you figured it out tho.

@ljharb ljharb closed this as not planned Won't fix, can't repro, duplicate, stale May 7, 2023
github-actions bot pushed a commit to paambaati/codeclimate-action that referenced this issue Jul 6, 2023
# [5.0.0](v4.0.0...v5.0.0) (2023-07-06)

### Bug Fixes

* **ci:** checkout EVERYTHING so semantic-release has all the data it could need ([a16dca5](a16dca5))
* **ci:** do not cancel all matrix builds for one ([1471593](1471593))
* **ci:** set up correct regex that replaces the 'v' prefixes for tags ([b3bcc0e](b3bcc0e))
* **core:** handle globs correctly in windows ([54ac87c](54ac87c))
* **core:** parse coverage path correctly on all platforms ([923001d](923001d))
* create hash from windows ([077e614](077e614))
* keep windows-style line endings for .bat files ([67549ff](67549ff))
* set up gitattributes to stop the line ending fuckery ([4246a36](4246a36))
* set up gitattributes to stop the line ending fuckery ([9181fd8](9181fd8))
* **tests:** additional windows-style test fixes ([def6f6d](def6f6d))
* **tests:** fix tests for Windows ([18e310b](18e310b))
* **tests:** fix the Windows path ([6e02942](6e02942)), closes [/github.com/tape-testing/tape/issues/593#issuecomment-1537292595](https://github.com//github.com/ljharb/tape/issues/593/issues/issuecomment-1537292595)
* **tests:** make sure the special variable in script are quoted to make string comparison work ([c796f65](c796f65))
* **tests:** mock checksum verification too ([2befa84](2befa84))
* **tests:** more windows-specific test fixes ([de37362](de37362))
* **tests:** more windows-specific test fixes ([e44e0a3](e44e0a3))
* **tests:** more windows-specific test fixes ([0b2f6f8](0b2f6f8))
* **tests:** more windows-specific test fixes ([9a9184a](9a9184a))
* **tests:** more windows-specific test fixes ([1c1a7eb](1c1a7eb))
* **tests:** more windows-specific test fixes ([8d2edab](8d2edab))
* **tests:** more windows-specific test fixes ([e05d58f](e05d58f))
* **tests:** more windows-specific tests ([e9e87cc](e9e87cc))
* **tests:** more windows-specific tests ([13ff2e3](13ff2e3))
* **tests:** more windows-specific tests ([80aa61e](80aa61e))
* **tests:** more windows-specific tests ([498dee1](498dee1))
* **tests:** more windows-specific tests ([f4dff2a](f4dff2a))
* **tests:** more windows-specific tests ([4b48851](4b48851))
* **tests:** OS-agnostic line separators for all strings ([2fc4cc3](2fc4cc3))
* **tests:** remove windows-only test and start writing os-independent logic ([29cbd91](29cbd91))
* **tests:** run checksum verification pre-checks only for fixtures on their own target platforms ([4dc408b](4dc408b))
* **tests:** set up correct file mode on Windows ([4edff7e](4edff7e))
* **tests:** set up Windows fixtures ([c29289f](c29289f))
* **tests:** skip integration tests on unsupported platforms ([00e5b40](00e5b40))
* **tests:** try correcting extra spaces in checksum files generated on Windows ([edc5e97](edc5e97))
* try LF-only line endings for all files ([e2c94ee](e2c94ee))
* **util:** follow redirects in fetch ([a258bd9](a258bd9))

### core

* Support Windows ([9af890c](9af890c))
* Support Windows ([3434c61](3434c61))

### Features

* **core:** Support Windows ([f0efca8](f0efca8)), closes [#665](#665)
* **core:** Support Windows ([9787ba6](9787ba6))
* **utils:** refactor coverage config line parser into own util ([e03d453](e03d453))

### BREAKING CHANGES

* this should ideally get published as v5
* this should ideally get published as v5
* **core:** Support Windows, now that CodeClimate has released a Windows binary of the reporter – see codeclimate.com/changelog/7dd79ee1cf1af7141b2bd18b
* **core:** Support Windows, now that CodeClimate has released a Windows binary of the reporter
jonasgloning added a commit to peers/peerjs that referenced this issue Aug 7, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[paambaati/codeclimate-action](https://github.com/paambaati/codeclimate-action)
| action | major | `v3.2.0` -> `v5.0.0` |

---

### Release Notes

<details>
<summary>paambaati/codeclimate-action
(paambaati/codeclimate-action)</summary>

###
[`v5.0.0`](https://github.com/paambaati/codeclimate-action/releases/tag/v5.0.0)

[Compare
Source](https://github.com/paambaati/codeclimate-action/compare/v4.0.0...v5.0.0)

##### Bug Fixes

- **ci:** checkout EVERYTHING so semantic-release has all the data it
could need
([a16dca5](https://github.com/paambaati/codeclimate-action/commit/a16dca5bb60d6d1ceec305e554d1d07b2e6f9f2f))
- **ci:** do not cancel all matrix builds for one
([1471593](https://github.com/paambaati/codeclimate-action/commit/1471593d867e0a8171a8bbd830bc6d14647c0c73))
- **ci:** set up correct regex that replaces the 'v' prefixes for tags
([b3bcc0e](https://github.com/paambaati/codeclimate-action/commit/b3bcc0e23b5ab151ae0a3a2aa8dce8c6bb3bb3d7))
- **core:** handle globs correctly in windows
([54ac87c](https://github.com/paambaati/codeclimate-action/commit/54ac87c16480738f78a87f5e33a4a417111a550b))
- **core:** parse coverage path correctly on all platforms
([923001d](https://github.com/paambaati/codeclimate-action/commit/923001d88c62217179c085d441a5a3d54b8399e5))
- create hash from windows
([077e614](https://github.com/paambaati/codeclimate-action/commit/077e614c8e5c583d418676d578d063d75c198405))
- keep windows-style line endings for .bat files
([67549ff](https://github.com/paambaati/codeclimate-action/commit/67549ffc57b34e099f5bb2388d86c3cc7c347ec2))
- set up gitattributes to stop the line ending fuckery
([4246a36](https://github.com/paambaati/codeclimate-action/commit/4246a36c822e053c11577e679d16bf16827d6842))
- set up gitattributes to stop the line ending fuckery
([9181fd8](https://github.com/paambaati/codeclimate-action/commit/9181fd8af8132edee25fcc8df8a751d814e394c8))
- **tests:** additional windows-style test fixes
([def6f6d](https://github.com/paambaati/codeclimate-action/commit/def6f6d4afae91513acccff73c32708488c56b75))
- **tests:** fix tests for Windows
([18e310b](https://github.com/paambaati/codeclimate-action/commit/18e310ba76d6e1fe841d54e79d9de422dc9370d3))
- **tests:** fix the Windows path
([6e02942](https://github.com/paambaati/codeclimate-action/commit/6e029425c431d797aa38acc4943036320fe4788e)),
closes
[/github.com/tape-testing/tape/issues/593#issuecomment-1537292595](https://github.com//github.com/ljharb/tape/issues/593/issues/issuecomment-1537292595)
- **tests:** make sure the special variable in script are quoted to make
string comparison work
([c796f65](https://github.com/paambaati/codeclimate-action/commit/c796f651db785c619396cdbb8e09fe0c23f5dc46))
- **tests:** mock checksum verification too
([2befa84](https://github.com/paambaati/codeclimate-action/commit/2befa84d394ee779f30efbf507b9aceabfdc18ca))
- **tests:** more windows-specific test fixes
([de37362](https://github.com/paambaati/codeclimate-action/commit/de37362050b6d7216a5422f7a391e1d6380eec23))
- **tests:** more windows-specific test fixes
([e44e0a3](https://github.com/paambaati/codeclimate-action/commit/e44e0a3f3b39f96c83d6e361469ae7fec20a5521))
- **tests:** more windows-specific test fixes
([0b2f6f8](https://github.com/paambaati/codeclimate-action/commit/0b2f6f823e9a7761ee96aa4e10ea9855e814a789))
- **tests:** more windows-specific test fixes
([9a9184a](https://github.com/paambaati/codeclimate-action/commit/9a9184a38ee7d74840d8db188c814b80ff42a045))
- **tests:** more windows-specific test fixes
([1c1a7eb](https://github.com/paambaati/codeclimate-action/commit/1c1a7eb012ea910fd8c81de6dedfdaff7ce7374e))
- **tests:** more windows-specific test fixes
([8d2edab](https://github.com/paambaati/codeclimate-action/commit/8d2edab83e08094146fcf395ff2f93f803ed50e5))
- **tests:** more windows-specific test fixes
([e05d58f](https://github.com/paambaati/codeclimate-action/commit/e05d58f36f359fd2e40e1378c64a6d5c5aa83e19))
- **tests:** more windows-specific tests
([e9e87cc](https://github.com/paambaati/codeclimate-action/commit/e9e87cc514c01b5a63d3f02552e7d1a137c803fc))
- **tests:** more windows-specific tests
([13ff2e3](https://github.com/paambaati/codeclimate-action/commit/13ff2e357d666a066f84e76369c20bb78b8f669b))
- **tests:** more windows-specific tests
([80aa61e](https://github.com/paambaati/codeclimate-action/commit/80aa61ef4dffb2558582006ee27683cf5d1d304e))
- **tests:** more windows-specific tests
([498dee1](https://github.com/paambaati/codeclimate-action/commit/498dee151bf552b61d78f1cf1b5345169cff761f))
- **tests:** more windows-specific tests
([f4dff2a](https://github.com/paambaati/codeclimate-action/commit/f4dff2a761bc3d7d08071c94d452704b5b07ff2d))
- **tests:** more windows-specific tests
([4b48851](https://github.com/paambaati/codeclimate-action/commit/4b488512dd11c86232802e7bfb81c02b9b89c6e3))
- **tests:** OS-agnostic line separators for all strings
([2fc4cc3](https://github.com/paambaati/codeclimate-action/commit/2fc4cc3403ce99cfe7000fe58b8d0acb89549fb7))
- **tests:** remove windows-only test and start writing os-independent
logic
([29cbd91](https://github.com/paambaati/codeclimate-action/commit/29cbd9169661bae87eccb3ae15101e9d9fa58f1b))
- **tests:** run checksum verification pre-checks only for fixtures on
their own target platforms
([4dc408b](https://github.com/paambaati/codeclimate-action/commit/4dc408bc02b974db9dc9e4129c7d797e7b0a3ee1))
- **tests:** set up correct file mode on Windows
([4edff7e](https://github.com/paambaati/codeclimate-action/commit/4edff7ebe0387ebfb113739a5ab3c9101994820e))
- **tests:** set up Windows fixtures
([c29289f](https://github.com/paambaati/codeclimate-action/commit/c29289fe7fac8870265111efaaeef59bb5b6a834))
- **tests:** skip integration tests on unsupported platforms
([00e5b40](https://github.com/paambaati/codeclimate-action/commit/00e5b40552ecfd62683dfc2202ed236538468d25))
- **tests:** try correcting extra spaces in checksum files generated on
Windows
([edc5e97](https://github.com/paambaati/codeclimate-action/commit/edc5e97e04929ec51a7d6b02563e518d39aff823))
- try LF-only line endings for all files
([e2c94ee](https://github.com/paambaati/codeclimate-action/commit/e2c94ee03d92b6c92abd36933bea05650aac91c7))
- **util:** follow redirects in fetch
([a258bd9](https://github.com/paambaati/codeclimate-action/commit/a258bd9f1e258160b5309cfdfd7348aeb6edc640))

##### core

- Support Windows
([9af890c](https://github.com/paambaati/codeclimate-action/commit/9af890ca201808293494389e160c2247062e61ab))
- Support Windows
([3434c61](https://github.com/paambaati/codeclimate-action/commit/3434c618e21bb9a4ea49f8f85e10839bef1addcd))

##### Features

- **core:** Support Windows
([f0efca8](https://github.com/paambaati/codeclimate-action/commit/f0efca8d8bb2d28d2e31f5b09b3a12db580b74ed)),
closes
[#&#8203;665](https://github.com/paambaati/codeclimate-action/issues/665)
- **core:** Support Windows
([9787ba6](https://github.com/paambaati/codeclimate-action/commit/9787ba65355cc7e2454726ff732df574e1a6b370))
- **utils:** refactor coverage config line parser into own util
([e03d453](https://github.com/paambaati/codeclimate-action/commit/e03d4534fcf95c549b4b083f76870551d74140c1))

##### BREAKING CHANGES

-   this should ideally get published as v5
-   this should ideally get published as v5
- **core:** Support Windows, now that CodeClimate has released a Windows
binary of the reporter – see
codeclimate.com/changelog/7dd79ee1cf1af7141b2bd18b
- **core:** Support Windows, now that CodeClimate has released a Windows
binary of the reporter

###
[`v4.0.0`](https://github.com/paambaati/codeclimate-action/releases/tag/v4.0.0)

[Compare
Source](https://github.com/paambaati/codeclimate-action/compare/v3.2.0...v4.0.0)

##### Bug Fixes

- **ci:** debug outputs
([11ed927](https://github.com/paambaati/codeclimate-action/commit/11ed9278d366c02ce89a0aa9c0266d01ed3fe78f))
- **ci:** fix invalid YAML
([8f95f43](https://github.com/paambaati/codeclimate-action/commit/8f95f43e97f705d9dbb7e18d5586a16e8531d318))
- **ci:** fix the tag detection logic for new releases
([f787a56](https://github.com/paambaati/codeclimate-action/commit/f787a56de16312cc3eeff8ed0117b9cc1339a2f3))
- **ci:** rebuild and republish to use new branch and workflows
([0c99fb3](https://github.com/paambaati/codeclimate-action/commit/0c99fb3d11aa2bbf8bf94ed90bd4955348c6338b))
- **ci:** republish so latest changes get applied
([8f00eaa](https://github.com/paambaati/codeclimate-action/commit/8f00eaacd9c46d0c7351c37ce64d6f2705ae93dc))
- **ci:** republish so latest changes get applied
([fa71c1f](https://github.com/paambaati/codeclimate-action/commit/fa71c1ff7a91f7177d648c64b50c50dd9aa0d90e))
- **ci:** set up correct (?) condition to trigger publish
([3e9c9ce](https://github.com/paambaati/codeclimate-action/commit/3e9c9cefc80813bd2d9fffeb4610778e0761f2f7))
- **ci:** try once again to publish new version
([bcd27f6](https://github.com/paambaati/codeclimate-action/commit/bcd27f6c52b0b9daa097cb34b05c43e5040216b7))
- **ci:** use the un-broken latest version of the workflow
([0fe0643](https://github.com/paambaati/codeclimate-action/commit/0fe06436de76fed68e37a8d6001f6ba46ba23f26))
- **ci:** validate empty new release version
([2b9684a](https://github.com/paambaati/codeclimate-action/commit/2b9684a12a4089d77e5ab787677df4affaeb6ac0))
- **core:** support ARM 64-bit environments
([ea13673](https://github.com/paambaati/codeclimate-action/commit/ea1367348928eca3a302fb3682b07c585841c39f))
- **core:** support ARM 64-bit environments
([99e22b3](https://github.com/paambaati/codeclimate-action/commit/99e22b3d7de0c911c564cd391d4f9dae79ae176e))

##### Features

- **core:** cleanup downloaded artifacts
([f331896](https://github.com/paambaati/codeclimate-action/commit/f3318964532e9a7bdf28c20830035973024c31bc)),
closes
[#&#8203;639](https://github.com/paambaati/codeclimate-action/issues/639)
- **core:** support fork PRs.
([70a75ac](https://github.com/paambaati/codeclimate-action/commit/70a75acf3c0eaae19bee5fb425f63e455356daf7)),
closes
[#&#8203;627](https://github.com/paambaati/codeclimate-action/issues/627)

##### BREAKING CHANGES

- **ci:** semantic-release and its process is fundamentally broken when
the repo moved from master to main for its main branch. This is an
attempt to try to unfuck the git log/ref notes

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/peers/peerjs).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi4yNy4xIiwidXBkYXRlZEluVmVyIjoiMzYuMjcuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9-->
jonasgloning added a commit to peers/js-binarypack that referenced this issue Aug 12, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[paambaati/codeclimate-action](https://github.com/paambaati/codeclimate-action)
| action | major | `v3.2.0` -> `v5.0.0` |

---

### Release Notes

<details>
<summary>paambaati/codeclimate-action
(paambaati/codeclimate-action)</summary>

###
[`v5.0.0`](https://github.com/paambaati/codeclimate-action/releases/tag/v5.0.0)

[Compare
Source](https://github.com/paambaati/codeclimate-action/compare/v4.0.0...v5.0.0)

##### Bug Fixes

- **ci:** checkout EVERYTHING so semantic-release has all the data it
could need
([a16dca5](https://github.com/paambaati/codeclimate-action/commit/a16dca5bb60d6d1ceec305e554d1d07b2e6f9f2f))
- **ci:** do not cancel all matrix builds for one
([1471593](https://github.com/paambaati/codeclimate-action/commit/1471593d867e0a8171a8bbd830bc6d14647c0c73))
- **ci:** set up correct regex that replaces the 'v' prefixes for tags
([b3bcc0e](https://github.com/paambaati/codeclimate-action/commit/b3bcc0e23b5ab151ae0a3a2aa8dce8c6bb3bb3d7))
- **core:** handle globs correctly in windows
([54ac87c](https://github.com/paambaati/codeclimate-action/commit/54ac87c16480738f78a87f5e33a4a417111a550b))
- **core:** parse coverage path correctly on all platforms
([923001d](https://github.com/paambaati/codeclimate-action/commit/923001d88c62217179c085d441a5a3d54b8399e5))
- create hash from windows
([077e614](https://github.com/paambaati/codeclimate-action/commit/077e614c8e5c583d418676d578d063d75c198405))
- keep windows-style line endings for .bat files
([67549ff](https://github.com/paambaati/codeclimate-action/commit/67549ffc57b34e099f5bb2388d86c3cc7c347ec2))
- set up gitattributes to stop the line ending fuckery
([4246a36](https://github.com/paambaati/codeclimate-action/commit/4246a36c822e053c11577e679d16bf16827d6842))
- set up gitattributes to stop the line ending fuckery
([9181fd8](https://github.com/paambaati/codeclimate-action/commit/9181fd8af8132edee25fcc8df8a751d814e394c8))
- **tests:** additional windows-style test fixes
([def6f6d](https://github.com/paambaati/codeclimate-action/commit/def6f6d4afae91513acccff73c32708488c56b75))
- **tests:** fix tests for Windows
([18e310b](https://github.com/paambaati/codeclimate-action/commit/18e310ba76d6e1fe841d54e79d9de422dc9370d3))
- **tests:** fix the Windows path
([6e02942](https://github.com/paambaati/codeclimate-action/commit/6e029425c431d797aa38acc4943036320fe4788e)),
closes
[/github.com/tape-testing/tape/issues/593#issuecomment-1537292595](https://github.com//github.com/ljharb/tape/issues/593/issues/issuecomment-1537292595)
- **tests:** make sure the special variable in script are quoted to make
string comparison work
([c796f65](https://github.com/paambaati/codeclimate-action/commit/c796f651db785c619396cdbb8e09fe0c23f5dc46))
- **tests:** mock checksum verification too
([2befa84](https://github.com/paambaati/codeclimate-action/commit/2befa84d394ee779f30efbf507b9aceabfdc18ca))
- **tests:** more windows-specific test fixes
([de37362](https://github.com/paambaati/codeclimate-action/commit/de37362050b6d7216a5422f7a391e1d6380eec23))
- **tests:** more windows-specific test fixes
([e44e0a3](https://github.com/paambaati/codeclimate-action/commit/e44e0a3f3b39f96c83d6e361469ae7fec20a5521))
- **tests:** more windows-specific test fixes
([0b2f6f8](https://github.com/paambaati/codeclimate-action/commit/0b2f6f823e9a7761ee96aa4e10ea9855e814a789))
- **tests:** more windows-specific test fixes
([9a9184a](https://github.com/paambaati/codeclimate-action/commit/9a9184a38ee7d74840d8db188c814b80ff42a045))
- **tests:** more windows-specific test fixes
([1c1a7eb](https://github.com/paambaati/codeclimate-action/commit/1c1a7eb012ea910fd8c81de6dedfdaff7ce7374e))
- **tests:** more windows-specific test fixes
([8d2edab](https://github.com/paambaati/codeclimate-action/commit/8d2edab83e08094146fcf395ff2f93f803ed50e5))
- **tests:** more windows-specific test fixes
([e05d58f](https://github.com/paambaati/codeclimate-action/commit/e05d58f36f359fd2e40e1378c64a6d5c5aa83e19))
- **tests:** more windows-specific tests
([e9e87cc](https://github.com/paambaati/codeclimate-action/commit/e9e87cc514c01b5a63d3f02552e7d1a137c803fc))
- **tests:** more windows-specific tests
([13ff2e3](https://github.com/paambaati/codeclimate-action/commit/13ff2e357d666a066f84e76369c20bb78b8f669b))
- **tests:** more windows-specific tests
([80aa61e](https://github.com/paambaati/codeclimate-action/commit/80aa61ef4dffb2558582006ee27683cf5d1d304e))
- **tests:** more windows-specific tests
([498dee1](https://github.com/paambaati/codeclimate-action/commit/498dee151bf552b61d78f1cf1b5345169cff761f))
- **tests:** more windows-specific tests
([f4dff2a](https://github.com/paambaati/codeclimate-action/commit/f4dff2a761bc3d7d08071c94d452704b5b07ff2d))
- **tests:** more windows-specific tests
([4b48851](https://github.com/paambaati/codeclimate-action/commit/4b488512dd11c86232802e7bfb81c02b9b89c6e3))
- **tests:** OS-agnostic line separators for all strings
([2fc4cc3](https://github.com/paambaati/codeclimate-action/commit/2fc4cc3403ce99cfe7000fe58b8d0acb89549fb7))
- **tests:** remove windows-only test and start writing os-independent
logic
([29cbd91](https://github.com/paambaati/codeclimate-action/commit/29cbd9169661bae87eccb3ae15101e9d9fa58f1b))
- **tests:** run checksum verification pre-checks only for fixtures on
their own target platforms
([4dc408b](https://github.com/paambaati/codeclimate-action/commit/4dc408bc02b974db9dc9e4129c7d797e7b0a3ee1))
- **tests:** set up correct file mode on Windows
([4edff7e](https://github.com/paambaati/codeclimate-action/commit/4edff7ebe0387ebfb113739a5ab3c9101994820e))
- **tests:** set up Windows fixtures
([c29289f](https://github.com/paambaati/codeclimate-action/commit/c29289fe7fac8870265111efaaeef59bb5b6a834))
- **tests:** skip integration tests on unsupported platforms
([00e5b40](https://github.com/paambaati/codeclimate-action/commit/00e5b40552ecfd62683dfc2202ed236538468d25))
- **tests:** try correcting extra spaces in checksum files generated on
Windows
([edc5e97](https://github.com/paambaati/codeclimate-action/commit/edc5e97e04929ec51a7d6b02563e518d39aff823))
- try LF-only line endings for all files
([e2c94ee](https://github.com/paambaati/codeclimate-action/commit/e2c94ee03d92b6c92abd36933bea05650aac91c7))
- **util:** follow redirects in fetch
([a258bd9](https://github.com/paambaati/codeclimate-action/commit/a258bd9f1e258160b5309cfdfd7348aeb6edc640))

##### core

- Support Windows
([9af890c](https://github.com/paambaati/codeclimate-action/commit/9af890ca201808293494389e160c2247062e61ab))
- Support Windows
([3434c61](https://github.com/paambaati/codeclimate-action/commit/3434c618e21bb9a4ea49f8f85e10839bef1addcd))

##### Features

- **core:** Support Windows
([f0efca8](https://github.com/paambaati/codeclimate-action/commit/f0efca8d8bb2d28d2e31f5b09b3a12db580b74ed)),
closes
[#&#8203;665](https://github.com/paambaati/codeclimate-action/issues/665)
- **core:** Support Windows
([9787ba6](https://github.com/paambaati/codeclimate-action/commit/9787ba65355cc7e2454726ff732df574e1a6b370))
- **utils:** refactor coverage config line parser into own util
([e03d453](https://github.com/paambaati/codeclimate-action/commit/e03d4534fcf95c549b4b083f76870551d74140c1))

##### BREAKING CHANGES

-   this should ideally get published as v5
-   this should ideally get published as v5
- **core:** Support Windows, now that CodeClimate has released a Windows
binary of the reporter – see
codeclimate.com/changelog/7dd79ee1cf1af7141b2bd18b
- **core:** Support Windows, now that CodeClimate has released a Windows
binary of the reporter

###
[`v4.0.0`](https://github.com/paambaati/codeclimate-action/releases/tag/v4.0.0)

[Compare
Source](https://github.com/paambaati/codeclimate-action/compare/v3.2.0...v4.0.0)

##### Bug Fixes

- **ci:** debug outputs
([11ed927](https://github.com/paambaati/codeclimate-action/commit/11ed9278d366c02ce89a0aa9c0266d01ed3fe78f))
- **ci:** fix invalid YAML
([8f95f43](https://github.com/paambaati/codeclimate-action/commit/8f95f43e97f705d9dbb7e18d5586a16e8531d318))
- **ci:** fix the tag detection logic for new releases
([f787a56](https://github.com/paambaati/codeclimate-action/commit/f787a56de16312cc3eeff8ed0117b9cc1339a2f3))
- **ci:** rebuild and republish to use new branch and workflows
([0c99fb3](https://github.com/paambaati/codeclimate-action/commit/0c99fb3d11aa2bbf8bf94ed90bd4955348c6338b))
- **ci:** republish so latest changes get applied
([8f00eaa](https://github.com/paambaati/codeclimate-action/commit/8f00eaacd9c46d0c7351c37ce64d6f2705ae93dc))
- **ci:** republish so latest changes get applied
([fa71c1f](https://github.com/paambaati/codeclimate-action/commit/fa71c1ff7a91f7177d648c64b50c50dd9aa0d90e))
- **ci:** set up correct (?) condition to trigger publish
([3e9c9ce](https://github.com/paambaati/codeclimate-action/commit/3e9c9cefc80813bd2d9fffeb4610778e0761f2f7))
- **ci:** try once again to publish new version
([bcd27f6](https://github.com/paambaati/codeclimate-action/commit/bcd27f6c52b0b9daa097cb34b05c43e5040216b7))
- **ci:** use the un-broken latest version of the workflow
([0fe0643](https://github.com/paambaati/codeclimate-action/commit/0fe06436de76fed68e37a8d6001f6ba46ba23f26))
- **ci:** validate empty new release version
([2b9684a](https://github.com/paambaati/codeclimate-action/commit/2b9684a12a4089d77e5ab787677df4affaeb6ac0))
- **core:** support ARM 64-bit environments
([ea13673](https://github.com/paambaati/codeclimate-action/commit/ea1367348928eca3a302fb3682b07c585841c39f))
- **core:** support ARM 64-bit environments
([99e22b3](https://github.com/paambaati/codeclimate-action/commit/99e22b3d7de0c911c564cd391d4f9dae79ae176e))

##### Features

- **core:** cleanup downloaded artifacts
([f331896](https://github.com/paambaati/codeclimate-action/commit/f3318964532e9a7bdf28c20830035973024c31bc)),
closes
[#&#8203;639](https://github.com/paambaati/codeclimate-action/issues/639)
- **core:** support fork PRs.
([70a75ac](https://github.com/paambaati/codeclimate-action/commit/70a75acf3c0eaae19bee5fb425f63e455356daf7)),
closes
[#&#8203;627](https://github.com/paambaati/codeclimate-action/issues/627)

##### BREAKING CHANGES

- **ci:** semantic-release and its process is fundamentally broken when
the repo moved from master to main for its main branch. This is an
attempt to try to unfuck the git log/ref notes

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/peers/js-binarypack).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi40MC4zIiwidXBkYXRlZEluVmVyIjoiMzYuNDAuMyIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9-->
deregtd pushed a commit to boatkit-io/tugboat that referenced this issue Jun 15, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[paambaati/codeclimate-action](https://github.com/paambaati/codeclimate-action)
| action | major | `v3.2.0` -> `v8.0.0` |

---

### Release Notes

<details>
<summary>paambaati/codeclimate-action
(paambaati/codeclimate-action)</summary>

###
[`v8.0.0`](https://github.com/paambaati/codeclimate-action/releases/tag/v8.0.0)

[Compare
Source](https://github.com/paambaati/codeclimate-action/compare/v7.0.0...v8.0.0)

##### ⚠ BREAKING CHANGES

-   declare new environment verification option in action.yml
-   new environment verification flag
-   new environment verification flag
-   migrate everything to ESM-only
-   upgrade module to ESM
- **ci:** this doesn't change the functionality of the core action, but
it does change how releases are made in the future.
-   Trying to make semantic-release push a new release
-   this should ideally get published as v5
-   this should ideally get published as v5
- **core:** Support Windows, now that CodeClimate has released a Windows
binary of the reporter – see
codeclimate.com/changelog/7dd79ee1cf1af7141b2bd18b
- **core:** Support Windows, now that CodeClimate has released a Windows
binary of the reporter
- **ci:** semantic-release and its process is fundamentally broken when
the repo moved from master to main for its main branch. This is an
attempt to try to unfuck the git log/ref notes

##### core

- Support Windows
([9af890c](https://github.com/paambaati/codeclimate-action/commit/9af890ca201808293494389e160c2247062e61ab))
- Support Windows
([3434c61](https://github.com/paambaati/codeclimate-action/commit/3434c618e21bb9a4ea49f8f85e10839bef1addcd))

##### Features

- **ci:** replace semantic-release with Google's release-please.
([854ea46](https://github.com/paambaati/codeclimate-action/commit/854ea46b10d7c48dc04f57be960f2257fca0ba16))
- **core/internal:** migrate to Japa as test runner.
([c909795](https://github.com/paambaati/codeclimate-action/commit/c909795d1dcb5df36fdeeff279bb457ba354f9f7))
- **core:** cleanup downloaded artifacts
([f331896](https://github.com/paambaati/codeclimate-action/commit/f3318964532e9a7bdf28c20830035973024c31bc)),
closes
[#&#8203;639](https://github.com/paambaati/codeclimate-action/issues/639)
- **core:** migrate everything to ESM-only
([6e2b10b](https://github.com/paambaati/codeclimate-action/commit/6e2b10b46edc4c533e010d5f6df2d446de6beccf))
- **core:** support fork PRs.
([70a75ac](https://github.com/paambaati/codeclimate-action/commit/70a75acf3c0eaae19bee5fb425f63e455356daf7)),
closes
[#&#8203;627](https://github.com/paambaati/codeclimate-action/issues/627)
- **core:** Support Windows
([f0efca8](https://github.com/paambaati/codeclimate-action/commit/f0efca8d8bb2d28d2e31f5b09b3a12db580b74ed))
- **core:** Support Windows
([9787ba6](https://github.com/paambaati/codeclimate-action/commit/9787ba65355cc7e2454726ff732df574e1a6b370))
- migrate everything to ESM-only
([fed36ec](https://github.com/paambaati/codeclimate-action/commit/fed36ec1bc2a2dece8a108b769afb805aeaca1e1))
- new environment verification flag
([fa81470](https://github.com/paambaati/codeclimate-action/commit/fa81470c1bd63538aaec8ea3f8a0bb4a20964f1d))
- new environment verification flag
([6007e34](https://github.com/paambaati/codeclimate-action/commit/6007e345cd3be63fd59b5d55fd0f16edfb308ce1))
- run action using Node.js 20.x
([859e71d](https://github.com/paambaati/codeclimate-action/commit/859e71d20050925c52fd9524f5c74a0a36fba31f))
- run action using Node.js 20.x
([096c232](https://github.com/paambaati/codeclimate-action/commit/096c232e4cf323b72675683a27680ac60eead7e8))
- run action using Node.js 20.x
([7642145](https://github.com/paambaati/codeclimate-action/commit/7642145673e571d8436a9743a36d090a6f6acc5d))
- run action using Node.js 20.x
([f01d194](https://github.com/paambaati/codeclimate-action/commit/f01d1944ff5c4726c7649bf3698c1149996369bd))
- run action using Node.js 20.x
([a5d0e4f](https://github.com/paambaati/codeclimate-action/commit/a5d0e4fed50e0ae7f30c14a173467bf5651a1e8c))
- run action using Node.js 20.x
([052f893](https://github.com/paambaati/codeclimate-action/commit/052f89397e39d4b69b7f4981f7428cc626a5807c))
- upgrade module to ESM
([797e381](https://github.com/paambaati/codeclimate-action/commit/797e381806c83961cde416008109fecfbfe9063b))
- **utils:** refactor coverage config line parser into own util
([e03d453](https://github.com/paambaati/codeclimate-action/commit/e03d4534fcf95c549b4b083f76870551d74140c1))

##### Bug Fixes

- **ci:** better version tagging
([e7ede07](https://github.com/paambaati/codeclimate-action/commit/e7ede07acfbc6a654693402829004a85e680e713))
- **ci:** checkout EVERYTHING so semantic-release has all the data it
could need
([a16dca5](https://github.com/paambaati/codeclimate-action/commit/a16dca5bb60d6d1ceec305e554d1d07b2e6f9f2f))
- **ci:** debug outputs
([11ed927](https://github.com/paambaati/codeclimate-action/commit/11ed9278d366c02ce89a0aa9c0266d01ed3fe78f))
- **ci:** do not cancel all matrix builds for one
([1471593](https://github.com/paambaati/codeclimate-action/commit/1471593d867e0a8171a8bbd830bc6d14647c0c73))
- **ci:** fix invalid YAML
([8f95f43](https://github.com/paambaati/codeclimate-action/commit/8f95f43e97f705d9dbb7e18d5586a16e8531d318))
- **ci:** fix the tag detection logic for new releases
([f787a56](https://github.com/paambaati/codeclimate-action/commit/f787a56de16312cc3eeff8ed0117b9cc1339a2f3))
- **ci:** rebuild and republish to use new branch and workflows
([0c99fb3](https://github.com/paambaati/codeclimate-action/commit/0c99fb3d11aa2bbf8bf94ed90bd4955348c6338b))
- **ci:** release broken release process
([746f1d2](https://github.com/paambaati/codeclimate-action/commit/746f1d233d2b6d15d77cee532065c4124db0a82c))
- **ci:** republish so latest changes get applied
([8f00eaa](https://github.com/paambaati/codeclimate-action/commit/8f00eaacd9c46d0c7351c37ce64d6f2705ae93dc))
- **ci:** republish so latest changes get applied
([fa71c1f](https://github.com/paambaati/codeclimate-action/commit/fa71c1ff7a91f7177d648c64b50c50dd9aa0d90e))
- **ci:** set up correct (?) condition to trigger publish
([3e9c9ce](https://github.com/paambaati/codeclimate-action/commit/3e9c9cefc80813bd2d9fffeb4610778e0761f2f7))
- **ci:** set up correct regex that replaces the 'v' prefixes for tags
([b3bcc0e](https://github.com/paambaati/codeclimate-action/commit/b3bcc0e23b5ab151ae0a3a2aa8dce8c6bb3bb3d7))
- **ci:** try once again to publish new version
([bcd27f6](https://github.com/paambaati/codeclimate-action/commit/bcd27f6c52b0b9daa097cb34b05c43e5040216b7))
- **ci:** use Node 22.x so the import loader will work as expected
([d56acf0](https://github.com/paambaati/codeclimate-action/commit/d56acf0f9654ca5e5e79176b57692ff3627a2561))
- **ci:** use the un-broken latest version of the workflow
([0fe0643](https://github.com/paambaati/codeclimate-action/commit/0fe06436de76fed68e37a8d6001f6ba46ba23f26))
- **ci:** validate empty new release version
([2b9684a](https://github.com/paambaati/codeclimate-action/commit/2b9684a12a4089d77e5ab787677df4affaeb6ac0))
- **core:** handle globs correctly in windows
([54ac87c](https://github.com/paambaati/codeclimate-action/commit/54ac87c16480738f78a87f5e33a4a417111a550b))
- **core:** parse coverage path correctly on all platforms
([923001d](https://github.com/paambaati/codeclimate-action/commit/923001d88c62217179c085d441a5a3d54b8399e5))
- **core:** support ARM 64-bit environments
([ea13673](https://github.com/paambaati/codeclimate-action/commit/ea1367348928eca3a302fb3682b07c585841c39f))
- **core:** support ARM 64-bit environments
([ea13673](https://github.com/paambaati/codeclimate-action/commit/ea1367348928eca3a302fb3682b07c585841c39f))
- **core:** support ARM 64-bit environments
([99e22b3](https://github.com/paambaati/codeclimate-action/commit/99e22b3d7de0c911c564cd391d4f9dae79ae176e))
- create hash from windows
([077e614](https://github.com/paambaati/codeclimate-action/commit/077e614c8e5c583d418676d578d063d75c198405))
- declare new environment verification option in action.yml
([3d46dc1](https://github.com/paambaati/codeclimate-action/commit/3d46dc126ca086664491c38f977bb9e4475682cd))
- **deps:** add missing dev-only dep to unblock typescript build
([9e22dcb](https://github.com/paambaati/codeclimate-action/commit/9e22dcb3b7b5b5992a31f3577cf113dc2e950e03))
- fix up last of the TS errors from tap API change
([d99b041](https://github.com/paambaati/codeclimate-action/commit/d99b041d9445249993e42c7091d3c36542347971))
- go back to tap because japa doesn't seem active
([19034a0](https://github.com/paambaati/codeclimate-action/commit/19034a0c630d64867d562ed7e06cab8149399e26))
- incorrect references to \__dirname
([cb821ab](https://github.com/paambaati/codeclimate-action/commit/cb821abe7dea969cd3f252f4ba8585b57951a3d2))
- keep windows-style line endings for .bat files
([67549ff](https://github.com/paambaati/codeclimate-action/commit/67549ffc57b34e099f5bb2388d86c3cc7c347ec2))
- make sure the action can actually run as ESM
([fd0ae9c](https://github.com/paambaati/codeclimate-action/commit/fd0ae9ce7c647f5f26596719886a9c227c9afcdf))
- revert
[`47793be`](https://github.com/paambaati/codeclimate-action/commit/47793be)
([e512c4b](https://github.com/paambaati/codeclimate-action/commit/e512c4b5755f6d61cf87b2fe714857fe91b4af88))
- set up gitattributes to stop the line ending fuckery
([4246a36](https://github.com/paambaati/codeclimate-action/commit/4246a36c822e053c11577e679d16bf16827d6842))
- set up gitattributes to stop the line ending fuckery
([9181fd8](https://github.com/paambaati/codeclimate-action/commit/9181fd8af8132edee25fcc8df8a751d814e394c8))
- **tests:** add back missing import
([9eb6690](https://github.com/paambaati/codeclimate-action/commit/9eb669015a1fa3a9642367df2c7f03d3249ad72b))
- **tests:** additional windows-style test fixes
([def6f6d](https://github.com/paambaati/codeclimate-action/commit/def6f6d4afae91513acccff73c32708488c56b75))
- **tests:** fix tests for Windows
([18e310b](https://github.com/paambaati/codeclimate-action/commit/18e310ba76d6e1fe841d54e79d9de422dc9370d3))
- **tests:** fix the Windows path
([6e02942](https://github.com/paambaati/codeclimate-action/commit/6e029425c431d797aa38acc4943036320fe4788e))
- **tests:** make sure the special variable in script are quoted to make
string comparison work
([c796f65](https://github.com/paambaati/codeclimate-action/commit/c796f651db785c619396cdbb8e09fe0c23f5dc46))
- **tests:** mock checksum verification too
([2befa84](https://github.com/paambaati/codeclimate-action/commit/2befa84d394ee779f30efbf507b9aceabfdc18ca))
- **tests:** more windows-specific test fixes
([de37362](https://github.com/paambaati/codeclimate-action/commit/de37362050b6d7216a5422f7a391e1d6380eec23))
- **tests:** more windows-specific test fixes
([e44e0a3](https://github.com/paambaati/codeclimate-action/commit/e44e0a3f3b39f96c83d6e361469ae7fec20a5521))
- **tests:** more windows-specific test fixes
([0b2f6f8](https://github.com/paambaati/codeclimate-action/commit/0b2f6f823e9a7761ee96aa4e10ea9855e814a789))
- **tests:** more windows-specific test fixes
([9a9184a](https://github.com/paambaati/codeclimate-action/commit/9a9184a38ee7d74840d8db188c814b80ff42a045))
- **tests:** more windows-specific test fixes
([1c1a7eb](https://github.com/paambaati/codeclimate-action/commit/1c1a7eb012ea910fd8c81de6dedfdaff7ce7374e))
- **tests:** more windows-specific test fixes
([8d2edab](https://github.com/paambaati/codeclimate-action/commit/8d2edab83e08094146fcf395ff2f93f803ed50e5))
- **tests:** more windows-specific test fixes
([e05d58f](https://github.com/paambaati/codeclimate-action/commit/e05d58f36f359fd2e40e1378c64a6d5c5aa83e19))
- **tests:** more windows-specific tests
([e9e87cc](https://github.com/paambaati/codeclimate-action/commit/e9e87cc514c01b5a63d3f02552e7d1a137c803fc))
- **tests:** more windows-specific tests
([13ff2e3](https://github.com/paambaati/codeclimate-action/commit/13ff2e357d666a066f84e76369c20bb78b8f669b))
- **tests:** more windows-specific tests
([80aa61e](https://github.com/paambaati/codeclimate-action/commit/80aa61ef4dffb2558582006ee27683cf5d1d304e))
- **tests:** more windows-specific tests
([498dee1](https://github.com/paambaati/codeclimate-action/commit/498dee151bf552b61d78f1cf1b5345169cff761f))
- **tests:** more windows-specific tests
([f4dff2a](https://github.com/paambaati/codeclimate-action/commit/f4dff2a761bc3d7d08071c94d452704b5b07ff2d))
- **tests:** more windows-specific tests
([4b48851](https://github.com/paambaati/codeclimate-action/commit/4b488512dd11c86232802e7bfb81c02b9b89c6e3))
- **tests:** OS-agnostic line separators for all strings
([2fc4cc3](https://github.com/paambaati/codeclimate-action/commit/2fc4cc3403ce99cfe7000fe58b8d0acb89549fb7))
- **tests:** remove windows-only test and start writing os-independent
logic
([29cbd91](https://github.com/paambaati/codeclimate-action/commit/29cbd9169661bae87eccb3ae15101e9d9fa58f1b))
- **tests:** run checksum verification pre-checks only for fixtures on
their own target platforms
([4dc408b](https://github.com/paambaati/codeclimate-action/commit/4dc408bc02b974db9dc9e4129c7d797e7b0a3ee1))
- **tests:** set up correct file mode on Windows
([4edff7e](https://github.com/paambaati/codeclimate-action/commit/4edff7ebe0387ebfb113739a5ab3c9101994820e))
- **tests:** set up Windows fixtures
([c29289f](https://github.com/paambaati/codeclimate-action/commit/c29289fe7fac8870265111efaaeef59bb5b6a834))
- **tests:** skip integration tests on unsupported platforms
([00e5b40](https://github.com/paambaati/codeclimate-action/commit/00e5b40552ecfd62683dfc2202ed236538468d25))
- **tests:** try correcting extra spaces in checksum files generated on
Windows
([edc5e97](https://github.com/paambaati/codeclimate-action/commit/edc5e97e04929ec51a7d6b02563e518d39aff823))
- **test:** try fixing tests on Windows (maybe)
([47793be](https://github.com/paambaati/codeclimate-action/commit/47793be72fdd16ec9d6b952bbfea93ab7dc86384))
- **test:** use the [@&#8203;tapjs/tsx](https://github.com/tapjs/tsx)
import loader to fix TS issues
([295386a](https://github.com/paambaati/codeclimate-action/commit/295386a66f5a648a1a1d048d80cb43aa738b3b75))
- try LF-only line endings for all files
([e2c94ee](https://github.com/paambaati/codeclimate-action/commit/e2c94ee03d92b6c92abd36933bea05650aac91c7))
- upgrade tap to fix the plugin issues
([f97429e](https://github.com/paambaati/codeclimate-action/commit/f97429e8c5b4a0dfc7f340cb0765fd15fc9982fd))
- **util:** follow redirects in fetch
([a258bd9](https://github.com/paambaati/codeclimate-action/commit/a258bd9f1e258160b5309cfdfd7348aeb6edc640))

##### Miscellaneous Chores

- release 6.0.0
([5c9d4de](https://github.com/paambaati/codeclimate-action/commit/5c9d4de11fe96247f3539e4e8c7cdd448b0c6dca))
- release 7.0.0
([bae515b](https://github.com/paambaati/codeclimate-action/commit/bae515b41c8a9de774d011c8796742112d8c903f))
- release 8.0.0
([26b2a65](https://github.com/paambaati/codeclimate-action/commit/26b2a652c38277ae8185d000fecbbbfe08e761a4))

###
[`v7.0.0`](https://github.com/paambaati/codeclimate-action/releases/tag/v7.0.0)

[Compare
Source](https://github.com/paambaati/codeclimate-action/compare/v6.0.0...v7.0.0)

##### ⚠ BREAKING CHANGES

-   new environment verification flag
-   new environment verification flag
-   migrate everything to ESM-only
-   upgrade module to ESM
- **ci:** this doesn't change the functionality of the core action, but
it does change how releases are made in the future.
-   Trying to make semantic-release push a new release
-   this should ideally get published as v5
-   this should ideally get published as v5
- **core:** Support Windows, now that CodeClimate has released a Windows
binary of the reporter – see
codeclimate.com/changelog/7dd79ee1cf1af7141b2bd18b
- **core:** Support Windows, now that CodeClimate has released a Windows
binary of the reporter
- **ci:** semantic-release and its process is fundamentally broken when
the repo moved from master to main for its main branch. This is an
attempt to try to unfuck the git log/ref notes

##### core

- Support Windows
([9af890c](https://github.com/paambaati/codeclimate-action/commit/9af890ca201808293494389e160c2247062e61ab))
- Support Windows
([3434c61](https://github.com/paambaati/codeclimate-action/commit/3434c618e21bb9a4ea49f8f85e10839bef1addcd))

##### Features

- **ci:** replace semantic-release with Google's release-please.
([854ea46](https://github.com/paambaati/codeclimate-action/commit/854ea46b10d7c48dc04f57be960f2257fca0ba16))
- **core/internal:** migrate to Japa as test runner.
([c909795](https://github.com/paambaati/codeclimate-action/commit/c909795d1dcb5df36fdeeff279bb457ba354f9f7))
- **core:** cleanup downloaded artifacts
([f331896](https://github.com/paambaati/codeclimate-action/commit/f3318964532e9a7bdf28c20830035973024c31bc)),
closes
[#&#8203;639](https://github.com/paambaati/codeclimate-action/issues/639)
- **core:** migrate everything to ESM-only
([6e2b10b](https://github.com/paambaati/codeclimate-action/commit/6e2b10b46edc4c533e010d5f6df2d446de6beccf))
- **core:** support fork PRs.
([70a75ac](https://github.com/paambaati/codeclimate-action/commit/70a75acf3c0eaae19bee5fb425f63e455356daf7)),
closes
[#&#8203;627](https://github.com/paambaati/codeclimate-action/issues/627)
- **core:** Support Windows
([f0efca8](https://github.com/paambaati/codeclimate-action/commit/f0efca8d8bb2d28d2e31f5b09b3a12db580b74ed))
- **core:** Support Windows
([9787ba6](https://github.com/paambaati/codeclimate-action/commit/9787ba65355cc7e2454726ff732df574e1a6b370))
- migrate everything to ESM-only
([fed36ec](https://github.com/paambaati/codeclimate-action/commit/fed36ec1bc2a2dece8a108b769afb805aeaca1e1))
- new environment verification flag
([fa81470](https://github.com/paambaati/codeclimate-action/commit/fa81470c1bd63538aaec8ea3f8a0bb4a20964f1d))
- new environment verification flag
([6007e34](https://github.com/paambaati/codeclimate-action/commit/6007e345cd3be63fd59b5d55fd0f16edfb308ce1))
- run action using Node.js 20.x
([859e71d](https://github.com/paambaati/codeclimate-action/commit/859e71d20050925c52fd9524f5c74a0a36fba31f))
- run action using Node.js 20.x
([096c232](https://github.com/paambaati/codeclimate-action/commit/096c232e4cf323b72675683a27680ac60eead7e8))
- run action using Node.js 20.x
([7642145](https://github.com/paambaati/codeclimate-action/commit/7642145673e571d8436a9743a36d090a6f6acc5d))
- run action using Node.js 20.x
([f01d194](https://github.com/paambaati/codeclimate-action/commit/f01d1944ff5c4726c7649bf3698c1149996369bd))
- run action using Node.js 20.x
([a5d0e4f](https://github.com/paambaati/codeclimate-action/commit/a5d0e4fed50e0ae7f30c14a173467bf5651a1e8c))
- run action using Node.js 20.x
([052f893](https://github.com/paambaati/codeclimate-action/commit/052f89397e39d4b69b7f4981f7428cc626a5807c))
- upgrade module to ESM
([797e381](https://github.com/paambaati/codeclimate-action/commit/797e381806c83961cde416008109fecfbfe9063b))
- **utils:** refactor coverage config line parser into own util
([e03d453](https://github.com/paambaati/codeclimate-action/commit/e03d4534fcf95c549b4b083f76870551d74140c1))

##### Bug Fixes

- **ci:** better version tagging
([e7ede07](https://github.com/paambaati/codeclimate-action/commit/e7ede07acfbc6a654693402829004a85e680e713))
- **ci:** checkout EVERYTHING so semantic-release has all the data it
could need
([a16dca5](https://github.com/paambaati/codeclimate-action/commit/a16dca5bb60d6d1ceec305e554d1d07b2e6f9f2f))
- **ci:** debug outputs
([11ed927](https://github.com/paambaati/codeclimate-action/commit/11ed9278d366c02ce89a0aa9c0266d01ed3fe78f))
- **ci:** do not cancel all matrix builds for one
([1471593](https://github.com/paambaati/codeclimate-action/commit/1471593d867e0a8171a8bbd830bc6d14647c0c73))
- **ci:** fix invalid YAML
([8f95f43](https://github.com/paambaati/codeclimate-action/commit/8f95f43e97f705d9dbb7e18d5586a16e8531d318))
- **ci:** fix the tag detection logic for new releases
([f787a56](https://github.com/paambaati/codeclimate-action/commit/f787a56de16312cc3eeff8ed0117b9cc1339a2f3))
- **ci:** rebuild and republish to use new branch and workflows
([0c99fb3](https://github.com/paambaati/codeclimate-action/commit/0c99fb3d11aa2bbf8bf94ed90bd4955348c6338b))
- **ci:** release broken release process
([746f1d2](https://github.com/paambaati/codeclimate-action/commit/746f1d233d2b6d15d77cee532065c4124db0a82c))
- **ci:** republish so latest changes get applied
([8f00eaa](https://github.com/paambaati/codeclimate-action/commit/8f00eaacd9c46d0c7351c37ce64d6f2705ae93dc))
- **ci:** republish so latest changes get applied
([fa71c1f](https://github.com/paambaati/codeclimate-action/commit/fa71c1ff7a91f7177d648c64b50c50dd9aa0d90e))
- **ci:** set up correct (?) condition to trigger publish
([3e9c9ce](https://github.com/paambaati/codeclimate-action/commit/3e9c9cefc80813bd2d9fffeb4610778e0761f2f7))
- **ci:** set up correct regex that replaces the 'v' prefixes for tags
([b3bcc0e](https://github.com/paambaati/codeclimate-action/commit/b3bcc0e23b5ab151ae0a3a2aa8dce8c6bb3bb3d7))
- **ci:** try once again to publish new version
([bcd27f6](https://github.com/paambaati/codeclimate-action/commit/bcd27f6c52b0b9daa097cb34b05c43e5040216b7))
- **ci:** use Node 22.x so the import loader will work as expected
([d56acf0](https://github.com/paambaati/codeclimate-action/commit/d56acf0f9654ca5e5e79176b57692ff3627a2561))
- **ci:** use the un-broken latest version of the workflow
([0fe0643](https://github.com/paambaati/codeclimate-action/commit/0fe06436de76fed68e37a8d6001f6ba46ba23f26))
- **ci:** validate empty new release version
([2b9684a](https://github.com/paambaati/codeclimate-action/commit/2b9684a12a4089d77e5ab787677df4affaeb6ac0))
- **core:** handle globs correctly in windows
([54ac87c](https://github.com/paambaati/codeclimate-action/commit/54ac87c16480738f78a87f5e33a4a417111a550b))
- **core:** parse coverage path correctly on all platforms
([923001d](https://github.com/paambaati/codeclimate-action/commit/923001d88c62217179c085d441a5a3d54b8399e5))
- **core:** support ARM 64-bit environments
([ea13673](https://github.com/paambaati/codeclimate-action/commit/ea1367348928eca3a302fb3682b07c585841c39f))
- **core:** support ARM 64-bit environments
([ea13673](https://github.com/paambaati/codeclimate-action/commit/ea1367348928eca3a302fb3682b07c585841c39f))
- **core:** support ARM 64-bit environments
([99e22b3](https://github.com/paambaati/codeclimate-action/commit/99e22b3d7de0c911c564cd391d4f9dae79ae176e))
- create hash from windows
([077e614](https://github.com/paambaati/codeclimate-action/commit/077e614c8e5c583d418676d578d063d75c198405))
- **deps:** add missing dev-only dep to unblock typescript build
([9e22dcb](https://github.com/paambaati/codeclimate-action/commit/9e22dcb3b7b5b5992a31f3577cf113dc2e950e03))
- fix up last of the TS errors from tap API change
([d99b041](https://github.com/paambaati/codeclimate-action/commit/d99b041d9445249993e42c7091d3c36542347971))
- go back to tap because japa doesn't seem active
([19034a0](https://github.com/paambaati/codeclimate-action/commit/19034a0c630d64867d562ed7e06cab8149399e26))
- incorrect references to \__dirname
([cb821ab](https://github.com/paambaati/codeclimate-action/commit/cb821abe7dea969cd3f252f4ba8585b57951a3d2))
- keep windows-style line endings for .bat files
([67549ff](https://github.com/paambaati/codeclimate-action/commit/67549ffc57b34e099f5bb2388d86c3cc7c347ec2))
- revert
[`47793be`](https://github.com/paambaati/codeclimate-action/commit/47793be)
([e512c4b](https://github.com/paambaati/codeclimate-action/commit/e512c4b5755f6d61cf87b2fe714857fe91b4af88))
- set up gitattributes to stop the line ending fuckery
([4246a36](https://github.com/paambaati/codeclimate-action/commit/4246a36c822e053c11577e679d16bf16827d6842))
- set up gitattributes to stop the line ending fuckery
([9181fd8](https://github.com/paambaati/codeclimate-action/commit/9181fd8af8132edee25fcc8df8a751d814e394c8))
- **tests:** add back missing import
([9eb6690](https://github.com/paambaati/codeclimate-action/commit/9eb669015a1fa3a9642367df2c7f03d3249ad72b))
- **tests:** additional windows-style test fixes
([def6f6d](https://github.com/paambaati/codeclimate-action/commit/def6f6d4afae91513acccff73c32708488c56b75))
- **tests:** fix tests for Windows
([18e310b](https://github.com/paambaati/codeclimate-action/commit/18e310ba76d6e1fe841d54e79d9de422dc9370d3))
- **tests:** fix the Windows path
([6e02942](https://github.com/paambaati/codeclimate-action/commit/6e029425c431d797aa38acc4943036320fe4788e))
- **tests:** make sure the special variable in script are quoted to make
string comparison work
([c796f65](https://github.com/paambaati/codeclimate-action/commit/c796f651db785c619396cdbb8e09fe0c23f5dc46))
- **tests:** mock checksum verification too
([2befa84](https://github.com/paambaati/codeclimate-action/commit/2befa84d394ee779f30efbf507b9aceabfdc18ca))
- **tests:** more windows-specific test fixes
([de37362](https://github.com/paambaati/codeclimate-action/commit/de37362050b6d7216a5422f7a391e1d6380eec23))
- **tests:** more windows-specific test fixes
([e44e0a3](https://github.com/paambaati/codeclimate-action/commit/e44e0a3f3b39f96c83d6e361469ae7fec20a5521))
- **tests:** more windows-specific test fixes
([0b2f6f8](https://github.com/paambaati/codeclimate-action/commit/0b2f6f823e9a7761ee96aa4e10ea9855e814a789))
- **tests:** more windows-specific test fixes
([9a9184a](https://github.com/paambaati/codeclimate-action/commit/9a9184a38ee7d74840d8db188c814b80ff42a045))
- **tests:** more windows-specific test fixes
([1c1a7eb](https://github.com/paambaati/codeclimate-action/commit/1c1a7eb012ea910fd8c81de6dedfdaff7ce7374e))
- **tests:** more windows-specific test fixes
([8d2edab](https://github.com/paambaati/codeclimate-action/commit/8d2edab83e08094146fcf395ff2f93f803ed50e5))
- **tests:** more windows-specific test fixes
([e05d58f](https://github.com/paambaati/codeclimate-action/commit/e05d58f36f359fd2e40e1378c64a6d5c5aa83e19))
- **tests:** more windows-specific tests
([e9e87cc](https://github.com/paambaati/codeclimate-action/commit/e9e87cc514c01b5a63d3f02552e7d1a137c803fc))
- **tests:** more windows-specific tests
([13ff2e3](https://github.com/paambaati/codeclimate-action/commit/13ff2e357d666a066f84e76369c20bb78b8f669b))
- **tests:** more windows-specific tests
([80aa61e](https://github.com/paambaati/codeclimate-action/commit/80aa61ef4dffb2558582006ee27683cf5d1d304e))
- **tests:** more windows-specific tests
([498dee1](https://github.com/paambaati/codeclimate-action/commit/498dee151bf552b61d78f1cf1b5345169cff761f))
- **tests:** more windows-specific tests
([f4dff2a](https://github.com/paambaati/codeclimate-action/commit/f4dff2a761bc3d7d08071c94d452704b5b07ff2d))
- **tests:** more windows-specific tests
([4b48851](https://github.com/paambaati/codeclimate-action/commit/4b488512dd11c86232802e7bfb81c02b9b89c6e3))
- **tests:** OS-agnostic line separators for all strings
([2fc4cc3](https://github.com/paambaati/codeclimate-action/commit/2fc4cc3403ce99cfe7000fe58b8d0acb89549fb7))
- **tests:** remove windows-only test and start writing os-independent
logic
([29cbd91](https://github.com/paambaati/codeclimate-action/commit/29cbd9169661bae87eccb3ae15101e9d9fa58f1b))
- **tests:** run checksum verification pre-checks only for fixtures on
their own target platforms
([4dc408b](https://github.com/paambaati/codeclimate-action/commit/4dc408bc02b974db9dc9e4129c7d797e7b0a3ee1))
- **tests:** set up correct file mode on Windows
([4edff7e](https://github.com/paambaati/codeclimate-action/commit/4edff7ebe0387ebfb113739a5ab3c9101994820e))
- **tests:** set up Windows fixtures
([c29289f](https://github.com/paambaati/codeclimate-action/commit/c29289fe7fac8870265111efaaeef59bb5b6a834))
- **tests:** skip integration tests on unsupported platforms
([00e5b40](https://github.com/paambaati/codeclimate-action/commit/00e5b40552ecfd62683dfc2202ed236538468d25))
- **tests:** try correcting extra spaces in checksum files generated on
Windows
([edc5e97](https://github.com/paambaati/codeclimate-action/commit/edc5e97e04929ec51a7d6b02563e518d39aff823))
- **test:** try fixing tests on Windows (maybe)
([47793be](https://github.com/paambaati/codeclimate-action/commit/47793be72fdd16ec9d6b952bbfea93ab7dc86384))
- **test:** use the [@&#8203;tapjs/tsx](https://github.com/tapjs/tsx)
import loader to fix TS issues
([295386a](https://github.com/paambaati/codeclimate-action/commit/295386a66f5a648a1a1d048d80cb43aa738b3b75))
- try LF-only line endings for all files
([e2c94ee](https://github.com/paambaati/codeclimate-action/commit/e2c94ee03d92b6c92abd36933bea05650aac91c7))
- upgrade tap to fix the plugin issues
([f97429e](https://github.com/paambaati/codeclimate-action/commit/f97429e8c5b4a0dfc7f340cb0765fd15fc9982fd))
- **util:** follow redirects in fetch
([a258bd9](https://github.com/paambaati/codeclimate-action/commit/a258bd9f1e258160b5309cfdfd7348aeb6edc640))

##### Miscellaneous Chores

- release 6.0.0
([5c9d4de](https://github.com/paambaati/codeclimate-action/commit/5c9d4de11fe96247f3539e4e8c7cdd448b0c6dca))
- release 7.0.0
([bae515b](https://github.com/paambaati/codeclimate-action/commit/bae515b41c8a9de774d011c8796742112d8c903f))

###
[`v6.0.0`](https://github.com/paambaati/codeclimate-action/releases/tag/v6.0.0)

[Compare
Source](https://github.com/paambaati/codeclimate-action/compare/v5.0.0...v6.0.0)

##### ⚠ BREAKING CHANGES

- **ci:** this doesn't change the functionality of the core action, but
it does change how releases are made in the future.
-   Trying to make semantic-release push a new release
-   this should ideally get published as v5
-   this should ideally get published as v5
- **core:** Support Windows, now that CodeClimate has released a Windows
binary of the reporter – see
codeclimate.com/changelog/7dd79ee1cf1af7141b2bd18b
- **core:** Support Windows, now that CodeClimate has released a Windows
binary of the reporter
- **ci:** semantic-release and its process is fundamentally broken when
the repo moved from master to main for its main branch. This is an
attempt to try to unfuck the git log/ref notes

##### core

- Support Windows
([9af890c](https://github.com/paambaati/codeclimate-action/commit/9af890ca201808293494389e160c2247062e61ab))
- Support Windows
([3434c61](https://github.com/paambaati/codeclimate-action/commit/3434c618e21bb9a4ea49f8f85e10839bef1addcd))

##### Features

- **ci:** replace semantic-release with Google's release-please.
([854ea46](https://github.com/paambaati/codeclimate-action/commit/854ea46b10d7c48dc04f57be960f2257fca0ba16))
- **core:** cleanup downloaded artifacts
([f331896](https://github.com/paambaati/codeclimate-action/commit/f3318964532e9a7bdf28c20830035973024c31bc)),
closes
[#&#8203;639](https://github.com/paambaati/codeclimate-action/issues/639)
- **core:** support fork PRs.
([70a75ac](https://github.com/paambaati/codeclimate-action/commit/70a75acf3c0eaae19bee5fb425f63e455356daf7)),
closes
[#&#8203;627](https://github.com/paambaati/codeclimate-action/issues/627)
- **core:** Support Windows
([f0efca8](https://github.com/paambaati/codeclimate-action/commit/f0efca8d8bb2d28d2e31f5b09b3a12db580b74ed))
- **core:** Support Windows
([9787ba6](https://github.com/paambaati/codeclimate-action/commit/9787ba65355cc7e2454726ff732df574e1a6b370))
- run action using Node.js 20.x
([859e71d](https://github.com/paambaati/codeclimate-action/commit/859e71d20050925c52fd9524f5c74a0a36fba31f))
- run action using Node.js 20.x
([096c232](https://github.com/paambaati/codeclimate-action/commit/096c232e4cf323b72675683a27680ac60eead7e8))
- run action using Node.js 20.x
([7642145](https://github.com/paambaati/codeclimate-action/commit/7642145673e571d8436a9743a36d090a6f6acc5d))
- run action using Node.js 20.x
([f01d194](https://github.com/paambaati/codeclimate-action/commit/f01d1944ff5c4726c7649bf3698c1149996369bd))
- run action using Node.js 20.x
([a5d0e4f](https://github.com/paambaati/codeclimate-action/commit/a5d0e4fed50e0ae7f30c14a173467bf5651a1e8c))
- run action using Node.js 20.x
([052f893](https://github.com/paambaati/codeclimate-action/commit/052f89397e39d4b69b7f4981f7428cc626a5807c))
- **utils:** refactor coverage config line parser into own util
([e03d453](https://github.com/paambaati/codeclimate-action/commit/e03d4534fcf95c549b4b083f76870551d74140c1))

##### Bug Fixes

- **ci:** better version tagging
([e7ede07](https://github.com/paambaati/codeclimate-action/commit/e7ede07acfbc6a654693402829004a85e680e713))
- **ci:** checkout EVERYTHING so semantic-release has all the data it
could need
([a16dca5](https://github.com/paambaati/codeclimate-action/commit/a16dca5bb60d6d1ceec305e554d1d07b2e6f9f2f))
- **ci:** debug outputs
([11ed927](https://github.com/paambaati/codeclimate-action/commit/11ed9278d366c02ce89a0aa9c0266d01ed3fe78f))
- **ci:** do not cancel all matrix builds for one
([1471593](https://github.com/paambaati/codeclimate-action/commit/1471593d867e0a8171a8bbd830bc6d14647c0c73))
- **ci:** fix invalid YAML
([8f95f43](https://github.com/paambaati/codeclimate-action/commit/8f95f43e97f705d9dbb7e18d5586a16e8531d318))
- **ci:** fix the tag detection logic for new releases
([f787a56](https://github.com/paambaati/codeclimate-action/commit/f787a56de16312cc3eeff8ed0117b9cc1339a2f3))
- **ci:** rebuild and republish to use new branch and workflows
([0c99fb3](https://github.com/paambaati/codeclimate-action/commit/0c99fb3d11aa2bbf8bf94ed90bd4955348c6338b))
- **ci:** release broken release process
([746f1d2](https://github.com/paambaati/codeclimate-action/commit/746f1d233d2b6d15d77cee532065c4124db0a82c))
- **ci:** republish so latest changes get applied
([8f00eaa](https://github.com/paambaati/codeclimate-action/commit/8f00eaacd9c46d0c7351c37ce64d6f2705ae93dc))
- **ci:** republish so latest changes get applied
([fa71c1f](https://github.com/paambaati/codeclimate-action/commit/fa71c1ff7a91f7177d648c64b50c50dd9aa0d90e))
- **ci:** set up correct (?) condition to trigger publish
([3e9c9ce](https://github.com/paambaati/codeclimate-action/commit/3e9c9cefc80813bd2d9fffeb4610778e0761f2f7))
- **ci:** set up correct regex that replaces the 'v' prefixes for tags
([b3bcc0e](https://github.com/paambaati/codeclimate-action/commit/b3bcc0e23b5ab151ae0a3a2aa8dce8c6bb3bb3d7))
- **ci:** try once again to publish new version
([bcd27f6](https://github.com/paambaati/codeclimate-action/commit/bcd27f6c52b0b9daa097cb34b05c43e5040216b7))
- **ci:** use the un-broken latest version of the workflow
([0fe0643](https://github.com/paambaati/codeclimate-action/commit/0fe06436de76fed68e37a8d6001f6ba46ba23f26))
- **ci:** validate empty new release version
([2b9684a](https://github.com/paambaati/codeclimate-action/commit/2b9684a12a4089d77e5ab787677df4affaeb6ac0))
- **core:** handle globs correctly in windows
([54ac87c](https://github.com/paambaati/codeclimate-action/commit/54ac87c16480738f78a87f5e33a4a417111a550b))
- **core:** parse coverage path correctly on all platforms
([923001d](https://github.com/paambaati/codeclimate-action/commit/923001d88c62217179c085d441a5a3d54b8399e5))
- **core:** support ARM 64-bit environments
([ea13673](https://github.com/paambaati/codeclimate-action/commit/ea1367348928eca3a302fb3682b07c585841c39f))
- **core:** support ARM 64-bit environments
([ea13673](https://github.com/paambaati/codeclimate-action/commit/ea1367348928eca3a302fb3682b07c585841c39f))
- **core:** support ARM 64-bit environments
([99e22b3](https://github.com/paambaati/codeclimate-action/commit/99e22b3d7de0c911c564cd391d4f9dae79ae176e))
- create hash from windows
([077e614](https://github.com/paambaati/codeclimate-action/commit/077e614c8e5c583d418676d578d063d75c198405))
- **deps:** add missing dev-only dep to unblock typescript build
([9e22dcb](https://github.com/paambaati/codeclimate-action/commit/9e22dcb3b7b5b5992a31f3577cf113dc2e950e03))
- keep windows-style line endings for .bat files
([67549ff](https://github.com/paambaati/codeclimate-action/commit/67549ffc57b34e099f5bb2388d86c3cc7c347ec2))
- set up gitattributes to stop the line ending fuckery
([4246a36](https://github.com/paambaati/codeclimate-action/commit/4246a36c822e053c11577e679d16bf16827d6842))
- set up gitattributes to stop the line ending fuckery
([9181fd8](https://github.com/paambaati/codeclimate-action/commit/9181fd8af8132edee25fcc8df8a751d814e394c8))
- **tests:** additional windows-style test fixes
([def6f6d](https://github.com/paambaati/codeclimate-action/commit/def6f6d4afae91513acccff73c32708488c56b75))
- **tests:** fix tests for Windows
([18e310b](https://github.com/paambaati/codeclimate-action/commit/18e310ba76d6e1fe841d54e79d9de422dc9370d3))
- **tests:** fix the Windows path
([6e02942](https://github.com/paambaati/codeclimate-action/commit/6e029425c431d797aa38acc4943036320fe4788e))
- **tests:** make sure the special variable in script are quoted to make
string comparison work
([c796f65](https://github.com/paambaati/codeclimate-action/commit/c796f651db785c619396cdbb8e09fe0c23f5dc46))
- **tests:** mock checksum verification too
([2befa84](https://github.com/paambaati/codeclimate-action/commit/2befa84d394ee779f30efbf507b9aceabfdc18ca))
- **tests:** more windows-specific test fixes
([de37362](https://github.com/paambaati/codeclimate-action/commit/de37362050b6d7216a5422f7a391e1d6380eec23))
- **tests:** more windows-specific test fixes
([e44e0a3](https://github.com/paambaati/codeclimate-action/commit/e44e0a3f3b39f96c83d6e361469ae7fec20a5521))
- **tests:** more windows-specific test fixes
([0b2f6f8](https://github.com/paambaati/codeclimate-action/commit/0b2f6f823e9a7761ee96aa4e10ea9855e814a789))
- **tests:** more windows-specific test fixes
([9a9184a](https://github.com/paambaati/codeclimate-action/commit/9a9184a38ee7d74840d8db188c814b80ff42a045))
- **tests:** more windows-specific test fixes
([1c1a7eb](https://github.com/paambaati/codeclimate-action/commit/1c1a7eb012ea910fd8c81de6dedfdaff7ce7374e))
- **tests:** more windows-specific test fixes
([8d2edab](https://github.com/paambaati/codeclimate-action/commit/8d2edab83e08094146fcf395ff2f93f803ed50e5))
- **tests:** more windows-specific test fixes
([e05d58f](https://github.com/paambaati/codeclimate-action/commit/e05d58f36f359fd2e40e1378c64a6d5c5aa83e19))
- **tests:** more windows-specific tests
([e9e87cc](https://github.com/paambaati/codeclimate-action/commit/e9e87cc514c01b5a63d3f02552e7d1a137c803fc))
- **tests:** more windows-specific tests
([13ff2e3](https://github.com/paambaati/codeclimate-action/commit/13ff2e357d666a066f84e76369c20bb78b8f669b))
- **tests:** more windows-specific tests
([80aa61e](https://github.com/paambaati/codeclimate-action/commit/80aa61ef4dffb2558582006ee27683cf5d1d304e))
- **tests:** more windows-specific tests
([498dee1](https://github.com/paambaati/codeclimate-action/commit/498dee151bf552b61d78f1cf1b5345169cff761f))
- **tests:** more windows-specific tests
([f4dff2a](https://github.com/paambaati/codeclimate-action/commit/f4dff2a761bc3d7d08071c94d452704b5b07ff2d))
- **tests:** more windows-specific tests
([4b48851](https://github.com/paambaati/codeclimate-action/commit/4b488512dd11c86232802e7bfb81c02b9b89c6e3))
- **tests:** OS-agnostic line separators for all strings
([2fc4cc3](https://github.com/paambaati/codeclimate-action/commit/2fc4cc3403ce99cfe7000fe58b8d0acb89549fb7))
- **tests:** remove windows-only test and start writing os-independent
logic
([29cbd91](https://github.com/paambaati/codeclimate-action/commit/29cbd9169661bae87eccb3ae15101e9d9fa58f1b))
- **tests:** run checksum verification pre-checks only for fixtures on
their own target platforms
([4dc408b](https://github.com/paambaati/codeclimate-action/commit/4dc408bc02b974db9dc9e4129c7d797e7b0a3ee1))
- **tests:** set up correct file mode on Windows
([4edff7e](https://github.com/paambaati/codeclimate-action/commit/4edff7ebe0387ebfb113739a5ab3c9101994820e))
- **tests:** set up Windows fixtures
([c29289f](https://github.com/paambaati/codeclimate-action/commit/c29289fe7fac8870265111efaaeef59bb5b6a834))
- **tests:** skip integration tests on unsupported platforms
([00e5b40](https://github.com/paambaati/codeclimate-action/commit/00e5b40552ecfd62683dfc2202ed236538468d25))
- **tests:** try correcting extra spaces in checksum files generated on
Windows
([edc5e97](https://github.com/paambaati/codeclimate-action/commit/edc5e97e04929ec51a7d6b02563e518d39aff823))
- try LF-only line endings for all files
([e2c94ee](https://github.com/paambaati/codeclimate-action/commit/e2c94ee03d92b6c92abd36933bea05650aac91c7))
- **util:** follow redirects in fetch
([a258bd9](https://github.com/paambaati/codeclimate-action/commit/a258bd9f1e258160b5309cfdfd7348aeb6edc640))

##### Miscellaneous Chores

- release 6.0.0
([5c9d4de](https://github.com/paambaati/codeclimate-action/commit/5c9d4de11fe96247f3539e4e8c7cdd448b0c6dca))

###
[`v5.0.0`](https://github.com/paambaati/codeclimate-action/releases/tag/v5.0.0)

[Compare
Source](https://github.com/paambaati/codeclimate-action/compare/v4.0.0...v5.0.0)

##### Bug Fixes

- **ci:** checkout EVERYTHING so semantic-release has all the data it
could need
([a16dca5](https://github.com/paambaati/codeclimate-action/commit/a16dca5bb60d6d1ceec305e554d1d07b2e6f9f2f))
- **ci:** do not cancel all matrix builds for one
([1471593](https://github.com/paambaati/codeclimate-action/commit/1471593d867e0a8171a8bbd830bc6d14647c0c73))
- **ci:** set up correct regex that replaces the 'v' prefixes for tags
([b3bcc0e](https://github.com/paambaati/codeclimate-action/commit/b3bcc0e23b5ab151ae0a3a2aa8dce8c6bb3bb3d7))
- **core:** handle globs correctly in windows
([54ac87c](https://github.com/paambaati/codeclimate-action/commit/54ac87c16480738f78a87f5e33a4a417111a550b))
- **core:** parse coverage path correctly on all platforms
([923001d](https://github.com/paambaati/codeclimate-action/commit/923001d88c62217179c085d441a5a3d54b8399e5))
- create hash from windows
([077e614](https://github.com/paambaati/codeclimate-action/commit/077e614c8e5c583d418676d578d063d75c198405))
- keep windows-style line endings for .bat files
([67549ff](https://github.com/paambaati/codeclimate-action/commit/67549ffc57b34e099f5bb2388d86c3cc7c347ec2))
- set up gitattributes to stop the line ending fuckery
([4246a36](https://github.com/paambaati/codeclimate-action/commit/4246a36c822e053c11577e679d16bf16827d6842))
- set up gitattributes to stop the line ending fuckery
([9181fd8](https://github.com/paambaati/codeclimate-action/commit/9181fd8af8132edee25fcc8df8a751d814e394c8))
- **tests:** additional windows-style test fixes
([def6f6d](https://github.com/paambaati/codeclimate-action/commit/def6f6d4afae91513acccff73c32708488c56b75))
- **tests:** fix tests for Windows
([18e310b](https://github.com/paambaati/codeclimate-action/commit/18e310ba76d6e1fe841d54e79d9de422dc9370d3))
- **tests:** fix the Windows path
([6e02942](https://github.com/paambaati/codeclimate-action/commit/6e029425c431d797aa38acc4943036320fe4788e)),
closes
[/github.com/ljharb/tape/issues/593#issuecomment-1537292595](https://github.com//github.com/ljharb/tape/issues/593/issues/issuecomment-1537292595)
- **tests:** make sure the special variable in script are quoted to make
string comparison work
([c796f65](https://github.com/paambaati/codeclimate-action/commit/c796f651db785c619396cdbb8e09fe0c23f5dc46))
- **tests:** mock checksum verification too
([2befa84](https://github.com/paambaati/codeclimate-action/commit/2befa84d394ee779f30efbf507b9aceabfdc18ca))
- **tests:** more windows-specific test fixes
([de37362](https://github.com/paambaati/codeclimate-action/commit/de37362050b6d7216a5422f7a391e1d6380eec23))
- **tests:** more windows-specific test fixes
([e44e0a3](https://github.com/paambaati/codeclimate-action/commit/e44e0a3f3b39f96c83d6e361469ae7fec20a5521))
- **tests:** more windows-specific test fixes
([0b2f6f8](https://github.com/paambaati/codeclimate-action/commit/0b2f6f823e9a7761ee96aa4e10ea9855e814a789))
- **tests:** more windows-specific test fixes
([9a9184a](https://github.com/paambaati/codeclimate-action/commit/9a9184a38ee7d74840d8db188c814b80ff42a045))
- **tests:** more windows-specific test fixes
([1c1a7eb](https://github.com/paambaati/codeclimate-action/commit/1c1a7eb012ea910fd8c81de6dedfdaff7ce7374e))
- **tests:** more windows-specific test fixes
([8d2edab](https://github.com/paambaati/codeclimate-action/commit/8d2edab83e08094146fcf395ff2f93f803ed50e5))
- **tests:** more windows-specific test fixes
([e05d58f](https://github.com/paambaati/codeclimate-action/commit/e05d58f36f359fd2e40e1378c64a6d5c5aa83e19))
- **tests:** more windows-specific tests
([e9e87cc](https://github.com/paambaati/codeclimate-action/commit/e9e87cc514c01b5a63d3f02552e7d1a137c803fc))
- **tests:** more windows-specific tests
([13ff2e3](https://github.com/paambaati/codeclimate-action/commit/13ff2e357d666a066f84e76369c20bb78b8f669b))
- **tests:** more windows-specific tests
([80aa61e](https://github.com/paambaati/codeclimate-action/commit/80aa61ef4dffb2558582006ee27683cf5d1d304e))
- **tests:** more windows-specific tests
([498dee1](https://github.com/paambaati/codeclimate-action/commit/498dee151bf552b61d78f1cf1b5345169cff761f))
- **tests:** more windows-specific tests
([f4dff2a](https://github.com/paambaati/codeclimate-action/commit/f4dff2a761bc3d7d08071c94d452704b5b07ff2d))
- **tests:** more windows-specific tests
([4b48851](https://github.com/paambaati/codeclimate-action/commit/4b488512dd11c86232802e7bfb81c02b9b89c6e3))
- **tests:** OS-agnostic line separators for all strings
([2fc4cc3](https://github.com/paambaati/codeclimate-action/commit/2fc4cc3403ce99cfe7000fe58b8d0acb89549fb7))
- **tests:** remove windows-only test and start writing os-independent
logic
([29cbd91](https://github.com/paambaati/codeclimate-action/commit/29cbd9169661bae87eccb3ae15101e9d9fa58f1b))
- **tests:** run checksum verification pre-checks only for fixtures on
their own target platforms
([4dc408b](https://github.com/paambaati/codeclimate-action/commit/4dc408bc02b974db9dc9e4129c7d797e7b0a3ee1))
- **tests:** set up correct file mode on Windows
([4edff7e](https://github.com/paambaati/codeclimate-action/commit/4edff7ebe0387ebfb113739a5ab3c9101994820e))
- **tests:** set up Windows fixtures
([c29289f](https://github.com/paambaati/codeclimate-action/commit/c29289fe7fac8870265111efaaeef59bb5b6a834))
- **tests:** skip integration tests on unsupported platforms
([00e5b40](https://github.com/paambaati/codeclimate-action/commit/00e5b40552ecfd62683dfc2202ed236538468d25))
- **tests:** try correcting extra spaces in checksum files generated on
Windows
([edc5e97](https://github.com/paambaati/codeclimate-action/commit/edc5e97e04929ec51a7d6b02563e518d39aff823))
- try LF-only line endings for all files
([e2c94ee](https://github.com/paambaati/codeclimate-action/commit/e2c94ee03d92b6c92abd36933bea05650aac91c7))
- **util:** follow redirects in fetch
([a258bd9](https://github.com/paambaati/codeclimate-action/commit/a258bd9f1e258160b5309cfdfd7348aeb6edc640))

##### core

- Support Windows
([9af890c](https://github.com/paambaati/codeclimate-action/commit/9af890ca201808293494389e160c2247062e61ab))
- Support Windows
([3434c61](https://github.com/paambaati/codeclimate-action/commit/3434c618e21bb9a4ea49f8f85e10839bef1addcd))

##### Features

- **core:** Support Windows
([f0efca8](https://github.com/paambaati/codeclimate-action/commit/f0efca8d8bb2d28d2e31f5b09b3a12db580b74ed)),
closes
[#&#8203;665](https://github.com/paambaati/codeclimate-action/issues/665)
- **core:** Support Windows
([9787ba6](https://github.com/paambaati/codeclimate-action/commit/9787ba65355cc7e2454726ff732df574e1a6b370))
- **utils:** refactor coverage config line parser into own util
([e03d453](https://github.com/paambaati/codeclimate-action/commit/e03d4534fcf95c549b4b083f76870551d74140c1))

##### BREAKING CHANGES

-   this should ideally get published as v5
-   this should ideally get published as v5
- **core:** Support Windows, now that CodeClimate has released a Windows
binary of the reporter – see
codeclimate.com/changelog/7dd79ee1cf1af7141b2bd18b
- **core:** Support Windows, now that CodeClimate has released a Windows
binary of the reporter

###
[`v4.0.0`](https://github.com/paambaati/codeclimate-action/releases/tag/v4.0.0)

[Compare
Source](https://github.com/paambaati/codeclimate-action/compare/v3.2.0...v4.0.0)

##### Bug Fixes

- **ci:** debug outputs
([11ed927](https://github.com/paambaati/codeclimate-action/commit/11ed9278d366c02ce89a0aa9c0266d01ed3fe78f))
- **ci:** fix invalid YAML
([8f95f43](https://github.com/paambaati/codeclimate-action/commit/8f95f43e97f705d9dbb7e18d5586a16e8531d318))
- **ci:** fix the tag detection logic for new releases
([f787a56](https://github.com/paambaati/codeclimate-action/commit/f787a56de16312cc3eeff8ed0117b9cc1339a2f3))
- **ci:** rebuild and republish to use new branch and workflows
([0c99fb3](https://github.com/paambaati/codeclimate-action/commit/0c99fb3d11aa2bbf8bf94ed90bd4955348c6338b))
- **ci:** republish so latest changes get applied
([8f00eaa](https://github.com/paambaati/codeclimate-action/commit/8f00eaacd9c46d0c7351c37ce64d6f2705ae93dc))
- **ci:** republish so latest changes get applied
([fa71c1f](https://github.com/paambaati/codeclimate-action/commit/fa71c1ff7a91f7177d648c64b50c50dd9aa0d90e))
- **ci:** set up correct (?) condition to trigger publish
([3e9c9ce](https://github.com/paambaati/codeclimate-action/commit/3e9c9cefc80813bd2d9fffeb4610778e0761f2f7))
- **ci:** try once again to publish new version
([bcd27f6](https://github.com/paambaati/codeclimate-action/commit/bcd27f6c52b0b9daa097cb34b05c43e5040216b7))
- **ci:** use the un-broken latest version of the workflow
([0fe0643](https://github.com/paambaati/codeclimate-action/commit/0fe06436de76fed68e37a8d6001f6ba46ba23f26))
- **ci:** validate empty new release version
([2b9684a](https://github.com/paambaati/codeclimate-action/commit/2b9684a12a4089d77e5ab787677df4affaeb6ac0))
- **core:** support ARM 64-bit environments
([ea13673](https://github.com/paambaati/codeclimate-action/commit/ea1367348928eca3a302fb3682b07c585841c39f))
- **core:** support ARM 64-bit environments
([99e22b3](https://github.com/paambaati/codeclimate-action/commit/99e22b3d7de0c911c564cd391d4f9dae79ae176e))

##### Features

- **core:** cleanup downloaded artifacts
([f331896](https://github.com/paambaati/codeclimate-action/commit/f3318964532e9a7bdf28c20830035973024c31bc)),
closes
[#&#8203;639](https://github.com/paambaati/codeclimate-action/issues/639)
- **core:** support fork PRs.
([70a75ac](https://github.com/paambaati/codeclimate-action/commit/70a75acf3c0eaae19bee5fb425f63e455356daf7)),
closes
[#&#8203;627](https://github.com/paambaati/codeclimate-action/issues/627)

##### BREAKING CHANGES

- **ci:** semantic-release and its process is fundamentally broken when
the repo moved from master to main for its main branch. This is an
attempt to try to unfuck the git log/ref notes

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 7am on Saturday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/boatkit-io/tugboat).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zOTMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM5My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants