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/05/24 05:48:23 UTC

[avro] branch branch-1.11 updated: Bump regex from 1.8.1 to 1.8.2 in /lang/rust (#2248)

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 3d7714bfa Bump regex from 1.8.1 to 1.8.2 in /lang/rust (#2248)
3d7714bfa is described below

commit 3d7714bfa1d4f575a5ea6476c0266a3c1a4408d7
Author: dependabot[bot] <49...@users.noreply.github.com>
AuthorDate: Wed May 24 08:47:39 2023 +0300

    Bump regex from 1.8.1 to 1.8.2 in /lang/rust (#2248)
    
    Bumps [regex](https://github.com/rust-lang/regex) from 1.8.1 to 1.8.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.8.1...1.8.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 e767e9c97bf0caf4ac1353c9a4f1de61135bc900)
---
 lang/rust/Cargo.lock      | 10 +++++-----
 lang/rust/avro/Cargo.toml |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/lang/rust/Cargo.lock b/lang/rust/Cargo.lock
index 8323c55bb..b9f25cde2 100644
--- a/lang/rust/Cargo.lock
+++ b/lang/rust/Cargo.lock
@@ -817,13 +817,13 @@ checksum = "a0d51660a68078997855ba5602f73ab3a5031bd7ad480a9d4c90fbbf04e1fff0"
 
 [[package]]
 name = "regex"
-version = "1.8.1"
+version = "1.8.2"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370"
+checksum = "d1a59b5d8e97dee33696bf13c5ba8ab85341c002922fba050069326b9c498974"
 dependencies = [
  "aho-corasick",
  "memchr",
- "regex-syntax 0.7.1",
+ "regex-syntax 0.7.2",
 ]
 
 [[package]]
@@ -834,9 +834,9 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
 
 [[package]]
 name = "regex-syntax"
-version = "0.7.1"
+version = "0.7.2"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c"
+checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78"
 
 [[package]]
 name = "rle-decode-fast"
diff --git a/lang/rust/avro/Cargo.toml b/lang/rust/avro/Cargo.toml
index 7fa41419e..997df8e4c 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.8.1", features = ["std", "perf"] }
+regex = { default-features = false, version = "1.8.2", features = ["std", "perf"] }
 serde = { default-features = false, version = "1.0.163", features = ["derive"] }
 serde_json = { default-features = false, version = "1.0.96", features = ["std"] }
 snap = { default-features = false, version = "1.1.0", optional = true }