Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the non-critical group with 9 updates #1226

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 25, 2024

Bumps the non-critical group with 9 updates:

Package From To
async-trait 0.1.78 0.1.79
indoc 2.0.4 2.0.5
rayon 1.9.0 1.10.0
redb 2.0.0-beta0 2.0.0
reqwest 0.11.26 0.11.27
smallvec 1.13.1 1.13.2
syn 2.0.53 2.0.55
toml 0.8.11 0.8.12
toml_edit 0.22.7 0.22.9

Updates async-trait from 0.1.78 to 0.1.79

Release notes

Sourced from async-trait's releases.

0.1.79

  • Clean up some dead code
Commits
  • 1eb21ed Release 0.1.79
  • 82cb95c Resolve unused field of ReplaceSelf syntax tree visitor
  • cd8286b Update ui test suite to nightly-2024-03-22
  • See full diff in compare view

Updates indoc from 2.0.4 to 2.0.5

Release notes

Sourced from indoc's releases.

2.0.5

Commits
  • 4bfa29f Release 2.0.5
  • 8d38299 Merge pull request #62 from ilyagr/docstring
  • 735ddcc Update docstring for indoc!
  • 60b5fa2 Remove 'remember to update' reminder from Cargo.toml
  • 15abc17 Test docs.rs documentation build in CI
  • See full diff in compare view

Updates rayon from 1.9.0 to 1.10.0

Changelog

Sourced from rayon's changelog.

Release rayon 1.10.0 (2024-03-23)

  • The new methods ParallelSlice::par_chunk_by and ParallelSliceMut::par_chunk_by_mut work like the slice methods chunk_by and chunk_by_mut added in Rust 1.77.
Commits

Updates redb from 2.0.0-beta0 to 2.0.0

Release notes

Sourced from redb's releases.

2.0.0

Major file format change

2.0.0 uses a new file format that optimizes len() to be constant time. This means that it is not backwards compatible with 1.x. To upgrade, consider using a pattern like that shown in the upgrade_v1_to_v2 test.

Other changes

  • check_integrity() now returns a DatabaseError instead of a StorageError
  • Table metadata methods have moved to a new ReadableTableMetadata trait
  • Rename RedbKey to Key
  • Rename RedbValue to Value
  • Remove lifetimes from read-only tables
  • Remove lifetime from WriteTransaction and ReadTransaction
  • Remove drain() and drain_filter() from Table. Use retain, retain_in, extract_if or extract_from_if instead
  • impl Clone for Range
  • Add support for [T;N] as a Value or Key as appropriate for the type T
  • Add len() and is_empty() to MultimapValue
  • Add retain() and retain_in() to Table
  • Add extract_if() and extract_from_if() to Table
  • Add range() returning a Range with the 'static lifetime to read-only tables
  • Add get() returning a range with the 'static lifetime to read-only tables
  • Add close() method to ReadTransaction
Changelog

Sourced from redb's changelog.

2.0.0 - 2024-03-22

Major file format change

2.0.0 uses a new file format that optimizes len() to be constant time. This means that it is not backwards compatible with 1.x. To upgrade, consider using a pattern like that shown in the upgrade_v1_to_v2 test.

Other changes

  • check_integrity() now returns a DatabaseError instead of a StorageError
  • Table metadata methods have moved to a new ReadableTableMetadata trait
  • Rename RedbKey to Key
  • Rename RedbValue to Value
  • Remove lifetimes from read-only tables
  • Remove lifetime from WriteTransaction and ReadTransaction
  • Remove drain() and drain_filter() from Table. Use retain, retain_in, extract_if or extract_from_if instead
  • impl Clone for Range
  • Add support for [T;N] as a Value or Key as appropriate for the type T
  • Add len() and is_empty() to MultimapValue
  • Add retain() and retain_in() to Table
  • Add extract_if() and extract_from_if() to Table
  • Add range() returning a Range with the 'static lifetime to read-only tables
  • Add get() returning a range with the 'static lifetime to read-only tables
  • Add close() method to ReadTransaction

1.5.1 - 2024-03-16

  • Fix check_integrity() so that it returns Ok(true) when no repairs were preformed. Previously, it returned Ok(false)

