https://git.schokokeks.org/derivepassphrase.git/tree/a9ce95dae2a203edfe8e00adf5fa2ab45d4fbfefRecent commits to derivepassphrase.git (a9ce95dae2a203edfe8e00adf5fa2ab45d4fbfef)2024-09-01T14:55:36+02:00tag:gitlist.org,2012:commit/a9ce95dae2a203edfe8e00adf5fa2ab45d4fbfefSupport text string services names in Vault internal API2024-09-01T14:55:36+02:00Marco Riccim@the13thletter.info
<pre></pre>
tag:gitlist.org,2012:commit/d23dd1ed824ba3112f9be11a5659838edbe43b39Fix the docstring of the vault native v0.2 exporter class2024-09-01T14:28:13+02:00Marco Riccim@the13thletter.info
<pre>The previous docstring was accidentally copy-pasted from the v0.3 class.
</pre>
tag:gitlist.org,2012:commit/4701b329098224a8b84ab1826b312bd937de942aRename `derivepassphrase.vault` test file to match naming convention2024-09-01T14:00:30+02:00Marco Riccim@the13thletter.info
<pre></pre>
tag:gitlist.org,2012:commit/2d292af3e81527750e46a2167d30efe840ac58caApply new ruff ruleset to code base.2024-09-01T13:43:33+02:00Marco Riccim@the13thletter.info
<pre>Results in many cosmetical code changes, and many documentation fixes.
(In particular, the docstring for
`derivepassphrase.cli.derivepassphrase` contained typos in the option
descriptions.) Furthermore, three other changes are made:
- Ignore `FURB101` and `FURB103` as well, which deal with similar
functionality to the deselected `PTH` rules.
- Change the attributes of the `VaultNativeConfigParser` class (and
its subclasses) to private, instead of public. Change the
`DummyModule` class in `derivepassphrase.exporter.storeroom` and
`derivepassphrase.exporter.vault_v03_and_below` to private as well.
- The modules `derivepassphrase.exporter.storeroom` and
`derivepassphrase.exporter.vault_v03_and_below` are now no longer
executable files.
</pre>
tag:gitlist.org,2012:commit/ef40e2a2624047f1b02e87716f17d8569dc94bfbMerge topic branch 'clean-up-and-update-tool-configuration' into master2024-09-01T11:17:19+02:00Marco Riccim@the13thletter.info
<pre>* t/clean-up-and-update-tool-configuration:
Upgrade ruff to 0.6, and redo configuration and rule selection
Undo single-child hatch environment inheritance
Specify project dependencies more clearly and explicitly
Sort sections in pyproject.toml
</pre>
tag:gitlist.org,2012:commit/aacd09bdcbdb01df7cb819396727d2427636b144Merge topic branch 'issue9-allow-all-unicode-passphrases' into master2024-09-01T11:08:47+02:00Marco Riccim@the13thletter.info
<pre>* t/issue9-allow-all-unicode-passphrases:
Allow all textual strings, but warn on unnormalized ones
GitHub: Closes #9.
</pre>
tag:gitlist.org,2012:commit/b4d8439fa4207b665ad8ea2217f21f807f603734Merge topic branch 'issue1-vault-config-exporter' into master2024-09-01T11:06:43+02:00Marco Riccim@the13thletter.info
<pre>* t/issue1-vault-config-exporter:
Fix formatting and linting issues in exporter tests
Add Changelog entry for the vault exporter
Rename vault v0.2/v0.3 classes, and fix API weirdnesses and test coverage
Add more tests of the storeroom format exporter's internals
Test exporter data loading functionality more robustly
Move exporter command-line interface into a separate module
Add preliminary tests for the exporter
Add command-line interface to the exporter
Move vault key and path detection logic into the exporter module
Add prototype for "vault v0.2/v0.3"-type data export
Support exports from outside the current directory
Add dependency on cryptography for the exporter
Add an actual storeroom exporter, not just a reader
Add docstrings and better variable names on storeroom exporter
Add example for "storeroom"-type data export
Add prototype for "storeroom"-type data export
GitHub: Closes #1.
</pre>
tag:gitlist.org,2012:commit/fb6913b190365893f3d5e83225a496c9061c6e54Fix formatting and linting issues in exporter tests2024-09-01T11:05:14+02:00Marco Riccim@the13thletter.info
<pre></pre>
tag:gitlist.org,2012:commit/e109f3ac7c5c09b89816405e3ebc9dd195685024Upgrade ruff to 0.6, and redo configuration and rule selection2024-09-01T10:22:13+02:00Marco Riccim@the13thletter.info
<pre>hatch currently still defaults to ruff 0.4.5, which includes some
now-deprecated rules and lacks some others. Furthermore, hatch's
default configuration for ruff is very opinionated and not explained
anywhere. Upgrading the ruleset to 0.6 still incurs the overhead of
having to look at every single new ruff rule, determining whether it
fits the hatch configuration, and allowing it. This is a similar amount
of effort to enabling all of ruffs rules and deciding, based on the
flagged violations, whether a rule or rule category is worth keeping.
This has now been implemented: almost all rules are now selected, and
the exceptions are documented in the project settings. (ruff actually
includes documentation on linting rules that tend to get violated if
ruff is also used for reformatting.) hatch is configured to use ruff
0.6 and this user configuration, ignoring its own default ruff
configuration. Some further ruff settings are necessary, e.g. adapting
the default copyright text template to match hatch's copyright text
template, as is one new mypy setting (the "ignore-without-code" error).
Note: the new ruleset has not actually been applied to the codebase yet,
because the effect would be spread out across the codebase, and we
expect multiple topic branches to be merged soon.
</pre>
tag:gitlist.org,2012:commit/94068756e896574a397b4717388b02ed661a22a9Allow all textual strings, but warn on unnormalized ones2024-09-01T00:32:49+02:00Marco Riccim@the13thletter.info
<pre>Remove the "check if Unicode string has unambiguous byte encoding"
misfeature, which is based on an incorrect understanding of Unicode
normalization forms. Also remove the `AmbiguousByteRepresentationError`
class. Now we allow all textual strings as master passphrases.
When storing a (master) passphrase to the configuration or when
interactively generating a passphrase, we emit a warning if we detect
that the master passphrase is not normalized (with the configured
normalization form, stored in `.global.unicode_normalization_form`).
</pre>