Lotu RadarAbout · RSS

Latest News Archive - Page 616

Startups & Funding · Hacker News Best

Petition to Withdraw Canada's Bill C-22

Article URL: https://www.ourcommons.ca/petitions/en/Petition/Sign/e-7416 Comments URL: https://news.ycombinator.com/item?id=48491830 Points: 399 # Comments: 137

Developers & Open Source · cloudflare/workers-sdk Releases

wrangler@4.100.0

Minor Changes #14119 2047a32 Thanks @tahmid-23 ! - Serve local R2 bucket objects publicly via the dev server When running wrangler dev locally, objects in each local R2 binding are now reachable under /cdn-cgi/local/r2/public/ / on the existing dev server, simulating a public bucket. The is the bucket's bucket_name when set, otherwise its binding . Bindings configured with remote: true are not exposed. #14202 e8561c2 Thanks @jamesopstad ! - Add experimental --x-new-config flag for authoring config in TypeScript This is an experimental, opt-in feature. When enabled, wrangler dev , wrangler build , wrangler deploy , wrangler versions upload , and wrangler versions deploy load the Worker's configuration from a cloudflare.config.ts file instead of wrangler.json / wrangler.jsonc / wrangler.toml . Additionally, an optional wrangler.config.ts file can be provided for Wrangler-specific dev/build configuration. cloudflare.config.ts (required) — Worker runtime configuration (bindings, triggers, observability, placement, limits, compatibility, routes, etc.). Authored via defineWorker from wrangler/experimental-config . wrangler.config.ts (optional) — Tooling / bundling / dev-server configuration ( noBundle , minify , alias , define , rules , tsconfig , build , dev , assetsDirectory , etc.). Authored via defineWranglerConfig from wrangler/experimental-config . Per-environment configuration is via ctx.mode branching inside the function form of either file. Example cloudflare.config.ts : ({ name: "my-worker", entrypoint, compatibilityDate: "2026-05-18", env: { MY_KV: bindings.kv(), MY_TEXT: bindings.text(`The mode is ${ctx.mode}`), }, }));"> import { defineWorker , bindings } from "wrangler/experimental-config" ; import * as entrypoint from "./src/index.ts" with { type : "cf-worker" } ; export default defineWorker ( ( ctx ) => ( { name : "my-worker" , entrypoint , compatibilityDate : "2026-05-18" , env : { MY_KV : bindings . kv ( ) , MY_TEXT : bindings . text ( `The mode is ${ ctx . mode } ` ) , } , } ) ) ; Example wrangler.config.ts : import { defineWranglerConfig } from "wrangler/experimental-config" ; export default defineWranglerConfig ( { minify : true , assetsDirectory : "./public" , } ) ; Because this is experimental, the flag, the config formats, and the wrangler/experimental-config exports may change in any release. Patch Changes #14185 98c9afe Thanks @penalosa ! - Use the shared env-credential resolver from @cloudflare/workers-auth No user-facing behaviour change. Credential resolution order (global API key + email → CLOUDFLARE_API_TOKEN → stored OAuth token) is preserved. #14184 e305126 Thanks @penalosa ! - Add an experimental cf-wrangler delegate entrypoint for projects that can't use @cloudflare/vite-plugin (service workers, old compatibility dates, Python, Rust, etc.). cf-wrangler dev starts the same local dev server as wrangler dev — it sits directly on wrangler's internal dev server, so the bundling and runtime behaviour are identical — but exposes a deliberately narrow CLI surface ( --mode , --port , --host , --local ) for a parent CLI to delegate to, and other dev server config options are read from the wrangler config file. This replaces the separate @cloudflare/wrangler-bundler package. This is an internal integration point and is not intended to be run directly by users. #14246 f3990b2 Thanks @dependabot ! - Update dependencies of "miniflare", "wrangler" The following dependency versions have been updated: Dependency From To workerd 1.20260609.1 1.20260610.1 #14256 4597f08 Thanks @dependabot ! - Update dependencies of "miniflare", "wrangler" The following dependency versions have been updated: Dependency From To workerd 1.20260610.1 1.20260611.1 #14243 25722ac Thanks @com6056 ! - Fix a memory leak that could make long-running headless wrangler dev sessions unresponsive Long-running wrangler dev sessions with no DevTools attached (for example using the containers feature under sustained traffic) could gradually consume unbounded memory and eventually stop accepting connections. The inspector proxy now only enables network tracking while a DevTools client is connected, so the buildup no longer happens. Interactive debugging is unaffected. Fixes #14191 . #14230 41f75c0 Thanks @dario-piotrowicz ! - Improve D1 error messages for missing or conflicting options Error messages for d1 execute , d1 export , d1 time-travel restore , and d1 insights now clearly state which option is missing or conflicting, explain why the combination is invalid, and suggest how to fix the issue. Additionally, duration validation errors in d1 insights are now thrown as UserError instead of plain Error , ensuring they are displayed cleanly to users rather than as unexpected crashes. #14213 10b5538 Thanks @dario-piotrowicz ! - Improve authentication error messages with specific failure reasons When authentication fails (e.g. during wrangler dev --remote or when using remote bindings), the error message now explains exactly what went wrong -- whether no credentials were found, the token expired, or the environment is non-interactive -- and lists actionable steps to fix it, including a wrangler whoami tip. Previously, auth failures could produce multiple confusing errors (e.g. "Failed to fetch auth token: 400 Bad Request" followed by "Failed to start the remote proxy session"). Now a single, clear error is shown. #14233 818c105 Thanks @dario-piotrowicz ! - Improve R2 Sippy error messages Now error messages in wrangler r2 bucket sippy follow a consistent pattern: they describe what is missing, name the exact --flag to use, and provide context (e.g. example values, links to the dashboard). Previously, many errors said only "Error: must provide --flag." with no guidance on what the flag does or how to obtain the value. #14259 2ae6099 Thanks @emily-shen ! - Move worker build step earlier in deploy/upload step, before upload specific config validation Updated dependencies [ f3990b2 , 4597f08 , 2047a32 ]: miniflare@4.20260611.0

