Skip to content

[project][ENG-7225] share clean(up)grade 2025 #850

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 33 commits into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
8664265
delete (some) sharev2 api [ENG-7388]
aaxelb Mar 5, 2025
f83fa72
delete sharev2 ingest, models [ENG-7389][ENG-7390]
aaxelb Mar 5, 2025
5232fef
wip
aaxelb Mar 5, 2025
1346073
wip
aaxelb Mar 6, 2025
ba7ac2f
wip
aaxelb Mar 6, 2025
8cb4987
wipwip
aaxelb Mar 6, 2025
1f3da71
wip
aaxelb Mar 6, 2025
f3ed6fc
wip
aaxelb Mar 6, 2025
a8d6daa
wip
aaxelb Mar 6, 2025
fea31e7
wip
aaxelb Mar 6, 2025
8f0fb3e
get tests passing; remove SourceIcon
aaxelb Mar 7, 2025
6092fa2
tests.trove.factories
aaxelb Mar 7, 2025
7dfe2b7
fix: randomly failing test
aaxelb Mar 7, 2025
3a01660
update github actions workflow
aaxelb Mar 7, 2025
58199b8
remove 'behave' run
aaxelb Mar 7, 2025
78925f3
chore: remove ember-share handling [ENG-7392]
aaxelb Mar 11, 2025
0edfb79
trim requirements
aaxelb Mar 11, 2025
0ab0a9a
wip
aaxelb Mar 12, 2025
c5e985b
removed share.bin and sharectl and moved to django management commands
bodintsov Mar 12, 2025
b0e8bbd
wip
aaxelb Mar 12, 2025
a4ffaf7
reverted changes to changelog, updated docker-compose and moved tests
bodintsov Mar 13, 2025
4ddca1f
fixed test_shtrove_commands, fix flake8
bodintsov Mar 13, 2025
3b35af3
Merge pull request #849 from bodintsov/feature/cleanup_remove_sharectl
aaxelb Mar 13, 2025
d4cf420
Merge branch 'feature/share-cleanupgrade-2025' into mob/2025-03-05
aaxelb Mar 13, 2025
654423d
Merge pull request #847 from aaxelb/mob/2025-03-05
aaxelb Mar 13, 2025
af289b4
Merge branch 'develop' into feature/share-cleanupgrade-2025
aaxelb Mar 13, 2025
947ba8d
updated python version, updated django, updated containers, images, r…
bodintsov Apr 7, 2025
017a465
fix tests, updated dockerfile
bodintsov Apr 8, 2025
fd3268a
Merge pull request #853 from bodintsov/feature/share-cleanupgrade-pyt…
aaxelb Apr 9, 2025
07780e2
fix: ignore deleted-but-still-indexed items
aaxelb Apr 11, 2025
0ff7439
fix: configure sentry_sdk
aaxelb Apr 11, 2025
c20fff9
updated dev requirements
bodintsov Apr 15, 2025
859a77b
Merge pull request #854 from bodintsov/feature/share-cleanupgrade-202…
aaxelb Apr 15, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 0 additions & 1 deletion .docker-compose.env
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ CELERY_BROKER_URL=amqp://guest:guest@rabbitmq:5672
DATABASE_HOST=postgres
ELASTICSEARCH8_URL=https://elastic8:9200/
# ELASTICSEARCH5_URL=http://elasticsearch:9200/
EMBER_SHARE_URL=http://frontend:4200
LOGIN_REDIRECT_URL=http://localhost:8003/
OSF_API_URL=http://localhost:8000
RABBITMQ_HOST=rabbitmq
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ jobs:
- name: run tests
run: |
coverage run -m pytest --create-db
coverage run --append -m behave
coverage xml -o _shtrove_coverage.xml
env:
DATABASE_PASSWORD: postgres
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10-slim-bullseye as app
FROM python:3.13-slim-bullseye as app

RUN apt-get update \
&& apt-get install -y \
Expand Down Expand Up @@ -26,7 +26,7 @@ RUN mkdir -p /code
WORKDIR /code

RUN pip install -U pip
RUN pip install uwsgi==2.0.21
RUN pip install uwsgi==2.0.27

COPY ./requirements.txt /code/requirements.txt
COPY ./constraints.txt /code/constraints.txt
Expand Down
3 changes: 0 additions & 3 deletions api/base/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,9 @@ def initial(self, request, *args, **kwargs):
class RootView(views.APIView):
def get(self, request):
links = {
'normalizeddata': 'api:normalizeddata-list',
'rawdata': 'api:rawdatum-list',
'sourceregistrations': 'api:sourceregistration-list',
'sources': 'api:source-list',
'users': 'api:user-list',
'schema': 'api:schema',
'status': 'api:status',
'rss': 'api:rss',
'atom': 'api:atom',
Expand Down
19 changes: 0 additions & 19 deletions api/formattedmetadatarecords/serializers.py

This file was deleted.

7 changes: 0 additions & 7 deletions api/formattedmetadatarecords/urls.py

This file was deleted.

15 changes: 0 additions & 15 deletions api/formattedmetadatarecords/views.py

This file was deleted.

30 changes: 0 additions & 30 deletions api/normalizeddata/serializers.py

This file was deleted.

7 changes: 0 additions & 7 deletions api/normalizeddata/urls.py

This file was deleted.

108 changes: 0 additions & 108 deletions api/normalizeddata/views.py

This file was deleted.

7 changes: 0 additions & 7 deletions api/schemas/urls.py

This file was deleted.

13 changes: 0 additions & 13 deletions api/schemas/views.py

This file was deleted.

18 changes: 0 additions & 18 deletions api/sourceregistrations/serializers.py

This file was deleted.

7 changes: 0 additions & 7 deletions api/sourceregistrations/urls.py

This file was deleted.

49 changes: 0 additions & 49 deletions api/sourceregistrations/views.py

This file was deleted.

Loading