1.5.0 - 2024-01-15

  • Export TableStats type
  • Export MutInPlaceValue which allows custom types to support insert_reserve()
  • Add untyped table API which allows metadata, such as table stats, to be retrieved for at table without knowing its type at compile time
  • Fix compilation on uncommon platforms (those other than Unix and Windows)

1.4.0 - 2023-11-21

  • Add Builder::set_repair_callback() which can be used to set a callback function that will be invoked if the database needs repair while opening it.
  • Add support for custom storage backends. This is done by implementing the StorageBackend trait and using the Builder::create_with_backend function. This allows the database to be stored in a location other than the filesystem
  • Implement RedbKey and RedbValue for char
  • Implement RedbKey and RedbValue for bool
  • Implement TableHandle for Table
  • Implement MultimapTableHandle for MultimapTable
  • Fix panic that could occur when inserting a large number of fixed width values into a table within a single transaction
  • Fix panic when calling delete_table() on a table that is already open
  • Improve performance for fixed width types
  • Support additional platforms

1.3.0 - 2023-10-22

... (truncated)

Commits
  • d0dac97 Bump version to 2.0.0
  • 68058a8 Update changelog
  • 30d6cc9 Make ReadOnlyTable::get() return a 'static lifetime
  • 7377b3b Add len() benchmark
  • 5c398a5 Simplify lifetimes on extract_from_if()
  • 6bba3b7 Separate lifetimes on key and value to MultimapTable remove()
  • f4e9e09 Remove a bunch of superfluous lifetime bounds
  • c3fbcea Require V: 'static on AccessGuard
  • 9de5e15 Update changelog
  • e3da513 Replace TODOs with documentation
  • Additional commits viewable in compare view

Updates reqwest from 0.11.26 to 0.11.27

Release notes

Sourced from reqwest's releases.

v0.11.27

What's Changed

  • Add hickory-dns feature, deprecating trust-dns.
  • (wasm) Fix Form::text() to not set octet-stream for plain text fields.

New Contributors

Full Changelog: seanmonstar/reqwest@v0.11.26...v0.11.27

Changelog

Sourced from reqwest's changelog.

v0.11.27

  • Add hickory-dns feature, deprecating trust-dns.
  • (wasm) Fix Form::text() to not set octet-stream for plain text fields.
Commits
  • cf69fd4 v0.11.27
  • d0d2b47 docs: add note about sponsors/support
  • 2fe53c5 refactor: Migrate trust-dns to hickory-dns
  • 6904889 (wasm) fix: Form::text on wasm setting octet-stream mime type and file name. ...
  • See full diff in compare view

Updates smallvec from 1.13.1 to 1.13.2

Release notes

Sourced from smallvec's releases.

v1.13.2

What's Changed

Full Changelog: servo/rust-smallvec@v1.13.1...v1.13.2

Commits

Updates syn from 2.0.53 to 2.0.55

Release notes

Sourced from syn's releases.

