Skip to content

Commit

Permalink
V13.0.0 (#64)
Browse files Browse the repository at this point in the history
* prettier

* works for node, not for browser

* fix tests

* remove EntryStream

* improve initialization

* update initialisation to use synchronous 'new' syntax

* doc tidy

* version bump

* tody up doc

* rc

* small changes and version bump

* cleanup deps

* fix problem with fielded search when importing

* test

* when caseSensitive:true tokenise in lower case when writing index

* new option on AGGREGATION_FILTER to show/hide empty buckets

* corrected initialisation example

* 13.0.0-next.0

* 13.0.0-rc.0

* 13.0.0-rc.1

* 13.0.0-rc.2

* 13.0.0-rc.3

* 13.0.0-rc.4

* 13.0.0-rc.5

* Update README.md

* comment

* bump deps and human-readable timestamps

* update supported node.js versions

* update actions

* new release 13.0.0
  • Loading branch information
fergiemcdowall authored Aug 7, 2024
1 parent 96ba006 commit 75efa49
Show file tree
Hide file tree
Showing 46 changed files with 3,789 additions and 2,798 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
name: tests
on:
- push
- pull_request
- push
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 16, 18, 20]
node-version: [18, 20, 22]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/checkout@v4
- run: npm install
- run: sudo apt-get install xvfb
- run: xvfb-run --auto-servernum npm test
- run: xvfb-run npm test
timeout-minutes: 5 # If the tests fails, the browser will hang open indefinitely
7 changes: 7 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"arrowParens": "avoid",
"bracketSpacing": true,
"semi": false,
"singleQuote": true,
"trailingComma": "none"
}
Loading

0 comments on commit 75efa49

Please sign in to comment.