Commit Graph

7320 Commits

Author SHA1 Message Date
Vincent Salucci
cd4e44cb04 chore: remove leftover indirect reference to create default location ff (#7499) 2026-04-18 09:10:48 +10:00
Andy Pixley
4cc7fb4b6e [BRE-1823] Bumping hash for canary testing (#7498) 2026-04-17 20:55:21 +00:00
Andy Pixley
b3ab599d8c [BRE-1823] Bumping hash for canary testing (#7497) 2026-04-17 19:21:19 +00:00
sven-bitwarden
911a5da476 Make PUT Policy identical to PUT Policy/VNext (#7485) 2026-04-17 11:28:26 -05:00
Jared McCannon
21a7e94dc9 [PM-32073] - Added Bulk Get Org Ability (#7476)
* Added bulk get method and cleaned up some test stuff.

* Changes from Code Review
2026-04-17 11:59:18 -04:00
Justin Baur
48060b0867 [PM-35150] Make Setup testable and add test for install (#7445)
* Make `Setup` testable and add test for install

* Update util/Setup/Program.cs

Co-authored-by: Derek Nance <dnance@bitwarden.com>

* Update other callsites

---------

Co-authored-by: Derek Nance <dnance@bitwarden.com>
2026-04-17 10:47:41 -04:00
Patrick-Pimentel-Bitwarden
e113dbd263 feat: [PM-32626] standardize unlock and authentication validation
- Standardize validation on `RegisterFinishRequestModel` so Auth and Unlock data are both required and consistently validated
  - Add salt validation to both unlock and authentication data
  - Enforce that Auth and Unlock data contain matching values
  - Keep validation backwards compatible with older clients
  - Add and update unit tests covering the new validation rules and error messages

Co-authored-by: Ike Kottlowski <ikottlowski@bitwarden.com>
2026-04-17 10:47:09 -04:00
Stephon Brown
94fd9af1f5 [PM-32853] Add Trial Initiation Metadata for Marketing or Product (#7462)
* feat(billing): add FromMarketing property to subscription purchase model

* feat(billing): expose FromMarketing in cloud hosted subscription request

* feat(stripe): define TrialInitiationPath metadata key

* feat(billing): propagate FromMarketing to Stripe trial initiation path

* test(billing): verify Stripe trial initiation path metadata

* fix(billing): run dotnet format
2026-04-17 09:26:34 -05:00
Vince Grassia
63ea562870 Fix for dev tags to GHCR (#7492) 2026-04-17 14:17:49 +00:00
Vijay Oommen
a42eb6c31b PM-22228 Added Phishing events (#7427) 2026-04-17 09:12:33 -05:00
Jimmy Vo
914d412206 [PM-32069] Add ExtendedProviderAbilityCacheService (#7447) 2026-04-17 08:45:15 -04:00
cyprain-okeke
279c3bc94a [PM-24927] Add payment optional support to trial initiation flow (#7418)
* Implement the payment option properties

* Fix the lint error

* Remove payment-optional feature flag
2026-04-17 13:16:11 +01:00
Thomas Rittson
bb5506e934 [PM-34595] Update provider controllers to use authz attribute (#7450)
* Also decouple ProviderClientsController from Billing Team code

* Also add noop authorize attribute where no additional
  authorization is required

* Also remove unused ICurrentContext getters
2026-04-17 07:49:49 +10:00
Jared
b0059c2245 Add PM-35153 collection SDK decryption feature flag to Constants.cs (#7470) 2026-04-16 17:12:11 -04:00
Brandon Treston
3667f85a00 [PM-35234] Prevent appending duplicate org user in validator request (#7486)
* prevent appending duplicate org user in validator request

* pr feedback
2026-04-16 14:16:30 -04:00
SmithThe4th
bc1818041b [PM-34060] Add bank account item type (#7112)
* Added new bank account type, added minimum version logic and sync filters

* Formatted changes

* changed condition for filtering bank account types

* Fixed tests

* Updated feature flag

* Added comment

* updated feature flag and updated dto

* update ticket for minimum bank account version

* add event types for bank account

* fix client version being null bug

---------

Co-authored-by: Nick Krantz <nick@livefront.com>
2026-04-16 12:32:51 -05:00
Jared Snider
28902acec8 Auth/Innovation/PM-4517 - Device Management - Add Last Activity Date (#7302)
* PM-4517 - Add LastActivityDate to Device entity, interfaces, DTOs, and response models

Adds the LastActivityDate nullable DateTime property to the Device entity,
IDeviceRepository interface (BumpLastActivityDateByIdAsync and
BumpLastActivityDateByIdentifierAsync), DeviceAuthDetails DTO,
DeviceResponseModel, DeviceAuthRequestResponseModel, and the
DevicesLastActivityDate feature flag key in Constants.

* PM-4517 - Add BumpDeviceLastActivityDateCommand with distributed cache guard

Adds IBumpDeviceLastActivityDateCommand and IDeviceLastActivityCacheService
interfaces with their implementations. The cache service uses the persistent
keyed IDistributedCache (Cosmos DB in cloud, SQL Server in self-hosted) with
a 48h TTL to guard against redundant DB writes within the same calendar day.
Moves device DI registration into a consolidated AddDeviceServices() extension.

* PM-4517 - Add LastActivityDate SQL schema, stored procedures, and MSSQL migration

Adds LastActivityDate DATETIME2 column to the Device table. Updates Device_Create
and Device_Update stored procedures. Adds Device_BumpLastActivityDateById and
Device_BumpLastActivityDateByIdentifier stored procedures with a CAST AS DATE
guard as a fallback against redundant writes when the application-layer cache
is unavailable.

* PM-4517 - Implement LastActivityDate repository methods and EF migrations

Implements BumpLastActivityDateByIdAsync and BumpLastActivityDateByIdentifierAsync
in both Dapper (via stored procedures) and EF (via ExecuteUpdateAsync with a
date-level guard). Adds EF migrations for Postgres, SQLite, and MySQL.

* PM-4517 - Bump device LastActivityDate on login and refresh token

Wires IBumpDeviceLastActivityDateCommand into BaseRequestValidator (login path,
keyed on device.Id) and CustomTokenRequestValidator (refresh token path, keyed
on device identifier from subject claims). Both call sites are feature-flagged
behind DevicesLastActivityDate.

* PM-4517 - Move AddDeviceServices() to AddBaseServices alongside IDeviceService

Device services are not user features — co-locating them with IDeviceService
in AddBaseServices is more cohesive than nesting them inside AddUserServices.

* PM-4517 - Swallow transient LastActivityDate bump failures to prevent auth disruption

* PM-4517 - Fix DeviceAuthDetails Dapper constructor parameter order to match LastActivityDate column position

* PM-4517 - Add edge case tests for BumpDeviceLastActivityForRefreshAsync guard conditions

* PM-4517 - Add tests for BumpLastActivityDate flag-disabled, null-device, and happy-path cases

* PM-4517 - Add PM-34091 cleanup TODOs to all DevicesLastActivityDate feature flag sites

* PM-4517 - Refine PM-34091 cleanup TODOs and add missing feature flag disabled test for refresh path

* PM-4517 - Remove redundant LastActivityDate shadow property from DeviceAuthDetails

* PM-4517 - Use CultureInfo.InvariantCulture in date string formatting for CA1305

* PM-4517 - Make _bumpDeviceLastActivityDateCommand protected in base to remove duplicate field in derived class

* PM-4517 - Scope device last activity cache key by userId to prevent cross-user collisions

The Device table's unique constraint is (UserId, Identifier), not Identifier alone,
so two users can share the same device identifier (e.g. account switching in a browser).
Scoping the cache key to device:last-activity:{userId}:{identifier} ensures that a cache
hit for one user never suppresses a DB write for another.

Also adds userId to BumpByIdAsync signature and reorders params to be consistent with
BumpByIdentifierAsync(string identifier, Guid userId).

* PM-4517 - Widen try-catch in TryBumpDeviceLastActivityForRefreshAsync and add happy-path test

Renames BumpDeviceLastActivityForRefreshAsync to TryBumpDeviceLastActivityForRefreshAsync
to signal the swallow-on-error intent. Moves the try-catch to wrap the entire method body,
including GetSubjectId() which can throw InvalidOperationException, so no exception can
escape and disrupt token refresh. Also moves the XML doc comment to RecordActivityForInstallation
where it belongs, and adds a happy-path test verifying BumpByIdentifierAsync is called
with the correct identifier and userId.

* PM-4517 - Capture DateTime.UtcNow once in EF bump methods to ensure consistent timestamp

Avoids a minor inconsistency where the WHERE filter and SET clause could evaluate
DateTime.UtcNow at slightly different moments, aligning behavior with the SQL stored
procedures which use a single @RevisionDate parameter.

* PM-4517 - Preserve LastActivityDate on Device_Update when null to prevent regressions

Device_Update previously overwrote LastActivityDate unconditionally, meaning any unrelated
device update (push token rotation, trust changes, deactivation) could silently regress a
recently-bumped value. COALESCE preserves the existing DB value when NULL is passed, while
still allowing callers to set it in the same write by passing a non-NULL value. The EF
ReplaceAsync override applies the same semantics via IsModified = false. Integration test
added to cover the preserve-on-null behaviour across all DB providers.

* PM-4517 - Add docs

* PM-4517 - Adjust docs

* PM-4517 - Add test coverage for BumpLastActivityDateByIdentifierAsync

* PM-4517 - Per PR feedback, add docs on IDeviceLastActivityCacheService

* PM-4517 - Per PR feedback, adjust IBumpDeviceLastActivityDateCommand.BumpById to be bump by device instead b/c it has all what we need.

* PM-4517 - Per PR feedback, add tech debt ticket.

* PM-4517 - Rename BumpByIdentifierAsync to BumpByIdentifierAndUserIdAsync across the board.

* PM-4517 - Per PR feedback, adjust stored proc names to meet SQL style requirements

* PM-4517 - Replace COALESCE with CASE in Device_Update to prevent stale non-null LastActivityDate overwrites

* PM-4517 - Add EF repository feature parity for replace logic + test to ensure we don't run into this again.

* PM-4517 - Fix DB migration order after main merge.

* PM-4517 - Regenerate EF DB migrations

* PM-4517 - actually regenerate EF DB migrations

* PM-4517 - Add LastActivityDate to Device_ReadActiveWithPendingAuthRequestsByUserId and integration tests
2026-04-16 11:45:26 -04:00
Vincent Salucci
5486ca00c8 chore: remove bulk reinvite and org accept init flags (#7484) 2026-04-16 15:44:41 +00:00
Bernd Schoolmann
eaa8bb4138 Fix wrong model response type for file model size (#7474) 2026-04-16 08:10:33 -07:00
Amy Galles
0b942b8992 [BRE-1670] replace PAT tokens with app token (#7434)
* temporary change to test bre-1670

* removing temporary change

* replace pat token with built in github token

* sign commits with bot token

* replace pat token with app token

* fix api signing of git commits
2026-04-16 11:17:25 +02:00
Vince Grassia
061736c991 [BRE-1533] Update trigger for Bitwarden lite builds (#7479) 2026-04-15 16:03:18 -05:00
sven-bitwarden
ec01e81b05 [PM-33866] Revocation Reasons: DDL Edition (#7432)
* Initial pass of revocation reason

* 2'nd pass, with tests, of revocation reason

* separate migration concerns, begin using new bulk sprocs

* remove old RevokeManyByIdAsync in favor of RevokeManyAsync

* fix migrations order

* Adjust other missing sprocs

* begrudgingly formats file

* No longer drop now-deprecated sprocs

* Add more views to refresh

* re-adds stored procs

* formatting from restoration

* Fix naming

* Modify sproc file name to match name
2026-04-15 14:20:45 -05:00
Jared McCannon
d9aef5c58f [PM-32068] - Org Ability Extended Cache (#7443)
* Added extended cache implementation for org ability.

* fixed up events

* Moved utilities to service class. Moved tests to integration tests - with specific endpoints tested. moved registration to ext method
2026-04-15 09:46:16 -05:00
Alex Morask
901e86a93b [PM-31780] Add exempt from billing automation toggle (#7438)
* feat(admin): add exempt from billing automation toggle for organizations

* style: apply file-scoped namespaces to EF migration files

* chore: rename migration to avoid sequence collision with 2026-04-10_00

* fix(sql): refresh Organization-dependent views after column addition

* fix(sql): rename migration to resolve ordering conflict
2026-04-15 07:50:33 -05:00
Bernd Schoolmann
409cab31f5 [PM-34825] Add support for ml-dsa44 keypairs (#7435)
* Add support for ml-dsa65 keypairs

* Undo changes to billing

* Increase security state size

* Replace with ml-dsa-44
2026-04-15 11:38:30 +02:00
renovate[bot]
497e3e3d37 [deps]: Update docker/setup-buildx-action action to v4 (#7222)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-04-15 09:01:04 +00:00
renovate[bot]
7545ba2ba9 [deps]: Update dtolnay/rust-toolchain digest to 29eef33 (#7341)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-04-15 08:59:29 +00:00
renovate[bot]
59853057b0 [deps]: Update actions/create-github-app-token action to v3 (#7345)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-04-15 10:42:09 +02:00
Andy Pixley
36c0377fd7 [BRE-1413] Empty commit to test hash change in Canary (#7471) 2026-04-14 17:22:31 -04:00
Vince Grassia
ee43c50190 [BRE-1004] Fix container image push logic (#7464) 2026-04-14 15:28:50 -05:00
Conner Turnbull
d22d64a867 [PM-31911] Remove m3 flag definition (#7354)
* Remove pm-26462-milestone-3 flag from PricingClient

Simplify FamiliesAnnually2025 lookup to always return "families-2025".
Remove PreProcessFamiliesPreMigrationPlan deployment safeguard method
and its call sites. Remove unused IFeatureService constructor dependency.

* Remove pm-26462-milestone-3 flag from UpcomingInvoiceHandler.HandleForOrganizationAsync

Remove milestone3 variable and parameter from
AlignOrganizationSubscriptionConcernsAsync. Simplify guard clause
to only check plan type.

* Update PricingClientTests after pm-26462-milestone-3 removal

Remove IFeatureService from test setup. Delete tests for flag-disabled
safeguard behavior. Clean up remaining test names.

* Update UpcomingInvoiceHandlerTests after pm-26462-milestone-3 removal

Remove all feature flag mock setup lines for PM26462_Milestone_3.
Delete test methods that verified flag-disabled behavior.

* Remove PM26462_Milestone_3 flag definition from FeatureFlagKeys
2026-04-14 20:26:45 +00:00
Conner Turnbull
9e49955045 [PM-31909] Remove m3 flagged logic (#7352)
* Remove pm-26462-milestone-3 flag from PricingClient

Simplify FamiliesAnnually2025 lookup to always return "families-2025".
Remove PreProcessFamiliesPreMigrationPlan deployment safeguard method
and its call sites. Remove unused IFeatureService constructor dependency.

* Remove pm-26462-milestone-3 flag from UpcomingInvoiceHandler.HandleForOrganizationAsync

Remove milestone3 variable and parameter from
AlignOrganizationSubscriptionConcernsAsync. Simplify guard clause
to only check plan type.

* Update PricingClientTests after pm-26462-milestone-3 removal

Remove IFeatureService from test setup. Delete tests for flag-disabled
safeguard behavior. Clean up remaining test names.

* Update UpcomingInvoiceHandlerTests after pm-26462-milestone-3 removal

Remove all feature flag mock setup lines for PM26462_Milestone_3.
Delete test methods that verified flag-disabled behavior.

* Merge GetPlan lookup key test regions into one
2026-04-14 15:31:56 -04:00
renovate[bot]
7ef83de676 [deps]: Update webpack to v5.105.4 (#7007)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-04-14 13:39:29 -04:00
Jordan Aasen
d9518c0eac [PM-30751] - add secure SSRF protection for internal IPs (#7256)
* secure SSRP protection for internal requests

* remove nullable enable

* explicitly handle redirect requests for SSRF

* track current uri in SsrfProtectionHandler. add followRedirects option in AddSsrfProtection

* preserve request method for 301 and 302 requests

* Migrate admin HttpClient usages to IHttpClientFactory

* add missing dep
2026-04-14 10:13:33 -07:00
Jared McCannon
f2141b93d2 [PM-34390] - Fixing Group/Provider User (#7431)
* Added attributes for all groups controller methods. Fixed ProviderUsers get endpoint. udpated tests.

* Added integration tests and removed faux regions
2026-04-14 07:38:14 +10:00
Jared Snider
e0225f9e03 Auth/PM-34130 - Fix DeviceAuthDetails constructor and stored procedure for EDD compliance (#7416)
* PM-34130 - Fix DeviceAuthDetails constructor and stored procedure for EDD compliance

Replace positional 14-arg Dapper constructor with parameterless constructor and
property-setter mapping; rename AuthRequestCreatedAt to AuthRequestCreationDate;
convert IsTrusted to a computed property; update stored procedure to use explicit
column list instead of SELECT D.* for EDD-safe name-based Dapper mapping; add
migration script; expand integration tests for full field mapping, IsTrusted logic,
Unlock type eligibility, inactive device exclusion, and empty device list.

* PM-34130 - Fix EF constructor in DeviceAuthDetails to copy all Device fields

Copy UserId, PushToken, RevisionDate, EncryptedPrivateKey, and Active from
the source Device in the EF constructor. Previously these fields were omitted,
causing IsTrusted to always return false for EF-sourced results.

* PM-34130 - PR feedback resolution

* PM-34130 - Fix migration sort from main merge
2026-04-13 15:50:18 -04:00
Mick Letofsky
e4bf05c2fc Add scenario docs for Seeder adoption and trim CLI reference (#7456) 2026-04-13 14:49:44 -04:00
Nik Gilmore
b506582d4e PM-34500 Fix Feature Flag pm-34500-strict-cipher-decryption name from upper to lower case (#7460) 2026-04-13 18:42:40 +00:00
Todd Martin
c6b8b0c686 chore(deps): Auth-owned PRs for minor/patch updates for their dotnet monorepo deps
* Adjust .NET dep ownership.

* Adjusted changes to group minor/patch.
2026-04-13 13:08:05 -04:00
Matt Gibson
2e6bf44504 Add SeederApi PlayData delete scheduled job (#7281)
* Use Quartz-based hosted service to clear old play data

We need to stop possible bloat of databases should users of a seeded data fail to appropriately clean up after themselves.

Using the hosted services present in other projects, this adds an alive job and play data delete job to the SeederApi

* Trigger play data delete frequently enough for dev servers

Development servers are unlikely to be running at midnight UTC, so we need to delete more frequently to ensure data is cleaned up. The Job still deletes things older than a day, it just checks much more frequently, now.

* Fixup sonarqube

* Fixup parallel test issues with jobs hosted services

* Remove alive job and unneeded fixme

* Revert "Remove alive job and unneeded fixme"

This reverts commit 0c10e4a675.

* Simplify alive job

Used the wrong job as a template, the api alive job is much more like what we want.

* Update readme to callout ephemeral data
2026-04-13 09:57:23 -07:00
Shane Melton
5da9e05103 [PM-32463] Remove organization enabled filter from database query/view (#7037) 2026-04-13 08:44:21 -07:00
Leslie Tilton
810c9844da Add pm-31936-access-intelligence-new-architecture flag for client side use (#7459) 2026-04-13 10:36:40 -05:00
Thomas Rittson
a9160390a9 [PM-34854] Add pm-34145-policies-in-accepted-state feature flag (#7449) 2026-04-13 10:18:12 -05:00
Vince Grassia
0618444881 Add packages permissions (#7457) 2026-04-13 14:06:18 +00:00
renovate[bot]
b2b21573a7 [deps]: Update codecov/codecov-action action to v6 (#7455)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-04-13 13:13:24 +02:00
renovate[bot]
cdcf63ab2e [deps]: Update docker/setup-qemu-action action to v4 (#7223)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-04-13 09:32:38 +00:00
Kyle Spearrin
1cd125e9d9 allow account recovery for revoked status users (#7446) 2026-04-13 10:27:55 +01:00
MtnBurrit0
08bca7b2fc Fix CollectionUsers/CollectionGroups table names for Seeder across all DB providers (#7441) 2026-04-13 10:36:09 +02:00
Nik Gilmore
a07ebc1173 PM-34500 Add PM-34500-strict-cipher-decryption feature flag (#7387) 2026-04-10 22:24:19 +00:00
Conner Turnbull
22398808fa Fix test clock awareness in schedule-aware cancellation (#7440)
* Fix test clock awareness in schedule-aware cancellation

* Update test mocks for SubscriptionGetOptions parameter
2026-04-10 12:16:43 -04:00