[PM-29055] Remove FF: pm-25379-use-new-organization-metadata-structure#6966
Open
amorask-bitwarden wants to merge 4 commits intomainfrom
Open
[PM-29055] Remove FF: pm-25379-use-new-organization-metadata-structure#6966amorask-bitwarden wants to merge 4 commits intomainfrom
pm-25379-use-new-organization-metadata-structure#6966amorask-bitwarden wants to merge 4 commits intomainfrom
Conversation
…ture feature flag Remove the fully-released feature flag and clean up the old code path: - Remove flag constant from FeatureFlagKeys - Remove [RequireFeature] gate from VNext billing controllers - Remove old GetMetadataAsync endpoint from OrganizationBillingController - Remove GetMetadata from IOrganizationBillingService and implementation - Remove IsOnSecretsManagerStandalone private helper - Remove associated tests
Contributor
|
|
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #6966 +/- ##
=======================================
Coverage 56.25% 56.26%
=======================================
Files 1983 1983
Lines 87682 87624 -58
Branches 7833 7820 -13
=======================================
- Hits 49326 49300 -26
+ Misses 36525 36502 -23
+ Partials 1831 1822 -9 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
kdenney
approved these changes
Feb 10, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.





🎟️ Tracking
https://bitwarden.atlassian.net/browse/PM-29055
📔 Objective
Remove the fully-released
pm-25379-use-new-organization-metadata-structurefeature flag (Step 1 and 2 of the feature flag lifecycle).This flag gated the new
OrganizationMetadataServiceimplementation backed byGetOrganizationMetadataQuery, exposed through VNext controllers. With the flag removed:/billing/vnext/metadataand/billing/vnext/self-host/metadata) are now ungated and always available/billing/metadataendpoint onOrganizationBillingControllerhas been removedGetMetadatamethod has been removed fromIOrganizationBillingServiceand its implementation, along with theIsOnSecretsManagerStandaloneprivate helperNote: This PR must be merged and deployed before the corresponding clients PR, as the clients will exclusively call the VNext endpoints after their cleanup.