From 0a0a72722c45d10132e675c2650c4db7708e83fd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Mar 2023 21:31:52 +0000 Subject: [PATCH] Bump regex from 1.7.2 to 1.7.3 (#2748) Bumps [regex](https://github.com/rust-lang/regex) from 1.7.2 to 1.7.3.
Changelog

Sourced from regex's changelog.

1.7.3 (2023-03-24)

This is a small release that fixes a bug in Regex::shortest_match_at that could cause it to panic, even when the offset given is valid.

Bug fixes:

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=regex&package-manager=cargo&previous-version=1.7.2&new-version=1.7.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 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 | 4 ++-- boa_cli/Cargo.toml | 2 +- boa_tester/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0db9f5f9f4..359b1782a2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3189,9 +3189,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.7.2" +version = "1.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cce168fea28d3e05f158bda4576cf0c844d5045bc2cc3620fa0292ed5bb5814c" +checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d" dependencies = [ "aho-corasick", "memchr", diff --git a/boa_cli/Cargo.toml b/boa_cli/Cargo.toml index 0c24b89409..880b100f09 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.13", features = ["derive"] } serde_json = "1.0.94" colored = "2.0.0" -regex = "1.7.2" +regex = "1.7.3" phf = { version = "0.11.1", features = ["macros"] } pollster = "0.3.0" diff --git a/boa_tester/Cargo.toml b/boa_tester/Cargo.toml index 764095334f..8485af0e5e 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.2" +regex = "1.7.3" once_cell = "1.17.1" colored = "2.0.0" fxhash = "0.2.1"