Products & Consumer Tech · The Verge

Is Apple TV the new HBO?

This is Lowpass by Janko Roettgers, a newsletter on the ever-evolving intersection of tech and entertainment, syndicated just for The Verge subscribers once a week. Severance. Pachinko. Silo. Ted Lasso. Over the past couple of years, a number of Apple TV shows have become hits with audiences and critics alike. And yet, compared to the […]

AI · TechCrunch AI

Pool’s new app turns your screenshots into something useful

Pool's new app automatically sorts screenshots into personalized collections, tracks down the original links behind saved content, and helps you rediscover products, recipes, travel ideas, and other things you meant to revisit.

AI · The Decoder

OpenAI vs. Anthropic: A price war over API tokens is brewing

OpenAI is weighing token price cuts to win customers from Anthropic, the Wall Street Journal reports. The article OpenAI vs. Anthropic: A price war over API tokens is brewing appeared first on The Decoder .

Notable Blogs · Simon Willison

datasette 1.0a33

Release: datasette 1.0a33 This alpha is a significant step on the road to a stable 1.0, finally extending the ?_extra= pattern I introduced in Datasette 1.0a3 to cover queries and rows in addition to tables. That pattern is also now documented ! I wrote a whole lot more about the new release on the Datasette project blog: Datasette 1.0a33 with JSON extras in the API . Because API explorer tools are almost free to build now I had Claude Fable 5 in Claude Code (for the plan ) and GPT-5.5 xhigh in Codex Desktop (for the implementation ) build me this custom extras API explorer to help demonstrate the feature: Tags: projects , datasette , annotated-release-notes , ai-assisted-programming

Products & Consumer Tech · The Verge

The Nintendo Switch 2 is $15 off at Woot

Woot is hosting a small, but welcome deal on the Nintendo Switch 2 through June 19th. New customers can save $15 on the $449.99 console with the code NEW15 used at checkout. Sure, these are microscopic savings, but come September, the Switch 2 will rise in price to $499.99, so any deal is worth telling […]

Products & Consumer Tech · The Verge

The Weather Channel app now predicts bad allergy days

The Weather Company announced an "enhanced allergy experience" now available through its The Weather Channel app designed to help allergy sufferers better understand when their symptoms might flare up, and what's causing them. While the app already provides static pollen counts, its "Health & Wellness" section is being expanded to take into account other factors […]

Startups & Funding · TechCrunch Startups

Microsoft taps Alt Carbon in sign of India’s growing role in carbon removal

Alt Carbon said the agreement followed more than a year of scientific review and due diligence, with Microsoft requiring additional verification and data-sharing measures.

