Thomas Zahner
1f2df5dc1e
Add interesting projects who use lychee ( #1537 )
...
* Add interesting projects who use lychee
* List Gradle as user in README.md
2024-10-22 00:00:07 +02:00
xlai89
7484a1ff6c
Don't check prefix attribute ( #1536 )
2024-10-20 22:56:46 +02:00
Thomas Zahner
3a2533f8f5
Add OWASP Threat Dragon to users
2024-10-18 16:28:34 +02:00
Álvaro Mondéjar Rubio
93846b5c8d
Update pkg-url of cargo binstall ( #1532 )
2024-10-17 17:29:29 +02:00
dependabot[bot]
946d15f7fa
Bump the dependencies group with 3 updates ( #1530 )
...
Bumps the dependencies group with 3 updates: [clap](https://github.com/clap-rs/clap ), [secrecy](https://github.com/iqlusioninc/crates ) and [octocrab](https://github.com/XAMPPRocky/octocrab ).
Updates `clap` from 4.5.19 to 4.5.20
- [Release notes](https://github.com/clap-rs/clap/releases )
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md )
- [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.19...clap_complete-v4.5.20 )
Updates `secrecy` from 0.10.2 to 0.10.3
- [Commits](https://github.com/iqlusioninc/crates/commits )
Updates `octocrab` from 0.41.0 to 0.41.1
- [Release notes](https://github.com/XAMPPRocky/octocrab/releases )
- [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md )
- [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.41.0...v0.41.1 )
---
updated-dependencies:
- dependency-name: clap
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: secrecy
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: octocrab
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-10-14 15:30:01 +02:00
Damien Mathieu
f0ebac29a2
Allow excluding cache based on status code ( #1403 )
...
This introduces an option `--cache-exclude-status`, which allows specifying a range of HTTP status codes which will be ignored from the cache.
Closes #1400 .
2024-10-14 02:41:56 +02:00
Marko Galevski
2a9f11a289
Ignore textContent links in html nodes ( #1528 )
...
This fixes issue #1462 by removing plaintext URI parsing
in html5ever and pruning attribute-less URIs in html5gum
2024-10-14 00:59:55 +02:00
Matthias
4ac76583b1
fix: The 'as' keyword in the Dockerfile should be uppercase
2024-10-14 00:00:44 +02:00
Thomas Zahner
17f62aef53
Respect timeout when retrieving archived link ( #1526 )
2024-10-12 21:49:50 +02:00
Matthias Endler
3d414c2bc0
Update TOC in README.md
2024-10-12 02:23:37 +02:00
Matthias Endler
e2814acaa4
fix: Remove tokio console subscriber ( #1524 )
...
The console subscriber is the source of quite a few papercuts like
https://github.com/lycheeverse/lychee/issues/1513 .
Since we don't use it at the moment, I decided to remove it.
2024-10-12 02:19:31 +02:00
Matthias
060e0cd55c
Disable Wayback machine tests
...
See https://www.forbes.com/sites/daveywinder/2024/10/10/internet-hacked-wayback-machine-down-31-million-passwords-stolen/
2024-10-12 02:02:50 +02:00
Matthias Endler
4f3efb5d3d
Delete release-plz.toml
...
This starts generating the changelog again.
2024-10-12 01:46:31 +02:00
Matthias Endler
913cf717a4
feat: Add tests for dns-prefetch ( #1522 )
...
* Exclude `rel=dns-prefetch` links
Resolves #1499
* Add tests for dns-prefetch
---------
Co-authored-by: wackget <136205263+wackget@users.noreply.github.com>
2024-10-12 01:45:35 +02:00
wackget
e398325bb0
Exclude rel=dns-prefetch links ( #1520 )
...
Resolves #1499
2024-10-12 01:37:54 +02:00
Matthias Endler
18d486d782
Extend documentation on excluding links
2024-10-08 15:50:04 +02:00
Matthias Endler
7014765988
Improve docs for fragment checker
2024-10-08 14:55:16 +02:00
Johannes Schindelin
af7226ef2e
README: The Git home page and Git Credential Manager use lychee ( #1519 )
...
As of almost two weeks ago, Git's home page at https://git-scm.com/ was
switched to a static website that uses lychee to verify links (already
catching a broken one: https://github.com/gitgitgadget/git/pull/1812 ).
For substantially longer, the Git Credential Manager uses lychee to
validate the links in its documentation.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2024-10-08 11:12:19 +02:00
Matthias Endler
11adc09725
Don't check preconnect links ( #1187 )
...
Preconnect links are used to establish a server connection without loading a
specific resource yet. Not always do these links point to a URL that should
return a 200, and they are not user-facing, i.e. they don't show up in the
final rendered version of a page.
Therefore, we should not check them at all; not even in `--include-verbatim`
mode, as they might not point to a valid resource.
This turned out to require a significant overhaul of the html5gum extractor
to handle random attribute ordering correctly. Changes to the html5gum extractor:
* Refactor HTML link extractor for improved performance and maintainability
- Replace Vec<u8> with String for better readability and manipulation
- Introduce Element struct to encapsulate element-related data
- Use `HashMap<String, String>` for current_attributes for efficient lookups
- Add verbatim_stack to properly handle nested verbatim elements
- Remove unsafe code where possible, using String::from_utf8_lossy
- Improve attribute handling with `HashMap` entry API and prioritize `srcset`
- Simplify logic and consolidate verbatim element handling
- Enhance encapsulation in `LinkExtractor` struct
- Improve overall performance with more efficient data structures
- Increase flexibility for future feature additions or modifications
Fixes #897
2024-10-07 22:36:16 +02:00
Matthias Endler
8026684d64
Use custom token here to allow triggering other pipelines
2024-10-07 15:51:18 +02:00
Matthias Endler
c4568a85f5
Use custom token here to allow triggering other pipelines
2024-10-07 15:50:27 +02:00
dependabot[bot]
967af974bf
Bump the dependencies group with 6 updates ( #1516 )
...
Bumps the dependencies group with 6 updates:
| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap ) | `4.5.18` | `4.5.19` |
| [futures](https://github.com/rust-lang/futures-rs ) | `0.3.30` | `0.3.31` |
| [once_cell](https://github.com/matklad/once_cell ) | `1.20.0` | `1.20.2` |
| [reqwest](https://github.com/seanmonstar/reqwest ) | `0.12.7` | `0.12.8` |
| [async-stream](https://github.com/tokio-rs/async-stream ) | `0.3.5` | `0.3.6` |
| [octocrab](https://github.com/XAMPPRocky/octocrab ) | `0.40.0` | `0.41.0` |
Updates `clap` from 4.5.18 to 4.5.19
- [Release notes](https://github.com/clap-rs/clap/releases )
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md )
- [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.18...clap_complete-v4.5.19 )
Updates `futures` from 0.3.30 to 0.3.31
- [Release notes](https://github.com/rust-lang/futures-rs/releases )
- [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.30...0.3.31 )
Updates `once_cell` from 1.20.0 to 1.20.2
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md )
- [Commits](https://github.com/matklad/once_cell/compare/v1.20.0...v1.20.2 )
Updates `reqwest` from 0.12.7 to 0.12.8
- [Release notes](https://github.com/seanmonstar/reqwest/releases )
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md )
- [Commits](https://github.com/seanmonstar/reqwest/compare/v0.12.7...v0.12.8 )
Updates `async-stream` from 0.3.5 to 0.3.6
- [Release notes](https://github.com/tokio-rs/async-stream/releases )
- [Commits](https://github.com/tokio-rs/async-stream/compare/v0.3.5...v0.3.6 )
Updates `octocrab` from 0.40.0 to 0.41.0
- [Release notes](https://github.com/XAMPPRocky/octocrab/releases )
- [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md )
- [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.40.0...v0.41.0 )
---
updated-dependencies:
- dependency-name: clap
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: futures
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: once_cell
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: reqwest
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: async-stream
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: octocrab
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: dependencies
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-10-07 15:27:37 +02:00
github-actions[bot]
f63b4ae65b
chore: release ( #1514 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-10-06 17:42:45 +02:00
Sebastiaan Speck
d8253a11f5
markdown.rs: make first line a top-level heading ( #1511 )
...
Fixes [`MD041` - First line in a file should be a top-level heading](https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md041.md )
2024-10-06 17:41:27 +02:00
Matthias
829f5f3e72
Listen to additional release triggers for binary builds
2024-10-06 17:40:16 +02:00
Matthias
9fb9057c60
listen to more release triggers for binary builds
2024-10-06 17:12:15 +02:00
github-actions[bot]
eff84617a0
chore: release ( #1512 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-10-06 16:56:00 +02:00
Matthias
078c89fe5c
Don't add changelog files
...
at least for now
2024-10-06 16:49:44 +02:00
Matthias
c52a6fa88a
Cleanup .gitignore file
...
This is blocking `relase-plz`, because it requires the `Cargo.lock` to be checked in,
but it was also inconsistent, so I cleaned it up a bit.
2024-10-06 16:33:31 +02:00
Matthias Endler
f1ac9264b4
Add release-plz and clean up workflows ( #1510 )
...
It's no secret that we're lacking behind on releases;
partially, because they are slightly tedious to create.
My hope is that this will be resolved by introducing `release-plz` [1],
which is automates publication whenever we push to `master`.
Along the way, I aligned the naming of the other workflows.
[1]: https://github.com/MarcoIeni/release-plz
2024-10-05 23:56:42 +02:00
dependabot[bot]
b9ad685fea
Bump the dependencies group across 1 directory with 8 updates ( #1509 )
...
* Bump the dependencies group across 1 directory with 8 updates
Bumps the dependencies group with 8 updates in the / directory:
| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap ) | `4.5.17` | `4.5.18` |
| [regex](https://github.com/rust-lang/regex ) | `1.10.6` | `1.11.0` |
| [secrecy](https://github.com/iqlusioninc/crates ) | `0.8.0` | `0.10.2` |
| [tempfile](https://github.com/Stebalien/tempfile ) | `3.12.0` | `3.13.0` |
| [async-trait](https://github.com/dtolnay/async-trait ) | `0.1.82` | `0.1.83` |
| [octocrab](https://github.com/XAMPPRocky/octocrab ) | `0.39.0` | `0.40.0` |
| [thiserror](https://github.com/dtolnay/thiserror ) | `1.0.63` | `1.0.64` |
| [rstest](https://github.com/la10736/rstest ) | `0.22.0` | `0.23.0` |
Updates `clap` from 4.5.17 to 4.5.18
- [Release notes](https://github.com/clap-rs/clap/releases )
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md )
- [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.17...clap_complete-v4.5.18 )
Updates `regex` from 1.10.6 to 1.11.0
- [Release notes](https://github.com/rust-lang/regex/releases )
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-lang/regex/compare/1.10.6...1.11.0 )
Updates `secrecy` from 0.8.0 to 0.10.2
- [Commits](https://github.com/iqlusioninc/crates/commits )
Updates `tempfile` from 3.12.0 to 3.13.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Stebalien/tempfile/compare/v3.12.0...v3.13.0 )
Updates `async-trait` from 0.1.82 to 0.1.83
- [Release notes](https://github.com/dtolnay/async-trait/releases )
- [Commits](https://github.com/dtolnay/async-trait/compare/0.1.82...0.1.83 )
Updates `octocrab` from 0.39.0 to 0.40.0
- [Release notes](https://github.com/XAMPPRocky/octocrab/releases )
- [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md )
- [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.39.0...v0.40.0 )
Updates `thiserror` from 1.0.63 to 1.0.64
- [Release notes](https://github.com/dtolnay/thiserror/releases )
- [Commits](https://github.com/dtolnay/thiserror/compare/1.0.63...1.0.64 )
Updates `rstest` from 0.22.0 to 0.23.0
- [Release notes](https://github.com/la10736/rstest/releases )
- [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md )
- [Commits](https://github.com/la10736/rstest/compare/v0.22.0...v0.23.0 )
---
updated-dependencies:
- dependency-name: clap
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: regex
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: dependencies
- dependency-name: secrecy
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: dependencies
- dependency-name: tempfile
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: dependencies
- dependency-name: async-trait
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: octocrab
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: dependencies
- dependency-name: thiserror
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: rstest
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: dependencies
...
Signed-off-by: dependabot[bot] <support@github.com>
* Refactor personal token cloning in ClientBuilder
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Matthias <matthias@endler.dev>
2024-10-01 13:10:00 +02:00
Sebastiaan Speck
029fa36321
README: add tldr-pages as user ( #1508 )
2024-09-28 14:46:10 +02:00
Thomas Zahner
99148af84a
Disable pedantic clippy lint
2024-09-22 19:09:35 +02:00
Thomas Zahner
462033a294
Test ignored files
2024-09-22 19:09:35 +02:00
Thomas Zahner
0e9b6532d2
Test hidden files
2024-09-22 19:09:35 +02:00
Thomas Zahner
f590894597
Update example
2024-09-22 19:09:35 +02:00
Thomas Zahner
6075b4c87e
Skip ignored and hidden files by default
2024-09-22 19:09:35 +02:00
Thomas Zahner
cf1420817f
Remove is_symlink check, because it's mutually exclusive to is_file
2024-09-22 19:09:35 +02:00
Thomas Zahner
5f7b3c42ea
Handle path exclusions when walking directories
2024-09-22 19:09:35 +02:00
Thomas Zahner
ee25adbed1
Update README.md test to trim whitespaced lines & update README.md
2024-09-22 19:09:35 +02:00
Thomas Zahner
bd187ba0d9
Update tests
2024-09-22 19:09:35 +02:00
Thomas Zahner
6444e27a84
Make gitignored files configurable and disable by default
2024-09-22 19:09:35 +02:00
Thomas Zahner
41c1b971c7
Replace jwalk with ignore
2024-09-22 19:09:35 +02:00
dependabot[bot]
8a6faadf80
Bump the dependencies group across 1 directory with 13 updates ( #1502 )
...
Bumps the dependencies group with 13 updates in the / directory:
| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow ) | `1.0.86` | `1.0.89` |
| [clap](https://github.com/clap-rs/clap ) | `4.5.16` | `4.5.17` |
| [const_format](https://github.com/rodrimati1992/const_format_crates ) | `0.2.32` | `0.2.33` |
| [dashmap](https://github.com/xacrimon/dashmap ) | `6.0.1` | `6.1.0` |
| [once_cell](https://github.com/matklad/once_cell ) | `1.19.0` | `1.20.0` |
| [serde](https://github.com/serde-rs/serde ) | `1.0.209` | `1.0.210` |
| [serde_json](https://github.com/serde-rs/json ) | `1.0.127` | `1.0.128` |
| [supports-color](https://github.com/zkat/supports-color ) | `3.0.0` | `3.0.1` |
| [tokio-stream](https://github.com/tokio-rs/tokio ) | `0.1.15` | `0.1.16` |
| [pretty_assertions](https://github.com/rust-pretty-assertions/rust-pretty-assertions ) | `1.4.0` | `1.4.1` |
| [wiremock](https://github.com/LukeMathWalker/wiremock-rs ) | `0.6.1` | `0.6.2` |
| [html5ever](https://github.com/servo/html5ever ) | `0.28.0` | `0.29.0` |
| [pulldown-cmark](https://github.com/raphlinus/pulldown-cmark ) | `0.12.0` | `0.12.1` |
Updates `anyhow` from 1.0.86 to 1.0.89
- [Release notes](https://github.com/dtolnay/anyhow/releases )
- [Commits](https://github.com/dtolnay/anyhow/compare/1.0.86...1.0.89 )
Updates `clap` from 4.5.16 to 4.5.17
- [Release notes](https://github.com/clap-rs/clap/releases )
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md )
- [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.16...clap_complete-v4.5.17 )
Updates `const_format` from 0.2.32 to 0.2.33
- [Release notes](https://github.com/rodrimati1992/const_format_crates/releases )
- [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md )
- [Commits](https://github.com/rodrimati1992/const_format_crates/commits )
Updates `dashmap` from 6.0.1 to 6.1.0
- [Release notes](https://github.com/xacrimon/dashmap/releases )
- [Commits](https://github.com/xacrimon/dashmap/compare/v6.0.1...v6.1.0 )
Updates `once_cell` from 1.19.0 to 1.20.0
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md )
- [Commits](https://github.com/matklad/once_cell/compare/v1.19.0...v1.20.0 )
Updates `serde` from 1.0.209 to 1.0.210
- [Release notes](https://github.com/serde-rs/serde/releases )
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.209...v1.0.210 )
Updates `serde_json` from 1.0.127 to 1.0.128
- [Release notes](https://github.com/serde-rs/json/releases )
- [Commits](https://github.com/serde-rs/json/compare/1.0.127...1.0.128 )
Updates `supports-color` from 3.0.0 to 3.0.1
- [Release notes](https://github.com/zkat/supports-color/releases )
- [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md )
- [Commits](https://github.com/zkat/supports-color/compare/v3.0.0...v3.0.1 )
Updates `tokio-stream` from 0.1.15 to 0.1.16
- [Release notes](https://github.com/tokio-rs/tokio/releases )
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-stream-0.1.15...tokio-stream-0.1.16 )
Updates `pretty_assertions` from 1.4.0 to 1.4.1
- [Release notes](https://github.com/rust-pretty-assertions/rust-pretty-assertions/releases )
- [Changelog](https://github.com/rust-pretty-assertions/rust-pretty-assertions/blob/main/CHANGELOG.md )
- [Commits](https://github.com/rust-pretty-assertions/rust-pretty-assertions/compare/v1.4.0...v1.4.1 )
Updates `wiremock` from 0.6.1 to 0.6.2
- [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md )
- [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.6.1...v0.6.2 )
Updates `html5ever` from 0.28.0 to 0.29.0
- [Commits](https://github.com/servo/html5ever/commits )
Updates `pulldown-cmark` from 0.12.0 to 0.12.1
- [Release notes](https://github.com/raphlinus/pulldown-cmark/releases )
- [Commits](https://github.com/raphlinus/pulldown-cmark/compare/v0.12.0...v0.12.1 )
---
updated-dependencies:
- dependency-name: anyhow
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: clap
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: const_format
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: dashmap
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: dependencies
- dependency-name: once_cell
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: dependencies
- dependency-name: serde
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: serde_json
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: supports-color
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: tokio-stream
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: pretty_assertions
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: wiremock
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: html5ever
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: dependencies
- dependency-name: pulldown-cmark
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-09-16 19:28:24 +02:00
Thomas Zahner
7fcf66c492
Extend compact format ( #1497 )
...
* Show unknowns and timeouts in compact format
* Clippy: make functions const
2024-09-09 18:33:18 +02:00
dependabot[bot]
53d234d18e
Bump the dependencies group with 2 updates ( #1494 )
...
Bumps the dependencies group with 2 updates: [tokio](https://github.com/tokio-rs/tokio ) and [async-trait](https://github.com/dtolnay/async-trait ).
Updates `tokio` from 1.39.3 to 1.40.0
- [Release notes](https://github.com/tokio-rs/tokio/releases )
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.39.3...tokio-1.40.0 )
Updates `async-trait` from 0.1.81 to 0.1.82
- [Release notes](https://github.com/dtolnay/async-trait/releases )
- [Commits](https://github.com/dtolnay/async-trait/compare/0.1.81...0.1.82 )
---
updated-dependencies:
- dependency-name: tokio
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: dependencies
- dependency-name: async-trait
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-09-04 17:32:20 +02:00
Nicolas Kosinski
1c6be80510
chore(docs): mention MacPorts install in README.md ( #1491 )
2024-08-30 12:59:22 +02:00
dependabot[bot]
9e1a99a936
Bump the dependencies group with 4 updates ( #1490 )
...
* Bump the dependencies group with 4 updates
Bumps the dependencies group with 4 updates: [reqwest](https://github.com/seanmonstar/reqwest ), [serde](https://github.com/serde-rs/serde ), [serde_json](https://github.com/serde-rs/json ) and [typed-builder](https://github.com/idanarye/rust-typed-builder ).
Updates `reqwest` from 0.12.5 to 0.12.7
- [Release notes](https://github.com/seanmonstar/reqwest/releases )
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md )
- [Commits](https://github.com/seanmonstar/reqwest/compare/v0.12.5...v0.12.7 )
Updates `serde` from 1.0.208 to 1.0.209
- [Release notes](https://github.com/serde-rs/serde/releases )
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.208...v1.0.209 )
Updates `serde_json` from 1.0.125 to 1.0.127
- [Release notes](https://github.com/serde-rs/json/releases )
- [Commits](https://github.com/serde-rs/json/compare/1.0.125...1.0.127 )
Updates `typed-builder` from 0.19.1 to 0.20.0
- [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md )
- [Commits](https://github.com/idanarye/rust-typed-builder/commits )
---
updated-dependencies:
- dependency-name: reqwest
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: serde
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: serde_json
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: typed-builder
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: dependencies
...
Signed-off-by: dependabot[bot] <support@github.com>
* skip flaky test
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Matthias <matthias@endler.dev>
2024-08-27 11:43:39 +02:00
Matthias Endler
3a42f2e1ce
Mention Chocolatey
2024-08-21 20:59:39 +02:00
dependabot[bot]
1b1070a667
Bump the dependencies group with 5 updates ( #1488 )
...
Bumps the dependencies group with 5 updates:
| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap ) | `4.5.15` | `4.5.16` |
| [serde](https://github.com/serde-rs/serde ) | `1.0.206` | `1.0.208` |
| [serde_json](https://github.com/serde-rs/json ) | `1.0.124` | `1.0.125` |
| [tokio](https://github.com/tokio-rs/tokio ) | `1.39.2` | `1.39.3` |
| [pulldown-cmark](https://github.com/raphlinus/pulldown-cmark ) | `0.11.0` | `0.12.0` |
Updates `clap` from 4.5.15 to 4.5.16
- [Release notes](https://github.com/clap-rs/clap/releases )
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md )
- [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.15...clap_complete-v4.5.16 )
Updates `serde` from 1.0.206 to 1.0.208
- [Release notes](https://github.com/serde-rs/serde/releases )
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.206...v1.0.208 )
Updates `serde_json` from 1.0.124 to 1.0.125
- [Release notes](https://github.com/serde-rs/json/releases )
- [Commits](https://github.com/serde-rs/json/compare/v1.0.124...1.0.125 )
Updates `tokio` from 1.39.2 to 1.39.3
- [Release notes](https://github.com/tokio-rs/tokio/releases )
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.39.2...tokio-1.39.3 )
Updates `pulldown-cmark` from 0.11.0 to 0.12.0
- [Release notes](https://github.com/raphlinus/pulldown-cmark/releases )
- [Commits](https://github.com/raphlinus/pulldown-cmark/compare/v0.11.0...v0.12.0 )
---
updated-dependencies:
- dependency-name: clap
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: serde
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: serde_json
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: tokio
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: pulldown-cmark
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: dependencies
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-08-19 17:10:29 +02:00