edu-rdm-integration 3.5.1__py3-none-any.whl → 3.5.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,26 @@
1
+ # Generated by Django 3.2.23 on 2025-02-04 14:13
2
+
3
+ from django.db import migrations, models
4
+
5
+
6
+ class Migration(migrations.Migration):
7
+
8
+ dependencies = [
9
+ ('rdm_collect_and_export_data', '0001_initial'),
10
+ ]
11
+
12
+ operations = [
13
+ migrations.AlterModelOptions(
14
+ name='edurdmcollectdatacommandprogress',
15
+ options={'verbose_name': 'Задача по сбору данных', 'verbose_name_plural': 'Задачи по сбору данных'},
16
+ ),
17
+ migrations.AlterModelOptions(
18
+ name='edurdmexportdatacommandprogress',
19
+ options={'verbose_name': 'Команда экспорта данных', 'verbose_name_plural': 'Команды экспорта данных'},
20
+ ),
21
+ migrations.AlterField(
22
+ model_name='edurdmcollectdatacommandprogress',
23
+ name='institute_ids',
24
+ field=models.JSONField(blank=True, default=list, null=True, verbose_name='id учебного заведения'),
25
+ ),
26
+ ]
@@ -9,9 +9,6 @@ from typing import (
9
9
  Optional,
10
10
  )
11
11
 
