Skip to content

Releases: jviereck/regjsparser

v0.6.2

21 Dec 06:01
Compare
Choose a tag to compare

Fixes error when parsing RegExp like /[\\-]/u - see #98 (thanks to @JLHwung for fixing)

v0.6.1: Merge pull request #97 from nicolo-ribaudo/test-regjsgen-dot

13 Dec 05:53
2df05e4
Compare
Choose a tag to compare

Changes:

  • fix IdentityEscape grammar, see #96
  • Add test for /a./, see #97

Support astral ID_Continue characters in capture group names

04 Dec 20:49
Compare
Choose a tag to compare

Update correct version pushed to npm

25 Nov 15:11
Compare
Choose a tag to compare
v0.5.1

Update package.json

Switch IdentityEscape and Atom parsing behaviour to Annex B

25 Nov 14:56
cabbed7
Compare
Choose a tag to compare
Merge pull request #93 from adrianheine/gh-pages

Switch IdentityEscape and Atom parsing behaviour to Annex B

Adding support for lookbehind

28 Aug 15:05
Compare
Choose a tag to compare

0.3.0

13 Jan 09:04
0cd19a8
Compare
Choose a tag to compare

Adding support for named capturing groups (see 1 and #83 for details).

BSD License Fix

23 Feb 19:58
Compare
Choose a tag to compare

0.2.0

24 May 21:59
Compare
Choose a tag to compare

Minor version bump because the interface to parse takes a new third argument. If you used the previous 0.1.5 release and ignored the third argument to parse the new version will not affect you.

More details:

  • This release introduces a third argument to the parse function. The new argument allows to toggle (experimental) features on/off. In particular, this allows to enable experimental support for parsing "\p{…} and \P{…} in Unicode mode" (see #78 for more details).
  • The cli command regjsparser can handle the new -v/--version and -f/--flags. The later enables users to specify the u flag for unicode mode (see #79)

0.1.5

16 Aug 20:56
Compare
Choose a tag to compare
0.1.5 Pre-release
Pre-release

Add better error message on parser errors (see #74 and #76).