Skip to content

Commit

Permalink
Merge branch 'release/1.8.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
Frazer Smith committed Oct 14, 2020
2 parents 6ef95c6 + 77a40d5 commit aad406e
Show file tree
Hide file tree
Showing 4 changed files with 452 additions and 429 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## <small>1.8.5 (2020-10-14)</small>

- build: create codeql-analysis.yml workflow file ([7346f8f](https://github.com/Fdawgs/node-poppler/commit/7346f8f))
- build(deps-dev): bump dev dependencies ([29da2a9](https://github.com/Fdawgs/node-poppler/commit/29da2a9))
- style(index): rename exec variable to better reflect usage ([528fd88](https://github.com/Fdawgs/node-poppler/commit/528fd88))
- docs: spelling and grammar fixes ([27ece49](https://github.com/Fdawgs/node-poppler/commit/27ece49))
- docs(api): add stdout usage for pdftotext, pdftocairo, and pdftops funcs ([bd05f63](https://github.com/Fdawgs/node-poppler/commit/bd05f63))
- docs(contributing): remove reference to replaced jest script ([874e368](https://github.com/Fdawgs/node-poppler/commit/874e368))
- chore: remove `jest` script; replaced by `test-only` script ([653cc22](https://github.com/Fdawgs/node-poppler/commit/653cc22))
- chore(lib): remove redundant win32 poppler files ([bfea135](https://github.com/Fdawgs/node-poppler/commit/bfea135))
- fix(lib): update poppler win32 binaries from 20.09.0 to 20.10.0 ([ab227f6](https://github.com/Fdawgs/node-poppler/commit/ab227f6))

## <small>1.8.4 (2020-10-01)</small>

- build(dependabot): remove assignment of pull requests to user ([dd04661](https://github.com/Fdawgs/node-poppler/commit/dd04661))
Expand Down
27 changes: 21 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,29 @@
{
"name": "node-poppler",
"version": "1.8.4",
"version": "1.8.5",
"description": "Asynchronous node.js wrapper for the Poppler PDF rendering library",
"keywords": [
"async",
"attach",
"cairo",
"converter",
"detach",
"html",
"pdf",
"pdf-converter",
"pdf-to-cairo",
"pdf-to-html",
"pdf-to-image",
"poppler"
"pdf-to-ppm",
"pdf-to-ps",
"pdf-to-text",
"poppler",
"ppm",
"ps",
"separate",
"text",
"txt",
"unite"
],
"main": "src/index.js",
"repository": "git+https://github.com/Fdawgs/node-poppler.git",
Expand Down Expand Up @@ -47,17 +62,17 @@
"conventional-changelog-cli": "^2.1.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.10.0",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-jsdoc": "^30.6.2",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-jsdoc": "^30.6.5",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"glob": "^7.1.6",
"jest": "^26.4.2",
"jest": "^26.5.3",
"jsdoc-to-markdown": "^6.0.1",
"jsinspect": "^0.12.7",
"prettier": "2.1.2"
Expand Down
1 change: 1 addition & 0 deletions src/index.test.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable security/detect-non-literal-fs-filename */
const fs = require('fs');
const glob = require('glob');
const os = require('os');
Expand Down
Loading

0 comments on commit aad406e

Please sign in to comment.