tikv / rust-prometheus

Prometheus instrumentation library for Rust applications
Apache License 2.0
1.07k stars 182 forks source link

build(deps): update procfs requirement from ^0.12 to ^0.13 #447

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 2 years ago

Updates the requirements on procfs to permit the latest version.

Release notes

Sourced from procfs's releases.

v0.13.0

Breaking changes

This release has several breaking API changes you should be aware of:

  • MSRV has been changed from 1.34 to 1.48
  • The Process struct has been changed in some important ways:
    • Internally, it now maintains a handle to an opened /proc/<pid> directory. So each Process will have an open file handle, which can matter in extreme cases when you have a large number of Process objects created.
    • Because each Process has a handle to its opened proc directory, there is no longer any PID reuse problems
    • Process no longer implements Clone.
    • Process no longer has a public member stats member that gets pre-populated on construction. If you want this info, you now need to explicitly call the Process::stat() function

New features

Internal changes

Full Changelog: https://github.com/eminence/procfs/compare/v0.12.0...v0.13.0

Commits
  • 257ae53 Version v0.13.0
  • e9513de Merge pull request #176 from arilou/process_net_ns
  • c24212c Process: Add support for network
  • 1f806a3 Merge pull request #175 from eminence/clippy_fixes
  • 936ea75 Clippy and rustfmt fixes
  • fecfe01 Merge pull request #174 from eminence/rustix_update
  • fc5b477 Update to the latest rustix version
  • b51fb1a Merge pull request #173 from xfix/minimal-versions
  • cdf4a22 Build with cargo update -Z minimal-versions
  • ce1abc3 Merge pull request #168 from macisamuele/maci-improve-CpuInfo-performances
  • 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 ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 2 years ago

Superseded by #452.