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 dependencies group across 1 directory with 7 updates #1426

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 13, 2024

Bumps the dependencies group with 7 updates in the / directory:

Package From To
anyhow 1.0.82 1.0.83
serde 1.0.198 1.0.201
serde_json 1.0.116 1.0.117
cached 0.49.3 0.51.3
pulldown-cmark 0.9.6 0.10.3
serde_with 3.8.0 3.8.1
thiserror 1.0.59 1.0.60

Updates anyhow from 1.0.82 to 1.0.83

Release notes

Sourced from anyhow's releases.

1.0.83

  • Integrate compile-time checking of cfgs (#363)
Commits
  • 96f0392 Release 1.0.83
  • 17bbd1e Merge pull request #363 from dtolnay/checkcfg
  • 3ab3c3b Resolve unexpected_cfgs warning
  • 8e62244 Discard CI coverage of backtrace feature on toolchains older than 1.63
  • e77374f Mirror PR 343 changes from readme to rustdoc
  • cb47d7c Reword no-std documentation change from PR 343
  • 6b5bdb1 Wrap PR 343 to 80 columns
  • f01080b Merge pull request #343 from Arthur-Milchior/readme1
  • See full diff in compare view

Updates serde from 1.0.198 to 1.0.201

Release notes

Sourced from serde's releases.

v1.0.201

  • Resolve unexpected_cfgs warning (#2737)

v1.0.200

  • Fix formatting of "invalid type" and "invalid value" deserialization error messages containing NaN or infinite floats (#2733, thanks @​jamessan)

v1.0.199

  • Fix ambiguous associated item when forward_to_deserialize_any! is used on an enum with Error variant (#2732, thanks @​aatifsyed)
Commits
  • b4f1bc1 Release 1.0.201
  • 029ab46 Merge pull request #2737 from dtolnay/checkcfg
  • 220ca0c Resolve unexpected_cfgs warning
  • 20306f4 Fix cfg on test_systemtime_overflow
  • cc865ac Release 1.0.200
  • 2d973c1 Merge pull request #2733 from jamessan/nan-decimal
  • 6ca499b Only format Unexpected::Float with decimal point if it is finite
  • 1477028 Release 1.0.199
  • 789740b Merge pull request #2732 from aatifsyed/master
  • 8fe7539 fix: ambiguous associated type in forward_to_deserialize_any!
  • Additional commits viewable in compare view

Updates serde_json from 1.0.116 to 1.0.117

Release notes

Sourced from serde_json's releases.

v1.0.117

  • Resolve unexpected_cfgs warning (#1130)
Commits

Updates cached from 0.49.3 to 0.51.3

Changelog

Sourced from cached's changelog.

[0.51.3]

Added

  • ExpiringSizedCache: Allow specifying explicit TTL when inserting

Changed

  • Refactor ExpiringSizedCache internals to not require tombstones
  • ExpiringSizedCache keys must impl Ord
  • ExpiringSizedCache remove and insert updated to return only unexpired values

Removed

[0.51.2]

Added

  • Add get_borrowed methods to ExpiringSizedCache to support cache retrieval using &str / &[T] when the key types are String / Vec<T>. This is a workaround for issues implementing Borrow for a generic wrapper type.

Changed

Removed

[0.51.1]

Added

  • Update documentation and add missing methods to ExpiringSizedCache (clear, configuration methods)

Changed

  • ExpiringSizedCache: When allocating using with_capacity, allocate enough space to account for the default max number of tombstone entries

Removed

[0.51.0]

Added

  • Add ExpiringSizedCache intended for high read scenarios. Currently incompatible with the cached trait and macros.

Changed

Removed

[0.50.0 / [cached_proc_macro[0.21.0]] ]

Added

  • Add DiskCacheBuilder::set_sync_to_disk_on_cache_change to specify that the cache changes should be written to disk on every cache change.
  • Add sync_to_disk_on_cache_change to #[io_cached] to allow setting DiskCacheBuilder::set_sync_to_disk_on_cache_change from the proc macro.
  • Add DiskCacheBuilder::set_connection_config to give more control over the sled connection.
  • Add connection_config to #[io_cached] to allow setting DiskCacheBuilder::set_connection_config from the proc macro.
  • Add DiskCache::connection() and DiskCache::connection_mut() to give access to the underlying sled connection.
  • Add cache_unset_lifespan to cached traits for un-setting expiration on types that support it

Changed

  • [Breaking] type attribute is now ty
  • Upgrade to syn2
  • Corrected a typo in DiskCacheError (de)serialization variants
  • Signature or DiskCache::remove_expired_entries: this now returns Result<(), DiskCacheError> instead of (), returning an Err(sled::Error) on removing and flushing from the connection.

Removed

Commits

Updates pulldown-cmark from 0.9.6 to 0.10.3

Release notes

Sourced from pulldown-cmark's releases.

v0.10.3

The main change of this release is the simd feature was not being used in the escape functions since the version 0.10 due to a mistake during the separation of the crate pulldown-cmark-escape.

The crate pulldown-cmark-escape has been updated to the version 0.10.1.

What's Changed

Full Changelog: pulldown-cmark/pulldown-cmark@v0.10.2...v0.10.3

v0.10.2

New release with some fixes and improvements. Note the 0.10.1 is missing (yanked from crates.io) due to a conflict with the clap version and the Rust minimum version (1.74 now instead of 1.70).

Thanks to all people that contributed to this release!

What's Changed

New Contributors

Full Changelog: pulldown-cmark/pulldown-cmark@v0.10.0...v0.10.2

v0.10.0

This is a huge release after a a long time without a major release, with many bugfixes and several new features. Thanks to all people involved!

Breaking Changes

... (truncated)

Commits
  • 1cfaf02 fix: simd was not be using after the new crate pulldown-cmark-escape
  • eac0027 Merge pull request #879 from notriddle/notriddle/rule-emph
  • d26e07f Mark Rule as a block item
  • 6165d35 Merge pull request #877 from notriddle/link-title-break
  • e589720 Eat all spaces after line break in link title
  • 912405c Merge pull request #876 from rhysd/warn-unused-field
  • ac06693 fix: fix dead code warning from nightly compiler
  • 8c77390 chore: upgrade Rust minimum version to 1.74
  • 7e0e90c chore: update Cargo.lock
  • 17ccf97 chore: bump version
  • Additional commits viewable in compare view

Updates serde_with from 3.8.0 to 3.8.1

Release notes

Sourced from serde_with's releases.

serde_with v3.8.1

Fixed

  • Do not emit schemars(deserialize_with = "...") annotations, as schemars does not support them (#735) Thanks to @​sivizius for reporting the issue.
Commits

Updates thiserror from 1.0.59 to 1.0.60

Release notes

Sourced from thiserror's releases.

1.0.60

  • Resolve unexpected_cfgs warning (#298)
Commits

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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels May 13, 2024
@mre
Copy link
Member

mre commented May 13, 2024

@dependabot rebase

Bumps the dependencies group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.82` | `1.0.83` |
| [serde](https://github.com/serde-rs/serde) | `1.0.198` | `1.0.201` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.116` | `1.0.117` |
| [cached](https://github.com/jaemk/cached) | `0.49.3` | `0.51.3` |
| [pulldown-cmark](https://github.com/raphlinus/pulldown-cmark) | `0.9.6` | `0.10.3` |
| [serde_with](https://github.com/jonasbb/serde_with) | `3.8.0` | `3.8.1` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.59` | `1.0.60` |



Updates `anyhow` from 1.0.82 to 1.0.83
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.82...1.0.83)

Updates `serde` from 1.0.198 to 1.0.201
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.198...v1.0.201)

Updates `serde_json` from 1.0.116 to 1.0.117
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.116...v1.0.117)

Updates `cached` from 0.49.3 to 0.51.3
- [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md)
- [Commits](https://github.com/jaemk/cached/commits)

Updates `pulldown-cmark` from 0.9.6 to 0.10.3
- [Release notes](https://github.com/raphlinus/pulldown-cmark/releases)
- [Commits](pulldown-cmark/pulldown-cmark@v0.9.6...v0.10.3)

Updates `serde_with` from 3.8.0 to 3.8.1
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](jonasbb/serde_with@v3.8.0...v3.8.1)

Updates `thiserror` from 1.0.59 to 1.0.60
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.59...1.0.60)

---
updated-dependencies:
- dependency-name: anyhow
  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: cached
  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-minor
  dependency-group: dependencies
- dependency-name: serde_with
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/cargo/dependencies-b8263a0d93 branch from 8d84cef to 7f47c55 Compare May 13, 2024 17:16
Copy link
Contributor Author

dependabot bot commented on behalf of github May 20, 2024

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

@dependabot dependabot bot closed this May 20, 2024
@dependabot dependabot bot deleted the dependabot/cargo/dependencies-b8263a0d93 branch May 20, 2024 13:00
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.

None yet

1 participant