Tech Changelog – 2026-03-06

📁 Backend

PHP

  • 🌐 Page Updated: PHP RFC Index
    • View Page
    • Changed: 2026-03-06T17:44:22.508076
      • RFCs under discussion (recently announced, no vote yet):
        • Prevent instantiation and cloning of __PHP_Incomplete_Class – created 2026‑03‑03
        • enum SortDirection – created 2026‑03‑02
        • Exempt input type and value validation from BC Break policy – created 2026‑03‑02

Laravel

  • 🏷️ New Release: v12.53.0
    • Repo: laravel/framework
    • View Release
    • Laravel 12.53.0 adds JSON Schema support for multipleOf, uniqueItems, and array key handling.
    • Introduces vector option to whereFullText for pre‑computed tsvector columns.
    • Adds named arguments in event dispatching/broadcasting.
    • Enhances cache with serializable class values and a new Cache::funnel() concurrency limiter.
    • Improves queue handling: fixes model serialization, adds oldest_pending to queue:monitor, simplifies resolution with match.
    • Adds maintenance mode refresh via down command.
    • Fixes several bugs: RequestException summarization for Guzzle streamed responses, race condition on real‑time facade cache file, SQS FIFO retry command, and cross‑database null safe equals.
    • Adds tests for Redis cluster flushdb, MySQL inRandomOrder regression, and PhpRedisClusterConnection.
    • Refactors internal logic (e.g., convertValuesToBoolean, token guard simplification).
    • Minor UI tweak: Mail text alignment changed from left to start.

Node.js

  • 🏷️ New Release: v25.8.0
    • Repo: nodejs/node
    • View Release
    • Node.js v25.8.0 is a minor release.
    • Key new features / changes
      • SQLite: added limits property to DatabaseSync.
      • C++ diagnostics channels now supported in the core (src).
      • Added --permission-audit flag for permission auditing.
      • Test runner now exposes worker IDs for concurrent test execution.
      • Performance / bug fixes
      • Optimized buffer.concat performance.
      • Fixed several crypto null-pointer issues and RSA handling.
      • Improved Blob constructor argument handling.
      • Fixed stream.pipeTo deferral per WHATWG spec.
      • Various test-related fixes to avoid flaky or unnecessary exits.
      • Dependency updates
      • Updated undici to 7.22.0, minimatch to 10.2.4, npm to 11.11.0, simdjson to 4.3.1, acorn and acorn-walk to newer patch versions.
      • Documentation
      • Updated SQLite conversion docs, added in/out type separation, fixed DETECT_MODULE_SYNTAX logic error, updated DEP0040 deprecation notice, and improved Visual Studio/Windows SDK support.
      • This release adds several useful features for developers (SQLite limits, diagnostics channels, permission audit flag) and brings performance improvements and numerous bug fixes.

Bun

  • 🏷️ New Release: bun-v1.3.10
    • Repo: oven-sh/bun
    • View Release
    • Bun 1.3.10 released (link to blog).
    • Installation/upgrading commands provided for Linux/macOS, Windows, and npm.
    • Thanks to 11 new contributors.
  • 📰 Bun v1.3.10
    • Published: Thu, 26 Feb 2026 06:31:59 GMT
    • Read More
    • Preview: Fixes 155 issues (addressing 642 👍). New native REPL, –compile –target=browser for self-contained HTML, TC39 standard ES decorators, Windows ARM64 support, barrel import optimization, and a faster e
  • 🌐 Page Updated: Bun: Bun v1.3.10
    • View Page
    • Changed: 2026-03-06T17:46:10.821990
      • New REPL rewritten in Zig; instant start, full terminal UI, clipboard copy (.copy), top‑level await, ESM/require support, syntax highlighting, Emacs keybindings, persistent history (~/.bun_repl_history), tab completion, multi‑line input, special variables (_ and _error), proper semantics (hoisted const/let, dynamic imports, object literal detection).
      • Self‑contained HTML build: bun build --compile --target=browser inlines JS/CSS/assets into a single .html. CLI: bun build --compile --target=browser ./index.html; API via Bun.build({entrypoints:["./index.html"], target:"browser", compile:true}).
      • Full TC39 stage‑3 ES decorators now supported (accessor keyword, Symbol.metadata, ClassMethod/FieldDecoratorContext). Works for method/getter/setter, static/instance, public/private fields, class decorators, evaluation order, and legacy decorators remain functional.
      • Windows ARM64 support: native run on ARM64 Windows; cross‑compile via bun build --compile --target=bun-windows-arm64.
      • Barrel import optimization: auto‑opt for packages with "sideEffects":false; explicit via optimizeImports in Bun.build(). Improves bundler speed (e.g., lucida-react 2× faster).
      • Reduced bundle overhead: ESM/CJS output has ~11% fewer objects, 61% fewer getters/setters, etc.
      • Test retry flag: global --retry N for flaky tests; per‑test overrides; JUnit XML now reports each attempt separately.
      • Heap snapshot ArrayBuffer: Bun.generateHeapSnapshot("v8","arraybuffer") returns raw UTF‑8 JSON to avoid string overhead.
      • TLS keepalive for custom configs: mTLS and custom CA certificates now reuse connections, with LRU cache (60 entries, 30 min TTL).
      • Root certificate update: NSS moved from 3.117 to 3.119, removing four CommScope roots, fixing TLS failures after Cloudflare rotation.
      • JavaScriptCore engine upgrades:
      • Rope string slicing 168× faster; endsWith up to 10.5× faster; RegExp flag getters ~1.6× faster; Intl.formatToParts ~1.15× faster.
      • BigInt digits inline, string iterator optimization, integer modulo optimizations, increased JIT thread count (3→4), register allocator improvements.
      • Bug fixes: RegExp.test stale captures, infinite loop with non‑greedy backreferences, incorrect backtracking, WebAssembly ref.cast/test bugs.
      • structuredClone & postMessage: fast path for dense arrays of primitives/strings (25× faster) and flat object arrays (1.7× faster). No regression for complex objects.

