chore: upgrade dependencies#875
Merged
Merged
Conversation
use scalars instead of objects as recommended by vue / sortable - https://vuejs.org/guide/essentials/list.html#maintaining-state-with-key - https://github.com/MaxLeiter/sortablejs-vue3
add more error logging and graceful degradation for facet unavailability
- index MemberProfile related user filter fields for modelsearch compatibility - allow testserver in test ALLOWED_HOSTS to prevent test-client host failures - add curator db dump_migration task and timestamped migration artifact path helpers for future db upgrades
- tone down application level logging in settings/test and django management commands like collectstatic - quiet docker compose build and pull output
Contributor
There was a problem hiding this comment.
Pull request overview
This PR upgrades dependencies and reduces CI/build log noise while adding a few compatibility fixes for search, Docker startup, and async metadata rebuilds.
Changes:
- Updates Python/frontend dependency locks and Docker/Makefile command verbosity.
- Adjusts Vue sortable item keys for upgraded sortable dependencies.
- Adds CI workflow updates, test Elasticsearch readiness checks, and migration dump helpers.
Reviewed changes
Copilot reviewed 22 out of 23 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| Makefile | Adds build flags and quieter Docker commands. |
| frontend/src/components/form/TextListField.vue | Updates sortable item key for text lists. |
| frontend/src/components/form/ResearchOrgListField.vue | Uses organization identifiers as sortable/render keys. |
| frontend/src/components/form/ProgrammingLanguageListField.vue | Uses language identifiers as sortable/render keys. |
| frontend/package-lock.json | Updates frontend dependency resolutions. |
| frontend/Dockerfile | Reduces apt/npm install output. |
| django/requirements.txt | Updates Python dependency pins. |
| django/library/views.py | Handles search backends without facet support. |
| django/library/tasks.py | Adds metadata rebuild logging and missing-release handling. |
| django/library/models.py | Defers async metadata rebuild scheduling until transaction commit. |
| django/Dockerfile | Reduces apt/pip output. |
| django/deploy/test.sh | Waits for Elasticsearch health before tests. |
| django/curator/invoke_tasks/database.py | Adds migration dump artifact helpers and restore preference. |
| django/curator/invoke_tasks/base.py | Lowers collectstatic verbosity. |
| django/core/view_helpers.py | Uses backend default fields for empty search field lists. |
| django/core/settings/test.py | Adds testserver and quieter test loggers. |
| django/core/models.py | Adds related user fields to search indexing. |
| base.yml | Waits for Elasticsearch health before starting server. |
| AGENTS.md | Documents targeted Django test command guidance. |
| .github/workflows/frontend-ci.yml | Updates frontend CI behavior and action versions. |
| .github/workflows/e2e.yml | Updates e2e workflow action versions and permissions. |
| .github/workflows/django-ci.yml | Updates Django CI action version and quiet build flags. |
| .github/workflows/codeql-analysis.yml | Updates CodeQL workflow action versions. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| <Sortable :list="languages" :item-key="item => item" @end="sort($event)"> | ||
| <Sortable | ||
| :list="languages" | ||
| :item-key="item => item.programmingLanguage.id ?? item.programmingLanguage.name" |
Comment on lines
+90
to
+92
| "pg_dump -h {db_host} -U {db_user} {db_name} | gzip > {dumpfile}".format( | ||
| dumpfile=dumpfile, **db_config | ||
| ), |
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.
No description provided.