- May 06, 2022
-
-
Jenkins for Software Heritage authored
Update to upstream version '1.7.0' with Debian dir 50cb64eec4e789aa0e513e812f118dc5c68c1130
- May 02, 2022
-
-
Pratyush authored
-
- Apr 27, 2022
-
-
Jenkins for Software Heritage authored
Update to upstream version '1.6.0' with Debian dir 5bf2d6898904e9a48a8f700f03daf0bc3fe1ee0d
-
Antoine Lambert authored
Recent changes in swh-scheduler add new parameters to the celery tasks produced from swh.scheduler.model.ListedOrigin instances. So ensure to handle any new parameters by not hardcoding the expected ones in task signatures. Rename date parameter to visit_date in from disk loader tasks and make it non mandatory. Add new tests checking task parameters produced from ListedOrigin instances do no raise error when attempting to create a git loader. Related to T4187
- Apr 26, 2022
-
-
vlorentz authored
-
- Apr 25, 2022
-
-
Jenkins for Software Heritage authored
Update to upstream version '1.5.0' with Debian dir bd7d4902f5f2945c80970ac3694567b07bfcb2c0
- Apr 21, 2022
-
-
Antoine Lambert authored
That hook can be frustrating as it can discard a long commit message if it finds a typo in it so better removing it.
-
vlorentz authored
-
- Apr 20, 2022
-
-
vlorentz authored
-
- Apr 08, 2022
-
-
Antoine Lambert authored
-
Antoine Lambert authored
Related to T3922
-
Antoine Lambert authored
black is considered stable since release 22.1.0 and the version we are currently using is quite outdated and not compatible with click 8.1.0, so it is time to bump it to its latest stable release. Please note that E501 pycodestyle warning related to line length is replaced by B950 one from flake8-bugbear as recommended by black. https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#line-length Related to T3922
-
- Mar 22, 2022
-
-
Antoine Lambert authored
Due to test modules being copied in subdirectories of the build directory by setuptools, it makes pytest fail by raising ImportPathMismatchError exceptions when invoked from root directory of the module. So ignore the build folder to discover tests.
-
- Feb 10, 2022
-
-
Antoine Lambert authored
To install the new hook: $ pre-commit install -t commit-msg
-
- Jan 21, 2022
-
-
Jenkins for Software Heritage authored
Update to upstream version '1.4.0' with Debian dir b5e81dc5ba8fc291af8d66ec77143e833826280f
-
Antoine R. Dumont authored
This currently fails the origin visit and update the visit status to 'failed'. This got listed by listers but current access to such origin is actually private, it'd probably make sense to make the status of the visit as not_found instead. This takes care of the most frequent issue so (460k) [1]. [1] https://sentry.softwareheritage.org/share/issue/3a3663f8cc424a48999af28728152ef0/
- Jan 14, 2022
-
-
vlorentz authored
swh-model 5.0.0 removes these arguments from the constructor.
-
vlorentz authored
This allows representing git trees with disordered entries, as the "normal" data model requires them to be sorted.
-
vlorentz authored
This allows representing all git objects instead of rejecting objects that do not fit in our "normal" data model. This commit is restricted to revisions and releases for now, a future commit will add directories.
-
- Jan 11, 2022
-
-
Jenkins for Software Heritage authored
Update to upstream version '1.3.1' with Debian dir 683cc40f3ce8f5d23ddec4ee330d8ba1c0c3ca30
-
Antoine Lambert authored
urljoin does not produce the same output if the base URL does not have a trailing slash. >>> from urllib.parse import urljoin >>> urljoin("https://git.example.org/repo", "info/refs") 'https://git.example.org/info/refs' >>> urljoin("https://git.example.org/repo/", "info/refs") 'https://git.example.org/repo/info/refs' So ensure the base URL ends with a slash to avoid generating invalid URLs and make loading failed.
-
Jenkins for Software Heritage authored
Update to upstream version '1.3.0' with Debian dir b8c53eb7da2f1c9666664534a39706e388ab7d35
-
Nicolas Dandrimont authored
- Jan 10, 2022
-
-
vlorentz authored
instead of writing them all at once, which partially defeats the point of using a spooled buffer.
-
vlorentz authored
'requests' does the job just fine with less complexity.
-
vlorentz authored
response.content_type is set by Dulwich, but isn't part of urllib3's HTTPResponse, so we shouldn't rely on it. (And it makes mypy complain when the 'types-urllib3' package is installed)
-