2.0.55

  • Restore compatibility with rustc 1.56 through 1.59 (#1603)

2.0.54

  • Fix dead code warning in generated code when using custom_keyword! with syn's "printing" feature disabled (#1602)
Commits
  • d4c4811 Release 2.0.55
  • 21d9e5f Merge pull request #1603 from dtolnay/compat
  • 6e8a372 Restore compatibility with rustc 1.56 through 1.59
  • a5d02b1 Release 2.0.54
  • c218a35 Merge pull request #1602 from dtolnay/deadcode
  • 2ddfdc6 Suppress dead code lint on custom token's span field
  • e4f3216 Update test suite to nightly-2024-03-23
  • fa563a4 Merge pull request #1601 from dtolnay/vistest
  • cfb9bb4 Add test of unnamed tuple struct field with inherited visibility
  • 73c3087 Update test suite to nightly-2024-03-22
  • Additional commits viewable in compare view

Updates toml from 0.8.11 to 0.8.12

Commits
  • 3a777b3 chore: Release
  • 7979905 docs: Update changelog
  • 487768d Merge pull request #703 from epage/overflow
  • 6987f77 chore(ci): Run with default opt-level
  • 21f545d fix(parser): Don't stackoverflow on opt-level=0
  • af1f97d refactor(parser): Pull recursion limit out to variable
  • See full diff in compare view

Updates toml_edit from 0.22.7 to 0.22.9

Commits
  • bb92dc3 chore: Release
  • 85713ec docs: Update changelog
  • 2dc02c0 Merge pull request #704 from epage/span
  • ddb5bf0 feat(edit): Make it easier to access spans
  • 3a777b3 chore: Release
  • 7979905 docs: Update changelog
  • 487768d Merge pull request #703 from epage/overflow
  • 6987f77 chore(ci): Run with default opt-level
  • 21f545d fix(parser): Don't stackoverflow on opt-level=0
  • af1f97d refactor(parser): Pull recursion limit out to variable
  • See full diff in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the non-critical group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.78` | `0.1.79` |
| [indoc](https://github.com/dtolnay/indoc) | `2.0.4` | `2.0.5` |
| [rayon](https://github.com/rayon-rs/rayon) | `1.9.0` | `1.10.0` |
| [redb](https://github.com/cberner/redb) | `2.0.0-beta0` | `2.0.0` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.26` | `0.11.27` |
| [smallvec](https://github.com/servo/rust-smallvec) | `1.13.1` | `1.13.2` |
| [syn](https://github.com/dtolnay/syn) | `2.0.53` | `2.0.55` |
| [toml](https://github.com/toml-rs/toml) | `0.8.11` | `0.8.12` |
| [toml_edit](https://github.com/toml-rs/toml) | `0.22.7` | `0.22.9` |


Updates `async-trait` from 0.1.78 to 0.1.79
- [Release notes](https://github.com/dtolnay/async-trait/releases)
- [Commits](dtolnay/async-trait@0.1.78...0.1.79)

Updates `indoc` from 2.0.4 to 2.0.5
- [Release notes](https://github.com/dtolnay/indoc/releases)
- [Commits](dtolnay/indoc@2.0.4...2.0.5)

Updates `rayon` from 1.9.0 to 1.10.0
- [Changelog](https://github.com/rayon-rs/rayon/blob/main/RELEASES.md)
- [Commits](rayon-rs/rayon@rayon-core-v1.9.0...rayon-core-v1.10.0)

Updates `redb` from 2.0.0-beta0 to 2.0.0
- [Release notes](https://github.com/cberner/redb/releases)
- [Changelog](https://github.com/cberner/redb/blob/master/CHANGELOG.md)
- [Commits](cberner/redb@v2.0.0-beta0...v2.0.0)

Updates `reqwest` from 0.11.26 to 0.11.27
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.11.26...v0.11.27)

Updates `smallvec` from 1.13.1 to 1.13.2
- [Release notes](https://github.com/servo/rust-smallvec/releases)
- [Commits](servo/rust-smallvec@v1.13.1...v1.13.2)

Updates `syn` from 2.0.53 to 2.0.55
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.53...2.0.55)

Updates `toml` from 0.8.11 to 0.8.12
- [Commits](toml-rs/toml@toml-v0.8.11...toml-v0.8.12)

Updates `toml_edit` from 0.22.7 to 0.22.9
- [Commits](toml-rs/toml@v0.22.7...v0.22.9)

---
updated-dependencies:
- dependency-name: async-trait
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-critical
- dependency-name: indoc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-critical
- dependency-name: rayon
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-critical
- dependency-name: redb
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-critical
- dependency-name: reqwest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-critical
- dependency-name: smallvec
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-critical
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-critical
- dependency-name: toml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-critical
- dependency-name: toml_edit
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-critical
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from maciektr as a code owner March 25, 2024 10:30
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Mar 25, 2024
@maciektr
Copy link
Contributor

@dependabot rebase

@maciektr maciektr mentioned this pull request Mar 26, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 26, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Mar 26, 2024
@dependabot dependabot bot deleted the dependabot/cargo/non-critical-4d285f45b4 branch March 26, 2024 19:56
maciektr added a commit that referenced this pull request Mar 26, 2024
Replaces #1226
- **Bump the non-critical group with 9 updates**
- **Remove unused import**

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant