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 all-dependencies group with 19 updates #71

Merged
merged 1 commit into from
Apr 17, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 17, 2024

Bumps the all-dependencies group with 19 updates:

Package From To
file-service-discovery-adapter c8ef0dd 6b371ff
freyja c8ef0dd 6b371ff
freyja-common c8ef0dd 6b371ff
freyja-build-common c8ef0dd 6b371ff
grpc-cloud-adapter c8ef0dd 6b371ff
grpc-digital-twin-adapter c8ef0dd 6b371ff
grpc-service-discovery-adapter c8ef0dd 6b371ff
sample-grpc-data-adapter c8ef0dd 6b371ff
in-memory-mock-cloud-adapter c8ef0dd 6b371ff
in-memory-mock-digital-twin-adapter c8ef0dd 6b371ff
in-memory-mock-mapping-adapter c8ef0dd 6b371ff
in-memory-mock-data-adapter c8ef0dd 6b371ff
managed-subscribe-data-adapter c8ef0dd 6b371ff
mqtt-data-adapter c8ef0dd 6b371ff
proc-macros c8ef0dd 6b371ff
async-trait 0.1.79 0.1.80
serde 1.0.197 1.0.198
serde_json 1.0.115 1.0.116
time 0.3.34 0.3.36

Updates file-service-discovery-adapter from c8ef0dd to 6b371ff

Commits

Updates freyja from c8ef0dd to 6b371ff

Commits

Updates freyja-common from c8ef0dd to 6b371ff

Commits

Updates freyja-build-common from c8ef0dd to 6b371ff

Commits

Updates grpc-cloud-adapter from c8ef0dd to 6b371ff

Commits

Updates grpc-digital-twin-adapter from c8ef0dd to 6b371ff

Commits

Updates grpc-service-discovery-adapter from c8ef0dd to 6b371ff

Commits

Updates sample-grpc-data-adapter from c8ef0dd to 6b371ff

Commits

Updates in-memory-mock-cloud-adapter from c8ef0dd to 6b371ff

Commits

Updates in-memory-mock-digital-twin-adapter from c8ef0dd to 6b371ff

Commits

Updates in-memory-mock-mapping-adapter from c8ef0dd to 6b371ff

Commits

Updates in-memory-mock-data-adapter from c8ef0dd to 6b371ff

Commits

Updates managed-subscribe-data-adapter from c8ef0dd to 6b371ff

Commits

Updates mqtt-data-adapter from c8ef0dd to 6b371ff

Commits

Updates proc-macros from c8ef0dd to 6b371ff

Commits

Updates async-trait from 0.1.79 to 0.1.80

Release notes

Sourced from async-trait's releases.

