Developement and server merge - #121
Merged
Merged
Conversation
…elopement-And-Server # Conflicts: # frontend/package-lock.json
Contributor
There was a problem hiding this comment.
Pull request overview
This PR merges development work into main, updating the Expo app versioning and bringing in various backend runtime/data artifacts from the dev environment.
Changes:
- Bumped Expo app version/build numbers (
version,ios.buildNumber,android.versionCode). - Added backend data artifacts (Postgres SQL dump, SQLite WAL/SHM files).
- Added backend upload images under
backend/uploads/.
Reviewed changes
Copilot reviewed 2 out of 7 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| frontend/app.json | Updates app/build versions; adds an extra top-level ios config block. |
| backend/uploads/u2_31ec6c089f9f008d2b4b2c52.jpg | Uploaded media file included in repo (runtime artifact). |
| backend/uploads/u2_182a392d5837c19a1ad894b5.jpg | New uploaded media file included in repo (runtime artifact). |
| backend/backups/db/devbits-db-20260226-002618.sql | Full database dump added/updated (contains application data). |
| backend/api/internal/database/dev.sqlite3-wal | SQLite WAL runtime artifact added. |
| backend/api/internal/database/dev.sqlite3-shm | SQLite SHM runtime artifact added. |
Comments suppressed due to low confidence (4)
backend/backups/db/devbits-db-20260226-002618.sql:6
- This PR is committing a full database dump. The dump includes application data and restore directives (e.g.,
\restricttoken) and should not be version-controlled. Prefer schema migrations + a minimal, sanitized seed/test dataset; if backups are needed, store them outside git (artifact storage) and addbackend/backups/(or at leastbackend/backups/db/*.sql) to.gitignore.
backend/backups/db/devbits-db-20260226-002618.sql:664 - The seeded
postscontent in this dump includes unprofessional language (e.g., "screw you ...") that would ship to any environment restored from this backup. Please remove/replace this content (or remove the dump entirely) so repository history doesn’t contain it.
backend/backups/db/devbits-db-20260226-002618.sql:790 - This dump includes credential material (bcrypt password hashes) in
userlogininfo. Even though hashed, committing real credential data is a security risk and can violate data-handling policies. Please remove this dump from the repo and use a sanitized fixture with known non-production credentials if test users are required.
backend/backups/db/devbits-db-20260226-002618.sql:801 - This dump includes Expo push tokens in
userpushtokens. Push tokens are sensitive identifiers and shouldn’t be committed to git history. Please remove them from version control (and from this dump), and ensure seed/test data uses synthetic values.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.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.
merge my dev branch and main.