FBI raids ex-US Representative Swalwell’s home amid sexual misconduct probe
Swalwell, a vocal Trump critic, resigned from Congress and dropped out of California governor's race amid allegations.
Swalwell, a vocal Trump critic, resigned from Congress and dropped out of California governor's race amid allegations.
Residents say at least 46 bodies already recovered, as rescue operations continue before officials can confirm toll.
Slack on Thursday rolled out Add to Slack, which lets users more easily bring the agents they’ve built with ten The post Slack makes it easier to install agents built with third-party tools appeared first on The New Stack .
Liberia is part of a growing list of partners under US President Donald Trump to accept third-country deportations.
Linkdaze's smart digital calendar stands out for not putting its features behind a paywall, including an AI meal planner tool.
Al Jazeera’s AlMigdad Alruhaid travelled along one of the main supply roads to Sudan’s besieged city of el-Obeid.
The Windows 11 arm64 image with Visual Studio 2026 is now generally available on standard and larger GitHub-hosted runners. To use it in GitHub Actions, update your workflow file to… The post Windows 11 arm64 VS2026 image generally available appeared first on The GitHub Blog .
On Tuesday, Warp introduced Warp Factories, open infrastructure for building cloud software factories, agentic systems that automate work across the The post Warp wants to make it easier to build your software factory appeared first on The New Stack .
At least 50 people — many of them reportedly children — have died in a boat accident in northwestern Nigeria.
The recent Israeli attack on a Syrian airbase is just one of many Israeli incursions into Syria. In southern Syria, locals say Israeli troops have detained them, destroyed infrastructure and set up military bases.
Changes since langchain-fireworks==1.5.2 release(fireworks): 1.6.0 ( #39810 ) feat(fireworks): add document reranking ( #39732 ) fix(fireworks): filter invalid tool calls from v1 content ( #39805 ) feat(core): add standard model exception types ( #39538 ) chore(model-profiles): refresh model profile data ( #39646 ) fix(fireworks): avoid repeated service_tier [closes #39619 ] ( #39620 ) chore: bump langsmith from 0.10.6 to 0.10.16 in /libs/partners/fireworks ( #39279 ) chore: bump aiohttp from 3.14.1 to 3.14.3 in /libs/partners/fireworks ( #39236 ) chore(model-profiles): refresh model profile data ( #39166 )
Minor Changes #14995 59872c4 Thanks @ThomasRubini ! - Add connect trigger for raw sockets You can now configure a Worker to receive raw socket connections during wrangler dev , delivered directly to the Worker's connect(socket, env, ctx) handler: { "connect" : [{ "protocol" : " tcp " , "port" : 5432 }] } Each entry opens a listening socket on 127.0.0.1 (or the given address ) that forwards incoming connections straight to the Worker, bypassing the local dev HTTP entry point. This requires the experimental compatibility flag. Only "tcp" is supported at the moment. @cloudflare/config also supports declaring this trigger via triggers.connect(...) , which lowers to the connect field above: import { defineWorker , triggers } from "@cloudflare/config" ; export default defineWorker ( { triggers : [ triggers . connect ( { protocol : "tcp" , port : 5432 , address : "127.0.0.1" } ) , ] , } ) ; #15172 c68f9cb Thanks @WillTaylorDev ! - Add container support to worker previews Worker previews now support containers through a new previews.containers configuration block. Container configuration doesn't inherit, so declare containers explicitly in the previews block to enable them for previews. This mirrors how previews.durable_objects works today. Wrangler names each preview container application {worker_name}_{preview_slug}_{class_name} , normalising and shortening the result to what the API accepts. Either change appends a short digest of the composed name, so two names that would otherwise land on one stay distinct. An entry cannot set its own name , because application names are unique to an account and a fixed name would collide between two previews of the same Worker. A Durable Object class is backed by at most one container application, so the validator rejects two entries that share a class_name . Wrangler skips container applications bound to Durable Object classes that another Worker implements through script_name , because the implementing Worker owns its own container application. A binding is not required: a Durable Object declared through migrations or exports and reached only over ctx.exports can still back a container. Every entry must set class_name . A previews.containers entry whose class_name matches no Durable Object class at all is rejected before the preview deployment is created, so a typo fails loudly instead of producing a preview with no container. Wrangler creates the container applications on wrangler preview . Deleting a preview tears them down server side, so wrangler preview delete doesn't remove them. Container build and deploy progress prints to stdout. wrangler preview --json suppresses wrangler's own output so it doesn't interleave with the payload, and warnings and errors still go to stderr. Docker's build output and the progress spinner write to stdout directly and bypass that suppression, so parse --json from a non interactive shell, where the spinner is skipped, and prefer a prebuilt image over a Dockerfile. #15174 649f667 Thanks @WillTaylorDev ! - [private beta]: Create the parent Worker automatically when wrangler preview targets one that doesn't exist yet Previews hang off a parent Worker, so running wrangler preview before the Worker had ever been deployed failed with a raw API error naming the Preview endpoint. Wrangler now offers to create an empty parent Worker and then carries on creating the Preview. The parent uses the same workers.dev and Preview URL settings that wrangler deploy would resolve, without applying routes or cron triggers. In non-interactive environments, Wrangler creates the Worker without asking. #14735 30c2d47 Thanks @vaishnav-mk ! - Add individual and batch Workflow instance deletion to the runtime and SDK. WorkflowInstance.delete() deletes one instance. Self-deletion stops the current execution. env.MY_WORKFLOW.deleteBatch(instanceIds) deletes up to 100 instances and returns { deleted, errors } per input position. wrangler workflows instances delete <name> [id..] deletes instances remotely or with --local ; IDs can also come from a JSON array passed with --filename , with a combined limit of 100. Patch Changes #15260 5ae9d5b Thanks @dependabot ! - Update dependencies of "miniflare", "wrangler" The following dependency versions have been updated: Dependency From To @cloudflare/workers-types ^5.20260815.1 ^5.20260816.1 workerd 1.20260815.1 1.20260816.1 #15264 4b52975 Thanks @dependabot ! - Update dependencies of "miniflare", "wrangler" The following dependency versions have been updated: Dependency From To @cloudflare/workers-types ^5.20260816.1 ^5.20260819.1 workerd 1.20260816.1 1.20260819.1 #15277 ce9b151 Thanks @dependabot ! - Update dependencies of "miniflare", "wrangler" The following dependency versions have been updated: Dependency From To @cloudflare/workers-types ^5.20260819.1 ^5.20260820.1 workerd 1.20260819.1 1.20260820.1 #15192 ef73a28 Thanks @ondraulehla ! - Fixes kv bulk put corrupting binary values written to local KV Values marked base64: true were stored incorrectly whenever they contained bytes that do not form valid UTF-8, which covers images, compressed data and most other binary payloads. A Worker reading such a key back under wrangler dev got a different, longer value than the one that was written: a 12 byte PNG header came back as 20 bytes. kv bulk put writes to local KV by default, so the plain command was the affected one. Remote writes were never affected, and neither were entries without base64 or values written with kv key put . #15284 39dcea6 Thanks @emily-shen ! - Move deploy output writing into shared deploy helpers #15130 99a1f49 Thanks @emily-shen ! - Remove unsupported remote configuration from Workflow bindings Workflow bindings no longer accept remote in configuration, as remote Workflow bindings have never actually been supported. #15278 f2437e6 Thanks @Sosokker ! - Fix the --temporary error on commands that authenticate more than one time wrangler d1 migrations apply --remote --temporary failed with this error: You're already authenticated with Cloudflare, so --temporary can't be used . The failure occurred with no login and with no CLOUDFLARE_API_TOKEN . This command authenticates one time for each statement that it runs. The first authentication makes a temporary preview account. The second authentication read the token of this new account as an earlier login. Wrangler now uses again the temporary account from the same command run. Commands that authenticate more than one time now work as wrangler deploy --temporary works. If real credentials are available, --temporary is still an error. Updated dependencies [ 59872c4 , 99a1f49 , 5ae9d5b , 4b52975 , ce9b151 , 99a1f49 , 99a1f49 , 30c2d47 ]: miniflare@5.20260820.0-alpha
Roblox is promising more changes to its child safety features following testing from Australia's online safety regulator, eSafety. eSafety has been looking into concerns that the company hasn't been in compliance with Australia's Online Safety Act, including "allegedly failing to have sufficient measures in place to prevent contact between adults and children under 16." While […]
Volodymyr Zhuravlev had been consulted on Snake Island, a dramatised reconstruction of incident Earlier this month locals in Zagreb noticed something odd outside an art deco building. Sandbags and barricades appeared in front of the Esplanade hotel, along with a film crew and extras sporting Ukrainian military uniforms. Soon afterwards the actors Sean Penn and Adrien Brody were spotted on the set in the Croatian capital, together with Doug Liman , the Hollywood director of the Jason Bourne movies. Liman had come to shoot his latest fictional political thriller. Its subject: the 2022 Nord Stream explosions, in which a team of Ukrainian divers allegedly blew up a pipeline supplying Russian natural gas to Germany. One of the chief suspects, Volodymyr Zhuravlev, had twice eluded the Germany authorities: once allegedly slipping out of Poland in the boot of a diplomatic car, and on another occasion freed by a court. Continue reading...
OpenSearch is a top-level open-source project under the Linux Foundation, backed by Amazon Web Services and other prominent players. The The post How to build smarter OpenSearch alerts: Join our live conversation appeared first on The New Stack .
Your machine is a P2P server, review suite & clipboard sync. Discussion | Link
Another day, another sad thing to report about our compromised Federal Communications Commission. Chairman Brendan Carr has followed through on his 2025 threat to kill long-term broadband speed goals established during the Biden administration, which aimed for eventually getting us to gigabit download and half-gigabit upload speeds. How dare we dream of spreading great download […]
LLMs don't write in a recognizable style because they can't do better. Post-training and safety guardrails sharply narrow their expressive range, argues Pangram CTO Bradley Emi. Base models without these constraints already write with far more variety. The article LLMs could write like humans but post-training guardrails make their text detectable appeared first on The Decoder .
Prof Katya Rubia withdraws support for The Great ADHD Myth? as other leading figures voice criticisms A contributor to a controversial Channel 4 documentary on attention deficit hyperactivity disorder has withdrawn her support for the programme, saying it was biased and could lead to an increased suicide risk by encouraging parents to take their children off medication. Katya Rubia, a professor of cognitive neuroscience at the Institute of Psychiatry, Psychology and Neuroscience at King’s College London, also said The Great ADHD Myth? misrepresented her views. Continue reading...
Bangladesh elects Mirza Fakhrul Islam Alamgir by parliamentary vote, filling vacancy after Shahabuddin's resignation.
Affected users told TechCrunch they were using Grok Lite, and noticed the issues as early as Wednesday morning.
A lot of this week’s trouble starts with something trusted doing exactly what it was allowed to do. Signed drivers get turned against defenses. Legitimate apps help malware blend in. A weak header check opens a path to code execution. Elsewhere, exposed systems, old bugs, odd hiding tricks, and AI-assisted exploit research keep lowering the effort needed to cause damage. Nothing here needs
After weeks of speculation, fintech giant Stripe has confirmed that it’s tabled a bid for AI model gateway platform OpenRouter, The post OpenRouter called itself the “Stripe for LLMs” — now Stripe’s swooped in to buy it appeared first on The New Stack .
ChatGPT and other AI models are now authoring and editing much of the new web.