Rename database functions to cloud_databases#2969
Merged
adamtheturtle merged 2 commits intomainfrom Feb 20, 2026
Merged
Conversation
* Refresh Vuforia secrets and simplify admin script Replace suspended license credentials with 100 fresh cloud database credentials. Simplify the secrets creation script to reuse existing VuMark and inactive database credentials from the existing secrets file instead of creating new ones each run. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * Revert simplification of admin script to restore VuMark creation logic Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
Update the autoflask directive in docker.rst to reference the renamed endpoint create_cloud_database instead of create_database. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
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.
Summary
Rename target manager and Flask app database functions and properties to explicitly reference cloud databases for improved clarity.
Changes
databasesproperty tocloud_databaseson TargetManager classget_databases()toget_cloud_databases()in target manager Flask appcreate_database()tocreate_cloud_database()in target manager Flask appget_all_databases()toget_all_cloud_databases()in VWS and VWQ Flask apps🤖 Generated with Claude Code
Note
Medium Risk
Primarily a widespread rename/refactor, but it touches multiple request/response entry points (Flask apps and requests-mock servers) so any missed reference could cause runtime errors despite no intended behavior change.
Overview
Terminology cleanup: Renames the
TargetManager.databasesaccessor toTargetManager.cloud_databasesand updates all usages across the Flask target manager, VWS, and VWQ servers (including helper functions likeget_all_cloud_databases).Public-facing naming updates: Renames target manager endpoints referenced in Sphinx docs (
create_database->create_cloud_database,get_databases->get_cloud_databases) while keeping the HTTP routes the same (/databases).Maintenance: Bumps dev dependency
vws-web-toolsto2026.2.20.Written by Cursor Bugbot for commit e64dea7. This will update automatically on new commits. Configure here.