Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: slevithan/xregexp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.2.4
Choose a base ref
...
head repository: slevithan/xregexp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.3.0
Choose a head ref
  • 11 commits
  • 18 files changed
  • 1 contributor

Commits on Jan 29, 2020

  1. Copy the full SHA
    07d50b5 View commit details
  2. Copy the full SHA
    7683a9b View commit details
  3. npm test

    josephfrazier authored and slevithan committed Jan 29, 2020
    Copy the full SHA
    57f919a View commit details
  4. Copy the full SHA
    0b8a5a1 View commit details
  5. npm test

    josephfrazier authored and slevithan committed Jan 29, 2020
    Copy the full SHA
    81703c7 View commit details
  6. Revert "npm test"

    This reverts commit bd519ac.
    josephfrazier authored and slevithan committed Jan 29, 2020
    Copy the full SHA
    7d2c087 View commit details
  7. Revert "Add Emoji list of Binary_Propertys"

    This reverts commit 5dc3741.
    josephfrazier authored and slevithan committed Jan 29, 2020
    Copy the full SHA
    d0ecf00 View commit details
  8. Copy the full SHA
    7f6f424 View commit details

Commits on Jan 30, 2020

  1. Upgrade to @babel/runtime-corejs3

    Fixes #279
    josephfrazier authored and slevithan committed Jan 30, 2020
    Copy the full SHA
    e5a5bbe View commit details
  2. Use corejs 3

    josephfrazier authored and slevithan committed Jan 30, 2020
    Copy the full SHA
    2662b2b View commit details

Commits on Feb 11, 2020

  1. Release v4.3.0 (#283)

    Changes include:
    
    * Upgrading from Unicode 11.0.0 to Unicode 12.1.0: #278
    * Upgrading from `@babel/runtime-corejs2` to `@babel/runtime-corejs3`: #280
    
    To generate this commit, I followed the steps at #205 (comment)
    
    See more context at #280 (comment)
    josephfrazier authored Feb 11, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    1623cfe View commit details
2 changes: 1 addition & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
[
"@babel/plugin-transform-runtime",
{
"corejs": 2,
"corejs": 3,
},
],
"add-module-exports",
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# XRegExp 4.2.4
# XRegExp 4.3.0

[![Build Status](https://travis-ci.org/slevithan/xregexp.svg?branch=master)](https://travis-ci.org/slevithan/xregexp)

@@ -119,7 +119,7 @@ XRegExp('^\\pS$').test('💩'); // -> true

Opting in to astral mode disables the use of `\p{…}` and `\P{…}` within character classes. In astral mode, use e.g. `(\pL|[0-9_])+` instead of `[\pL0-9_]+`.

XRegExp uses Unicode 11.0.0.
XRegExp uses Unicode 12.1.0.

### XRegExp.build

Loading