chore(deps): update fsfe/reuse docker tag to v4 #102

Merged
Brain merged 3 commits from renovate/fsfe-reuse-4.x into main 2024-08-27 18:42:00 +02:00
Member

This PR contains the following updates:

Package Type Update Change
fsfe/reuse docker major 3.0.2-debian -> 4.0.3-debian

Release Notes

fsfe/reuse-tool (fsfe/reuse)

v4.0.3

Compare Source

Fixed
  • Increased the minimum requirement of attrs to >=21.3. Older versions do
    not import correctly. (#​1044)

v4.0.2

Compare Source

Fixed
  • Repaired a bug that would cause a crash when running
    annotate --merge-copyrights on a file that does not yet have a year in the
    copyright statement. This bug was introduced in v4.0.1. (#​1030)

v4.0.1

Compare Source

Fixed
  • Make sure that Read the Docs can compile the documentation. This necesitated
    updating poetry.lock. (#​1028)

v4.0.0

Compare Source

This release of REUSE implements the new
REUSE Specification v3.2. It adds the
REUSE.toml file format as a replacement for .reuse/dep5. The new format is
easier to write and parse, is better at disambiguating certain corner cases, and
is more flexible for customisation and future additions.

To convert your existing .reuse/dep5 to REUSE.toml, you can simply use the
reuse convert-dep5 command.

Alongside the REUSE.toml feature is a wealth of other improvements.
reuse lint --lines may be especially interesting for CI workflows, as well as
the fact that the amount of PendingDeprecationWarnings has been drastically
reduced now that the information aggregation behaviour of .reuse/dep5 is
explicitly defined in the specification.

The tool has also been made easier to use with the addition of man pages. The
man pages can be found online at https://reuse.readthedocs.io/en/stable/man/.
Your distribution's packager will need to make them accessible via
man reuse(1). Unfortunately, man pages cannot be made accessible via Python's
packaging, although the full documentation (including man pages) is included in
the sdist.

This changeset also contains the changes of v3.1.0a1.

Added
  • Added support for REUSE.toml. (#​863)
  • Added reuse convert-dep5 to convert .reuse/dep5 to REUSE.toml. (#​863)
  • Man pages added for all reuse commands. Distribution maintainers might wish
    to distribute the (Sphinx-built) man pages. (#​975)
  • More file types are recognised:
  • Added comment styles:
    • man for UNIX Man pages (.man) (#​954)
  • Added --lines output option for lint. (#​956)
  • Treat % !TEX and % !BIB as shebangs in TeX and BibTeX files, respectively
    (#​971)
  • Support alternate spelling --skip-unrecognized. (#​974)
  • In annotate, rename --copyright-style to --copyright-prefix. The former
    parameter is still supported. (#​973)
  • Support alternate spelling --skip-unrecognized (#​974)
  • cpp and cppsingle style shorthands (see changes). (#​941)
Changed
  • Updated SPDX resources to 3.24.0. (#​994)
  • Updated REUSE specification version to 3.2. (#​994)
  • .s files now use the Python comment style as per GNU Assembler (gas). (#​928)
  • Previously, any file that begins with COPYING or LICENSE was ignored. This
    has been changed. Now, files like COPYING_README are no longer ignored, but
    COPYING and COPYING.txt are still ignored (in other words: exact matches,
    or COPYING + a file extension). Idem ditto for LICENSE. (#​886)
  • Dependencies added:
  • Reorganised the way that c, css, and csingle styles work. (#​941)
    • c used to support multi-line comments; it now only supports multi-line
      /* */ comments. This is identical to the old css style.
    • cpp has been added, which supports multi-line /* */ comments and
      single-line // comments. This is identical to the old c style.
    • csingle has been renamed to cppsingle, and it supports only single-line
      // comments.
Deprecated
  • .reuse/dep5 is marked deprecated. reuse convert-dep5 will help you switch
    to REUSE.toml. (#​863)
Removed
  • The PendingDeprecationWarning for the aggregation of information between DEP5
    and the contents of a file has been removed. This behaviour is now explicitly
    specified in REUSE Specification v3.2. (#​1017, related to #​779)
  • reuse init removed. (#​863)
  • csingle and css style shorthands (see changes). (#​941)
Fixed
  • The datetime value for Created: was wrongly formatted since 3.0.0. It now
    returns a correctly formatted ISO 8601 date again. (#​952)
  • Repaired the behaviour of reuse download where being inside of a LICENSES/
    directory should not create a deeper LICENSES/LICENSES/ directory. (#​975)
  • Support annotating a file that contains only a shebang. (#​965)
  • Add CONTRIBUTING.md to the sdist. (#​987)
  • In reuse spdx, fixed the output to be more compliant by capitalising
    SPDXRef-Document DESCRIBES appropriately. (#​1013)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [fsfe/reuse](https://github.com/fsfe/reuse-tool) | docker | major | `3.0.2-debian` -> `4.0.3-debian` | --- ### Release Notes <details> <summary>fsfe/reuse-tool (fsfe/reuse)</summary> ### [`v4.0.3`](https://github.com/fsfe/reuse-tool/blob/HEAD/CHANGELOG.md#403---2024-07-08) [Compare Source](https://github.com/fsfe/reuse-tool/compare/v4.0.2...v4.0.3) ##### Fixed - Increased the minimum requirement of `attrs` to `>=21.3`. Older versions do not import correctly. ([#&#8203;1044](https://github.com/fsfe/reuse-tool/issues/1044)) ### [`v4.0.2`](https://github.com/fsfe/reuse-tool/blob/HEAD/CHANGELOG.md#402---2024-07-03) [Compare Source](https://github.com/fsfe/reuse-tool/compare/v4.0.1...v4.0.2) ##### Fixed - Repaired a bug that would cause a crash when running `annotate --merge-copyrights` on a file that does not yet have a year in the copyright statement. This bug was introduced in v4.0.1. ([#&#8203;1030](https://github.com/fsfe/reuse-tool/issues/1030)) ### [`v4.0.1`](https://github.com/fsfe/reuse-tool/blob/HEAD/CHANGELOG.md#401---2024-07-03) [Compare Source](https://github.com/fsfe/reuse-tool/compare/v4.0.0...v4.0.1) ##### Fixed - Make sure that Read the Docs can compile the documentation. This necesitated updating `poetry.lock`. ([#&#8203;1028](https://github.com/fsfe/reuse-tool/issues/1028)) ### [`v4.0.0`](https://github.com/fsfe/reuse-tool/blob/HEAD/CHANGELOG.md#400---2024-07-03) [Compare Source](https://github.com/fsfe/reuse-tool/compare/v3.0.2...v4.0.0) This release of REUSE implements the new [REUSE Specification v3.2](https://reuse.software/spec-3.2). It adds the `REUSE.toml` file format as a replacement for `.reuse/dep5`. The new format is easier to write and parse, is better at disambiguating certain corner cases, and is more flexible for customisation and future additions. To convert your existing `.reuse/dep5` to `REUSE.toml`, you can simply use the `reuse convert-dep5` command. Alongside the `REUSE.toml` feature is a wealth of other improvements. `reuse lint --lines` may be especially interesting for CI workflows, as well as the fact that the amount of `PendingDeprecationWarning`s has been drastically reduced now that the information aggregation behaviour of `.reuse/dep5` is explicitly defined in the specification. The tool has also been made easier to use with the addition of man pages. The man pages can be found online at <https://reuse.readthedocs.io/en/stable/man/>. Your distribution's packager will need to make them accessible via `man reuse(1)`. Unfortunately, man pages cannot be made accessible via Python's packaging, although the full documentation (including man pages) is included in the sdist. This changeset also contains the changes of v3.1.0a1. ##### Added - Added support for `REUSE.toml`. ([#&#8203;863](https://github.com/fsfe/reuse-tool/issues/863)) - Added `reuse convert-dep5` to convert `.reuse/dep5` to `REUSE.toml`. ([#&#8203;863](https://github.com/fsfe/reuse-tool/issues/863)) - Man pages added for all `reuse` commands. Distribution maintainers might wish to distribute the (Sphinx-built) man pages. ([#&#8203;975](https://github.com/fsfe/reuse-tool/issues/975)) - More file types are recognised: - Assembler (`.asm`) ([#&#8203;928](https://github.com/fsfe/reuse-tool/issues/928)) - GraphQL (`.graphqls`, `.gqls`) ([#&#8203;930](https://github.com/fsfe/reuse-tool/issues/930)) - CUDA-C++ (`.cu`, `.cuh`) ([#&#8203;938](https://github.com/fsfe/reuse-tool/issues/938)) - Various .NET files (`.csproj`, `.fsproj`, `.fsx`, `.props`, `.sln`, `.vbproj`) ([#&#8203;940](https://github.com/fsfe/reuse-tool/issues/940)) - Cargo (`Cargo.lock`) ([#&#8203;937](https://github.com/fsfe/reuse-tool/issues/937)) - Clang-Tidy (`.clang-tidy`) ([#&#8203;961](https://github.com/fsfe/reuse-tool/issues/961)) - Java `.properties` files ([#&#8203;968](https://github.com/fsfe/reuse-tool/issues/968)) - Apache HTTP server config `.htaccess` files ([#&#8203;985](https://github.com/fsfe/reuse-tool/issues/985)) - npm `.npmrc` files ([#&#8203;985](https://github.com/fsfe/reuse-tool/issues/985)) - LaTeX class files (`.cls`) ([#&#8203;971](https://github.com/fsfe/reuse-tool/issues/971)) - CSON (`.cson`) ([#&#8203;1002](https://github.com/fsfe/reuse-tool/issues/1002)) - Hjson (`.hjson`) ([#&#8203;1002](https://github.com/fsfe/reuse-tool/issues/1002)) - JSON5 (`.json5`) ([#&#8203;1002](https://github.com/fsfe/reuse-tool/issues/1002)) - JSON with Comments (`.jsonc`) ([#&#8203;1002](https://github.com/fsfe/reuse-tool/issues/1002)) - Tap (`.taprc`) ([#&#8203;997](https://github.com/fsfe/reuse-tool/issues/997)) - Zsh (`.zshrc`) ([#&#8203;997](https://github.com/fsfe/reuse-tool/issues/997)) - Perl test (`.t`) ([#&#8203;997](https://github.com/fsfe/reuse-tool/issues/997)) - BATS test (`.bats`) ([#&#8203;997](https://github.com/fsfe/reuse-tool/issues/997)) - Octave/Matlab (`.m`) ([#&#8203;604](https://github.com/fsfe/reuse-tool/issues/604)) - VHDL(`.vhdl`) ([#&#8203;564](https://github.com/fsfe/reuse-tool/issues/564)) - Earthly files (`Earthfile` and `.earthlyignore`) ([#&#8203;1024](https://github.com/fsfe/reuse-tool/issues/1024)) - Added comment styles: - `man` for UNIX Man pages (`.man`) ([#&#8203;954](https://github.com/fsfe/reuse-tool/issues/954)) - Added `--lines` output option for `lint`. ([#&#8203;956](https://github.com/fsfe/reuse-tool/issues/956)) - Treat `% !TEX` and `% !BIB` as shebangs in TeX and BibTeX files, respectively ([#&#8203;971](https://github.com/fsfe/reuse-tool/issues/971)) - Support alternate spelling `--skip-unrecognized`. ([#&#8203;974](https://github.com/fsfe/reuse-tool/issues/974)) - In `annotate`, rename `--copyright-style` to `--copyright-prefix`. The former parameter is still supported. ([#&#8203;973](https://github.com/fsfe/reuse-tool/issues/973)) - Support alternate spelling `--skip-unrecognized` ([#&#8203;974](https://github.com/fsfe/reuse-tool/issues/974)) - `cpp` and `cppsingle` style shorthands (see changes). ([#&#8203;941](https://github.com/fsfe/reuse-tool/issues/941)) ##### Changed - Updated SPDX resources to 3.24.0. ([#&#8203;994](https://github.com/fsfe/reuse-tool/issues/994)) - Updated REUSE specification version to 3.2. ([#&#8203;994](https://github.com/fsfe/reuse-tool/issues/994)) - `.s` files now use the Python comment style as per GNU Assembler (gas). ([#&#8203;928](https://github.com/fsfe/reuse-tool/issues/928)) - Previously, any file that begins with `COPYING` or `LICENSE` was ignored. This has been changed. Now, files like `COPYING_README` are no longer ignored, but `COPYING` and `COPYING.txt` are still ignored (in other words: exact matches, or `COPYING` + a file extension). Idem ditto for `LICENSE`. ([#&#8203;886](https://github.com/fsfe/reuse-tool/issues/886)) - Dependencies added: - `attrs>=21.1` ([#&#8203;863](https://github.com/fsfe/reuse-tool/issues/863)) - `tomlkit>=0.8` ([#&#8203;863](https://github.com/fsfe/reuse-tool/issues/863)) - Reorganised the way that `c`, `css`, and `csingle` styles work. ([#&#8203;941](https://github.com/fsfe/reuse-tool/issues/941)) - `c` used to support multi-line comments; it now only supports multi-line `/* */` comments. This is identical to the old `css` style. - `cpp` has been added, which supports multi-line `/* */` comments and single-line `//` comments. This is identical to the old `c` style. - `csingle` has been renamed to `cppsingle`, and it supports only single-line `//` comments. ##### Deprecated - `.reuse/dep5` is marked deprecated. `reuse convert-dep5` will help you switch to `REUSE.toml`. ([#&#8203;863](https://github.com/fsfe/reuse-tool/issues/863)) ##### Removed - The PendingDeprecationWarning for the aggregation of information between DEP5 and the contents of a file has been removed. This behaviour is now explicitly specified in REUSE Specification v3.2. ([#&#8203;1017](https://github.com/fsfe/reuse-tool/issues/1017), related to [#&#8203;779](https://github.com/fsfe/reuse-tool/issues/779)) - `reuse init` removed. ([#&#8203;863](https://github.com/fsfe/reuse-tool/issues/863)) - `csingle` and `css` style shorthands (see changes). ([#&#8203;941](https://github.com/fsfe/reuse-tool/issues/941)) ##### Fixed - The datetime value for `Created:` was wrongly formatted since 3.0.0. It now returns a correctly formatted ISO 8601 date again. ([#&#8203;952](https://github.com/fsfe/reuse-tool/issues/952)) - Repaired the behaviour of `reuse download` where being inside of a LICENSES/ directory should not create a deeper LICENSES/LICENSES/ directory. ([#&#8203;975](https://github.com/fsfe/reuse-tool/issues/975)) - Support annotating a file that contains only a shebang. ([#&#8203;965](https://github.com/fsfe/reuse-tool/issues/965)) - Add `CONTRIBUTING.md` to the sdist. ([#&#8203;987](https://github.com/fsfe/reuse-tool/issues/987)) - In `reuse spdx`, fixed the output to be more compliant by capitalising `SPDXRef-Document DESCRIBES` appropriately. ([#&#8203;1013](https://github.com/fsfe/reuse-tool/issues/1013)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40NDAuNyIsInVwZGF0ZWRJblZlciI6IjM3LjQ0MC43IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
renovate-bot added 1 commit 2024-08-22 16:36:32 +02:00
chore(deps): update fsfe/reuse docker tag to v4
All checks were successful
continuous-integration/drone/pr Build is passing
f5b7fd3dee
Brain added 1 commit 2024-08-27 18:32:42 +02:00
Convert .reuse/dep5 to REUSE.toml
Some checks failed
continuous-integration/drone/pr Build is failing
348b589d6b
Author
Member

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

### Edited/Blocked Notification Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. ⚠️ **Warning**: custom changes will be lost.
Brain added 1 commit 2024-08-27 18:36:44 +02:00
Specify license for REUSE.toml
All checks were successful
continuous-integration/drone/pr Build is passing
df8b79bc53
Brain merged commit 4850d79f54 into main 2024-08-27 18:42:00 +02:00
Sign in to join this conversation.
No reviewers
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: kompetenzinventar/ki-frontend#102
No description provided.