[PM-33473] Remove pm-29594-update-individual-subscription-page feature flag#7519
Open
amorask-bitwarden wants to merge 3 commits intomainfrom
Open
[PM-33473] Remove pm-29594-update-individual-subscription-page feature flag#7519amorask-bitwarden wants to merge 3 commits intomainfrom
pm-29594-update-individual-subscription-page feature flag#7519amorask-bitwarden wants to merge 3 commits intomainfrom
Conversation
Contributor
|
New Issues (1)Checkmarx found the following issues in this Pull Request
|
pm-29594-update-individual-subscription-page feature flag
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #7519 +/- ##
==========================================
- Coverage 59.13% 59.03% -0.11%
==========================================
Files 2077 2080 +3
Lines 91848 91740 -108
Branches 8175 8155 -20
==========================================
- Hits 54315 54156 -159
- Misses 35601 35658 +57
+ Partials 1932 1926 -6 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
kdenney
approved these changes
Apr 22, 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-33473
📔 Objective
Remove the
pm-29594-update-individual-subscription-pagefeature flag and its flagged code paths per the Feature Flags Lifecycle process.Changes:
PM29594_UpdateIndividualSubscriptionPageconstant fromConstants.cs.[RequireFeature(FeatureFlagKeys.PM29594_UpdateIndividualSubscriptionPage)]attributes fromAccountBillingVNextControlleronGetSubscriptionAsync,ReinstateSubscriptionAsync, andUpdateSubscriptionStorageAsync— the vNext endpoints become unconditional for cloud.PostStorageAsyncandPostReinstateAsyncfromAccountsControlleralong with their tests.AdjustStorageAsyncandReinstatePremiumAsyncfromUserServiceandIUserServicealong with their tests.IPricingClientinjection is removed fromUserServicesince those were its only consumers.AccountsController.GetSubscriptionAsyncto a self-hosted-only endpoint ([SelfHosted(SelfHostedOnly = true)]) becauseSelfHostedAccountSubscriptionComponenton the clients side still needs it — the vNext replacement is cloud-only ([SelfHosted(NotSelfHostedOnly = true)]). The response modelSubscriptionResponseModelis simplified to only the fields self-hosted requires:StorageName,StorageGb,MaxStorageGb,Expiration.BillingCustomerDiscount,BillingSubscription,BillingSubscriptionUpcomingInvoice) from the formerSubscriptionResponseModel.csinto standalone files undersrc/Api/Models/Response/in the same namespace.OrganizationResponseModel.csstill consumes them viausing Bit.Api.Models.Response;and needs no changes.Paired with the companion clients PR that removes the flag + dead code on the client side.