Skip to content

Commit

Permalink
bump modules
Browse files Browse the repository at this point in the history
dashboard 1.3.0 → 1.4.0
export 1.4.0 → 1.6.0
monitoring 0.6.0 → 0.7.0
  • Loading branch information
bouttier committed Sep 13, 2023
1 parent 94b98af commit 64682ba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sources/gn_module_export
Submodule gn_module_export updated 63 files
+24 −0 .editorconfig
+1 −0 .git-blame-ignore-revs
+10 −0 .github/workflows/lint.yml
+126 −0 .github/workflows/pytest.yml
+6 −20 .gitignore
+9 −0 .gitmodules
+46 −56 README.md
+1 −1 VERSION
+251 −0 backend/gn_module_export/admin.py
+83 −307 backend/gn_module_export/blueprint.py
+54 −18 backend/gn_module_export/commands.py
+1 −5 backend/gn_module_export/conf_schema_toml.py
+95 −0 backend/gn_module_export/migrations/1db24d9b23bc_declare_available_permissions.py
+146 −0 backend/gn_module_export/migrations/4cac712a2ce6_create_export_notifications.py
+40 −0 backend/gn_module_export/migrations/75edd92560d7_add_token_in_gn_exports_cor_exports_.py
+42 −0 backend/gn_module_export/migrations/7876d042e673_delete_shp_export.py
+68 −0 backend/gn_module_export/migrations/bcee745e5647_drop_table_texportslog.py
+1 −5 backend/gn_module_export/migrations/c2d02e345a06_create_export_schema.py
+1 −1 backend/gn_module_export/migrations/data/exports.sql
+52 −0 backend/gn_module_export/migrations/fdc2d823a8b9_add_primary_key_view_column_in_t_exports.py
+431 −0 backend/gn_module_export/migrations/fe1347f4805f_fix_synthese_sinp_dee_view.py
+98 −75 backend/gn_module_export/models.py
+29 −33 backend/gn_module_export/rdf.py
+20 −168 backend/gn_module_export/repositories.py
+33 −0 backend/gn_module_export/schemas.py
+0 −143 backend/gn_module_export/send_mail.py
+55 −19 backend/gn_module_export/tasks.py
+0 −320 backend/gn_module_export/tests/api_test.py
+0 −52 backend/gn_module_export/tests/bootstrap_test.py
+2 −44 backend/gn_module_export/tests/conftest.py
+0 −3 backend/gn_module_export/tests/delete_sample_data.sql
+121 −0 backend/gn_module_export/tests/fixtures.py
+0 −19 backend/gn_module_export/tests/sample_data.sql
+254 −0 backend/gn_module_export/tests/test_blueprint.py
+70 −0 backend/gn_module_export/tests/test_commands.py
+107 −0 backend/gn_module_export/tests/test_tasks.py
+66 −0 backend/gn_module_export/tests/test_utils/test_export.py
+0 −0 backend/gn_module_export/utils/__init__.py
+81 −0 backend/gn_module_export/utils/export.py
+98 −254 backend/gn_module_export/utils_export.py
+0 −0 data/.gitkeep
+1 −0 dependencies/GeoNature
+1 −0 dependencies/Utils-Flask-SQLAlchemy
+1 −0 dependencies/Utils-Flask-SQLAlchemy-Geo
+476 −0 docs/changelog.md
+0 −291 docs/changelog.rst
+1 −2 docs/semantic/ressources.md
+0 −7 exports_config.toml.example
+0 −0 frontend/.gitkeep
+3 −0 frontend/.prettierignore
+8 −0 frontend/.prettierrc
+86 −47 frontend/app/export-list/export-list.component.html
+11 −5 frontend/app/export-list/export-list.component.scss
+81 −76 frontend/app/export-list/export-list.component.ts
+14 −18 frontend/app/gnModule.module.ts
+13 −12 frontend/app/services/export.service.ts
+0 −0 frontend/assets/.gitkeep
+28 −2 frontend/package-lock.json
+8 −8 frontend/package.json
+0 −29 frontend/tsconfig.json
+36 −0 pyproject.toml
+0 −5 pytest.ini
+5 −1 requirements.in
2 changes: 1 addition & 1 deletion sources/gn_module_monitoring
Submodule gn_module_monitoring updated 63 files
+26 −0 .github/workflows/lint.yml
+18 −15 README.md
+1 −1 VERSION
+1 −1 backend/gn_module_monitoring/__init__.py
+3 −1 backend/gn_module_monitoring/blueprint.py
+30 −45 backend/gn_module_monitoring/command/cmd.py
+160 −110 backend/gn_module_monitoring/command/utils.py
+2 −0 backend/gn_module_monitoring/conf_schema_toml.py
+14 −35 backend/gn_module_monitoring/config/data_utils.py
+98 −95 backend/gn_module_monitoring/config/repositories.py
+94 −102 backend/gn_module_monitoring/config/utils.py
+10 −6 backend/gn_module_monitoring/migrations/e78003460441_correction_t_observation_detail.py
+102 −0 backend/gn_module_monitoring/migrations/fc90d31c677f_declare_available_permissions.py
+21 −43 backend/gn_module_monitoring/modules/repositories.py
+25 −35 backend/gn_module_monitoring/monitoring/base.py
+30 −22 backend/gn_module_monitoring/monitoring/definitions.py
+17 −12 backend/gn_module_monitoring/monitoring/geom.py
+97 −117 backend/gn_module_monitoring/monitoring/models.py
+12 −13 backend/gn_module_monitoring/monitoring/objects.py
+59 −91 backend/gn_module_monitoring/monitoring/repositories.py
+33 −51 backend/gn_module_monitoring/monitoring/serializer.py
+2 −1 backend/gn_module_monitoring/routes/__init__.py
+4 −9 backend/gn_module_monitoring/routes/config.py
+20 −20 backend/gn_module_monitoring/routes/modules.py
+139 −126 backend/gn_module_monitoring/routes/monitoring.py
+3 −3 backend/gn_module_monitoring/utils/utilsjsonschema.py
+31 −43 docs/MAJ.md
+25 −5 docs/changelog.md
+33 −28 docs/sous_module.md
+1 −0 frontend/.prettierignore
+9 −0 frontend/.prettierrc
+71 −119 frontend/app/class/monitoring-object-base.ts
+18 −40 frontend/app/class/monitoring-object.ts
+15 −25 frontend/app/components/breadcrumbs/breadcrumbs.component.ts
+2 −3 frontend/app/components/draw-form/draw-form.component.spec.ts
+17 −23 frontend/app/components/draw-form/draw-form.component.ts
+2 −2 frontend/app/components/draw-form/leaflet-draw.options.ts
+2 −3 frontend/app/components/modal-msg/modal-msg.component.spec.ts
+3 −7 frontend/app/components/modal-msg/modal-msg.component.ts
+14 −16 frontend/app/components/modules/modules.component.ts
+2 −3 frontend/app/components/monitoring-datatable/monitoring-datatable.component.spec.ts
+24 −26 frontend/app/components/monitoring-datatable/monitoring-datatable.component.ts
+1 −1 frontend/app/components/monitoring-form/monitoring-form.component.html
+2 −3 frontend/app/components/monitoring-form/monitoring-form.component.spec.ts
+1 −4 frontend/app/components/monitoring-form/monitoring-form.component.ts
+2 −3 frontend/app/components/monitoring-lists/monitoring-list.component.spec.ts
+8 −6 frontend/app/components/monitoring-lists/monitoring-lists.component.html
+19 −28 frontend/app/components/monitoring-lists/monitoring-lists.component.ts
+2 −3 frontend/app/components/monitoring-map/monitoring-map.component.spec.ts
+72 −92 frontend/app/components/monitoring-map/monitoring-map.component.ts
+61 −77 frontend/app/components/monitoring-object/monitoring-object.component.ts
+2 −3 frontend/app/components/monitoring-properties/monitoring-properties.component.html
+2 −3 frontend/app/components/monitoring-properties/monitoring-properties.component.spec.ts
+27 −39 frontend/app/components/monitoring-properties/monitoring-properties.component.ts
+32 −35 frontend/app/gnModule.module.ts
+28 −35 frontend/app/services/cache.service.ts
+27 −1 frontend/app/services/config.service.ts
+25 −34 frontend/app/services/data-monitoring-object.service.ts
+41 −51 frontend/app/services/data-utils.service.ts
+40 −64 frontend/app/services/monitoring-object.service.ts
+5 −13 frontend/app/utils/utils.ts
+1 −1 requirements.in
+2 −2 setup.py

0 comments on commit 64682ba

Please sign in to comment.