From ff94d5c8e33cdc11f92813e422bdaa637c4905dc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 22 Mar 2023 14:52:01 +0000 Subject: [PATCH] Bump regex from 1.7.1 to 1.7.2 (#2721) Bumps [regex](https://github.com/rust-lang/regex) from 1.7.1 to 1.7.2.
Changelog

Sourced from regex's changelog.

1.7.2 (2023-03-21)

This is a small release that fixes a failing test on FreeBSD.

Bug fixes:

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=regex&package-manager=cargo&previous-version=1.7.1&new-version=1.7.2)](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 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)
--- Cargo.lock | 8 ++++---- boa_cli/Cargo.toml | 2 +- boa_tester/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bb9f6e4c66..7e95917a24 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3151,9 +3151,9 @@ dependencies = [ [[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", @@ -3172,9 +3172,9 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.6.28" +version = "0.6.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" +checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" [[package]] name = "region" diff --git a/boa_cli/Cargo.toml b/boa_cli/Cargo.toml index 3b12d6fc98..572a3a0e9e 100644 --- a/boa_cli/Cargo.toml +++ b/boa_cli/Cargo.toml @@ -19,7 +19,7 @@ rustyline = { version = "11.0.0", features = ["derive"]} clap = { version = "4.1.11", features = ["derive"] } serde_json = "1.0.94" colored = "2.0.0" -regex = "1.7.1" +regex = "1.7.2" phf = { version = "0.11.1", features = ["macros"] } pollster = "0.3.0" diff --git a/boa_tester/Cargo.toml b/boa_tester/Cargo.toml index 1e3b1ad7bd..92aeaf1c71 100644 --- a/boa_tester/Cargo.toml +++ b/boa_tester/Cargo.toml @@ -19,7 +19,7 @@ serde = { version = "1.0.156", features = ["derive"] } serde_yaml = "0.9.19" serde_json = "1.0.94" bitflags = "2.0.2" -regex = "1.7.1" +regex = "1.7.2" once_cell = "1.17.1" colored = "2.0.0" fxhash = "0.2.1"