Skip to content

Tags: HabitualCoder/wireit

Tags

v0.7.1

Toggle v0.7.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Release 0.7.1 (google#327)

v0.7.0

Toggle v0.7.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Release 0.7.0 (google#312)

v0.6.1

Toggle v0.6.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Release 0.6.1 (google#306)

v0.6.0

Toggle v0.6.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Release 0.6.0 (google#288)

v0.5.0

Toggle v0.5.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Release 0.5.0 (google#269)

v0.4.3

Toggle v0.4.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Release 0.4.3 (google#235)

v0.4.2

Toggle v0.4.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Release 0.4.2 (google#228)

v0.4.1

Toggle v0.4.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Release 0.4.1 (google#204)

v0.4.0

Toggle v0.4.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Release 0.4.0 (google#190)

v0.3.1

Toggle v0.3.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Support Node 14 on Windows and release 0.3.1 (google#162)

I didn't test Node 14 on Windows in google#160, so I missed two issues:

- We use `replaceAll`, but only on Windows. Fixed by using `replace` instead, and by dropping `lib` down to `es2020` in `tsconfig.json` (which catches this error in `tsc`).

- There is a subtle difference between how environment variables are treated when `spawn`ing between Node 14 and 16 on Windows, relating to the way environment variables are case-insensitive on Windows. Full details in `test/windows.ts`.

I've also expanded to the test matrix to just test all OS/Node permutations that we support, because obviously it is not safe to assume anything (especially on Windows, but let's be safe and not assume anything about macOS acting exactly like Linux either).

Actually fixes google#160