We ship product updates weekly. Follow us on 𝕏 for the latest.
Release a feature, then jump over to the new Monitor tab to view exposure, adoption, and feedback in real-time.
Use the Monitor tab to catch issues and iterate faster. A live chart displays feature exposure and use over the last hour, which updates in real-time - handy for monitoring usage after you set a flag to GA. Or you can review historic data from the last week, month, quarter, or 6 months.
Then click through to lists of companies who have seen or tried a feature, so you know who is best to reach out to for feedback.
We surface all recent feedback on the Monitor tab, too, including satisfaction scores and feedback text alongside the user’s name and account.
The Monitor tab replaces STARS with a simplified view that combines the prior Adopted and Feedback tabs into a single page, alongside new metrics like Exposed.
For more details, check out the documentation or select a feature under Features to try out the Monitor tab for yourself.
We’ve added a new company filter option: before/after date.
The filter options can be used with any date attribute, including First seen and Last seen company attributes, as well as First track and Last track feature metrics.
For example, you can create a segment to give feature access to all companies that were first seen after a particular date. This is useful if you need to roll out a new product experience to new users, while phasing out the old one for existing users.
We’ve shipped some subtle but important simplifications to the Access tab for feature flags. Here’s what has changed:
So far this week, we’ve added AI flag cleanup, stale flag detection, and flag archiving automations. For our final announcement, we’re releasing Slack reminders.
Whether you’re automating flag cleanup or doing things manually, it can be useful to get notifications about cleanup actions. That’s why we’ve added reminders to our Slack integration when:
We also send notifications when a feature is:
These reminders help ensure transparency in your process and build confidence around any automations that you turn on.
You can enable the Slack integration from the settings page, or read more detail about archiving in our docs.
That wraps our Zero Maintenance launch week. Check out the launch week page to see all the product announcements.
Once a feature ships, at some point, you’ll need to clean up the flag code. But this doesn’t happen right away, making it easy to forget. Over time, even the most diligent of teams end up with a bunch of stale flags.
To help you avoid this, we already announced stale flag detection and AI flag cleanup. Today, we’re adding two flag archiving automations as well:
With these automations you can put flag cleanup on autopilot. Of course, you can still manually archive a feature at any point, too.
Get started by enabling the automations in settings, or read the docs for more info. Plus, check out our launch week page for our final product announcement of the week, coming tomorrow.
You know some of your feature flags are no longer needed, but it can be tricky to work out which ones.
To help, we’ve added automatic stale flag detection. A series of checks that monitor your flags, highlighting when they’re no longer needed. We run three checks looking to see if:
Once the checks pass, the flag is marked as stale (shown with a little broom next to their name) and it’s added to the stale flag view - a list where you can see all the features that are currently stale, as well as what needs to be done before they can be archived.
Of course, not all flags need to be cleaned up. You can mark a flag as permanent if you want to keep it indefinitely, useful for Ops flags or for user entitlements.
Stale flag detection is the second announcement this week to bring you closer to zero maintenance feature flagging. Check out our launch week page for what’s new each day this week.
Start using stale flag detection by configuring your defaults in the settings, or check out the docs for more information.
Tackling feature flag clean-up is an annoying part of using flags. Because it’s such a nuisance, cleanup frequently gets pushed aside. Then old feature flags linger, which clutter your codebase and make it more difficult to work with.
Most solutions to this just highlight flag references in your code. But that doesn't actually solve the problem, you still need to do the refactoring work.
At Bucket, we want you to spend your time building quality features, not cleaning up stale flags. So today we’ve released AI flag cleanup in beta for React.
AI flag cleanup works as a GitHub integration. By clicking a button in Bucket, we generate a pull request in your repository to remove no longer needed flag code for you.
Under the hood, the GitHub integration continuously checks the codebase against the feature keys in Bucket whenever a commit is pushed to the repository. When the AI clean-up bot operates, it searches for usage of the Bucket SDK in your codebase and identifies where specific feature keys are used. LLMs are employed to intelligently refactor the code to remove the flag and eliminate codepaths that become unreachable.
For React, this usually corresponds to the useFeature
hook, like in this contrived example:
function StartHuddleButton() {
const { isEnabled } = useFeature("huddle");
if (!isEnabled) {
return null;
}
return <button onClick={track}>Start huddle!</button>;
}
When the bot cleans up the file, it removes the hook and only retains the codepath remaining after assuming isEnabled=true:
function StartHuddleButton() {
return <button onClick={track}>Start huddle!</button>;
}
If you're using ESLint and/or Prettier in GitHub Actions for code formatting, there's a GitHub Action workflow to use so that your setup is applied when generating PRs.
This is the first feature we’re announcing this week to bring you closer to zero maintenance feature flagging. Check out our launch week page for what’s new each day this week.
To get started using AI flag cleanup, connect the GitHub integration, or check out the docs for more details.
We’ve added user permissions, so you can now invite, remove, and manage roles for your team members on our Pro and Enterprise plans.
From the Team Management page under Settings, invite new users with a link, or adjust the roles and actions each user can perform.
A member can have one of four roles, with differing permissions:
All new users invited to the organization are assigned the Viewer role by default. For more details, check out the Team Permissions page in our docs.
We’ve added support for edge-runtimes like Cloudflare Workers to the Bucket NodeSDK.
To get started using Cloudflare Workers, set the node_compat
flag in your wrangler file and use EdgeClient
instead of BucketClient
.
To avoid any flag evaluation latency, Bucket maintains a cached set of feature definitions in the memory to decide which features to turn on for which users/companies.
The new EdgeClient uses a new strategy to keep these feature definitions fresh: The first request to a new worker instance fetches definitions from Bucket's servers, while subsequent requests use the cache. During an invocation when the cache has expired the request will be served using the stale cache while it’s being updated in the background, so response times are not affected.
This background work may increase wall-clock time for your worker, it will not measurably increase billable CPU time.
For more details, check out the docs that include a deployable example.
We've released a Vue.js SDK for Bucket, now in beta.
The Vue SDK supports feature toggling, tracking feature usage, requesting feedback on features, and remotely configuring features. It also comes with the same built-in toolbar as the browser SDK which appears on localhost
by default.
To get started with it, install via npm:
npm i @bucketco/vue-sdk
For more details, check out the docs.