Skip to content

Commit

Permalink
chore: update changelog, bump version to 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adalinesimonian committed Sep 8, 2021
1 parent f4b1aeb commit ed9fdf1
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Change Log

## [v3.3.0](https://github.com/adalinesimonian/jshiki/tree/v3.3.0) (2021-09-08)

### Additions

- `typeof`, `in`, and `instanceof` operators are now supported. They are disabled by default to maintain behaviour with prior versions of jshiki.

### Fixes

- Fixed bug where rules with `**` wildcards would be incorrectly evaluated in certain cases.

### Documentation

- Documented that rules do not affect properties of values that are not objects or functions due to limitations of [proxies](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy).

### Development changes

- Coverage split between unit and functional tests.
- Unit tests have 100% coverage.
- Tests that used snapshots to check errors thrown by Node for property access on `null` and `undefined` have been edited to test without using snapshots. This is due to a change in V8 that changes the format of the error message, included in the version of V8 used by Node 16.9.0 and above.
- Type in SVG assets has been converted to outlines.
- VS Code configured to use the workspace version of Typescript.

[Full Changelog](https://github.com/adalinesimonian/jshiki/compare/v3.2.0...v3.3.0)

## [v3.2.0](https://github.com/adalinesimonian/jshiki/tree/v3.2.0) (2021-08-29)

### Additions
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jshiki",
"version": "3.2.0",
"version": "3.3.0",
"description": "Lightweight expression evaluation library for Node.js",
"keywords": [
"expression",
Expand Down

0 comments on commit ed9fdf1

Please sign in to comment.