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/25 18:45:53 UTC

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

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 2466b7fd6 Bump regex from 1.8.2 to 1.8.3 in /lang/rust (#2252)
2466b7fd6 is described below

commit 2466b7fd6ac7ef35b728bbb805c32eba76f2e7de
Author: dependabot[bot] <49...@users.noreply.github.com>
AuthorDate: Thu May 25 21:45:24 2023 +0300

    Bump regex from 1.8.2 to 1.8.3 in /lang/rust (#2252)
    
    Bumps [regex](https://github.com/rust-lang/regex) from 1.8.2 to 1.8.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.8.2...1.8.3)
    
    ---
    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 01030f0f12758b9f9a936cff55d6981a81f9a4c7)
---
 lang/rust/Cargo.lock      | 4 ++--
 lang/rust/avro/Cargo.toml | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/lang/rust/Cargo.lock b/lang/rust/Cargo.lock
index 08cad663d..55021ab68 100644
--- a/lang/rust/Cargo.lock
+++ b/lang/rust/Cargo.lock
@@ -810,9 +810,9 @@ checksum = "a0d51660a68078997855ba5602f73ab3a5031bd7ad480a9d4c90fbbf04e1fff0"
 
 [[package]]
 name = "regex"
-version = "1.8.2"
+version = "1.8.3"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d1a59b5d8e97dee33696bf13c5ba8ab85341c002922fba050069326b9c498974"
+checksum = "81ca098a9821bd52d6b24fd8b10bd081f47d39c22778cafaa75a2857a62c6390"
 dependencies = [
  "aho-corasick",
  "memchr",
diff --git a/lang/rust/avro/Cargo.toml b/lang/rust/avro/Cargo.toml
index 997df8e4c..942eb1e7d 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.2", features = ["std", "perf"] }
+regex = { default-features = false, version = "1.8.3", 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 }