Skip to content

Bump regex from 0.2.10 to 1.0.0#32

Closed
dependabot-preview[bot] wants to merge 1 commit intomasterfrom
dependabot/cargo/regex-1.0.0
Closed

Bump regex from 0.2.10 to 1.0.0#32
dependabot-preview[bot] wants to merge 1 commit intomasterfrom
dependabot/cargo/regex-1.0.0

Conversation

@dependabot-preview
Copy link
Contributor

@dependabot-preview dependabot-preview bot commented May 2, 2018

Bumps regex from 0.2.10 to 1.0.0.

Release notes

Sourced from regex's releases.

1.0.0

This release marks the 1.0 release of regex.

While this release includes some breaking changes, most users of older versions
of the regex library should be able to migrate to 1.0 by simply bumping the
version number. The important changes are as follows:

  • We adopt Rust 1.20 as the new minimum supported version of Rust for regex.
    We also tentativley adopt a policy that permits bumping the minimum supported
    version of Rust in minor version releases of regex, but no patch releases.
    That is, with respect to semver, we do not strictly consider bumping the
    minimum version of Rust to be a breaking change, but adopt a conservative
    stance as a compromise.
  • Octal syntax in regular expressions has been disabled by default. This
    permits better error messages that inform users that backreferences aren't
    available. Octal syntax can be re-enabled via the corresponding option on
    RegexBuilder.
  • (?-u:\B) is no longer allowed in Unicode regexes since it can match at
    invalid UTF-8 code unit boundaries. (?-u:\b) is still allowed in Unicode
    regexes.
  • The From<regex_syntax::Error> impl has been removed. This formally removes
    the public dependency on regex-syntax.
  • A new feature, use_std, has been added and enabled by default. Disabling
    the feature will result in a compilation error. In the future, this may
    permit us to support no_std environments (w/ alloc) in a backwards
    compatible way.

For more information and discussion, please see
1.0 release tracking issue.

Changelog

Sourced from regex's changelog.

1.0.0 (2018-05-01)

This release marks the 1.0 release of regex.

While this release includes some breaking changes, most users of older versions
of the regex library should be able to migrate to 1.0 by simply bumping the
version number. The important changes are as follows:

  • We adopt Rust 1.20 as the new minimum supported version of Rust for regex.
    We also tentativley adopt a policy that permits bumping the minimum supported
    version of Rust in minor version releases of regex, but no patch releases.
    That is, with respect to semver, we do not strictly consider bumping the
    minimum version of Rust to be a breaking change, but adopt a conservative
    stance as a compromise.
  • Octal syntax in regular expressions has been disabled by default. This
    permits better error messages that inform users that backreferences aren't
    available. Octal syntax can be re-enabled via the corresponding option on
    RegexBuilder.
  • (?-u:\B) is no longer allowed in Unicode regexes since it can match at
    invalid UTF-8 code unit boundaries. (?-u:\b) is still allowed in Unicode
    regexes.
  • The From<regex_syntax::Error> impl has been removed. This formally removes
    the public dependency on regex-syntax.
  • A new feature, use_std, has been added and enabled by default. Disabling
    the feature will result in a compilation error. In the future, this may
    permit us to support no_std environments (w/ alloc) in a backwards
    compatible way.

For more information and discussion, please see
1.0 release tracking issue.

0.2.11 (2018-05-01)

This release primarily contains bug fixes. Some of them resolve bugs where
the parser could panic.

New features:

  • FEATURE #459:
    Include C++'s standard regex library and Boost's regex library in the
    benchmark harness. We now include D/libphobos, C++/std, C++/boost, Oniguruma,
    PCRE1, PCRE2, RE2 and Tcl in the harness.

Bug fixes:

  • BUG #445:
    Clarify order of indices returned by RegexSet match iterator.
  • BUG #461:
    Improve error messages for invalid regexes like [\d-a].
... (truncated)
Commits
  • b5ef0ec regex 1.0
  • 0052f3c changelog 1.0.0
  • 1a8f5e6 build: gate regex API on 'use_std' feature
  • c1b1289 build: remove simd-accel feature
  • 9884635 regex: remove From<regex_syntax::Error> impl
  • 8e180eb syntax: fixes for Rust 1.20.0
  • 76343f8 regex: ban (?-u:\B) for Unicode regexes
  • 9604cc0 unicode: remove implementations of encode_utf8
  • fc06d1a regex: disable octal syntax by default
  • 05ab8f3 *: switch from try! to ?
  • Additional commits viewable in compare view

Dependabot compatibility score

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 commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot ignore this [minor|major] version will close this PR and stop Dependabot creating any more for this minor/major 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)
  • @dependabot use [this|these] label[s] will set the current labels as the default for future PRs for this repo and language

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

@codecov
Copy link

codecov bot commented May 2, 2018

Codecov Report

Merging #32 into master will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master      #32   +/-   ##
=======================================
  Coverage   79.04%   79.04%           
=======================================
  Files          27       27           
  Lines        1088     1088           
=======================================
  Hits          860      860           
  Misses        228      228

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 83c3c91...0a184ba. Read the comment docs.

@dependabot-preview dependabot-preview bot force-pushed the dependabot/cargo/regex-1.0.0 branch 3 times, most recently from afa4a96 to 7dda8d0 Compare May 8, 2018 05:02
Bumps [regex](https://github.com/rust-lang/regex) from 0.2.10 to 1.0.0.
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@0.2.10...1.0.0)

Signed-off-by: dependabot[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot force-pushed the dependabot/cargo/regex-1.0.0 branch from 7dda8d0 to 0a184ba Compare May 9, 2018 05:03
@dependabot-preview
Copy link
Contributor Author

Superseded by #62.

@dependabot-preview dependabot-preview bot deleted the dependabot/cargo/regex-1.0.0 branch February 12, 2019 04:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

Comments