From 15b35357280687ecddfa6281622b7837620e821c Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 11 Mar 2024 21:21:08 +0100
Subject: [PATCH] chore(deps): Bump env_logger from 0.11.1 to 0.11.3 (#357)
Bumps [env_logger](https://github.com/rust-cli/env_logger) from 0.11.1
to 0.11.3.
Release notes
Sourced from env_logger's
releases.
v0.11.3
[0.11.3] - 2024-03-05
Features
- Experimental support for key-value logging behind
unstable-kv
v0.11.2
[0.11.2] - 2024-02-13
Changelog
Sourced from env_logger's
changelog.
[0.11.3] - 2024-03-05
Features
- Experimental support for key-value logging behind
unstable-kv
[0.11.2] - 2024-02-13
Commits
98ce803
chore: Release
7a16130
docs: Update changelog
e55af6f
Merge pull request #137
from tmccombs/structured
f6e2d45
feat(kv): Use now-stable kv feature of log crate
9f4a33a
feat(kv): Add styling for key in default format
9d26ad5
feat: Add support for Key-Value data in log records
8962096
Merge pull request #314
from rust-cli/renovate/pre-commit-action-3.x
4127228
chore(deps): update pre-commit/action action to v3.0.1
b0e3ea9
chore: Release
522ce17
Merge pull request #310
from epage/docs
- Additional commits viewable in compare
view
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=env_logger&package-manager=cargo&previous-version=0.11.1&new-version=0.11.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
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-automerge-start)
[//]: # (dependabot-automerge-end)
---
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 ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@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)
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
Cargo.lock | 12 ++++++------
crates/tests/tests-common/Cargo.toml | 2 +-
2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index f7227988c..b1ec23d67 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -77,9 +77,9 @@ dependencies = [
[[package]]
name = "anstyle"
-version = "1.0.4"
+version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87"
+checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc"
[[package]]
name = "anstyle-parse"
@@ -705,9 +705,9 @@ dependencies = [
[[package]]
name = "env_logger"
-version = "0.11.1"
+version = "0.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "05e7cf40684ae96ade6232ed84582f40ce0a66efcd43a5117aef610534f8e0b8"
+checksum = "38b35839ba51819680ba087cd351788c9a3c476841207e0b8cee0b04722343b9"
dependencies = [
"anstream",
"anstyle",
@@ -1366,9 +1366,9 @@ dependencies = [
[[package]]
name = "log"
-version = "0.4.20"
+version = "0.4.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
+checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
[[package]]
name = "matchers"
diff --git a/crates/tests/tests-common/Cargo.toml b/crates/tests/tests-common/Cargo.toml
index 3f07a6a7b..b226dd198 100644
--- a/crates/tests/tests-common/Cargo.toml
+++ b/crates/tests/tests-common/Cargo.toml
@@ -22,7 +22,7 @@ ndc-test = { git = "https://github.com/hasura/ndc-spec.git", tag = "v0.1.0" }
anyhow = "1.0.80"
axum = "0.6.20"
axum-test-helper = "0.3.0"
-env_logger = "0.11.1"
+env_logger = "0.11.3"
hyper = { version = "0.14.28", features = ["tcp"] }
jsonschema = { version = "0.17.1", default-features = false, features = ["resolve-http"] }
reqwest = "0.11.24"