You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by mg...@apache.org on 2023/03/21 19:37:53 UTC

[avro] branch branch-1.11 updated: Bump regex from 1.7.1 to 1.7.2 in /lang/rust (#2159)

This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch branch-1.11
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to refs/heads/branch-1.11 by this push:
     new afa85d135 Bump regex from 1.7.1 to 1.7.2 in /lang/rust (#2159)
afa85d135 is described below

commit afa85d135c803680470786c88faab449a4baa963
Author: dependabot[bot] <49...@users.noreply.github.com>
AuthorDate: Tue Mar 21 21:37:25 2023 +0200

    Bump regex from 1.7.1 to 1.7.2 in /lang/rust (#2159)
    
    Bumps [regex](https://github.com/rust-lang/regex) from 1.7.1 to 1.7.2.
    - [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.7.1...1.7.2)
    
    ---
    updated-dependencies:
    - dependency-name: regex
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <su...@github.com>
    Co-authored-by: dependabot[bot] <49...@users.noreply.github.com>
    (cherry picked from commit cb1ad00d2e56f8d8fdf9f3bdce07d6d214a09448)
---
 lang/rust/Cargo.lock      | 8 ++++----
 lang/rust/avro/Cargo.toml | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/lang/rust/Cargo.lock b/lang/rust/Cargo.lock
index eecd949d5..5d69c439a 100644
--- a/lang/rust/Cargo.lock
+++ b/lang/rust/Cargo.lock
@@ -807,9 +807,9 @@ checksum = "a0d51660a68078997855ba5602f73ab3a5031bd7ad480a9d4c90fbbf04e1fff0"
 
 [[package]]
 name = "regex"
-version = "1.7.1"
+version = "1.7.2"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733"
+checksum = "cce168fea28d3e05f158bda4576cf0c844d5045bc2cc3620fa0292ed5bb5814c"
 dependencies = [
  "aho-corasick",
  "memchr",
@@ -818,9 +818,9 @@ dependencies = [
 
 [[package]]
 name = "regex-syntax"
-version = "0.6.27"
+version = "0.6.29"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
+checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
 
 [[package]]
 name = "rle-decode-fast"
diff --git a/lang/rust/avro/Cargo.toml b/lang/rust/avro/Cargo.toml
index 1345dcb4a..5ef24be33 100644
--- a/lang/rust/avro/Cargo.toml
+++ b/lang/rust/avro/Cargo.toml
@@ -63,7 +63,7 @@ lazy_static = { default-features = false, version = "1.4.0" }
 libflate = { default-features = false, version = "1.2.0" }
 log = { default-features = false, version = "0.4.17" }
 num-bigint = { default-features = false, version = "0.4.3" }
-regex = { default-features = false, version = "1.7.1", features = ["std", "perf"] }
+regex = { default-features = false, version = "1.7.2", features = ["std", "perf"] }
 serde = { default-features = false, version = "1.0.158", features = ["derive"] }
 serde_json = { default-features = false, version = "1.0.94", features = ["std"] }
 snap = { default-features = false, version = "1.1.0", optional = true }