Rust

  • 🏷️ New Release: 1.94.0
    • Repo: rust-lang/rust
    • View Release
    • Rust 1.94.0 release – major language, platform, library, and Cargo improvements.
    • Language
    • dead_code lint inheritance for impls/impl items.
    • Stabilized 29 new RISC‑V target features (RVA22U64 / RVA23U64).
    • Added warn‑by‑default unused_visibilities lint for const _.
    • Updated Unicode support to Unicode 17.
    • Fixed incorrect lifetime errors for closures.
    • Platform Support
    • New tier‑3 RISC‑V target: riscv64im-unknown-none-elf.
    • Libraries
    • Relaxed T: Ord bound on several BinaryHeap<T> methods.
    • Stabilized many APIs:
    • Slice methods: array_windows, element_offset.
    • Cell/Lock utilities: LazyCell::get/get_mut/force_mut, LazyLock::get/get_mut/force_mut.
    • TryFrom<char> for usize.
    • Iterator helpers: Peekable::next_if_map / next_if_map_mut.
    • New intrinsics: x86 AVX512FP16, AArch64 NEON fp16 (without unstable f16).
    • Math constants: EULER_GAMMA, GOLDEN_RATIO for f32/f64.
    • Const‑context support for f32::mul_add and f64::mul_add.
    • Cargo
    • Config include key now stable (organize configs).
    • pubtime field in registry index stabilized (future time‑based dependency resolution).
    • TOML v1.1 parsing enabled for manifests/configs.
    • Runtime availability of CARGO_BIN_EXE_<crate> env vars.
    • Compatibility Notes
    • Various subtle changes: lifetime bound casting restrictions, closure capture behavior, macro import rules via prelude, shebang handling in include!, glob re‑export visibility, where‑clause ordering, codegen attribute warnings, Windows epoch handling for SystemTime::checked_sub_duration, NFC normalization of lifetime identifiers, and improved filename handling across compilers.
    • Internal Changes
    • Error messages now use annotate-snippets for better formatting.

📁 Database

PostgreSQL

  • 📰 pgAdmin 4 v9.13 Released
    • Published: Fri, 06 Mar 2026 00:00:00 +0000
    • Read More
    • Preview: The pgAdmin Development Team is pleased to announce the release of pgAdmin 4 version 9.13. This release of pgAdmin 4 includes 15 bug fixes and new features. For more details, please see the release no

📁 Platform

Google Chrome

  • 📰 Request for developer feedback: focusgroup
    • Published: Thu, 05 Mar 2026 08:00:00 GMT
    • Read More
    • Preview: Try out focusgroup and comment on the proposal.
  • 📰 Get features faster with Chrome’s two-week release cycle
    • Published: Tue, 03 Mar 2026 08:00:00 GMT
    • Read More
    • Preview: From September 2026 Chrome releases will be every two weeks.
  • 📰 Device Bound Session Credentials now available on Windows
    • Published: Tue, 03 Mar 2026 08:00:00 GMT
    • Read More
    • Preview: Device Bound Session Credentials (DBSC) are now available in Chrome 145 on Windows to help protect users from cookie theft.
  • 📰 What’s New in WebGPU (Chrome 146)
    • Published: Wed, 25 Feb 2026 08:00:00 GMT
    • Read More
    • Preview: Support WebGPU compatibility mode on OpenGL ES 3.1 and transient attachments.

Firefox

  • 🌐 Page Updated: Firefox Releases
    • View Page
    • Changed: 2026-03-06T17:54:47.548598
      • Version: 148.0
        • New UI/UX features – AI Controls section in Settings for managing AI‑enhanced features; New Tab wallpapers now show on container tabs.
        • Accessibility & privacy – Improved screen reader support for mathematical formulas in PDFs; Remote browser changes can be opted into independently of telemetry; Firefox Backup available on Windows 10 (excluding data cleared on close).
        • Internationalization – Added Traditional Chinese and Vietnamese translations.
        • Bug fixes – Language pack disabling issue after major update, correct image insertion into Adobe Illustrator on Windows, various security fixes.
        • Web Platform enhancements
        • about:blank now Web‑compatible (synchronous first navigation).
        • Service worker support for WebGPU in all worker contexts.
        • Iterator APIs: Iterator.zip() and Iterator.zipKeyed().
        • Trusted Types API, Sanitizer API (element.setHTML, document.parseHTML).
        • New properties: location.ancestorOrigins; NavigationPrecommitController.addHandler().
        • CSS updates: position-try-order (Anchor Positioning) and shape() function.
        • Community – 18 first‑time contributors joined the project in this release.

