- May 16, 2024
-
-
TargetType is far too generic and introduces confusion with ReleaseTargetType. So we rename it to a clearer name.
-
ObjectType is far too generic and introduces confusion with swhids.ObjectType. So we rename it to a clearer name.
-
Antoine Lambert authored
-
Antoine Lambert authored
A Content object with no attached data or get_data function could no longer be converted to a dict as MissingData exception was raised.
-
- May 15, 2024
-
-
Having the escaped URL in `swhid.origin` is inconsistent with self.path (which is always escaped) and never what we want, because it is only useful while serializing, which is already handled by `__str__`. This led to swh-indexer#4738 where swh-deposit parsed a qualified SWHID, then used `.origin` to get an origin URL. Additionally, as serialization always escapes the `origin` qualifier, this means that deserializing then re-serializing a qualified SWHID would double-escape it. Finally, fixing this made the test uncover that `%` was not escaped while serializing, while `;` was, leading to incorrect (and ambiguous) escaped URLs.
-
Pierre-Yves David authored
There are two other package using DiskBackedContent "swh-loader-svn" and "swh-loader-cvs". Both use it to check "DiskBackedContent.object_type" at the same time as "model.Content.object_type". so we do this small hack to avoid breaking these other module until they migrate.
-
Pierre-Yves David authored
This sets the pieces in place to finally cleanup the confusion from the various object_type attributes. They now have different type, so we should be able to start detecting error at some point. As for FromDiskType, we keep compatibility with string value for now. This avoid breaking existing code.
-
Pierre-Yves David authored
Instead of having multiple class and `object_type` value, we just adds a few lines in the main `model.Content` class to retrieved data on demand. The `with_data` logic already existed there anyway. This will avoid having from_disk extending the model from the outside.
-
- May 14, 2024
-
-
Pierre-Yves David authored
This is part of a wider effort to differentiate the various type of "object_type" attribute around the model code base.
-
Pierre-Yves David authored
This requires cleaning various item along the ways. Which is probably an added benefit. Especially, mypy now consider BaseModel to hold a object_type attribute.
-
Pierre-Yves David authored
Check inline comment for details.
-
- Apr 24, 2024
-
-
vlorentz authored
Currently the only limit is "enforced" by PostgreSQL. This makes sure that origins created after we switch to Cassandra as the primary storage remain compatible with a PostgreSQL-based storage.
-
- Mar 29, 2024
-
-
David Douard authored
-
- Mar 26, 2024
-
-
vlorentz authored
-
- Feb 29, 2024
-
-
Franck Bret authored
Add an optional progress callback to `from_disk` method. It can returns the number of computed entries for each top entries traversed. This is useful for CLI, in particular to display progress information for SWH Scanner.
-
- Feb 20, 2024
- Feb 05, 2024
-
-
Antoine Lambert authored
Related to swh/meta#5075.
-
- Jan 09, 2024
-
-
Pierre-Yves David authored
Right now, the discovery process offered by `filter_known_objects` returns all results after the discovery is complete. The new callback provides a way to get information "in real time" which is useful for at least a couple of planned use case in the SWH scanner: - displaying progress information while processing - update a graphical UI in real time. This simple callback fits this need without too much troubles. For some reason, mypy complained about the existing type hint in this file for unclear reason. So I fixed them.
-
Pierre-Yves David authored
The web Client is no longer using async so we no longer needs it.
-
- Dec 05, 2023
-
-
David Douard authored
-
- Dec 04, 2023
-
-
David Douard authored
-
David Douard authored
-
- Dec 03, 2023
-
-
David Douard authored
-
- Nov 29, 2023
-
-
Antoine Lambert authored
When building package documentation outside tox by calling make in the docs directory, the include of Makefile.sphinx inside the docs Makefile was failing as its relative path was invalid. So adapt this relative path according if the SWH_PACKAGE_DOC_TOX_BUILD environment variable is set or not.
-
- Nov 28, 2023
-
-
David Douard authored
-
David Douard authored
-
- Nov 16, 2023
-
-
David Douard authored
Convert README from markdown to ReST to make it embeddable in docs/index.rst
-
- Nov 15, 2023
-
-
vlorentz authored
instead of a mix-in class. A future commit will add a method implemented by both with different signatures that mypy cannot unify yet.
-
- Nov 14, 2023
-
-
Nicolas Dandrimont authored
-
Raphaël Gomès authored
`dir_filter` only filters directories. `swh-scanner` needs to accurately filter out ignored files before making expensive requests to the web API. We introduce a more general `path_filter` that allows us to differentiate between files and folders. `dir_filter` is now deprecated and will be removed once the remaining users in other packages are migrated over to the new API. `accept_all_directories` is also deprecated, because it only implies accepting *directories* even though its behavior also accepts non-directory entries when used with `path_filter`.
-
- Sep 25, 2023
-
-
Antoine Lambert authored
Use a list instead of a tuple to keep mypy happy with latest hypothesis version.
-
- Aug 29, 2023
-
-
As with other fields containing sha1_git values, display hexadecimal representation of parent revision ids.
-
- Aug 21, 2023
- Jul 12, 2023
-
-
Nicolas Dandrimont authored
This separate package was introduced recently and is needed for our CLIs to pass type checking.
-
- Jun 14, 2023
-
-
Nicolas Dandrimont authored
This allows using the "system" tox, if it's recent enough, instead of always provisioning an internal .tox venv with tox 4.
-
Nicolas Dandrimont authored
Instead of going back to py3, pass through the environment name, so that it can be called with an arbitrary interpreter version.
-
Nicolas Dandrimont authored
When parsing the configuration, tox would complain about the unfollowed line continuation (which is what happens when the testenv was qualified with neither full nor minimal). Moving {posargs} to be unqualified allows the line continuation character to always have something behind it.
-
- Mar 16, 2023
-
-
Jérémy Bobbio (Lunar) authored
This adds several helper methods returning SWHIDs to model objects, namely: - SkippedContent.swhid() - DirectoryEntry.swhid() - SnapshotBranch.swhid() - Release.target_swhid() - Revision.directory_swhid() and Release.parent_swhids() - OriginVisitStatus.origin_swhid() and OriginVisitStatus.snapshot_swhid()
-
- Feb 17, 2023
-
-
Antoine Lambert authored
Better using latest mypy release.
-
Antoine Lambert authored
Related to swh/meta#4960
-