# product-launches

Published articles for product-launches.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## Sign in to Pulumi Cloud with Passkeys

DevFeed: [Sign in to Pulumi Cloud with Passkeys](<https://devfeed.tech/articles/sign-in-to-pulumi-cloud-with-passkeys-19019.md>)

Original publisher: [Read original article](<https://www.pulumi.com/blog/passkey-support-in-pulumi-cloud/>)

Author: Devon Grove

Published: 2026-07-13T00:00:00Z

Content type: release

Language: en

Sources: [Pulumi](<https://devfeed.tech/sources/pulumi.md>)

Topics: [Passkeys](<https://devfeed.tech/topics/passkeys.md>), [WebAuthn](<https://devfeed.tech/topics/webauthn.md>), [Security](<https://devfeed.tech/topics/security.md>), [passwords](<https://devfeed.tech/topics/passwords.md>)

Tags: [bitbucket](<https://devfeed.tech/tags/bitbucket.md>), [features](<https://devfeed.tech/tags/features.md>), [gitlab](<https://devfeed.tech/tags/gitlab.md>), [google](<https://devfeed.tech/tags/google.md>), [oauth](<https://devfeed.tech/tags/oauth.md>), [passwords](<https://devfeed.tech/tags/passwords.md>), [product](<https://devfeed.tech/tags/product.md>), [product-launches](<https://devfeed.tech/tags/product-launches.md>), [security](<https://devfeed.tech/tags/security.md>)

### AI overview

Pulumi Cloud now supports passkeys for users who sign in with an email address and password. Passkeys use device-stored public-key credentials and WebAuthn, while identity-provider sign-in flows remain unchanged.

### Source excerpt

Pulumi Cloud now supports passkeys for users who sign in with email and password. Select a button, approve with Touch ID, Face ID, Windows Hello, or your hardware key, and you're signed in. A passkey is a public-key credential stored on your device: your phone, your laptop, a hardware key (YubiKey, Google Titan, etc.), or your password manager can all function as the authenticator. When you sign in, your device authenticates you locally and signs a challenge from Pulumi Cloud with the private key. The private key stays on your device -- Pulumi Cloud never sees or stores it. Passkeys are built on the WebAuthn standard, so they're already supported on every major browser and operating system. Who this is for This release applies to users who sign in to Pulumi Cloud with an email address and password. If you sign in through an identity provider (IdP), such as GitHub OAuth, GitLab, Bitbucket, Google, or your organization's SAML SSO, your existing flow is unchanged. Why passkeys Passwords have always been the weakest link in account security. Since they are shared secrets, they are vulnerable to phishing attacks, and every place you type one is a place that can be impersonated or a data store that can be leaked. Passkeys swap that out for a per-site key pair that lives on your device: Phishing-resistant by design. A passkey is bound to the exact origin it was registered for. A look-alike domain can't trigger your authenticator. Synced across your devices. Apple iCloud Keychain, Google Password Manager, 1Password, Dashlane, Bitwarden: most credential managers now sync passkeys end-to-end-encrypted to every device you've signed in on. Discoverable. Pulumi Cloud doesn't need to know which user you are before you authenticate. Just select "Sign in with a passkey" and your device offers the right credential. Nothing to remember. A passkey lives on your device. There's no string to memorize, and no sensitive credential stored by us. Setting up a passkey The next time you sign i

## Introducing pulumi do: Direct Resource Operations for Any Cloud

DevFeed: [Introducing pulumi do: Direct Resource Operations for Any Cloud](<https://devfeed.tech/articles/introducing-pulumi-do-direct-resource-operations-for-any-cloud-19023.md>)

Original publisher: [Read original article](<https://www.pulumi.com/blog/pulumi-do-direct-resource-operations/>)

Author: Christian Nunciato

Published: 2026-05-22T00:00:00Z

Content type: release

Language: en

Sources: [Pulumi](<https://devfeed.tech/sources/pulumi.md>)

Topics: [Infrastructure as code](<https://devfeed.tech/topics/infrastructure-as-code.md>), [Command-line interface](<https://devfeed.tech/topics/cli.md>), [Cloud](<https://devfeed.tech/topics/cloud.md>), [Provisioning](<https://devfeed.tech/topics/provisioning.md>), [Amazon S3](<https://devfeed.tech/topics/amazon-s3.md>), [Amazon Web Services](<https://devfeed.tech/topics/aws.md>)

Tags: [ai-agents](<https://devfeed.tech/tags/ai-agents.md>), [aws](<https://devfeed.tech/tags/aws.md>), [cli](<https://devfeed.tech/tags/cli.md>), [command-line](<https://devfeed.tech/tags/command-line.md>), [features](<https://devfeed.tech/tags/features.md>), [iac](<https://devfeed.tech/tags/iac.md>), [infrastructure](<https://devfeed.tech/tags/infrastructure.md>), [infrastructure-as-code](<https://devfeed.tech/tags/infrastructure-as-code.md>), [product](<https://devfeed.tech/tags/product.md>), [product-launches](<https://devfeed.tech/tags/product-launches.md>), [pulumi](<https://devfeed.tech/tags/pulumi.md>), [pulumi-cli](<https://devfeed.tech/tags/pulumi-cli.md>), [s3](<https://devfeed.tech/tags/s3.md>)

### AI overview

Pulumi introduces pulumi do, a terminal command for direct cloud resource operations. It can create, read, update, delete, and query resources across Pulumi-supported providers without requiring a project, code, or state. The article also describes how pulumi do, Agent accounts, and Pulumi ESC can support ad-hoc infrastructure work and AI agent workflows.

### Source excerpt

Infrastructure as code is the right model for production systems. State tracking, drift detection, and repeatable deployments all matter when you're managing real workloads. But sometimes, you also need a quick, one-off interaction with the cloud: create a bucket or a database, look up a VPC, delete a stray resource. Today we're introducing pulumi do, a new command for direct resource operations. With pulumi do, you can create, read, update, delete, and query any cloud resource from the terminal with a single command, across thousands of Pulumi-supported providers -- no project, code, or state required. The problem: Sometimes IaC is more than you need When you're managing production workloads, IaC is the proven solution. Code lets you declare complex systems, state tracking catches drift before it becomes a problem, dependency graphs sequence changes safely, and policy keeps everything in bounds. That full lifecycle, especially with the backing of a platform like Pulumi Cloud, is exactly what you want to build systems that scale. But when you (or your coding agent) need an ad-hoc Postgres database, the simplest path with IaC still takes several steps: make a directory, create a project, configure your credentials, write the code, preview, deploy. It works, but it's not always necessary for what should be a simple operation. pulumi do collapses all of those steps into one, using the same Pulumi providers, resource model, and ecosystem that powers the core Pulumi platform. Resource creation is also only part of the problem. As Joe laid out in The Agentic Infrastructure Era, the real challenge for AI agents isn't with code or CLI commands, it's with everything else: getting a cloud account, resolving credentials, wiring configuration across multiple services. Agent accounts, also released this week, simplify this by letting an agent provision its own ephemeral Pulumi Cloud account, and Pulumi ESC takes care of consolidating credentials across providers. Together, with p

## Durable Digest: December 2025

DevFeed: [Durable Digest: December 2025](<https://devfeed.tech/articles/durable-digest-december-2025-35787.md>)

Original publisher: [Read original article](<https://temporal.io/blog/durable-digest-december-2025>)

Author: Temporal Technologies

Published: 2025-12-19T00:00:00Z

Content type: article

Language: en

Sources: [Temporal Blog](<https://devfeed.tech/sources/temporal-blog.md>)

Topics: [reliability](<https://devfeed.tech/topics/reliability.md>), [Availability](<https://devfeed.tech/topics/availability.md>), [Replication](<https://devfeed.tech/topics/replication.md>), [OpenTelemetry](<https://devfeed.tech/topics/opentelemetry.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [Netflix](<https://devfeed.tech/topics/netflix.md>), [Ruby](<https://devfeed.tech/topics/ruby.md>), [Monitoring](<https://devfeed.tech/topics/monitoring.md>)

Tags: [2025](<https://devfeed.tech/tags/2025.md>), [ai-agents](<https://devfeed.tech/tags/ai-agents.md>), [announcements](<https://devfeed.tech/tags/announcements.md>), [blog-post](<https://devfeed.tech/tags/blog-post.md>), [deployment](<https://devfeed.tech/tags/deployment.md>), [fraud-detection](<https://devfeed.tech/tags/fraud-detection.md>), [high-availability](<https://devfeed.tech/tags/high-availability.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [netflix](<https://devfeed.tech/tags/netflix.md>), [openai](<https://devfeed.tech/tags/openai.md>), [opentelemetry](<https://devfeed.tech/tags/opentelemetry.md>), [product-launches](<https://devfeed.tech/tags/product-launches.md>)

### AI overview

Temporal's December 2025 Durable Digest reviews major product launches and updates, including Nexus GA, High Availability and replication features, Worker Versioning, SCIM User Management, the Ruby SDK, and an OpenMetrics endpoint. It also highlights OpenAI Agents SDK integration, a Netflix builder spotlight, and resources on AI fraud detection and OpenTelemetry observability.

### Source excerpt

It's been a packed year at Temporal. In this issue: major product launches, a builder spotlight from Netflix, and two fresh "How to Temporal" resources

## Replay 2023: Day one

DevFeed: [Replay 2023: Day one](<https://devfeed.tech/articles/replay-2023-day-one-35956.md>)

Original publisher: [Read original article](<https://temporal.io/blog/replay-day-one>)

Author: Rob Holland

Published: 2023-09-14T07:00:00Z

Content type: article

Language: en

Sources: [Temporal Blog](<https://devfeed.tech/sources/temporal-blog.md>)

Topics: [Development](<https://devfeed.tech/topics/development.md>), [event driven](<https://devfeed.tech/topics/event-driven.md>), [Code generation](<https://devfeed.tech/topics/code-generation.md>), [API](<https://devfeed.tech/topics/api.md>), [Kafka](<https://devfeed.tech/topics/kafka.md>), [Retool](<https://devfeed.tech/topics/retool.md>), [ordering](<https://devfeed.tech/topics/ordering.md>), [stripe](<https://devfeed.tech/topics/stripe.md>)

Tags: [code](<https://devfeed.tech/tags/code.md>), [code-generation](<https://devfeed.tech/tags/code-generation.md>), [community](<https://devfeed.tech/tags/community.md>), [event-driven-architecture](<https://devfeed.tech/tags/event-driven-architecture.md>), [http](<https://devfeed.tech/tags/http.md>), [kafka](<https://devfeed.tech/tags/kafka.md>), [latency](<https://devfeed.tech/tags/latency.md>), [launches](<https://devfeed.tech/tags/launches.md>), [product-launches](<https://devfeed.tech/tags/product-launches.md>), [retool](<https://devfeed.tech/tags/retool.md>), [stripe](<https://devfeed.tech/tags/stripe.md>), [temporal](<https://devfeed.tech/tags/temporal.md>)

### AI overview

A recap of the first day of Replay 2023 covers Temporal's Durable Execution, product announcements, and customer presentations from Yum! Brands, Twilio, Retool, HashiCorp, and Stripe. The talks describe workflow migration, compliance adoption, DAG execution performance, code generation, and Kafka cluster management.

### Source excerpt

Replay 2023 Day 1 highlights: Temporal's Durable Execution, product launches, and insights from Yum! Brands, Twilio, Stripe, Datadog & more.