Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0




## [0.76.0] - 2026-03-25

### Added- Option B1 staging→production promotion pipeline (Neon branching)
- complete D1→Neon migration - port all handlers to Prisma via Hyperdrive

### Fixed

- accept postgres:// scheme in PrismaClientConfigSchema + extended health database probe
- simplify $queryRaw type cast in health.ts probe (code review)
- add prisma/migrations/** to db-migrate.yml path triggers and detect changed Prisma migrations


## [0.75.0] - 2026-03-25

### Added- add Dynamic Workers LOADER model, per-user agent dispatch, and validate fast-path (#1387)
Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jk-com/adblock-compiler",
"version": "0.75.0",
"version": "0.76.0",
"exports": "./src/index.ts",
"nodeModulesDir": "auto",
"publish": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "adblock-compiler",
"version": "0.75.0",
"version": "0.76.0",
"description": "Compiler-as-a-Service for adblock filter lists",
"homepage": "https://adblock-compiler.jayson-knight.workers.dev/",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Package version - should match deno.json
* Updated automatically by version bump scripts.
*/
export const VERSION = '0.75.0';
export const VERSION = '0.76.0';

/**
* Package name as published to JSR
Expand Down
2 changes: 1 addition & 1 deletion wrangler.toml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ destinations = [ "sentry-traces" ]
# All secrets use `wrangler secret put`.
[vars]
# Keep in sync with VERSION in src/version.ts. Run `deno task version:sync` to propagate.
COMPILER_VERSION = "0.75.0"
COMPILER_VERSION = "0.76.0"
ENVIRONMENT = "production"
# Clerk publishable key — uncomment and set to pk_live_... when Clerk is production-ready.
# To activate Clerk: uncomment both lines below and also set CLERK_JWKS_URL.
Expand Down
Loading