📁 Tooling

Git and GitHub

  • 📰 GPT-5.4 is generally available in GitHub Copilot
    • Published: Thu, 05 Mar 2026 23:36:06 +0000
    • Read More
    • Preview: GPT-5.4, OpenAI’s latest agentic coding model, is now rolling out in GitHub Copilot. In our early testing of real-world, agentic, and software development capabilities, GPT-5.4 consistently hits new r

Visual Studio Code

  • 🌐 Page Updated: VS Code Updates
    • View Page
    • Changed: 2026-03-06T17:57:27.337260
      • Release: VS Code 1.110 (Feb 2026) – March 4, 2026 release.
      • Agents:
      • New agent plugins (prepackaged bundles), browser tools, and session memory for plans.
      • Background agents now support slash commands, renaming, and manual context compaction (/compact).
      • Claude agents get steering/queuing, /agents, /hooks, diagnostics tool, performance improvements.
      • Debugging: Preview Agent Debug panel shows real‑time events, customizations, chart view (local sessions only).
      • Slash Commands: /autoApprove, /disableAutoApprove, /yolo, /disableYolo, /compact, /fork, /create-prompt/instruction/skill/agent/hook.
      • Edit/Ask Modes: Edit mode hidden by default; ask mode now a custom agent. Custom agents can be created via chat.
      • AskQuestions Tool: Moved to core, supports steering mid‑carousel and keyboard navigation (Alt+N/P).
      • Session Management:
      • Fork chat sessions (/fork or “Fork Conversation” from checkpoint).
      • Inline chat now queues into existing session after file changes.
      • Session memory preserves plans across turns; context compaction available manually and automatically.
      • Browser Automation: New tools for integrated browser (navigation, read/screenshot, click/hover/type, runPlaywrightCode) with private in‑memory sessions by default.
      • Usages & Rename Tools: Updated usages tool and added rename tool for precise refactoring.
      • Explore Subagent: Plan agent delegates research to Explore (fast models like Claude Haiku 4.5 or Gemini 3 Flash), can be overridden via chat.exploreAgent.defaultModel.
      • Miscellaneous:
      • Kitty graphics protocol support in terminal.
      • Prevent auto‑suspend during chat requests.
      • New settings for agent plugins, browser tools, and session features.

📁 Llms

OpenAI

  • 🌐 Page Updated: ChatGPT Release Notes
    • View Page
    • Changed: 2026-03-06T17:58:04.682655
      • New model GPT‑5.4 “Thinking” – combines GPT‑5.3‑Codex coding power with enhanced reasoning, tool use, spreadsheet/presentation support, upfront planning of thoughts, better deep web research and context retention.
      • Codex app releases – Windows (March 4) and macOS (Feb 2) desktop apps for running multiple Codex agents in parallel with isolated worktrees, diff review, pull‑request export; available on plans that include Codex (Free/Go trial, Plus/Pro 2× limits).
      • GPT‑5.3 Instant – updated March 3 to improve accuracy, web‑search results, tone, relevance and conversational flow.
      • Web & Android UI updates – image prompt editing, faster sharing, export of Code Block visuals, smoother scrolling, improved dictation interface (Feb 27); file upload limit raised to 20 files, expanded formats, better “Select All” behavior; Android quick‑tools menu added.
      • Projects & Sources – Feb 25 adds ability to add sources from apps, chats or ad‑hoc text to build a living knowledge base.

📁 Cloud

AWS

  • 📰 Multi-party approval now supports approval team baselining
    • Published: Thu, 05 Mar 2026 19:00:00 GMT
    • Read More
    • Preview: Multi-party approval (MPA) now supports MPA administrators running test approvals to confirm that their approval team is set up correctly and that approvers are active and reachable. With this new cap

Google Cloud Platform

  • 📰 March 05, 2026
    • Read More
    • Preview: AlloyDB for PostgreSQL
      Feature
      AlloyDB enhanced backups are generally available
      (GA).
      You can now select the Enhanced tier during cluster creation, manage your
      project-level backups with tiered tabs,

📁 Bitcoin

Bitcoin Optech

  • 📰 Bitcoin Optech Newsletter #395
    • Published: 2026-03-06T00:00:00+00:00
    • Read More
    • Preview: This week’s newsletter describes a standard for verifying VTXOs across different Ark implementations and links to a draft BIP for expanding the miner-usable nonce space in the block header’s nVersion

Leave a Reply

Your email address will not be published. Required fields are marked *