1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-06 23:56:13 +02:00
Commit Graph

1059 Commits

Author SHA1 Message Date
Jakub Jirutka 96ff8c31ab
deps: Disable unused/unnecessary regex features in libcontainer (#2781)
To reduce binary size and dependency bloat in projects using libcontainer.

Signed-off-by: Jakub Jirutka <jakub@jirutka.cz>
2024-05-06 12:23:36 +00:00
dependabot[bot] 6cd72cc268
Bump the patch group with 3 updates
Bumps the patch group with 3 updates: [libbpf-sys](https://github.com/libbpf/libbpf-sys), [wasmtime](https://github.com/bytecodealliance/wasmtime) and [wasi-common](https://github.com/bytecodealliance/wasmtime).


Updates `libbpf-sys` from 1.4.0+v1.4.0 to 1.4.1+v1.4.0
- [Commits](https://github.com/libbpf/libbpf-sys/commits)

Updates `wasmtime` from 20.0.0 to 20.0.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/WASI-some-possible-changes.md)
- [Commits](https://github.com/bytecodealliance/wasmtime/compare/v20.0.0...v20.0.1)

Updates `wasi-common` from 20.0.0 to 20.0.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/WASI-some-possible-changes.md)
- [Commits](https://github.com/bytecodealliance/wasmtime/compare/v20.0.0...v20.0.1)

---
updated-dependencies:
- dependency-name: libbpf-sys
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasmtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasi-common
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-05-06 01:16:30 +00:00
dependabot[bot] a4b9ea5522
Bump the patch group with 2 updates
Bumps the patch group with 2 updates: [libc](https://github.com/rust-lang/libc) and [flate2](https://github.com/rust-lang/flate2-rs).


Updates `libc` from 0.2.153 to 0.2.154
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Commits](https://github.com/rust-lang/libc/compare/0.2.153...0.2.154)

Updates `flate2` from 1.0.29 to 1.0.30
- [Release notes](https://github.com/rust-lang/flate2-rs/releases)
- [Commits](https://github.com/rust-lang/flate2-rs/compare/1.0.29...1.0.30)

---
updated-dependencies:
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: flate2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-04-30 00:23:51 +00:00
Yashodhan 4bf23f711e
Merge pull request #2774 from containers/dependabot/cargo/fastrand-2.1.0
Bump fastrand from 2.0.2 to 2.1.0
2024-04-29 11:18:32 +05:30
dependabot[bot] 2073d9b968
Bump fastrand from 2.0.2 to 2.1.0
Bumps [fastrand](https://github.com/smol-rs/fastrand) from 2.0.2 to 2.1.0.
- [Release notes](https://github.com/smol-rs/fastrand/releases)
- [Changelog](https://github.com/smol-rs/fastrand/blob/master/CHANGELOG.md)
- [Commits](https://github.com/smol-rs/fastrand/compare/v2.0.2...v2.1.0)

---
updated-dependencies:
- dependency-name: fastrand
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-04-29 00:41:29 +00:00
dependabot[bot] 75554f2059
Bump the patch group with 3 updates
Bumps the patch group with 3 updates: [serde](https://github.com/serde-rs/serde), [serial_test](https://github.com/palfrey/serial_test) and [flate2](https://github.com/rust-lang/flate2-rs).


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

Updates `serial_test` from 3.1.0 to 3.1.1
- [Release notes](https://github.com/palfrey/serial_test/releases)
- [Commits](https://github.com/palfrey/serial_test/compare/v3.1.0...v3.1.1)

Updates `flate2` from 1.0.28 to 1.0.29
- [Release notes](https://github.com/rust-lang/flate2-rs/releases)
- [Commits](https://github.com/rust-lang/flate2-rs/compare/1.0.28...1.0.29)

---
updated-dependencies:
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: serial_test
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: flate2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-04-29 00:40:45 +00:00
Yashodhan 601df9ecd3
Fix cgroups determination in exec implementation (#2720)
* Set cgroups path for tenant containers from main container

Signed-off-by: Yashodhan Joshi <yjdoc2@gmail.com>

* Ignore new_user_ns for creating cgroups path

Signed-off-by: Yashodhan Joshi <yjdoc2@gmail.com>

* Remove user_ns param completely

Signed-off-by: Yashodhan Joshi <yjdoc2@gmail.com>

* Add tests in podman rootless for exec

Signed-off-by: Yashodhan Joshi <yjdoc2@gmail.com>

* Fix add_task implementation for cgroups v2 and systemd

Signed-off-by: Yashodhan Joshi <yjdoc2@gmail.com>

* minor refactor in tenant builder

Signed-off-by: Yashodhan Joshi <yjdoc2@gmail.com>

* Add unit test for systemd add_task function

Signed-off-by: Yashodhan Joshi <yjdoc2@gmail.com>

* Fix task addition to properly add tasks via dbus api

Signed-off-by: Yashodhan Joshi <yjdoc2@gmail.com>

* Fix cross cotainers for tests running

Signed-off-by: Yashodhan Joshi <yjdoc2@gmail.com>

---------

Signed-off-by: Yashodhan Joshi <yjdoc2@gmail.com>
2024-04-27 21:49:58 +09:00
dependabot[bot] cd9bfd8d79
Bump wasmtime and wasi-common from 19.0.2 to 20.0.0 (#2771)
* Bump wasi-common from 19.0.2 to 20.0.0

Bumps [wasi-common](https://github.com/bytecodealliance/wasmtime) from 19.0.2 to 20.0.0.
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/WASI-some-possible-changes.md)
- [Commits](https://github.com/bytecodealliance/wasmtime/compare/v19.0.2...v20.0.0)

---
updated-dependencies:
- dependency-name: wasi-common
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump wasmtime from 19.0.2 to 20.0.0

Bumps [wasmtime](https://github.com/bytecodealliance/wasmtime) from 19.0.2 to 20.0.0.
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/WASI-some-possible-changes.md)
- [Commits](https://github.com/bytecodealliance/wasmtime/compare/v19.0.2...v20.0.0)

---
updated-dependencies:
- dependency-name: wasmtime
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Yashodhan Joshi <yjdoc2@gmail.com>
2024-04-24 05:36:17 +00:00
Yashodhan f8ccba1eae
Merge pull request #2769 from containers/dependabot/cargo/serial_test-3.1.0
Bump serial_test from 3.0.0 to 3.1.0
2024-04-22 10:45:06 +05:30
dependabot[bot] 4046ed54e1
Bump serial_test from 3.0.0 to 3.1.0
Bumps [serial_test](https://github.com/palfrey/serial_test) from 3.0.0 to 3.1.0.
- [Release notes](https://github.com/palfrey/serial_test/releases)
- [Commits](https://github.com/palfrey/serial_test/compare/v3.0.0...v3.1.0)

---
updated-dependencies:
- dependency-name: serial_test
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-04-22 00:46:24 +00:00
dependabot[bot] 1d109fe115
Bump thiserror from 1.0.58 to 1.0.59 in the patch group
Bumps the patch group with 1 update: [thiserror](https://github.com/dtolnay/thiserror).


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

---
updated-dependencies:
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-04-22 00:45:31 +00:00
github-actions[bot] aa9ef54caa
Merge pull request #2765 from containers/dependabot/cargo/patch-35db3952d5 2024-04-18 04:33:45 +00:00
Yashodhan 79f08be664
reset console sockets to original in setup_console test (#2764)
This way the test logs and failed test stack does not get lost due
to setup console being set to different file.

Fixes #150

Signed-off-by: Yashodhan Joshi <yjdoc2@gmail.com>
2024-04-17 20:57:16 -07:00
dependabot[bot] 1a0cd33cdf
Bump the patch group with 2 updates
Bumps the patch group with 2 updates: [wasmtime](https://github.com/bytecodealliance/wasmtime) and [wasi-common](https://github.com/bytecodealliance/wasmtime).


Updates `wasmtime` from 19.0.1 to 19.0.2
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/WASI-some-possible-changes.md)
- [Commits](https://github.com/bytecodealliance/wasmtime/compare/v19.0.1...v19.0.2)

Updates `wasi-common` from 19.0.1 to 19.0.2
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/WASI-some-possible-changes.md)
- [Commits](https://github.com/bytecodealliance/wasmtime/compare/v19.0.1...v19.0.2)

---
updated-dependencies:
- dependency-name: wasmtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasi-common
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-04-18 00:20:23 +00:00
Yashodhan 342ad60927
update wasmtime dep to 19.0.1, replace wasmtime-wasi with wasi-cmmon (#2752)
Signed-off-by: Yashodhan Joshi <yjdoc2@gmail.com>
2024-04-17 12:53:10 +05:30
dependabot[bot] e24123050b
Bump fixedbitset from 0.5.6 to 0.5.7 in the patch group
Bumps the patch group with 1 update: [fixedbitset](https://github.com/petgraph/fixedbitset).


Updates `fixedbitset` from 0.5.6 to 0.5.7
- [Release notes](https://github.com/petgraph/fixedbitset/releases)
- [Commits](https://github.com/petgraph/fixedbitset/compare/v0.5.6...v0.5.7)

---
updated-dependencies:
- dependency-name: fixedbitset
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-04-15 01:01:23 +00:00
dependabot[bot] fe0152d962
Bump anyhow from 1.0.81 to 1.0.82 in the patch group
Bumps the patch group with 1 update: [anyhow](https://github.com/dtolnay/anyhow).


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

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-04-11 00:34:55 +00:00
Toru Komatsu a48e5a5403
Rust 1.77.1 (#2746)
* Rust 1.77.1

Signed-off-by: utam0k <k0ma@utam0k.jp>

* Remove unused pub items from contest util mod

Signed-off-by: Yashodhan Joshi <yjdoc2@gmail.com>

---------

Signed-off-by: utam0k <k0ma@utam0k.jp>
Signed-off-by: Yashodhan Joshi <yjdoc2@gmail.com>
Co-authored-by: Yashodhan Joshi <yjdoc2@gmail.com>
2024-04-10 11:54:53 +05:30
Om Prakaash e94e103bde
Add support for rsvd hugetlb cgroup (#2719)
Signed-off-by: omprakaash <omsuseela@gmail.com>
Signed-off-by: om <omsuseela@gmail.com>
Signed-off-by: Om Prakaash <omsuseela@gmail.com>
2024-04-07 05:34:47 +00:00
dependabot[bot] c98c0ca518 Bump libbpf-sys from 1.3.0+v1.3.0 to 1.4.0+v1.4.0
Bumps [libbpf-sys](https://github.com/libbpf/libbpf-sys) from 1.3.0+v1.3.0 to 1.4.0+v1.4.0.
- [Commits](https://github.com/libbpf/libbpf-sys/compare/1.3.0+v1.3.0...1.4.0+v1.4.0)

---
updated-dependencies:
- dependency-name: libbpf-sys
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-04-04 02:44:56 +00:00
zahash a51c03a509
fix observability default log level comment (#2737)
Signed-off-by: zahash <zahash.z@gmail.com>
2024-03-25 21:52:38 +09:00
dependabot[bot] 33e417f878
Bump fixedbitset from 0.4.2 to 0.5.6 (#2739)
Bumps [fixedbitset](https://github.com/petgraph/fixedbitset) from 0.4.2 to 0.5.6.
- [Release notes](https://github.com/petgraph/fixedbitset/releases)
- [Commits](https://github.com/petgraph/fixedbitset/commits)

---
updated-dependencies:
- dependency-name: fixedbitset
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-25 21:48:11 +09:00
dependabot[bot] e000a78665
Bump the patch group with 3 updates
Bumps the patch group with 3 updates: [fastrand](https://github.com/smol-rs/fastrand), [regex](https://github.com/rust-lang/regex) and [which](https://github.com/harryfei/which-rs).


Updates `fastrand` from 2.0.1 to 2.0.2
- [Release notes](https://github.com/smol-rs/fastrand/releases)
- [Changelog](https://github.com/smol-rs/fastrand/blob/master/CHANGELOG.md)
- [Commits](https://github.com/smol-rs/fastrand/compare/v2.0.1...v2.0.2)

Updates `regex` from 1.10.3 to 1.10.4
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/regex/compare/1.10.3...1.10.4)

Updates `which` from 6.0.0 to 6.0.1
- [Release notes](https://github.com/harryfei/which-rs/releases)
- [Changelog](https://github.com/harryfei/which-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/harryfei/which-rs/compare/6.0.0...6.0.1)

---
updated-dependencies:
- dependency-name: fastrand
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: which
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-03-25 01:00:22 +00:00
dependabot[bot] 2e79c5addf
Bump bitflags from 2.4.2 to 2.5.0
Bumps [bitflags](https://github.com/bitflags/bitflags) from 2.4.2 to 2.5.0.
- [Release notes](https://github.com/bitflags/bitflags/releases)
- [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md)
- [Commits](https://github.com/bitflags/bitflags/compare/2.4.2...2.5.0)

---
updated-dependencies:
- dependency-name: bitflags
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-03-20 00:59:05 +00:00
dependabot[bot] 2dd5884eab
Bump the patch group with 1 update
Bumps the patch group with 1 update: [nc](https://github.com/xushaohua/nc).


Updates `nc` from 0.8.19 to 0.8.20
- [Commits](https://github.com/xushaohua/nc/compare/v0.8.19...v0.8.20)

---
updated-dependencies:
- dependency-name: nc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-03-19 01:07:14 +00:00
dependabot[bot] eef4e26811
Bump the patch group with 4 updates
Bumps the patch group with 4 updates: [thiserror](https://github.com/dtolnay/thiserror), [anyhow](https://github.com/dtolnay/anyhow), [wasmtime](https://github.com/bytecodealliance/wasmtime) and [wasmtime-wasi](https://github.com/bytecodealliance/wasmtime).


Updates `thiserror` from 1.0.57 to 1.0.58
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](https://github.com/dtolnay/thiserror/compare/1.0.57...1.0.58)

Updates `anyhow` from 1.0.80 to 1.0.81
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](https://github.com/dtolnay/anyhow/compare/1.0.80...1.0.81)

Updates `wasmtime` from 18.0.2 to 18.0.3
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/WASI-some-possible-changes.md)
- [Commits](https://github.com/bytecodealliance/wasmtime/compare/v18.0.2...v18.0.3)

Updates `wasmtime-wasi` from 18.0.2 to 18.0.3
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/WASI-some-possible-changes.md)
- [Commits](https://github.com/bytecodealliance/wasmtime/compare/v18.0.2...v18.0.3)

---
updated-dependencies:
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasmtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasmtime-wasi
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-03-13 00:16:15 +00:00
dependabot[bot] 77c302d625
Bump the patch group with 4 updates
Bumps the patch group with 4 updates: [env_logger](https://github.com/rust-cli/env_logger), [chrono](https://github.com/chronotope/chrono), [wasmtime](https://github.com/bytecodealliance/wasmtime) and [wasmtime-wasi](https://github.com/bytecodealliance/wasmtime).


Updates `env_logger` from 0.11.2 to 0.11.3
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rust-cli/env_logger/compare/v0.11.2...v0.11.3)

Updates `chrono` from 0.4.34 to 0.4.35
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](https://github.com/chronotope/chrono/compare/v0.4.34...v0.4.35)

Updates `wasmtime` from 18.0.1 to 18.0.2
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/WASI-some-possible-changes.md)
- [Commits](https://github.com/bytecodealliance/wasmtime/compare/v18.0.1...v18.0.2)

Updates `wasmtime-wasi` from 18.0.1 to 18.0.2
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/WASI-some-possible-changes.md)
- [Commits](https://github.com/bytecodealliance/wasmtime/compare/v18.0.1...v18.0.2)

---
updated-dependencies:
- dependency-name: env_logger
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: chrono
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasmtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasmtime-wasi
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-03-11 15:08:53 +00:00
Yashodhan Joshi 62431aa0cb Change .unwrap to error propagation in libraries
Signed-off-by: Yashodhan Joshi <yjdoc2@gmail.com>
2024-02-23 17:01:20 +05:30
Yashodhan Joshi 7f8422f2ef Add channel message when exec fails
Signed-off-by: Yashodhan Joshi <yjdoc2@gmail.com>
2024-02-23 16:55:13 +05:30
dependabot[bot] 919ff4a1d9
Bump wasmtime and wasmtime-wasi from 17.0.1 to 18.0.1 (#2701)
* Bump wasmtime-wasi from 17.0.1 to 18.0.1

Bumps [wasmtime-wasi](https://github.com/bytecodealliance/wasmtime) from 17.0.1 to 18.0.1.
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/WASI-some-possible-changes.md)
- [Commits](https://github.com/bytecodealliance/wasmtime/compare/v17.0.1...v18.0.1)

---
updated-dependencies:
- dependency-name: wasmtime-wasi
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump wasmtime from 17.0.1 to 18.0.1

Bumps [wasmtime](https://github.com/bytecodealliance/wasmtime) from 17.0.1 to 18.0.1.
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/WASI-some-possible-changes.md)
- [Commits](https://github.com/bytecodealliance/wasmtime/compare/v17.0.1...v18.0.1)

---
updated-dependencies:
- dependency-name: wasmtime
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Yashodhan Joshi <yjdoc2@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Yashodhan Joshi <yjdoc2@gmail.com>
2024-02-22 14:30:53 +05:30
dependabot[bot] cabab470f2
Bump the patch group with 7 updates
Bumps the patch group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [serde](https://github.com/serde-rs/serde) | `1.0.196` | `1.0.197` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.79` | `1.0.80` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.113` | `1.0.114` |
| [openssl](https://github.com/sfackler/rust-openssl) | `0.10.63` | `0.10.64` |
| [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.99` | `0.9.100` |
| [ryu](https://github.com/dtolnay/ryu) | `1.0.16` | `1.0.17` |
| [serde_derive](https://github.com/serde-rs/serde) | `1.0.196` | `1.0.197` |


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

Updates `anyhow` from 1.0.79 to 1.0.80
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](https://github.com/dtolnay/anyhow/compare/1.0.79...1.0.80)

Updates `serde_json` from 1.0.113 to 1.0.114
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](https://github.com/serde-rs/json/compare/v1.0.113...v1.0.114)

Updates `openssl` from 0.10.63 to 0.10.64
- [Release notes](https://github.com/sfackler/rust-openssl/releases)
- [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.63...openssl-v0.10.64)

Updates `openssl-sys` from 0.9.99 to 0.9.100
- [Release notes](https://github.com/sfackler/rust-openssl/releases)
- [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.99...openssl-sys-v0.9.100)

Updates `ryu` from 1.0.16 to 1.0.17
- [Release notes](https://github.com/dtolnay/ryu/releases)
- [Commits](https://github.com/dtolnay/ryu/compare/1.0.16...1.0.17)

Updates `serde_derive` from 1.0.196 to 1.0.197
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.196...v1.0.197)

---
updated-dependencies:
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: openssl
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: openssl-sys
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: ryu
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: serde_derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-02-20 01:01:23 +00:00
dependabot[bot] c239e42067
bump the patch group with 36 updates
---
updated-dependencies:
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: chrono
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasmtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasmtime-wasi
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: cranelift-control
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: cranelift-native
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: cranelift-wasm
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: jobserver
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: num-traits
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: thiserror-impl
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasi-cap-std-sync
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasi-common
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasmprinter
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasmtime-asm-macros
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasmtime-cache
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasmtime-component-macro
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasmtime-component-util
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasmtime-cranelift
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasmtime-cranelift-shared
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasmtime-environ
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasmtime-fiber
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasmtime-jit
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasmtime-jit-debug
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasmtime-jit-icache-coherence
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasmtime-runtime
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasmtime-types
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasmtime-versioned-export-macros
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasmtime-winch
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasmtime-wit-bindgen
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wasmtime-wmemcheck
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wat
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wiggle
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wiggle-generate
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wiggle-macro
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: winch-codegen
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: wit-parser
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-02-12 01:20:09 +00:00
Toru Komatsu 701085d4ae
Fill in TODO (#2677)
Signed-off-by: utam0k <k0ma@utam0k.jp>
2024-02-09 21:17:27 +09:00
dependabot[bot] 6e87828b92
Bump the patch group with 9 updates
Bumps the patch group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [nc](https://github.com/xushaohua/nc) | `0.8.18` | `0.8.19` |
| [anstyle](https://github.com/rust-cli/anstyle) | `1.0.5` | `1.0.6` |
| [bindgen](https://github.com/rust-lang/rust-bindgen) | `0.69.2` | `0.69.4` |
| [hermit-abi](https://github.com/hermitcore/hermit-rs) | `0.3.4` | `0.3.5` |
| [iana-time-zone](https://github.com/strawlab/iana-time-zone) | `0.1.59` | `0.1.60` |
| [miniz_oxide](https://github.com/Frommi/miniz_oxide) | `0.7.1` | `0.7.2` |
| [rend](https://github.com/djkoloski/rend) | `0.4.1` | `0.4.2` |
| [rkyv](https://github.com/rkyv/rkyv) | `0.7.43` | `0.7.44` |
| [winnow](https://github.com/winnow-rs/winnow) | `0.5.36` | `0.5.37` |


Updates `nc` from 0.8.18 to 0.8.19
- [Commits](https://github.com/xushaohua/nc/compare/v0.8.18...v0.8.19)

Updates `anstyle` from 1.0.5 to 1.0.6
- [Commits](https://github.com/rust-cli/anstyle/compare/v1.0.5...v1.0.6)

Updates `bindgen` from 0.69.2 to 0.69.4
- [Release notes](https://github.com/rust-lang/rust-bindgen/releases)
- [Changelog](https://github.com/rust-lang/rust-bindgen/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/rust-bindgen/compare/v0.69.2...v0.69.4)

Updates `hermit-abi` from 0.3.4 to 0.3.5
- [Release notes](https://github.com/hermitcore/hermit-rs/releases)
- [Commits](https://github.com/hermitcore/hermit-rs/compare/hermit-abi-0.3.4...hermit-abi-0.3.5)

Updates `iana-time-zone` from 0.1.59 to 0.1.60
- [Changelog](https://github.com/strawlab/iana-time-zone/blob/main/CHANGELOG.md)
- [Commits](https://github.com/strawlab/iana-time-zone/compare/v0.1.59...v0.1.60)

Updates `miniz_oxide` from 0.7.1 to 0.7.2
- [Changelog](https://github.com/Frommi/miniz_oxide/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Frommi/miniz_oxide/commits)

Updates `rend` from 0.4.1 to 0.4.2
- [Release notes](https://github.com/djkoloski/rend/releases)
- [Commits](https://github.com/djkoloski/rend/commits)

Updates `rkyv` from 0.7.43 to 0.7.44
- [Release notes](https://github.com/rkyv/rkyv/releases)
- [Changelog](https://github.com/rkyv/rkyv/blob/main/release_checklist.md)
- [Commits](https://github.com/rkyv/rkyv/commits)

Updates `winnow` from 0.5.36 to 0.5.37
- [Changelog](https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md)
- [Commits](https://github.com/winnow-rs/winnow/compare/v0.5.36...v0.5.37)

---
updated-dependencies:
- dependency-name: nc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: anstyle
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: bindgen
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: hermit-abi
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: iana-time-zone
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: miniz_oxide
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: rend
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: rkyv
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: winnow
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-02-06 00:56:50 +00:00
Yashodhan ae48534eb7
Rollup dep updates (#2667)
* Update wasmtime and wasmtime-wasi

* Update libbpf-sys
2024-02-04 21:31:10 +09:00
dependabot[bot] 31267eee77
Bump the patch group with 3 updates
Bumps the patch group with 3 updates: [libc](https://github.com/rust-lang/libc), [reqwest](https://github.com/seanmonstar/reqwest) and [winnow](https://github.com/winnow-rs/winnow).


Updates `libc` from 0.2.152 to 0.2.153
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Commits](https://github.com/rust-lang/libc/compare/0.2.152...0.2.153)

Updates `reqwest` from 0.11.23 to 0.11.24
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.23...v0.11.24)

Updates `winnow` from 0.5.35 to 0.5.36
- [Changelog](https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md)
- [Commits](https://github.com/winnow-rs/winnow/compare/v0.5.35...v0.5.36)

---
updated-dependencies:
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: reqwest
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: winnow
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-02-01 05:43:15 +00:00
Yashodhan 584bed6ec9
Merge pull request #2662 from containers/dependabot/cargo/env_logger-0.11.1
Bump env_logger from 0.10.2 to 0.11.1
2024-02-01 10:55:46 +05:30
Toru Komatsu b9f27e487f
Release v0.3.2 (#2664)
Signed-off-by: utam0k <k0ma@utam0k.jp>
2024-02-01 05:53:30 +09:00
utam0k 6c9f997093
Before starting the intermediate process, close all non-stdio open files
Signed-off-by: utam0k <k0ma@utam0k.jp>
2024-01-31 20:59:36 +09:00
dependabot[bot] ff1ffb77aa
Bump env_logger from 0.10.2 to 0.11.1
Bumps [env_logger](https://github.com/rust-cli/env_logger) from 0.10.2 to 0.11.1.
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.2...v0.11.1)

---
updated-dependencies:
- dependency-name: env_logger
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-01-30 01:00:57 +00:00
utam0k e178bbdf79
Ensure that the current working directory is actually inside the container
Signed-off-by: utam0k <k0ma@utam0k.jp>
2024-01-27 21:47:38 +09:00
dependabot[bot] 87c4be2699
chore(deps): bump the patch group with 3 updates
Bumps the patch group with 3 updates: [chrono](https://github.com/chronotope/chrono), [regex](https://github.com/rust-lang/regex) and [weezl](https://github.com/image-rs/lzw).


Updates `chrono` from 0.4.31 to 0.4.32
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](https://github.com/chronotope/chrono/compare/v0.4.31...v0.4.32)

Updates `regex` from 1.10.2 to 1.10.3
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/regex/compare/1.10.2...1.10.3)

Updates `weezl` from 0.1.7 to 0.1.8
- [Changelog](https://github.com/image-rs/lzw/blob/master/Changes.md)
- [Commits](https://github.com/image-rs/lzw/compare/v0.1.7...v0.1.8)

---
updated-dependencies:
- dependency-name: chrono
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: weezl
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-01-23 01:19:14 +00:00
rongfu.leng 2723aa446b
add schedule entity (#2495)
* add schedule entity

dd:qSigned-off-by: lengrongfu <1275177125@qq.com>
Signed-off-by: lengrongfu <lenronfu@gmail.com>

* Fix if condition for nice value check

Signed-off-by: Yashodhan Joshi <yjdoc2@gmail.com>

* Remove the old integration tests files

Signed-off-by: Yashodhan Joshi <yjdoc2@gmail.com>

---------

Signed-off-by: lengrongfu <lenronfu@gmail.com>
Signed-off-by: Yashodhan Joshi <yjdoc2@gmail.com>
Co-authored-by: Yashodhan Joshi <yjdoc2@gmail.com>
2024-01-21 14:01:16 +05:30
Yashodhan 8db3599c86
Roll up various minor and major version dep upgrade (#2638)
* Update minor version uptick deps

* Major version upgrade: wasmtime and wasmtime-wasi
2024-01-18 21:34:38 +09:00
dependabot[bot] 0f098da8d7
chore(deps): bump the patch group with 2 updates
Bumps the patch group with 2 updates: [bitflags](https://github.com/bitflags/bitflags) and [anstream](https://github.com/rust-cli/anstyle).


Updates `bitflags` from 2.4.1 to 2.4.2
- [Release notes](https://github.com/bitflags/bitflags/releases)
- [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md)
- [Commits](https://github.com/bitflags/bitflags/compare/2.4.1...2.4.2)

Updates `anstream` from 0.6.7 to 0.6.8
- [Commits](https://github.com/rust-cli/anstyle/compare/anstream-v0.6.7...anstream-v0.6.8)

---
updated-dependencies:
- dependency-name: bitflags
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: anstream
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-01-17 01:00:50 +00:00
dependabot[bot] cef129194a
chore(deps): bump the patch group with 3 updates
Bumps the patch group with 3 updates: [vergen](https://github.com/rustyhorde/vergen), [anstream](https://github.com/rust-cli/anstyle) and [bindgen](https://github.com/rust-lang/rust-bindgen).


Updates `vergen` from 8.2.6 to 8.2.10
- [Release notes](https://github.com/rustyhorde/vergen/releases)
- [Commits](https://github.com/rustyhorde/vergen/compare/8.2.6...8.2.10)

Updates `anstream` from 0.6.5 to 0.6.7
- [Commits](https://github.com/rust-cli/anstyle/compare/anstream-v0.6.5...anstream-v0.6.7)

Updates `bindgen` from 0.69.1 to 0.69.2
- [Release notes](https://github.com/rust-lang/rust-bindgen/releases)
- [Changelog](https://github.com/rust-lang/rust-bindgen/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/rust-bindgen/compare/v0.69.1...v0.69.2)

---
updated-dependencies:
- dependency-name: vergen
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: anstream
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: bindgen
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-01-16 01:09:38 +00:00
dependabot[bot] cb8d4e542d
chore(deps): bump serial_test from 2.0.0 to 3.0.0 (#2620)
Bumps [serial_test](https://github.com/palfrey/serial_test) from 2.0.0 to 3.0.0.
- [Release notes](https://github.com/palfrey/serial_test/releases)
- [Commits](https://github.com/palfrey/serial_test/compare/v2.0.0...v3.0.0)

---
updated-dependencies:
- dependency-name: serial_test
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-14 10:58:03 +09:00
dependabot[bot] b062181244
chore(deps): bump the patch group with 4 updates
Bumps the patch group with 4 updates: [serde](https://github.com/serde-rs/serde), [libc](https://github.com/rust-lang/libc), [proc-macro2](https://github.com/dtolnay/proc-macro2) and [winnow](https://github.com/winnow-rs/winnow).


Updates `serde` from 1.0.194 to 1.0.195
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.194...v1.0.195)

Updates `libc` from 0.2.151 to 0.2.152
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Commits](https://github.com/rust-lang/libc/compare/0.2.151...0.2.152)

Updates `proc-macro2` from 1.0.75 to 1.0.76
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](https://github.com/dtolnay/proc-macro2/compare/1.0.75...1.0.76)

Updates `winnow` from 0.5.32 to 0.5.33
- [Changelog](https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md)
- [Commits](https://github.com/winnow-rs/winnow/compare/v0.5.32...v0.5.33)

---
updated-dependencies:
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: proc-macro2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: winnow
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-01-08 01:01:34 +00:00
dependabot[bot] 837c64be8a
chore(deps): bump the patch group with 7 updates
Bumps the patch group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.78` | `1.0.79` |
| [serde](https://github.com/serde-rs/serde) | `1.0.193` | `1.0.194` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.109` | `1.0.110` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.53` | `1.0.56` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.76` | `0.1.77` |
| [target-lexicon](https://github.com/bytecodealliance/target-lexicon) | `0.12.12` | `0.12.13` |
| [winnow](https://github.com/winnow-rs/winnow) | `0.5.31` | `0.5.32` |


Updates `anyhow` from 1.0.78 to 1.0.79
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](https://github.com/dtolnay/anyhow/compare/1.0.78...1.0.79)

Updates `serde` from 1.0.193 to 1.0.194
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.193...v1.0.194)

Updates `serde_json` from 1.0.109 to 1.0.110
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](https://github.com/serde-rs/json/compare/v1.0.109...v1.0.110)

Updates `thiserror` from 1.0.53 to 1.0.56
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](https://github.com/dtolnay/thiserror/compare/1.0.53...1.0.56)

Updates `async-trait` from 0.1.76 to 0.1.77
- [Release notes](https://github.com/dtolnay/async-trait/releases)
- [Commits](https://github.com/dtolnay/async-trait/commits)

Updates `target-lexicon` from 0.12.12 to 0.12.13
- [Commits](https://github.com/bytecodealliance/target-lexicon/compare/v0.12.12...v0.12.13)

Updates `winnow` from 0.5.31 to 0.5.32
- [Changelog](https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md)
- [Commits](https://github.com/winnow-rs/winnow/compare/v0.5.31...v0.5.32)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: async-trait
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: target-lexicon
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: winnow
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-01-04 00:30:36 +00:00
dependabot[bot] 7f85f48e5a
chore(deps): bump the patch group with 11 updates
Bumps the patch group with 11 updates:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.77` | `1.0.78` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.52` | `1.0.53` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.75` | `0.1.76` |
| [deranged](https://github.com/jhpratt/deranged) | `0.3.10` | `0.3.11` |
| [fd-lock](https://github.com/yoshuawuyts/fd-lock) | `4.0.1` | `4.0.2` |
| [iana-time-zone](https://github.com/strawlab/iana-time-zone) | `0.1.58` | `0.1.59` |
| [is-terminal](https://github.com/sunfishcode/is-terminal) | `0.4.9` | `0.4.10` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.71` | `1.0.73` |
| [quote](https://github.com/dtolnay/quote) | `1.0.33` | `1.0.34` |
| [schannel](https://github.com/steffengy/schannel-rs) | `0.1.22` | `0.1.23` |
| [winnow](https://github.com/winnow-rs/winnow) | `0.5.30` | `0.5.31` |


Updates `anyhow` from 1.0.77 to 1.0.78
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](https://github.com/dtolnay/anyhow/compare/1.0.77...1.0.78)

Updates `thiserror` from 1.0.52 to 1.0.53
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](https://github.com/dtolnay/thiserror/compare/1.0.52...1.0.53)

Updates `async-trait` from 0.1.75 to 0.1.76
- [Release notes](https://github.com/dtolnay/async-trait/releases)
- [Commits](https://github.com/dtolnay/async-trait/compare/0.1.75...0.1.76)

Updates `deranged` from 0.3.10 to 0.3.11
- [Commits](https://github.com/jhpratt/deranged/commits/v0.3.11)

Updates `fd-lock` from 4.0.1 to 4.0.2
- [Release notes](https://github.com/yoshuawuyts/fd-lock/releases)
- [Commits](https://github.com/yoshuawuyts/fd-lock/compare/v4.0.1...v4.0.2)

Updates `iana-time-zone` from 0.1.58 to 0.1.59
- [Changelog](https://github.com/strawlab/iana-time-zone/blob/main/CHANGELOG.md)
- [Commits](https://github.com/strawlab/iana-time-zone/compare/v0.1.58...v0.1.59)

Updates `is-terminal` from 0.4.9 to 0.4.10
- [Commits](https://github.com/sunfishcode/is-terminal/compare/v0.4.9...v0.4.10)

Updates `proc-macro2` from 1.0.71 to 1.0.73
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](https://github.com/dtolnay/proc-macro2/compare/1.0.71...1.0.73)

Updates `quote` from 1.0.33 to 1.0.34
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](https://github.com/dtolnay/quote/compare/1.0.33...1.0.34)

Updates `schannel` from 0.1.22 to 0.1.23
- [Release notes](https://github.com/steffengy/schannel-rs/releases)
- [Commits](https://github.com/steffengy/schannel-rs/compare/v0.1.22...v0.1.23)

Updates `winnow` from 0.5.30 to 0.5.31
- [Changelog](https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md)
- [Commits](https://github.com/winnow-rs/winnow/compare/v0.5.30...v0.5.31)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: async-trait
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: deranged
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: fd-lock
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: iana-time-zone
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: is-terminal
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: proc-macro2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: quote
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: schannel
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: winnow
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-01-01 00:50:21 +00:00