From e1f90a8025bc4d34d9aa035ef59bb92c484401d5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Nov 2022 14:16:12 +0000 Subject: [PATCH] Bump regex from 1.6.0 to 1.7.0 (#2418) Bumps [regex](https://github.com/rust-lang/regex) from 1.6.0 to 1.7.0.
Changelog

Sourced from regex's changelog.

1.7.0 (2022-11-05)

This release principally includes an upgrade to Unicode 15.

New features:

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=regex&package-manager=cargo&previous-version=1.6.0&new-version=1.7.0)](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 cf29483283..5f3b2daf7e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1391,9 +1391,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.6.0" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b" +checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a" dependencies = [ "aho-corasick", "memchr", diff --git a/boa_cli/Cargo.toml b/boa_cli/Cargo.toml index c3c15c36e5..b7658c2b61 100644 --- a/boa_cli/Cargo.toml +++ b/boa_cli/Cargo.toml @@ -21,7 +21,7 @@ rustyline-derive = "0.7.0" clap = { version = "4.0.18", features = ["derive"] } serde_json = "1.0.87" colored = "2.0.0" -regex = "1.6.0" +regex = "1.7.0" phf = { version = "0.11.1", features = ["macros"] } [target.x86_64-unknown-linux-gnu.dependencies] diff --git a/boa_tester/Cargo.toml b/boa_tester/Cargo.toml index 377c3b3d00..00979daf41 100644 --- a/boa_tester/Cargo.toml +++ b/boa_tester/Cargo.toml @@ -21,7 +21,7 @@ serde = { version = "1.0.147", features = ["derive"] } serde_yaml = "0.9.14" serde_json = "1.0.87" bitflags = "1.3.2" -regex = "1.6.0" +regex = "1.7.0" once_cell = "1.16.0" colored = "2.0.0" fxhash = "0.2.1"