dependabot[bot]
33f3a67020
chore(deps): update dtolnay/rust-toolchain requirement to 631a55b12751854ce901bb631d5902ceb48146f7
...
Updates the requirements on [dtolnay/rust-toolchain](https://github.com/dtolnay/rust-toolchain ) to permit the latest version.
- [Release notes](https://github.com/dtolnay/rust-toolchain/releases )
- [Commits](631a55b127 )
---
updated-dependencies:
- dependency-name: dtolnay/rust-toolchain
dependency-version: 631a55b12751854ce901bb631d5902ceb48146f7
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-17 13:29:15 +01:00
dependabot[bot]
538afaf252
chore(deps): bump actions/checkout from 6.0.0 to 6.0.2
...
Bumps [actions/checkout](https://github.com/actions/checkout ) from 6.0.0 to 6.0.2.
- [Release notes](https://github.com/actions/checkout/releases )
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/checkout/compare/v6...de0fac2e4500dabe0009e67214ff5f5447ce83dd )
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 6.0.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-17 10:52:30 +01:00
dependabot[bot]
6a408d673f
chore(deps): bump bnjbvr/cargo-machete
...
Bumps [bnjbvr/cargo-machete](https://github.com/bnjbvr/cargo-machete ) from 8a8e0cd1046f54206f6d2e050cf028e6db9dbc75 to 2e2703d664c176156a22936b9203c38cc7a273dd.
- [Release notes](https://github.com/bnjbvr/cargo-machete/releases )
- [Changelog](https://github.com/bnjbvr/cargo-machete/blob/main/CHANGELOG.md )
- [Commits](8a8e0cd104...2e2703d664 )
---
updated-dependencies:
- dependency-name: bnjbvr/cargo-machete
dependency-version: 2e2703d664c176156a22936b9203c38cc7a273dd
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-17 10:48:41 +01:00
dependabot[bot]
8a6f822993
chore(deps): bump codecov/test-results-action from 1.1.1 to 1.2.1
...
Bumps [codecov/test-results-action](https://github.com/codecov/test-results-action ) from 1.1.1 to 1.2.1.
- [Release notes](https://github.com/codecov/test-results-action/releases )
- [Commits](https://github.com/codecov/test-results-action/compare/v1.1.1...0fa95f0e1eeaafde2c782583b36b28ad0d8c77d3 )
---
updated-dependencies:
- dependency-name: codecov/test-results-action
dependency-version: 1.2.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-17 10:43:36 +01:00
Damir Jelić
aa669585b4
ci: Pin our github actions to commit hashes
2026-03-17 10:24:44 +01:00
mgoldenberg
b65e450813
Support TLS v1.3 on all platforms ( #6053 )
...
**Note:** _this pull request has a companion pull request in the
[`complement-crypto`](https://github.com/matrix-org/complement-crypto/pull/229 )
repository, which must be merged in conjunction with this one._
_Before merging, this should be tested in conjunction with the Element X
iOS client to ensure that TLS v1.3 is working properly._ @stefanceriu
has agreed to work on this.
## Overview
The primary change in this pull request upgrades the `reqwest`
dependency to its latest version, which defaults to using `rustls` with
support for `rustls-platform-verifier` instead of `native-tls` (see
[`reqwest@0.13 .0`](https://github.com/seanmonstar/reqwest/releases/tag/v0.13.0 )).
The benefit here is that `rustls` supports TLS v1.3 on all platforms,
whereas [`native-tls` does
not](https://github.com/sfackler/rust-native-tls/pull/278 ).
Additionally, this pull request makes `rustls` the default TLS
implementation in all the crates in this repository.
This will be particularly helpful with element-hq/element-x-ios#786 .
## Changes
- `reqwest` bumped to `0.13.1`
- The API for adding/replacing certificates has changed a bit, so this
required some updating in `HttpSettings::make_client`
- `oauth2-reqwest` added in favor of `oauth2/reqwest`
- This is required in order to be compatible with `reqwest^0.13`
- _**`oauth2-reqwest` is currently in alpha release, so it probably
makes sense to let this stabilize a bit.**_ For details, see
https://github.com/ramosbugs/oauth2-rs/issues/333#issuecomment-3906712203 .
- `getrandom` bumped to `0.3.4`
- This is required in order to be compatible with `oauth2@5.1.0`
- `proptest` bumped to `1.9.0`
- This is required in order to be compatible with `getrandom@0.3.4`
- Make `rustls` the default TLS implementation
## Questions
### Mirror feature flag names?
A number of feature flags have been replaced in the dependencies above.
1. _**`reqwest/rustls-tls` => `reqwest/rustls`**_ - this is simply a
name change, but is semantically identical (see
[`reqwest@0.13 .0`](https://github.com/seanmonstar/reqwest/releases/tag/v0.13.0 )).
2. _**`getrandom/js` => `getrandom/wasm_js`**_ - the semantics here have
changed slightly, but it seems to just make it easier to enable the
`wasm_js` backend (see
[`getrandom@0.3.4`](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md#major-change-to-wasm_js-backend )).
At any rate, I have updated references to these flags in each of the
various `Cargo.toml` files, but have not changed the names of our
exposed features to mimic those in the dependencies.
Any thoughts or preferences on whether to mirror those names? That
would, of course, result in a breaking change.
### Default to using `rustls`? Deprecate `native-tls`?
Now that the dependencies have all been bumped, we can use `rustls` on
all platforms. Should this be the new default given that `native-tls`
will very likely never support TLS v1.3 on Apple devices? And should
`native-tls` be deprecated as a result?
**UPDATE:** _The consensus here seems to be that we should default to
using `rustls`, but that `native-tls` should still be available._
---
Fixes #5800 .
- [ ] Public API changes documented in changelogs (optional)
Signed-off-by: Michael Goldenberg <m@mgoldenberg.net >
---------
Signed-off-by: Michael Goldenberg <m@mgoldenberg.net >
2026-03-10 13:38:18 +01:00
dependabot[bot]
cee74d4965
chore(deps): bump bnjbvr/cargo-machete
...
Bumps [bnjbvr/cargo-machete](https://github.com/bnjbvr/cargo-machete ) from 6456c7b34a8c1245e0c186ac50c56666ccbd44f1 to 8a8e0cd1046f54206f6d2e050cf028e6db9dbc75.
- [Release notes](https://github.com/bnjbvr/cargo-machete/releases )
- [Changelog](https://github.com/bnjbvr/cargo-machete/blob/main/CHANGELOG.md )
- [Commits](6456c7b34a...8a8e0cd104 )
---
updated-dependencies:
- dependency-name: bnjbvr/cargo-machete
dependency-version: 8a8e0cd1046f54206f6d2e050cf028e6db9dbc75
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-10 10:41:01 +01:00
dependabot[bot]
a845bdf26a
chore(deps): bump CodSpeedHQ/action from 4.11.0 to 4.11.1
...
Bumps [CodSpeedHQ/action](https://github.com/codspeedhq/action ) from 4.11.0 to 4.11.1.
- [Release notes](https://github.com/codspeedhq/action/releases )
- [Changelog](https://github.com/CodSpeedHQ/action/blob/main/CHANGELOG.md )
- [Commits](2ac5728517...281164b0f0 )
---
updated-dependencies:
- dependency-name: CodSpeedHQ/action
dependency-version: 4.11.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-10 11:25:57 +02:00
dependabot[bot]
40ff661358
chore(deps): bump tj-actions/changed-files from 47.0.4 to 47.0.5
...
Bumps [tj-actions/changed-files](https://github.com/tj-actions/changed-files ) from 47.0.4 to 47.0.5.
- [Release notes](https://github.com/tj-actions/changed-files/releases )
- [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md )
- [Commits](https://github.com/tj-actions/changed-files/compare/v47.0.4...v47.0.5 )
---
updated-dependencies:
- dependency-name: tj-actions/changed-files
dependency-version: 47.0.5
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-09 17:29:19 +01:00
dependabot[bot]
617c646a52
chore(deps): bump actions/upload-artifact from 6 to 7
...
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact ) from 6 to 7.
- [Release notes](https://github.com/actions/upload-artifact/releases )
- [Commits](https://github.com/actions/upload-artifact/compare/v6...v7 )
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-version: '7'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-03 10:06:34 +01:00
dependabot[bot]
29b506f301
chore(deps): bump crate-ci/typos from 1.43.5 to 1.44.0
...
Bumps [crate-ci/typos](https://github.com/crate-ci/typos ) from 1.43.5 to 1.44.0.
- [Release notes](https://github.com/crate-ci/typos/releases )
- [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md )
- [Commits](https://github.com/crate-ci/typos/compare/v1.43.5...v1.44.0 )
---
updated-dependencies:
- dependency-name: crate-ci/typos
dependency-version: 1.44.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-02 17:28:52 +01:00
dependabot[bot]
cf84f2ff18
chore(deps): bump bnjbvr/cargo-machete
...
Bumps [bnjbvr/cargo-machete](https://github.com/bnjbvr/cargo-machete ) from 3026399e8ccbe119a9624e9376afc8c5f21fb60f to 6456c7b34a8c1245e0c186ac50c56666ccbd44f1.
- [Release notes](https://github.com/bnjbvr/cargo-machete/releases )
- [Changelog](https://github.com/bnjbvr/cargo-machete/blob/main/CHANGELOG.md )
- [Commits](3026399e8c...6456c7b34a )
---
updated-dependencies:
- dependency-name: bnjbvr/cargo-machete
dependency-version: 6456c7b34a8c1245e0c186ac50c56666ccbd44f1
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-02 16:28:27 +00:00
Damir Jelić
39c0ee1f9b
ci: Enable the MSRV check for all of our crates
2026-02-27 17:40:08 +01:00
Damir Jelić
ae53b62762
chore: Bump the MSRV
2026-02-27 17:40:08 +01:00
Damir Jelić
a2881d5aca
ci: Update our benchmarks workflow
...
This switches to OICD for authentication as recommended by the docs:
https://codspeed.io/docs/integrations/ci/github-actions/configuration#oidc-recommended
Also switch to simulation mode as the instrumentation mode got renamed to
it.
2026-02-26 11:03:27 +01:00
dependabot[bot]
f796232220
chore(deps): bump tj-actions/changed-files from 47.0.2 to 47.0.4
...
Bumps [tj-actions/changed-files](https://github.com/tj-actions/changed-files ) from 47.0.2 to 47.0.4.
- [Release notes](https://github.com/tj-actions/changed-files/releases )
- [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md )
- [Commits](https://github.com/tj-actions/changed-files/compare/v47.0.2...v47.0.4 )
---
updated-dependencies:
- dependency-name: tj-actions/changed-files
dependency-version: 47.0.4
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-02-24 13:28:29 +01:00
dependabot[bot]
13d46e6aeb
chore(deps): bump CodSpeedHQ/action from 4.10.6 to 4.11.0
...
Bumps [CodSpeedHQ/action](https://github.com/codspeedhq/action ) from 4.10.6 to 4.11.0.
- [Release notes](https://github.com/codspeedhq/action/releases )
- [Changelog](https://github.com/CodSpeedHQ/action/blob/main/CHANGELOG.md )
- [Commits](4deb3275dd...2ac5728517 )
---
updated-dependencies:
- dependency-name: CodSpeedHQ/action
dependency-version: 4.11.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-02-24 13:27:56 +01:00
dependabot[bot]
9c6a3d6cf4
chore(deps): bump tj-actions/changed-files from 47.0.1 to 47.0.2
...
Bumps [tj-actions/changed-files](https://github.com/tj-actions/changed-files ) from 47.0.1 to 47.0.2.
- [Release notes](https://github.com/tj-actions/changed-files/releases )
- [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md )
- [Commits](https://github.com/tj-actions/changed-files/compare/v47.0.1...v47.0.2 )
---
updated-dependencies:
- dependency-name: tj-actions/changed-files
dependency-version: 47.0.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-02-16 16:56:12 +01:00
dependabot[bot]
86ae50d1bd
chore(deps): bump crate-ci/typos from 1.43.4 to 1.43.5
...
Bumps [crate-ci/typos](https://github.com/crate-ci/typos ) from 1.43.4 to 1.43.5.
- [Release notes](https://github.com/crate-ci/typos/releases )
- [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md )
- [Commits](https://github.com/crate-ci/typos/compare/v1.43.4...v1.43.5 )
---
updated-dependencies:
- dependency-name: crate-ci/typos
dependency-version: 1.43.5
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-02-16 16:56:03 +01:00
Benjamin Bouvier
3ac2339475
Revert "refactor: don't build the benchmarks by default either"
...
This reverts commit 66ea5d990d .
2026-02-12 15:16:41 +01:00
Benjamin Bouvier
9b4e60d075
fixup! refactor: don't build the benchmarks by default either
2026-02-12 14:36:45 +01:00
dependabot[bot]
1e0c930a12
chore(deps): bump bnjbvr/cargo-machete
...
Bumps [bnjbvr/cargo-machete](https://github.com/bnjbvr/cargo-machete ) from 78beac95c8fd7c25bdfb194415128523e41512d5 to 3026399e8ccbe119a9624e9376afc8c5f21fb60f.
- [Release notes](https://github.com/bnjbvr/cargo-machete/releases )
- [Changelog](https://github.com/bnjbvr/cargo-machete/blob/main/CHANGELOG.md )
- [Commits](78beac95c8...3026399e8c )
---
updated-dependencies:
- dependency-name: bnjbvr/cargo-machete
dependency-version: 3026399e8ccbe119a9624e9376afc8c5f21fb60f
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-02-10 15:50:41 +01:00
dependabot[bot]
b1d878ddc2
chore(deps): bump crate-ci/typos from 1.43.0 to 1.43.4
...
Bumps [crate-ci/typos](https://github.com/crate-ci/typos ) from 1.43.0 to 1.43.4.
- [Release notes](https://github.com/crate-ci/typos/releases )
- [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md )
- [Commits](https://github.com/crate-ci/typos/compare/v1.43.0...v1.43.4 )
---
updated-dependencies:
- dependency-name: crate-ci/typos
dependency-version: 1.43.4
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-02-10 13:37:59 +01:00
dependabot[bot]
ae36751c9d
chore(deps): bump CodSpeedHQ/action from 4.10.4 to 4.10.6
...
Bumps [CodSpeedHQ/action](https://github.com/codspeedhq/action ) from 4.10.4 to 4.10.6.
- [Release notes](https://github.com/codspeedhq/action/releases )
- [Changelog](https://github.com/CodSpeedHQ/action/blob/main/CHANGELOG.md )
- [Commits](fa0c9b1770...4deb3275dd )
---
updated-dependencies:
- dependency-name: CodSpeedHQ/action
dependency-version: 4.10.6
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-02-10 11:15:25 +01:00
dependabot[bot]
7c86e1b896
chore(deps): bump crate-ci/typos from 1.42.1 to 1.43.0
...
Bumps [crate-ci/typos](https://github.com/crate-ci/typos ) from 1.42.1 to 1.43.0.
- [Release notes](https://github.com/crate-ci/typos/releases )
- [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md )
- [Commits](https://github.com/crate-ci/typos/compare/v1.42.1...v1.43.0 )
---
updated-dependencies:
- dependency-name: crate-ci/typos
dependency-version: 1.43.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-02-02 18:36:01 +01:00
dependabot[bot]
06700cdf38
chore(deps): bump CodSpeedHQ/action from 4.8.2 to 4.10.4
...
Bumps [CodSpeedHQ/action](https://github.com/codspeedhq/action ) from 4.8.2 to 4.10.4.
- [Release notes](https://github.com/codspeedhq/action/releases )
- [Changelog](https://github.com/CodSpeedHQ/action/blob/main/CHANGELOG.md )
- [Commits](e736f0d2ae...fa0c9b1770 )
---
updated-dependencies:
- dependency-name: CodSpeedHQ/action
dependency-version: 4.10.4
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-02-02 18:17:41 +01:00
dependabot[bot]
fb0713275e
chore(deps): bump CodSpeedHQ/action from 4.7.0 to 4.8.2
...
Bumps [CodSpeedHQ/action](https://github.com/codspeedhq/action ) from 4.7.0 to 4.8.2.
- [Release notes](https://github.com/codspeedhq/action/releases )
- [Changelog](https://github.com/CodSpeedHQ/action/blob/main/CHANGELOG.md )
- [Commits](0700edb451...e736f0d2ae )
---
updated-dependencies:
- dependency-name: CodSpeedHQ/action
dependency-version: 4.8.2
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-01-27 08:52:17 +02:00
dependabot[bot]
b96b7bc71f
chore(deps): bump CodSpeedHQ/action from 4.5.2 to 4.7.0
...
Bumps [CodSpeedHQ/action](https://github.com/codspeedhq/action ) from 4.5.2 to 4.7.0.
- [Release notes](https://github.com/codspeedhq/action/releases )
- [Changelog](https://github.com/CodSpeedHQ/action/blob/main/CHANGELOG.md )
- [Commits](dbda7111f8...0700edb451 )
---
updated-dependencies:
- dependency-name: CodSpeedHQ/action
dependency-version: 4.7.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-01-20 11:15:48 +01:00
dependabot[bot]
3ff49becbe
chore(deps): bump crate-ci/typos from 1.42.0 to 1.42.1
...
Bumps [crate-ci/typos](https://github.com/crate-ci/typos ) from 1.42.0 to 1.42.1.
- [Release notes](https://github.com/crate-ci/typos/releases )
- [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md )
- [Commits](https://github.com/crate-ci/typos/compare/v1.42.0...v1.42.1 )
---
updated-dependencies:
- dependency-name: crate-ci/typos
dependency-version: 1.42.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-01-20 08:45:25 +01:00
dependabot[bot]
b68b6b95b0
chore(deps): bump qmaru/wasm-pack-action from 0.5.2 to 0.5.3
...
Bumps [qmaru/wasm-pack-action](https://github.com/qmaru/wasm-pack-action ) from 0.5.2 to 0.5.3.
- [Release notes](https://github.com/qmaru/wasm-pack-action/releases )
- [Commits](https://github.com/qmaru/wasm-pack-action/compare/v0.5.2...v0.5.3 )
---
updated-dependencies:
- dependency-name: qmaru/wasm-pack-action
dependency-version: 0.5.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-01-20 09:14:53 +02:00
dependabot[bot]
edc1aee471
chore(deps): bump bnjbvr/cargo-machete
...
Bumps [bnjbvr/cargo-machete](https://github.com/bnjbvr/cargo-machete ) from 6229aa757e3e8a028bd97a49e190207e108eefbd to 78beac95c8fd7c25bdfb194415128523e41512d5.
- [Release notes](https://github.com/bnjbvr/cargo-machete/releases )
- [Changelog](https://github.com/bnjbvr/cargo-machete/blob/main/CHANGELOG.md )
- [Commits](6229aa757e...78beac95c8 )
---
updated-dependencies:
- dependency-name: bnjbvr/cargo-machete
dependency-version: 78beac95c8fd7c25bdfb194415128523e41512d5
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-01-13 09:01:32 +01:00
dependabot[bot]
b1ca2bbbb5
chore(deps): bump crate-ci/typos from 1.40.0 to 1.41.0
...
Bumps [crate-ci/typos](https://github.com/crate-ci/typos ) from 1.40.0 to 1.41.0.
- [Release notes](https://github.com/crate-ci/typos/releases )
- [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md )
- [Commits](https://github.com/crate-ci/typos/compare/v1.40.0...v1.41.0 )
---
updated-dependencies:
- dependency-name: crate-ci/typos
dependency-version: 1.41.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-01-12 13:28:00 +00:00
dependabot[bot]
21cad56213
chore(deps): bump CodSpeedHQ/action from 4.4.1 to 4.5.2
...
Bumps [CodSpeedHQ/action](https://github.com/codspeedhq/action ) from 4.4.1 to 4.5.2.
- [Release notes](https://github.com/codspeedhq/action/releases )
- [Changelog](https://github.com/CodSpeedHQ/action/blob/main/CHANGELOG.md )
- [Commits](346a2d8a8d...dbda7111f8 )
---
updated-dependencies:
- dependency-name: CodSpeedHQ/action
dependency-version: 4.5.2
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-01-06 12:02:50 +01:00
dependabot[bot]
95dac018e3
chore(deps): bump actions/upload-artifact from 5 to 6
...
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact ) from 5 to 6.
- [Release notes](https://github.com/actions/upload-artifact/releases )
- [Commits](https://github.com/actions/upload-artifact/compare/v5...v6 )
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-version: '6'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-12-16 11:38:45 +01:00
dependabot[bot]
0e5077dab1
chore(deps): bump bnjbvr/cargo-machete
...
Bumps [bnjbvr/cargo-machete](https://github.com/bnjbvr/cargo-machete ) from 72602674bc341ca927683caddbf578672c352476 to 6229aa757e3e8a028bd97a49e190207e108eefbd.
- [Release notes](https://github.com/bnjbvr/cargo-machete/releases )
- [Changelog](https://github.com/bnjbvr/cargo-machete/blob/main/CHANGELOG.md )
- [Commits](72602674bc...6229aa757e )
---
updated-dependencies:
- dependency-name: bnjbvr/cargo-machete
dependency-version: 6229aa757e3e8a028bd97a49e190207e108eefbd
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-12-16 11:38:15 +01:00
dependabot[bot]
3b5b0f81c4
chore(deps): bump actions/cache from 4 to 5
...
Bumps [actions/cache](https://github.com/actions/cache ) from 4 to 5.
- [Release notes](https://github.com/actions/cache/releases )
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md )
- [Commits](https://github.com/actions/cache/compare/v4...v5 )
---
updated-dependencies:
- dependency-name: actions/cache
dependency-version: '5'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-12-16 09:17:45 +01:00
dependabot[bot]
a527439eae
chore(deps): bump tj-actions/changed-files from 47.0.0 to 47.0.1
...
Bumps [tj-actions/changed-files](https://github.com/tj-actions/changed-files ) from 47.0.0 to 47.0.1.
- [Release notes](https://github.com/tj-actions/changed-files/releases )
- [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md )
- [Commits](https://github.com/tj-actions/changed-files/compare/v47.0.0...v47.0.1 )
---
updated-dependencies:
- dependency-name: tj-actions/changed-files
dependency-version: 47.0.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-12-15 17:40:37 +02:00
dependabot[bot]
d6b942d3ac
chore(deps): bump crate-ci/typos from 1.39.2 to 1.40.0
...
Bumps [crate-ci/typos](https://github.com/crate-ci/typos ) from 1.39.2 to 1.40.0.
- [Release notes](https://github.com/crate-ci/typos/releases )
- [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md )
- [Commits](https://github.com/crate-ci/typos/compare/v1.39.2...v1.40.0 )
---
updated-dependencies:
- dependency-name: crate-ci/typos
dependency-version: 1.40.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-12-02 11:54:31 +01:00
dependabot[bot]
100a04ae2c
chore(deps): bump CodSpeedHQ/action from 4.3.3 to 4.4.1
...
Bumps [CodSpeedHQ/action](https://github.com/codspeedhq/action ) from 4.3.3 to 4.4.1.
- [Release notes](https://github.com/codspeedhq/action/releases )
- [Changelog](https://github.com/CodSpeedHQ/action/blob/main/CHANGELOG.md )
- [Commits](bb005fe1c1...346a2d8a8d )
---
updated-dependencies:
- dependency-name: CodSpeedHQ/action
dependency-version: 4.4.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-11-26 10:30:10 +01:00
dependabot[bot]
3a655083d6
chore(deps): bump bnjbvr/cargo-machete
...
Bumps [bnjbvr/cargo-machete](https://github.com/bnjbvr/cargo-machete ) from 04b9adbd8c1c00963289b5628510dd907b27dc60 to 10aef304cba9ef99dacee57a756c14892391cdca.
- [Release notes](https://github.com/bnjbvr/cargo-machete/releases )
- [Changelog](https://github.com/bnjbvr/cargo-machete/blob/main/CHANGELOG.md )
- [Commits](04b9adbd8c...10aef304cb )
---
updated-dependencies:
- dependency-name: bnjbvr/cargo-machete
dependency-version: 10aef304cba9ef99dacee57a756c14892391cdca
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-11-26 09:51:58 +01:00
dependabot[bot]
46947be662
chore(deps): bump crate-ci/typos from 1.39.0 to 1.39.2
...
Bumps [crate-ci/typos](https://github.com/crate-ci/typos ) from 1.39.0 to 1.39.2.
- [Release notes](https://github.com/crate-ci/typos/releases )
- [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md )
- [Commits](https://github.com/crate-ci/typos/compare/v1.39.0...v1.39.2 )
---
updated-dependencies:
- dependency-name: crate-ci/typos
dependency-version: 1.39.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-11-26 09:51:05 +01:00
Damir Jelić
ec44c74d53
ci: Generate and upload junit files for the integration tests
2025-11-25 11:22:55 +01:00
dependabot[bot]
7475f03b13
chore(deps): bump actions/checkout from 5 to 6
...
Bumps [actions/checkout](https://github.com/actions/checkout ) from 5 to 6.
- [Release notes](https://github.com/actions/checkout/releases )
- [Commits](https://github.com/actions/checkout/compare/v5...v6 )
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: '6'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-11-25 10:48:12 +01:00
Damir Jelić
75a977cc47
ci: Free up disk space for the benchmark jobs as well
2025-11-21 14:18:22 +01:00
dependabot[bot]
fff270d997
chore(deps): bump CodSpeedHQ/action from 4.3.1 to 4.3.3
...
Bumps [CodSpeedHQ/action](https://github.com/codspeedhq/action ) from 4.3.1 to 4.3.3.
- [Release notes](https://github.com/codspeedhq/action/releases )
- [Changelog](https://github.com/CodSpeedHQ/action/blob/main/CHANGELOG.md )
- [Commits](4348f634fa...bb005fe1c1 )
---
updated-dependencies:
- dependency-name: CodSpeedHQ/action
dependency-version: 4.3.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-11-11 09:19:04 +01:00
dependabot[bot]
10ff5d0cc6
chore(deps): bump bnjbvr/cargo-machete
...
Bumps [bnjbvr/cargo-machete](https://github.com/bnjbvr/cargo-machete ) from e7d460faa33cbba452e69e8b1700e6a75e8a72b8 to 04b9adbd8c1c00963289b5628510dd907b27dc60.
- [Release notes](https://github.com/bnjbvr/cargo-machete/releases )
- [Changelog](https://github.com/bnjbvr/cargo-machete/blob/main/CHANGELOG.md )
- [Commits](e7d460faa3...04b9adbd8c )
---
updated-dependencies:
- dependency-name: bnjbvr/cargo-machete
dependency-version: 04b9adbd8c1c00963289b5628510dd907b27dc60
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-11-10 18:26:12 +01:00
dependabot[bot]
ea07d0199a
chore(deps): bump crate-ci/typos from 1.38.1 to 1.39.0
...
Bumps [crate-ci/typos](https://github.com/crate-ci/typos ) from 1.38.1 to 1.39.0.
- [Release notes](https://github.com/crate-ci/typos/releases )
- [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md )
- [Commits](https://github.com/crate-ci/typos/compare/v1.38.1...v1.39.0 )
---
updated-dependencies:
- dependency-name: crate-ci/typos
dependency-version: 1.39.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-11-03 15:46:41 +01:00
dependabot[bot]
ddfd2fb570
chore(deps): bump bnjbvr/cargo-machete
...
Bumps [bnjbvr/cargo-machete](https://github.com/bnjbvr/cargo-machete ) from 53dce01c203a6a857c9544ebec630a370d596d65 to e7d460faa33cbba452e69e8b1700e6a75e8a72b8.
- [Release notes](https://github.com/bnjbvr/cargo-machete/releases )
- [Changelog](https://github.com/bnjbvr/cargo-machete/blob/main/CHANGELOG.md )
- [Commits](53dce01c20...e7d460faa3 )
---
updated-dependencies:
- dependency-name: bnjbvr/cargo-machete
dependency-version: e7d460faa33cbba452e69e8b1700e6a75e8a72b8
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-11-03 15:41:54 +01:00
dependabot[bot]
deda2ec75a
chore(deps): bump bnjbvr/cargo-machete
...
Bumps [bnjbvr/cargo-machete](https://github.com/bnjbvr/cargo-machete ) from 026132adc2b95c4f16b8c2943d14aedb731daadc to 53dce01c203a6a857c9544ebec630a370d596d65.
- [Release notes](https://github.com/bnjbvr/cargo-machete/releases )
- [Changelog](https://github.com/bnjbvr/cargo-machete/blob/main/CHANGELOG.md )
- [Commits](026132adc2...53dce01c20 )
---
updated-dependencies:
- dependency-name: bnjbvr/cargo-machete
dependency-version: 53dce01c203a6a857c9544ebec630a370d596d65
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-10-27 17:02:13 +01:00
dependabot[bot]
01a0e136dc
chore(deps): bump CodSpeedHQ/action from 4.2.1 to 4.3.1
...
Bumps [CodSpeedHQ/action](https://github.com/codspeedhq/action ) from 4.2.1 to 4.3.1.
- [Release notes](https://github.com/codspeedhq/action/releases )
- [Changelog](https://github.com/CodSpeedHQ/action/blob/main/CHANGELOG.md )
- [Commits](c6574d0c2a...4348f634fa )
---
updated-dependencies:
- dependency-name: CodSpeedHQ/action
dependency-version: 4.3.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-10-27 17:01:41 +01:00