File tree Expand file tree Collapse file tree 4 files changed +13
-2
lines changed
Expand file tree Collapse file tree 4 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 1818Changes
1919=======
2020
21+ `2.3.2 <https://github.com/SwissDataScienceCenter/renku-python/compare/v2.3.1...v2.3.2 >`__ (2023-03-13)
22+ -------------------------------------------------------------------------------------------------------
23+
24+ Bug Fixes
25+ ~~~~~~~~~
26+
27+ - **core: ** Fix a bug that caused crashing when migrating to v10 metadata
28+ (`f9da0be <https://github.com/SwissDataScienceCenter/renku-python/commit/f9da0be8585a692c49fbdaa19316b779a965db03 >`__)
29+
2130`2.3.1 <https://github.com/SwissDataScienceCenter/renku-python/compare/v2.3.0...v2.3.1 >`__ (2023-03-10)
2231-------------------------------------------------------------------------------------------------------
2332
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ appVersion: "1.0"
33description : A Helm chart for Kubernetes
44name : renku-core
55icon : https://avatars0.githubusercontent.com/u/53332360?s=400&u=a4311d22842343604ef61a8c8a1e5793209a67e9&v=4
6- version : 2.3.1
6+ version : 2.3.2
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ versions:
9797 fullnameOverride : " "
9898 image :
9999 repository : renku/renku-core
100- tag : " v2.3.1 "
100+ tag : " v2.3.2 "
101101 pullPolicy : IfNotPresent
102102 v9 :
103103 name : v9
Original file line number Diff line number Diff line change @@ -278,13 +278,15 @@ def fix_dataset_date_modified(dataset_gateway: IDatasetGateway):
278278 def fix_creation_date (dataset ):
279279 """Check creation date to make sure that it's after project's creation date."""
280280 if dataset .date_created and dataset .date_created < project_context .project .date_created :
281+ dataset .unfreeze ()
281282 try :
282283 dataset .date_created = min ([f .date_added for f in dataset .files ])
283284 except (ValueError , TypeError ):
284285 dataset .date_created = project_context .project .date_created
285286 else :
286287 if dataset .date_created < project_context .project .date_created :
287288 dataset .date_created = project_context .project .date_created
289+ dataset .freeze ()
288290
289291 tails = dataset_gateway .get_provenance_tails ()
290292
You can’t perform that action at this time.
0 commit comments