Skip to content
Closed
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
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0





## [0.86.0] - 2026-04-14

### Added- **design**: Integrate Bloqr Design Language — tri-line logo, themed API docs (#1587)
- complete removal of Clerk — DB schema, dead code, configs, frontend, OpenAPI, CI (#1585)
- Implement Bloqr landing page — 10 section components, dark design system, SSR-safe persona tabs, a11y hardening (#1582)
- redesign frontend and API with Bloqr brand design system (#1581)

### Fixed

- worker hang on sign-out + frontend crash on undefined metrics fields (#1584)
- restore full-featured dashboard, remove landing page sections introduced by #1582 (#1583)
- use short commit SHA instead of :latest for Cloudflare container image tag (#1579)
- use short SHA tag for container image instead of :latest (#1580)
- **wrangler**: add scheduling_policy to containers block to resolve VALIDATE_INPUT deploy failures (#1578)


## [0.85.0] - 2026-04-14

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.85.0",
"version": "0.86.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.85.0",
"version": "0.86.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.85.0';
export const VERSION = '0.86.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 @@ -108,7 +108,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.85.0"
COMPILER_VERSION = "0.86.0"
ENVIRONMENT = "production"
# Public Turnstile site key — not a secret; safe to commit.
# For local dev, .dev.vars overrides this with the always-pass test key (1x000...AA).
Expand Down
Loading