Skip to content

Commit

Permalink
Update regex crate to 1.5.5 version to fix CVE-2022-24713
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranron committed Mar 9, 2022
1 parent c73d30c commit a36d4e7
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 7 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@ All user visible changes to `cucumber` crate will be documented in this file. Th



## [0.12.1] · 2022-03-09
[0.12.1]: /../../tree/v0.12.1

[Diff](/../../compare/v0.12.0...v0.12.1)

### Security updated

- `regex` crate to 1.5.5 version to fix [CVE-2022-24713].

[CVE-2022-24713]: https://blog.rust-lang.org/2022/03/08/cve-2022-24713.html




## [0.12.0] · 2022-02-10
[0.12.0]: /../../tree/v0.12.0

Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cucumber"
version = "0.12.0"
version = "0.12.1"
edition = "2021"
rust-version = "1.57"
description = """\
Expand Down Expand Up @@ -49,12 +49,12 @@ globwalk = "0.8.1"
itertools = "0.10"
linked-hash-map = "0.5.3"
once_cell = { version = "1.8", features = ["parking_lot"] }
regex = "1.5"
regex = "1.5.5"
sealed = "0.4"

# "macros" feature dependencies.
cucumber-codegen = { version = "0.12", path = "./codegen", optional = true }
cucumber-expressions = { version = "0.2", features = ["into-regex"], optional = true }
cucumber-codegen = { version = "0.12.1", path = "./codegen", optional = true }
cucumber-expressions = { version = "0.2.1", features = ["into-regex"], optional = true }
inventory = { version = "0.2", optional = true }

# "output-json" feature dependencies.
Expand Down
12 changes: 12 additions & 0 deletions codegen/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ All user visible changes to `cucumber-codegen` crate will be documented in this



## [0.12.1] · 2022-03-09
[0.12.1]: /../../tree/v0.12.1/codegen

### Security updated

- `regex` crate to 1.5.5 version to fix [CVE-2022-24713].

[CVE-2022-24713]: https://blog.rust-lang.org/2022/03/08/cve-2022-24713.html




## [0.12.0] · 2022-02-10
[0.12.0]: /../../tree/v0.12.0/codegen

Expand Down
6 changes: 3 additions & 3 deletions codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cucumber-codegen"
version = "0.12.0" # should be the same as main crate version
version = "0.12.1" # should be the same as main crate version
edition = "2021"
rust-version = "1.57"
description = "Code generation for `cucumber` crate."
Expand All @@ -21,12 +21,12 @@ exclude = ["/tests/"]
proc-macro = true

[dependencies]
cucumber-expressions = { version = "0.2", features = ["into-regex"] }
cucumber-expressions = { version = "0.2.1", features = ["into-regex"] }
inflections = "1.1"
itertools = "0.10"
proc-macro2 = "1.0.28"
quote = "1.0.9"
regex = "1.4"
regex = "1.5.5"
syn = { version = "1.0.74", features = ["derive", "extra-traits", "full"] }
synthez = "0.2"

Expand Down

0 comments on commit a36d4e7

Please sign in to comment.