0.1.80

  • Fix unreachable code warning for async functions that return ! (#265, thanks @​de-vri-es)
Commits
  • d528b5a Release 0.1.80
  • 10b5c99 Drop support for compilers older than 1.47
  • 83a5422 Drop support for compilers older than 1.45
  • 22d017e Build script no longer looks at $DOCS_RS
  • b64d041 Move never_type test under issue266
  • b683da8 Merge pull request #265 from de-vri-es/fix-unreachable-code-warning
  • c8d958d Fix unreachable code warning for functions that return !
  • 4f0b72e Explicitly install a Rust toolchain for cargo-outdated job
  • See full diff in compare view

Updates serde from 1.0.197 to 1.0.198

Release notes

Sourced from serde's releases.

v1.0.198

Commits
  • c4fb923 Release 1.0.198
  • 65b7eea Merge pull request #2729 from dtolnay/saturating
  • 01cd696 Integrate Saturating<T> deserialization into impl_deserialize_num macro
  • c13b3f7 Format PR 2709
  • a6571ee Merge pull request #2709 from jbethune/master
  • 6e38aff Revert "Temporarily disable miri on doctests"
  • 3d1b19e Implement Ser+De for Saturating\<T>
  • 5b24f88 Resolve legacy_numeric_constants clippy lints
  • 74d0670 Explicitly install a Rust toolchain for cargo-outdated job
  • 3bfab6e Temporarily disable miri on doctests
  • Additional commits viewable in compare view

Updates serde_json from 1.0.115 to 1.0.116

Release notes

Sourced from serde_json's releases.

v1.0.116

Commits
  • a3f62bb Release 1.0.116
  • 12c8ee0 Hide "non-exhaustive patterns" errors when crate fails to compile
  • 051ce97 Merge pull request 1124 from mleonhard/master
  • 25dc750 Replace features_check mod with a call to std::compile_error!. Fixes htt...
  • 2e15e3d Revert "Temporarily disable miri on doctests"
  • 0baba28 Resolve legacy_numeric_constants clippy lints
  • See full diff in compare view

Updates time from 0.3.34 to 0.3.36

Release notes

Sourced from time's releases.

v0.3.36

See the changelog for details.

v0.3.35

See the changelog for details.

Changelog

Sourced from time's changelog.

0.3.36 [2024-04-10]

# Fixed

  • FormatItem can be used as part of an import path. See #675 for details.

#675: time-rs/time#675

0.3.35 [2024-04-10]

Added

  • Duration::checked_neg
  • ext::InstantExt, which provides methods for using time::Duration with std::time::Instant

Changed

  • Instant is deprecated. It is recommended to use std::time::Instant directly, importing time::ext::InstantExt for interoperability with time::Duration.
  • FormatItem has been renamed to BorrowedFormatItem, avoiding confusion with OwnedFormatItem. An alias has been added for backwards compatibility.

Fixed

  • The weekday is optional when parsing RFC2822.
  • The range of sub-second values in Duration is documented correctly. The previous documentation contained an off-by-one error.
  • Leap seconds are now correctly handled when parsing ISO 8601.
Commits
  • 3c3c546 pub use instead of pub type re-exporting
  • 266178d Update code coverage CI
  • 131049e v0.3.35 release
  • 9c15ee3 Permit leap seconds when parsing ISO 8601
  • d279d8d Fix invalid offset hour diagnostic test
  • f04a28f Eliminate unreachable branch
  • 06a096d Rename FormatItem to BorrowedFormatItem
  • fd664ee Include diagnostics regression
  • b8d09a7 Address nightly lints
  • 330865a Update deny.toml
  • Additional commits viewable 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 all-dependencies group with 19 updates:

| Package | From | To |
| --- | --- | --- |
| [file-service-discovery-adapter](https://github.com/eclipse-ibeji/freyja) | ``c8ef0dd`` | ``6b371ff`` |
| [freyja](https://github.com/eclipse-ibeji/freyja) | ``c8ef0dd`` | ``6b371ff`` |
| [freyja-common](https://github.com/eclipse-ibeji/freyja) | ``c8ef0dd`` | ``6b371ff`` |
| [freyja-build-common](https://github.com/eclipse-ibeji/freyja) | ``c8ef0dd`` | ``6b371ff`` |
| [grpc-cloud-adapter](https://github.com/eclipse-ibeji/freyja) | ``c8ef0dd`` | ``6b371ff`` |
| [grpc-digital-twin-adapter](https://github.com/eclipse-ibeji/freyja) | ``c8ef0dd`` | ``6b371ff`` |
| [grpc-service-discovery-adapter](https://github.com/eclipse-ibeji/freyja) | ``c8ef0dd`` | ``6b371ff`` |
| [sample-grpc-data-adapter](https://github.com/eclipse-ibeji/freyja) | ``c8ef0dd`` | ``6b371ff`` |
| [in-memory-mock-cloud-adapter](https://github.com/eclipse-ibeji/freyja) | ``c8ef0dd`` | ``6b371ff`` |
| [in-memory-mock-digital-twin-adapter](https://github.com/eclipse-ibeji/freyja) | ``c8ef0dd`` | ``6b371ff`` |
| [in-memory-mock-mapping-adapter](https://github.com/eclipse-ibeji/freyja) | ``c8ef0dd`` | ``6b371ff`` |
| [in-memory-mock-data-adapter](https://github.com/eclipse-ibeji/freyja) | ``c8ef0dd`` | ``6b371ff`` |
| [managed-subscribe-data-adapter](https://github.com/eclipse-ibeji/freyja) | ``c8ef0dd`` | ``6b371ff`` |
| [mqtt-data-adapter](https://github.com/eclipse-ibeji/freyja) | ``c8ef0dd`` | ``6b371ff`` |
| [proc-macros](https://github.com/eclipse-ibeji/freyja) | ``c8ef0dd`` | ``6b371ff`` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.79` | `0.1.80` |
| [serde](https://github.com/serde-rs/serde) | `1.0.197` | `1.0.198` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.115` | `1.0.116` |
| [time](https://github.com/time-rs/time) | `0.3.34` | `0.3.36` |


Updates `file-service-discovery-adapter` from `c8ef0dd` to `6b371ff`
- [Release notes](https://github.com/eclipse-ibeji/freyja/releases)
- [Commits](eclipse-ibeji/freyja@c8ef0dd...6b371ff)

Updates `freyja` from `c8ef0dd` to `6b371ff`
- [Release notes](https://github.com/eclipse-ibeji/freyja/releases)
- [Commits](eclipse-ibeji/freyja@c8ef0dd...6b371ff)

Updates `freyja-common` from `c8ef0dd` to `6b371ff`
- [Release notes](https://github.com/eclipse-ibeji/freyja/releases)
- [Commits](eclipse-ibeji/freyja@c8ef0dd...6b371ff)

Updates `freyja-build-common` from `c8ef0dd` to `6b371ff`
- [Release notes](https://github.com/eclipse-ibeji/freyja/releases)
- [Commits](eclipse-ibeji/freyja@c8ef0dd...6b371ff)

Updates `grpc-cloud-adapter` from `c8ef0dd` to `6b371ff`
- [Release notes](https://github.com/eclipse-ibeji/freyja/releases)
- [Commits](eclipse-ibeji/freyja@c8ef0dd...6b371ff)

Updates `grpc-digital-twin-adapter` from `c8ef0dd` to `6b371ff`
- [Release notes](https://github.com/eclipse-ibeji/freyja/releases)
- [Commits](eclipse-ibeji/freyja@c8ef0dd...6b371ff)

Updates `grpc-service-discovery-adapter` from `c8ef0dd` to `6b371ff`
- [Release notes](https://github.com/eclipse-ibeji/freyja/releases)
- [Commits](eclipse-ibeji/freyja@c8ef0dd...6b371ff)

Updates `sample-grpc-data-adapter` from `c8ef0dd` to `6b371ff`
- [Release notes](https://github.com/eclipse-ibeji/freyja/releases)
- [Commits](eclipse-ibeji/freyja@c8ef0dd...6b371ff)

Updates `in-memory-mock-cloud-adapter` from `c8ef0dd` to `6b371ff`
- [Release notes](https://github.com/eclipse-ibeji/freyja/releases)
- [Commits](eclipse-ibeji/freyja@c8ef0dd...6b371ff)

Updates `in-memory-mock-digital-twin-adapter` from `c8ef0dd` to `6b371ff`
- [Release notes](https://github.com/eclipse-ibeji/freyja/releases)
- [Commits](eclipse-ibeji/freyja@c8ef0dd...6b371ff)

Updates `in-memory-mock-mapping-adapter` from `c8ef0dd` to `6b371ff`
- [Release notes](https://github.com/eclipse-ibeji/freyja/releases)
- [Commits](eclipse-ibeji/freyja@c8ef0dd...6b371ff)

Updates `in-memory-mock-data-adapter` from `c8ef0dd` to `6b371ff`
- [Release notes](https://github.com/eclipse-ibeji/freyja/releases)
- [Commits](eclipse-ibeji/freyja@c8ef0dd...6b371ff)

Updates `managed-subscribe-data-adapter` from `c8ef0dd` to `6b371ff`
- [Release notes](https://github.com/eclipse-ibeji/freyja/releases)
- [Commits](eclipse-ibeji/freyja@c8ef0dd...6b371ff)

Updates `mqtt-data-adapter` from `c8ef0dd` to `6b371ff`
- [Release notes](https://github.com/eclipse-ibeji/freyja/releases)
- [Commits](eclipse-ibeji/freyja@c8ef0dd...6b371ff)

Updates `proc-macros` from `c8ef0dd` to `6b371ff`
- [Release notes](https://github.com/eclipse-ibeji/freyja/releases)
- [Commits](eclipse-ibeji/freyja@c8ef0dd...6b371ff)

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

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

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

Updates `time` from 0.3.34 to 0.3.36
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](time-rs/time@v0.3.34...v0.3.36)

---
updated-dependencies:
- dependency-name: file-service-discovery-adapter
  dependency-type: direct:production
  dependency-group: all-dependencies
- dependency-name: freyja
  dependency-type: direct:production
  dependency-group: all-dependencies
- dependency-name: freyja-common
  dependency-type: direct:production
  dependency-group: all-dependencies
- dependency-name: freyja-build-common
  dependency-type: direct:production
  dependency-group: all-dependencies
- dependency-name: grpc-cloud-adapter
  dependency-type: direct:production
  dependency-group: all-dependencies
- dependency-name: grpc-digital-twin-adapter
  dependency-type: direct:production
  dependency-group: all-dependencies
- dependency-name: grpc-service-discovery-adapter
  dependency-type: direct:production
  dependency-group: all-dependencies
- dependency-name: sample-grpc-data-adapter
  dependency-type: direct:production
  dependency-group: all-dependencies
- dependency-name: in-memory-mock-cloud-adapter
  dependency-type: direct:production
  dependency-group: all-dependencies
- dependency-name: in-memory-mock-digital-twin-adapter
  dependency-type: direct:production
  dependency-group: all-dependencies
- dependency-name: in-memory-mock-mapping-adapter
  dependency-type: direct:production
  dependency-group: all-dependencies
- dependency-name: in-memory-mock-data-adapter
  dependency-type: direct:production
  dependency-group: all-dependencies
- dependency-name: managed-subscribe-data-adapter
  dependency-type: direct:production
  dependency-group: all-dependencies
- dependency-name: mqtt-data-adapter
  dependency-type: direct:production
  dependency-group: all-dependencies
- dependency-name: proc-macros
  dependency-type: direct:production
  dependency-group: all-dependencies
- dependency-name: async-trait
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: time
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Apr 17, 2024
@wilyle wilyle merged commit 65c862f into main Apr 17, 2024
11 checks passed
@dependabot dependabot bot deleted the dependabot/cargo/all-dependencies-e72c3710cf branch April 17, 2024 22:09
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