12
- from django.contrib.postgres.fields import (
13
- JSONField,
14
- )
15
12
  from django.db.models import (
16
13
  CASCADE,
17
14
  PROTECT,
@@ -27,6 +24,7 @@ from django.db.models import (
27
24
  PositiveSmallIntegerField,
28
25
  SmallIntegerField,
29
26
  UUIDField,
27
+ JSONField,
30
28
  )
31
29
  from django.utils import (
32
30
  timezone,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: edu-rdm-integration
3
- Version: 3.5.1
3
+ Version: 3.5.2
4
4
  Summary: Интеграция с Региональной витриной данных
5
5
  Home-page:
6
6
  Download-URL:
@@ -24,7 +24,7 @@ Requires-Dist: pip <24,>=23.2.1
24
24
  Requires-Dist: setuptools <70,>=47.3.1
25
25
  Requires-Dist: wheel <0.42,>=0.37.1
26
26
  Requires-Dist: transliterate <2
27
- Requires-Dist: Django <3.3,>=2.2
27
+ Requires-Dist: Django <3.3,>=3.1
28
28
  Requires-Dist: celery <5.3,>=4.4.7
29
29
  Requires-Dist: asyncpg ==0.23.0
30
30
  Requires-Dist: educommon <4,>=3.11.0
@@ -301,6 +301,17 @@ Requires-Dist: uploader-client <1,>=0.2.1
301
301
  ### Удалено
302
302
 
303
303
 
304
+ ## [3.5.2] - 2025-02-04
305
+
306
+ Изменён тип поля institute_ids с django.contrib.postgres.fields.JSONField (поддержка до Django 4.0.)
307
+ на django.db.models.JSONField (поддержка с Django 3.1.0).
308
+
309
+ ### Изменено
310
+
311
+ - [EDUKNDG-15190](https://jira.bars.group/browse/EDUKNDG-15190)
312
+ Для модели AbstractCollectDataCommandProgress изменён тип поля institute_ids на django.db.models.JSONField.
313
+
314
+
304
315
  ## [3.5.1] - 2025-02-04
305
316
 
306
317
  Изменена очередность обновления моделей при сборе. Обработка связанных моделей производится ранее основной.
@@ -8,7 +8,7 @@ edu_rdm_integration/entities.py,sha256=mhVeB88A-VD5IAzZCNeI1qnkvNoZ8LPiLBdqk1yA3
8
8
  edu_rdm_integration/enums.py,sha256=T3Mu5D-CbKO3BSg16MPPnIPlcc_YGLYR-ThS8dzl9gg,4246
9
9
  edu_rdm_integration/helpers.py,sha256=pLWkIUZK0M5FZZrTAfe80bV-VZIpBgwxnXBAmYFfFw0,14561
10
10
  edu_rdm_integration/mapping.py,sha256=1B6TsC4Os9wiM8L8BChnCNv_iWqjeWu3bdDsqKVsId0,616
11
- edu_rdm_integration/models.py,sha256=nQo9wLAaTIvZP641IqOtbqsWH2fyyHml-_bVlcHGuHs,33032
11
+ edu_rdm_integration/models.py,sha256=e1n-1UuG0Okhx6NSxD-m3iSlvStDmBdJs-4HiBa8aTQ,32985
12
12
  edu_rdm_integration/redis_cache.py,sha256=SP_rcL5t6PTVLOnEYn_NTX0Z666VdZT4By2pyED24Z4,1537
13
13
  edu_rdm_integration/signals.py,sha256=3eRlpkDcFCF6TN80-QM8yBYLcyozzcmoPjz6r4_ApWg,73
14
14
  edu_rdm_integration/storages.py,sha256=G4Q4tIyJdEyb9ka551PADCFIm66bpsJe9VBRcvQhLMI,6745
@@ -37,6 +37,7 @@ edu_rdm_integration/collect_and_export_data/apps.py,sha256=fAcctcjxWP4Gd0Qr3YrQk
37
37
  edu_rdm_integration/collect_and_export_data/models.py,sha256=TGm-hM-1aDhVcFPy0PTC3yNczoZGF4ZmIdr0Y9s8CfU,2038
38
38
  edu_rdm_integration/collect_and_export_data/utils.py,sha256=lBWqqhLgMyz2IQN7r9zugRHpYNBbeVp59G0WBxEsmj8,3546
39
39
  edu_rdm_integration/collect_and_export_data/migrations/0001_initial.py,sha256=UkoaXzh3tokZ8QdCdB09v3rRZfcHhvEwNMuj3mQIB74,4714
40
+ edu_rdm_integration/collect_and_export_data/migrations/0002_auto_20250204_1413.py,sha256=8kNc8IHzEiIKpIv1oT6rytV80RJrikrEnlvRFpaFRWc,1017
40
41
  edu_rdm_integration/collect_and_export_data/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
42
  edu_rdm_integration/collect_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
43
  edu_rdm_integration/collect_data/collect.py,sha256=-u2ER3MZOLtNRmdtYwimpQqFsEBbJ-8Wsy-AjQeK168,11868
@@ -177,9 +178,9 @@ edu_rdm_integration/uploader_log/enums.py,sha256=rgSO3BL2rh2xpfm0Pt4waQW8fB1VMJL
177
178
  edu_rdm_integration/uploader_log/managers.py,sha256=y5wTSMzF9hpOpIU_A7nIafL_LBU3QEie6LAYWoB-pBQ,3203
178
179
  edu_rdm_integration/uploader_log/ui.py,sha256=YM9Buqp2wxE95Wf5gvAATBzuYzDOossK1sEmvFk07cI,2110
179
180
  edu_rdm_integration/uploader_log/templates/ui-js/object-grid-buttons.js,sha256=2xyGe0wdVokM0RhpzRzcRvJPBkBmPe3SlZry4oP4Nzs,6201
180
- edu_rdm_integration-3.5.1.dist-info/LICENSE,sha256=uw43Gjjj-1vXWCItfSrNDpbejnOwZMrNerUh8oWbq8Q,3458
181
- edu_rdm_integration-3.5.1.dist-info/METADATA,sha256=QVqmV5hnRohBsnRQ0CtNmtkqi75Y_fnyztR3OMHZGXs,78305
182
- edu_rdm_integration-3.5.1.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
183
- edu_rdm_integration-3.5.1.dist-info/namespace_packages.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
184
- edu_rdm_integration-3.5.1.dist-info/top_level.txt,sha256=nRJV0O14UtNE-jGIYG03sohgFnZClvf57H5m6VBXe9Y,20
185
- edu_rdm_integration-3.5.1.dist-info/RECORD,,
181
+ edu_rdm_integration-3.5.2.dist-info/LICENSE,sha256=uw43Gjjj-1vXWCItfSrNDpbejnOwZMrNerUh8oWbq8Q,3458
182
+ edu_rdm_integration-3.5.2.dist-info/METADATA,sha256=Y8n72AFmj2fGwdui8iYNWtQcdb2iZuf7iWlxCdNT4wc,78751
183
+ edu_rdm_integration-3.5.2.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
184
+ edu_rdm_integration-3.5.2.dist-info/namespace_packages.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
185
+ edu_rdm_integration-3.5.2.dist-info/top_level.txt,sha256=nRJV0O14UtNE-jGIYG03sohgFnZClvf57H5m6VBXe9Y,20
186
+ edu_rdm_integration-3.5.2.dist-info/RECORD,,