Skip to content

Commit

Permalink
Merge 90c5ea7 into 0acd5de
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs committed May 25, 2022
2 parents 0acd5de + 90c5ea7 commit e53dbb9
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
if: github.event.pull_request.draft == false
strategy:
matrix:
node-version: [12, 14, 16, 18]
node-version: [14, 16, 18]
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"license": "MIT",
"author": "Frazer Smith <frazer.dev@outlook.com>",
"engines": {
"node": ">=12.0.0"
"node": ">=14.0.0"
},
"scripts": {
"jest": "jest",
Expand Down Expand Up @@ -53,22 +53,22 @@
"devDependencies": {
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"eslint": "^8.9.0",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-jsdoc": "^39.2.9",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.2.2",
"eslint-plugin-jsdoc": "^39.3.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-security-node": "^1.1.1",
"fastify": "^3.27.2",
"fastify": "^4.0.0-rc.3",
"husky": "^8.0.1",
"jest": "^28.0.3",
"jest": "^28.1.0",
"license-checker": "^25.0.1",
"prettier": "^2.5.1"
"prettier": "^2.6.2"
},
"dependencies": {
"fastify-plugin": "^3.0.0"
"fastify-plugin": "^3.0.1"
}
}
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ async function plugin(server) {
});
}

module.exports = fp(plugin, { fastify: "3.x", name: "fastify-disablecache" });
module.exports = fp(plugin, { fastify: "4.x", name: "fastify-disablecache" });

0 comments on commit e53dbb9

Please sign in to comment.