Home / Companies / Unleash / Blog / November 2025

November 2025 Summaries

11 posts from Unleash

Filter
Month: Year:
Post Summaries Back to Blog
Unleash has introduced two new features, Impact Metrics and the MCP server, to enhance automated FeatureOps with AI integration. Impact Metrics provide real-time production signals tied to feature flags, such as request rates and error counts, directly from applications, allowing for data-driven rollout decisions without additional infrastructure. The MCP server ensures AI tools adhere to structured flag management, automating processes like flag creation and cleanup while aligning with team conventions. Together, these tools facilitate automated and safe release progression, enabling teams to coordinate complex rollouts efficiently, reduce manual oversight, and maintain consistency across multi-repo and multi-language environments. This advancement aims to balance speed and control, allowing teams to leverage AI for faster deployments while adhering to established safety and engineering protocols.
Nov 25, 2025 1,457 words in the original blog post.
Over the past six months, two significant outages at Google Cloud and Cloudflare have highlighted the recurring issue of small, seemingly benign backend changes causing widespread disruptions. These incidents underscore a pattern where minor configuration updates, lacking runtime controls like feature flags or kill switches, propagate unexpectedly through complex systems, resulting in significant downtimes. Despite numerous postmortems and recommendations from industry leaders and frameworks, many engineering teams continue to prioritize deployment speed over reversibility, often overlooking the critical importance of runtime controls. This oversight persists even though such controls are essential for managing high-impact areas like authentication, data routing, and infrastructure upgrades, proving that operational excellence at scale necessitates treating all backend changes as potentially reversible and ensuring they are protected by robust runtime controls.
Nov 24, 2025 885 words in the original blog post.
The Unleash MCP server, developed by Alex Casalboni, offers a structured approach for integrating AI coding assistants with feature flag management, aimed at enhancing development workflows. As AI tools become increasingly prevalent in coding, they introduce both benefits, such as faster prototyping, and challenges, including increased code vulnerabilities. The Unleash MCP server addresses these challenges by providing a standardized protocol that enforces best practices for creating, managing, and cleaning up feature flags, ensuring consistency and reducing technical debt. It helps AI tools recognize when and how to apply feature flags according to FeatureOps best practices, thus maintaining stability and compatibility across diverse development teams. By providing framework-specific code snippets and recommendations, it assists in consistent implementation across various languages and projects, while also offering tools for streamlined cleanup of temporary flags. This server facilitates faster and safer software development by integrating deeply with AI assistants, enabling them to follow established conventions and avoid common pitfalls associated with AI-generated code.
Nov 18, 2025 2,051 words in the original blog post.
Self-hosting feature flags with Unleash on Kubernetes offers flexibility and control over your infrastructure, allowing you to manage deployments in line with your security and scalability needs. Unlike many SaaS feature flag providers, Unleash is open-source and can be integrated into your existing Kubernetes platform using Helm charts, which simplify deployment and configuration. This approach gives you full control over your environment, including database management, security, and network rules, while avoiding vendor lock-in. Helm charts package best practices into a single installable bundle, making it easier to manage upgrades and configurations. Unleash supports high availability and scaling through horizontal scaling strategies and observability tools, fitting seamlessly into multi-region architectures. It also integrates with managed Kubernetes services and GitOps workflows, ensuring reliability and auditability. The platform enhances platform engineering strategies by embedding feature flags as a core service, allowing for safe and controlled feature rollouts. By using the official Helm charts, deploying Unleash becomes a streamlined process, transforming it into a reliable, scalable, and secure component of your Kubernetes ecosystem.
Nov 14, 2025 1,884 words in the original blog post.
Yousician's journey in building a successful experimentation program highlights several key practices and challenges. Initially tempted to create a custom solution, Yousician opted for Leanplum to leverage its robust AB testing capabilities, gradually increasing the complexity of its experiments. As the program matured, Yousician faced analytics challenges due to the intricacy of full-stack experimentation, which necessitated the development of a custom analytics system for nuanced engagement metrics and lifetime value calculations. The company later transitioned to the Unleash platform to overcome limitations in targeting complexity and consistency, emphasizing the importance of maintaining consistent user experiences across devices. Feature flags played a crucial role not only in experimentation but also in speeding up development processes by allowing integration of incomplete features. Methodology discipline was critical in avoiding pitfalls like p-hacking, while balancing optimization and innovation strategies prevented stagnation. Yousician also addressed the technical debt from accumulated feature flags, emphasizing the necessity of routine cleanup to maintain codebase hygiene. Ultimately, fostering a culture that embraces data-driven decision-making and learning from experiment failures was essential for sustainable experimentation success.
Nov 13, 2025 2,315 words in the original blog post.
Feature flags significantly enhance the efficiency and effectiveness of A/B testing by decoupling code deployment from feature releases, allowing for immediate activation of experiments without waiting for technical deployment cycles. This methodology enables real-time control over tests, facilitates consistent user experiences across multiple platforms, and simplifies targeting and segmentation processes, thereby reducing the time needed for custom development. Feature flags also support gradual rollouts and internal testing, mitigating risks and resolving issues before public exposure. As organizations implement feature flags, they create a robust infrastructure that accelerates each subsequent test, transforming A/B testing into a continuous process that supports sophisticated experimental designs and concurrent tests. This approach helps maintain clean codebases by encouraging the removal of unused experimental code, preventing technical debt accumulation and ensuring ongoing acceleration of testing activities. Ultimately, feature flags allow organizations to run a high volume of experiments, generating valuable insights that drive continuous product improvement and competitive advantage.
Nov 13, 2025 2,320 words in the original blog post.
Modern software release strategies, as outlined by Alex Casalboni, emphasize separating code deployment from feature releases to manage risk while maintaining speed. These strategies, exemplified by tools like Unleash, allow teams to control who accesses new features and when, enabling gradual rollouts and targeting specific user groups to safely experiment in production. Techniques such as feature flags, gradual rollouts, context-based targeting, time-based strategies, and custom strategies are highlighted as methods to manage feature accessibility effectively. The use of release templates and segments ensures consistency and scalability across deployments, enabling high-performing teams to deploy code more frequently and recover faster from issues. The integration of automated progression and rollback mechanisms based on live metrics is anticipated to further streamline and safeguard the release process, underscoring the shift towards progressive delivery where releases are treated as controlled, iterative activations rather than risky, large-scale events.
Nov 10, 2025 1,597 words in the original blog post.
Feature flags are a strategic tool for managing deployment risks in complex enterprise environments, allowing for gradual rollouts and quick rollbacks to minimize service disruptions. They are particularly valuable when integrating new features with legacy systems and navigating complex regulatory landscapes, such as SOX or SOC 2 compliance, which require audit trails and structured approval processes. To effectively implement feature flags at scale, organizations must ensure seamless onboarding for developers, integrate the flags into existing DevOps infrastructures, and adopt an application-based access control model to maintain governance amid team changes. Challenges include defining application boundaries in evolving architectures, balancing centralized and local control, managing the lifecycle of flags to prevent technical debt, and integrating with legacy systems through custom solutions. Enterprises should evaluate feature flag platforms based on their ability to support legacy systems, integrate with existing change management tools, and meet compliance and data residency needs. Starting with a pilot project can help demonstrate the feasibility of integrating feature flags into the existing infrastructure, paving the way for broader adoption. The Unleash FeatureOps platform is highlighted for its capability to manage these complexities, offering local flag evaluations for privacy and reliability, and supporting robust audit and compliance processes.
Nov 09, 2025 1,281 words in the original blog post.
Blue-green deployment and feature flags are two approaches to managing software releases, each with distinct advantages and limitations. Blue-green deployment involves maintaining two identical production environments, allowing for near-zero downtime updates by switching traffic between them, which proves beneficial in regulated industries needing strict change control. However, it presents challenges such as database complications and limited feature-level control, as all changes are deployed as a unit. In contrast, feature flags provide a more granular approach by enabling individual features to be toggled on or off in real-time, allowing for targeted rollouts, immediate rollbacks, and reduced infrastructure requirements. This method supports continuous delivery and experimentation by decoupling feature releases from deployment cycles and enabling fine-tuned user targeting. Both strategies can complement each other, but feature flags often offer sufficient control without the added costs of blue-green infrastructure.
Nov 09, 2025 1,616 words in the original blog post.
GitOps and CI/CD are complementary approaches to managing software deployments, particularly in complex cloud-native environments like Kubernetes. While CI/CD pipelines focus on automating the integration and delivery of application code through a push-based model, GitOps introduces a pull-based approach where Git serves as the single source of truth for infrastructure and code changes. In GitOps, operators within the target environment automatically synchronize desired configurations from Git repositories, ensuring production matches the declared state and reducing the risk of configuration drift. This model enhances security by keeping production credentials within the cluster and provides a robust audit trail through pull requests. GitOps is particularly advantageous for teams managing multiple Kubernetes clusters, requiring frequent infrastructure changes, or needing strict change control and auditability. Many teams employ a hybrid model, using CI/CD for application builds and GitOps for infrastructure deployment with feature flags to manage releases, thus combining the speed of automated builds with the safety of declarative infrastructure management.
Nov 07, 2025 1,815 words in the original blog post.
Unleash 7.3 introduces a redesigned user interface for adding activation strategies to feature flags, simplifying access to standard strategies and reusable release templates, thus enhancing configuration speed and standardization. The update also includes improved project overview consistency and new lifecycle analytics, offering insights into feature flag health and delivery pace by tracking weekly shipping rates and cleanup efficiency. During a recent AWS outage, Unleash maintained full operational capacity, reflecting its resilient infrastructure designed for high availability. The release underscores the importance of ongoing resilience and dependency strategy improvements. Additionally, at PlatformCon Paris, the emphasis was placed on the significance of foundational practices in platform engineering, even as AI transforms development processes, with a focus on continuing to prioritize basics like CI/CD and feature flags.
Nov 07, 2025 434 words in the original blog post.