diff --git a/.changeset/olive-donkeys-shave.md b/.changeset/olive-donkeys-shave.md deleted file mode 100644 index 95c3087..0000000 --- a/.changeset/olive-donkeys-shave.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"cloudflared": patch ---- - -Fix `CLOUDFLARED_VERSION` being ignored during installation. The `postinstall` script hardcoded `bin install latest`, so the environment variable documented in the README had no effect on the version that got installed. Installing an explicit version also printed `Installing cloudflared undefined` because the message read the raw argument instead of the resolved version. diff --git a/.changeset/quiet-pumas-repeat.md b/.changeset/quiet-pumas-repeat.md deleted file mode 100644 index 221d413..0000000 --- a/.changeset/quiet-pumas-repeat.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"cloudflared": patch ---- - -Update the toolchain and CI. Publishing now uses npm trusted publishing (OIDC) instead of a long-lived `NPM_TOKEN`, which npm revoked along with all classic tokens. pnpm moves to 11 for its native OIDC support, so its settings move from `package.json` to `pnpm-workspace.yaml`. Also bumps eslint, vitest, prettier, typedoc and `@types/node`, drops the unused `changeset` package (an unrelated LevelDB utility, not the changesets CLI), moves typedoc to a config file so the `@platform` tag no longer warns, upgrades the GitHub Actions to Node 24 runtimes, and refreshes the cloudflared test matrix. diff --git a/CHANGELOG.md b/CHANGELOG.md index 96138c8..464bea1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # cloudflared +## 0.7.3 + +### Patch Changes + +- [#40](https://github.com/JacobLinCool/node-cloudflared/pull/40) [`9844a3a`](https://github.com/JacobLinCool/node-cloudflared/commit/9844a3a574fca9e9f6175a3e33dc308c10505eb0) Thanks [@JacobLinCool](https://github.com/JacobLinCool)! - Fix `CLOUDFLARED_VERSION` being ignored during installation. The `postinstall` script hardcoded `bin install latest`, so the environment variable documented in the README had no effect on the version that got installed. Installing an explicit version also printed `Installing cloudflared undefined` because the message read the raw argument instead of the resolved version. + +- [#40](https://github.com/JacobLinCool/node-cloudflared/pull/40) [`9844a3a`](https://github.com/JacobLinCool/node-cloudflared/commit/9844a3a574fca9e9f6175a3e33dc308c10505eb0) Thanks [@JacobLinCool](https://github.com/JacobLinCool)! - Update the toolchain and CI. Publishing now uses npm trusted publishing (OIDC) instead of a long-lived `NPM_TOKEN`, which npm revoked along with all classic tokens. pnpm moves to 11 for its native OIDC support, so its settings move from `package.json` to `pnpm-workspace.yaml`. Also bumps eslint, vitest, prettier, typedoc and `@types/node`, drops the unused `changeset` package (an unrelated LevelDB utility, not the changesets CLI), moves typedoc to a config file so the `@platform` tag no longer warns, upgrades the GitHub Actions to Node 24 runtimes, and refreshes the cloudflared test matrix. + ## 0.7.2 ### Patch Changes diff --git a/package.json b/package.json index 7a11723..b5b5819 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cloudflared", - "version": "0.7.2", + "version": "0.7.3", "description": "Cloudflared in Node. Which allows you to easily create HTTPS tunnels using Cloudflare's cloudflared. It provides a typed API for creating tunnels and managing the cloudflared binary installation.", "main": "./lib/lib.js", "types": "./lib/lib.d.ts",