Skip to content

Commit 4340114

Browse files
authored
Merge pull request #1445 from jaypatrick/auto-version-bump-0.79.3
2 parents 79979d8 + a2d08d9 commit 4340114

5 files changed

Lines changed: 20 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6969

7070

7171

72+
73+
## [0.79.3] - 2026-03-28
74+
75+
### Added- add tRPC v1 + API versioning (X-API-Version header)
76+
77+
### Fixed
78+
79+
- **trpc**: apply review comment fixes — ZTA gate, rate-limit, header order, type inference, docs
80+
- update pnpm-lock.yaml for @trpc/client and @trpc/server deps
81+
- **worker**: correct Turnstile/zValidator ordering in route modules; restore cache middleware
82+
- restore /api/auth/providers to pre-auth section, add pass-through in Better Auth wildcard
83+
- move /api/auth/providers route before Better Auth wildcard to fix HTTP 404
84+
85+
7286
## [0.79.2] - 2026-03-28
7387

7488
### Added### Fixed

deno.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jk-com/adblock-compiler",
3-
"version": "0.79.2",
3+
"version": "0.79.3",
44
"exports": "./src/index.ts",
55
"nodeModulesDir": "auto",
66
"publish": {
@@ -37,7 +37,7 @@
3737
"fmt:check": "deno fmt --check",
3838
"check": "deno task check:src && deno task check:worker",
3939
"check:slow-types": "deno publish --dry-run",
40-
"check:drift": "git diff --quiet docs/api/cloudflare-schema.yaml docs/postman/postman-collection.json docs/postman/postman-environment.json || (printf '\\n\u274c Generated files are out of date. Run: deno task schema:generate\\n Then: git add docs/api/cloudflare-schema.yaml docs/postman/postman-collection.json docs/postman/postman-environment.json\\n Finally: commit the updated files (for example: git commit -m \"chore: update generated schemas\")\\n' && exit 1)",
40+
"check:drift": "git diff --quiet docs/api/cloudflare-schema.yaml docs/postman/postman-collection.json docs/postman/postman-environment.json || (printf '\\n Generated files are out of date. Run: deno task schema:generate\\n Then: git add docs/api/cloudflare-schema.yaml docs/postman/postman-collection.json docs/postman/postman-environment.json\\n Finally: commit the updated files (for example: git commit -m \"chore: update generated schemas\")\\n' && exit 1)",
4141
"cache": "deno cache src/index.ts",
4242
"openapi:validate": "deno run --allow-read --allow-net scripts/validate-openapi.ts",
4343
"openapi:docs": "deno run --allow-read --allow-write --allow-net scripts/generate-docs.ts",
@@ -48,7 +48,7 @@
4848
"generate:schema": "deno task schema:cloudflare && deno run --allow-read --allow-write --allow-env scripts/generate-openapi-schema.ts",
4949
"preflight": "deno task fmt:check && deno task lint && deno task check && deno task openapi:validate && deno task schema:generate && deno task check:drift",
5050
"preflight:full": "deno task preflight && deno task test && deno task check:slow-types",
51-
"setup": "deno run --allow-read --allow-write scripts/setup-env.ts && deno task db:generate && deno task setup:hooks && echo '\u2705 Setup complete! Edit .env.local and .dev.vars with your credentials, then run: deno task wrangler:dev'",
51+
"setup": "deno run --allow-read --allow-write scripts/setup-env.ts && deno task db:generate && deno task setup:hooks && echo ' Setup complete! Edit .env.local and .dev.vars with your credentials, then run: deno task wrangler:dev'",
5252
"setup:hooks": "deno run --allow-read --allow-write --allow-run scripts/setup-hooks.ts",
5353
"test:contract": "SKIP_CONTRACT_TESTS=false deno test --allow-read --allow-write --allow-net --allow-env worker/openapi-contract.test.ts",
5454
"migrate:validate": "deno run --allow-read scripts/validate-migrations.ts",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "adblock-compiler",
3-
"version": "0.79.2",
3+
"version": "0.79.3",
44
"description": "Compiler-as-a-Service for adblock filter lists",
55
"homepage": "https://adblock-compiler.jayson-knight.workers.dev/",
66
"type": "module",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Package version - should match deno.json
88
* Updated automatically by version bump scripts.
99
*/
10-
export const VERSION = '0.79.2';
10+
export const VERSION = '0.79.3';
1111

1212
/**
1313
* Package name as published to JSR

wrangler.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ destinations = [ "sentry-traces" ]
8888
# All secrets use `wrangler secret put`.
8989
[vars]
9090
# Keep in sync with VERSION in src/version.ts. Run `deno task version:sync` to propagate.
91-
COMPILER_VERSION = "0.79.2"
91+
COMPILER_VERSION = "0.79.3"
9292
ENVIRONMENT = "production"
9393
# Clerk publishable key — uncomment and set to pk_live_... when Clerk is production-ready.
9494
# To activate Clerk: uncomment both lines below and also set CLERK_JWKS_URL.

0 commit comments

Comments
 (0)