Skip to content

Commit

Permalink
bump gn_module_import
Browse files Browse the repository at this point in the history
  • Loading branch information
bouttier committed Sep 11, 2023
1 parent 2161c4d commit c9ad9cb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ jobs:
name: Build geonature backend docker image
if: ${{ github.event_name != 'pull_request' }}
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -55,6 +58,9 @@ jobs:
name: Build geonature frontend docker image
if: ${{ github.event_name != 'pull_request' }}
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -76,7 +82,7 @@ jobs:
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/${{ github.repository_owner }}/geonature-backend-extra
images: ghcr.io/${{ github.repository_owner }}/geonature-frontend-extra

- name: Build and export image
uses: docker/build-push-action@v4
Expand Down
2 changes: 1 addition & 1 deletion sources/gn_module_import
Submodule gn_module_import updated 30 files
+2 −0 README.md
+1 −1 VERSION
+0 −17 backend/gn_module_import/checks/dataframe/geography.py
+146 −49 backend/gn_module_import/checks/sql/__init__.py
+1 −1 backend/gn_module_import/migrations/4b137deaf201_create_import_schema.py
+48 −0 backend/gn_module_import/migrations/8611f7aab8dc_allow_multi_select_mapping.py
+162 −0 backend/gn_module_import/migrations/a89a99f68203_declare_available_permissions.py
+1 −1 backend/gn_module_import/migrations/data/data.sql
+11 −3 backend/gn_module_import/models.py
+39 −18 backend/gn_module_import/routes/imports.py
+2 −3 backend/gn_module_import/routes/mappings.py
+4 −0 backend/gn_module_import/tasks.py
+12 −0 backend/gn_module_import/tests/files/additional_data.csv
+1 −0 backend/gn_module_import/tests/files/geom_file.csv
+6 −0 backend/gn_module_import/tests/files/multiline_comment_file.csv
+3 −0 backend/gn_module_import/tests/jsonschema_definitions.py
+0 −31 backend/gn_module_import/tests/test_dataframe_checks.py
+114 −23 backend/gn_module_import/tests/test_imports.py
+5 −5 backend/gn_module_import/tests/test_mappings.py
+61 −12 backend/gn_module_import/utils.py
+1 −1 dependencies/GeoNature
+31 −0 docs/CHANGELOG.rst
+1 −1 frontend/app/components/import_list/import-list.component.html
+16 −12 frontend/app/components/import_process/fields-mapping-step/fields-mapping-step.component.html
+2 −1 frontend/app/components/import_process/fields-mapping-step/fields-mapping-step.component.scss
+27 −9 frontend/app/components/import_process/fields-mapping-step/fields-mapping-step.component.ts
+1 −1 frontend/app/components/import_report/import_report.component.html
+1 −1 frontend/app/components/modal_dataset/import-modal-dataset.component.html
+1 −1 frontend/app/models/mapping.model.ts
+4 −2 requirements.in

0 comments on commit c9ad9cb

Please sign in to comment.