- Oct 31, 2022
-
-
Jenkins for Software Heritage authored
-
Jenkins for Software Heritage authored
Update to upstream version '1.3.6' with Debian dir c6ddd2637275897be2234792239829093fc65dea
- Oct 19, 2022
-
-
Antoine Lambert authored
-
Antoine Lambert authored
-
Antoine Lambert authored
When the "svnadmin load" command exits with error, report the svn admin error in the ValueError exception raised by the function init_svn_repo_from_dump. This should help debugging those type of issues reported by sentry.
-
- Oct 18, 2022
-
-
David Douard authored
- pre-commit from 4.1.0 to 4.3.0, - codespell from 2.2.1 to 2.2.2, - black from 22.3.0 to 22.10.0 and - flake8 from 4.0.1 to 5.0.4. Also freeze flake8 dependencies. Also change flake8's repo config to github (the gitlab mirror being outdated).
-
Antoine Lambert authored
Use helper fixture loading_task_creation_for_listed_origin_test from swh-loader-core and remove redundant tests.
-
- Oct 17, 2022
-
-
Antoine Lambert authored
Instead of maintaining a set of modified paths for each replayed revision, use the swh.model.from_disk.Directory.collect method which performs the same task by returning added or modified contents and directories since the last collect operation.
-
- Oct 01, 2022
-
-
Jenkins for Software Heritage authored
-
Jenkins for Software Heritage authored
Update to upstream version '1.3.5' with Debian dir 22df659c580c58bf913dc298c03da9f69bdcd2f6
- Sep 30, 2022
-
-
Antoine Lambert authored
Some subversion servers in the wild disabled anonymous access and require to authenticate using a read only user account, typically with credentials anonymous/anonymous. So add support for basic authentication in the subversion loader, credentials must be provided in the repository URL as with basic HTTP authentication.
-
- Sep 15, 2022
-
-
Jenkins for Software Heritage authored
-
Jenkins for Software Heritage authored
Update to upstream version '1.3.4' with Debian dir 5c89157e3fc4b1aeca7e4236f4b50de85c911c45
- Jun 17, 2022
-
-
Antoine Lambert authored
An external definition can be of the following form (where XXX and YYY are revision numbers): -r XXX <repo_url>@YYY In that case, the official subversion client will export the revision XXX of the external repository. So ensure to have the same behavior when the subversion loader processes a repository with such external defintion in it.
-
- Jun 01, 2022
-
-
Jenkins for Software Heritage authored
-
Jenkins for Software Heritage authored
Update to upstream version '1.3.3' with Debian dir 68b7d5b944b9543bedba3fe39310a6e82672e271
-
Antoine Lambert authored
Temporary network failures can also happen when using subversion remote access API so make single commit info retrieval operation retryable.
- May 20, 2022
-
-
Antoine Lambert authored
This type of error comes from temporary network failure so the failed svn operation can be retried.
-
- May 09, 2022
-
-
Pratyush authored
-
- May 05, 2022
-
-
Antoine Lambert authored
The computed root directory name had a trailing slash which was making its lookup in from_disk.Directory model fail and thus every archived revisions were targetting the empty directory.
-
- May 03, 2022
-
-
Antoine Lambert authored
svnrdump does not handle repository URL redirection while svn client does. So ensure to use redirected subversion origin URL to dump a repository. Related to T3874
-
- Apr 29, 2022
-
-
Jenkins for Software Heritage authored
-
Jenkins for Software Heritage authored
Update to upstream version '1.3.2' with Debian dir 01a0208c3ea475de3d2a32cc77b893f91027bf60
- Apr 27, 2022
-
-
Antoine Lambert authored
Using unnamed arguments is unsafe with celery tasks and parsing visit_date is still required in case that parameter is used.
-
- Apr 26, 2022
-
-
Antoine Lambert authored
Recent changes in swh-scheduler add new parameters to the celery tasks produced from swh.scheduler.model.ListedOrigin instances. Those new parameters were not properly handled in the celery tasks implementation for svn loading but also in some svn loader ones. So ensure to handle any new parameters by not hardcoding the expected ones in task signatures but also allowing any extra keyword parameters in loader constructors. Also remove explicit setting of visit_date if none has been provided as task parameter as it is already handled in loader constructor. Related to T4187
-