Skip to content
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

Release 2.9.0 [DEV] #79

Open
wants to merge 29 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
7da9837
SXDEDPCXZIC-241_DATAVIC-622 / DELWP harvest restricted records
agmorev Nov 29, 2023
c898e82
Merge pull request #56 from dpc-sdp/SXDEDPCXZIC-228
joelwigley Feb 2, 2024
c34dd51
Merge pull request #60 from dpc-sdp/SXDEDPCXZIC-280_DATAVIC-665
joelwigley Apr 15, 2024
4d19bf4
Merge remote-tracking branch 'origin/release-2.6.0' into uat
mutantsan Apr 18, 2024
394f428
Merge pull request #62 from dpc-sdp/SXDEDPCXZIC-302
joelwigley May 17, 2024
fce3e1a
Merge pull request #63 from dpc-sdp/SXDEDPCXZIC-302
joelwigley May 30, 2024
cea5599
Merge pull request #53 from dpc-sdp/SXDEDPCXZIC-241
alexmorev May 30, 2024
fa98db2
SXDEDPCXZIC-308_DATAVIC-622
May 30, 2024
1c0fdcd
Merge pull request #65 from dpc-sdp/SXDEDPCXZIC-308
Engerrs May 30, 2024
ff34999
Merge pull request #66 from dpc-sdp/release-2.6.0
iaroslav13 May 31, 2024
96c93d3
Merge pull request #67 from dpc-sdp/uat
joelwigley Jun 12, 2024
9b3a64d
SXDEDPCXZIC-315 / auto detect size for some data resources
agmorev Jun 18, 2024
4029b53
SXDEDPCXZIC-321_DATAVIC-699 / set dcat harvester default visibility
agmorev Jun 20, 2024
d9256e6
SXDEDPCXZIC-321_DATAVIC-699 / fix the logic of default value
agmorev Jun 20, 2024
16ed3fd
Merge pull request #71 from dpc-sdp/SXDEDPCXZIC-321
joelwigley Jun 24, 2024
9397321
SXDEDPCXZIC-322_DATAVIC-703 / prevent records being updated unnecessa…
alexmorev Jun 24, 2024
d49eed1
SXDEDPCXZIC-315 / additional changes for autocalculation
alexmorev Jun 27, 2024
c5ef1d7
SXDEDPCXZIC-315_DATAVIC-691 / add optional use of content-length header
alexmorev Jun 28, 2024
79cd3d7
SXDEDPCXZIC-315 / fix the logic
alexmorev Jun 28, 2024
ac1a8e0
SXDEDPCXZIC-340 / fix harvester error
alexmorev Jul 11, 2024
a770a14
Merge pull request #75 from dpc-sdp/SXDEDPCXZIC-340
joelwigley Jul 17, 2024
de977f4
Merge pull request #76 from dpc-sdp/uat
iaroslav13 Jul 31, 2024
e9a0587
Merge pull request #73 from dpc-sdp/SXDEDPCXZIC-322
joelwigley Oct 16, 2024
74d5d38
Merge pull request #77 from dpc-sdp/master
joelwigley Oct 17, 2024
24b3970
Merge pull request #69 from dpc-sdp/SXDEDPCXZIC-315
iaroslav13 Oct 30, 2024
3893473
SXDEDPCXZIC-393 / exclude domains from size calculations
alexmorev Nov 1, 2024
2361033
Merge pull request #83 from dpc-sdp/SXDEDPCXZIC-393
iaroslav13 Nov 5, 2024
5efdb20
Merge pull request #84 from dpc-sdp/uat
joelwigley Nov 14, 2024
43426cc
Merge pull request #85 from dpc-sdp/master
joelwigley Nov 29, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
SXDEDPCXZIC-321_DATAVIC-699 / fix the logic of default value
  • Loading branch information
agmorev committed Jun 20, 2024
commit d9256e69b5ab5dcfd88e63d8d57afa6f81cac0af
4 changes: 3 additions & 1 deletion ckanext/datavic_harvester/harvesters/dcat_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,9 @@ def _set_required_fields_defaults(
"organization_visibility"
]
else:
pkg_dict["organization_visibility"] = "current"
pkg_dict["organization_visibility"] = self._get_extra(
pkg_dict, "organization_visibility"
) or "current"

pkg_dict["workflow_status"] = "published"

Expand Down