Products & Consumer Tech · Product Hunt

Oxlo.ai

Scale across AI models without scaling your bill Discussion | Link

Products & Consumer Tech · The Verge

With the World Cup looming, there’s still no clear replacement for sports Twitter

Three years ago, when the women's World Cup kicked off in Australia and New Zealand, my social feeds were in a strange place. Twitter had just transformed into X, newcomer Threads was seemingly ascendant, and places like Bluesky had yet to garner much momentum. It left me with an odd, and admittedly silly, dilemma: I […]

Cloud & Infrastructure · The New Stack

How to delegate 40% of tickets to AI

AI beats us at coding. But it’s also better and faster at nearly everything else: planning, QA, working with all The post How to delegate 40% of tickets to AI appeared first on The New Stack .

Startups & Funding · Hacker News Best

MiMo Code is now released and open-source

Article URL: https://mimo.xiaomi.com/mimocode Comments URL: https://news.ycombinator.com/item?id=48490826 Points: 434 # Comments: 251

AI · TechCrunch AI

DoorDash’s new AI chatbot lets you order with prompts and photos

The new chatbot, called Ask DoorDash, allows users to search the app for what they're looking for in their own words instead of having to scroll through restaurants and stores to build a cart.

Products & Consumer Tech · Product Hunt

Zernio WhatsApp API

One API for WhatsApp: messaging, calling, and AI agents Discussion | Link

Cybersecurity · BleepingComputer

Why AI-driven threats are exposing the limits of MSP security stacks

AI-driven attacks are exposing the limits of fragmented MSP security stacks and slow response workflows. Kaseya breaks down why integrated security, automation, and recovery are becoming essential. [...]

Cloud & Infrastructure · The New Stack

Agentic development hinges on verification. For cloud-native software, that is a runtime problem.

Async agents are only useful if you can trust what they hand back. In a distributed system, that trust comes The post Agentic development hinges on verification. For cloud-native software, that is a runtime problem. appeared first on The New Stack .

Cloud & Infrastructure · The New Stack

AI agents need infrastructure: Why Europe’s regional cloud strategy matters

It’s no secret that generative AI has shifted the operations and business models of companies in nearly every sector. But The post AI agents need infrastructure: Why Europe’s regional cloud strategy matters appeared first on The New Stack .

Cybersecurity · SecurityWeek

Oracle Addresses PeopleSoft Vulnerability Amid Reports of Zero-Day Attacks

Oracle has released mitigations for CVE-2026-35273, but it has not said whether it’s a zero-day exploited in ShinyHunters attacks. The post Oracle Addresses PeopleSoft Vulnerability Amid Reports of Zero-Day Attacks appeared first on SecurityWeek .

Products & Consumer Tech · Ars Technica

"This cannot continue": Xbox leaders lay out "hard truths" behind sagging brand

Brutal self-assessment paints a picture of a Microsoft gaming division in crisis.

Cybersecurity · SecurityWeek

Alert Fatigue Is Becoming a Security Threat of Its Own

As alert volumes outpace human capacity, organizations are turning to AI, automation, and deeper context to separate real threats from the noise. The post Alert Fatigue Is Becoming a Security Threat of Its Own appeared first on SecurityWeek .

Developers & Open Source · Chrome Releases

Chrome Dev for Android Update

Hi everyone! We've just released Chrome Dev 151 (151.0.7885.0) for Android. It's now available on Google Play . You can see a partial list of the changes in the Git log . For details on new features, check out the Chromium blog , and for details on web platform updates, check here . If you find a new issue, please let us know by filing a bug . Chrome Release Team Google Chrome

Startups & Funding · Hacker News Best

Workers are spending over 6 hours a week botsitting AI, fueling job frustration

Article URL: https://www.businessinsider.com/botsitting-ai-hidden-human-labor-at-work-2026-6 Comments URL: https://news.ycombinator.com/item?id=48490057 Points: 264 # Comments: 207

Cybersecurity · The Hacker News

Cybersecurity Stars Awards 2026: Winners Announced Across 95 Categories

Most good security work is invisible by design. Today is the exception. The 2026 Cybersecurity Stars Awards winners are announced across 95 subcategories in four main award categories. The reason is simple. Cybersecurity is full of work that deserves recognition and rarely gets it. Products that quietly close real gaps. Teams that stop incidents nobody reads about. Companies that raise the