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 4 updates #1421

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the dependencies group with 4 updates in the / directory: serde, cached, pulldown-cmark and serde_with.

Updates serde from 1.0.198 to 1.0.200

Release notes

Sourced from serde's releases.

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
  • 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!
  • f6623a3 Ignore cast_precision_loss pedantic clippy lint
  • See full diff in compare view

Updates cached from 0.49.3 to 0.51.1

Changelog

Sourced from cached's changelog.

[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

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 dependencies group with 4 updates in the / directory: [serde](https://github.com/serde-rs/serde), [cached](https://github.com/jaemk/cached), [pulldown-cmark](https://github.com/raphlinus/pulldown-cmark) and [serde_with](https://github.com/jonasbb/serde_with).


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

Updates `cached` from 0.49.3 to 0.51.1
- [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)

---
updated-dependencies:
- dependency-name: serde
  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
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels May 6, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github May 13, 2024

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

@dependabot dependabot bot closed this May 13, 2024
@dependabot dependabot bot deleted the dependabot/cargo/dependencies-24edd17c30 branch May 13, 2024 13:02
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

0 participants