Skip to content

Commit 011741f

Browse files
committed
v4.0.0
1 parent aef7eb3 commit 011741f

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

LICENSE.MD

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 Vano Devium <webdevium@gmail.com>
3+
Copyright (c) 2019 Vano Devium <vano@devium.me>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.MD

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# fastify-qs
22

3-
[![Build Status](https://api.travis-ci.com/webdevium/fastify-qs.svg?branch=master)](https://travis-ci.com/github/webdevium/fastify-qs)
4-
[![GitHub issues](https://img.shields.io/github/issues/webdevium/fastify-qs)](https://github.com/webdevium/fastify-qs/issues)
5-
[![GitHub license](https://img.shields.io/github/license/webdevium/fastify-qs)](https://github.com/webdevium/fastify-qs/blob/master/LICENSE.MD)
3+
[![Build Status](https://api.travis-ci.com/vanodevium/fastify-qs.svg?branch=master)](https://travis-ci.com/github/vanodevium/fastify-qs)
4+
[![GitHub issues](https://img.shields.io/github/issues/vanodevium/fastify-qs)](https://github.com/vanodevium/fastify-qs/issues)
5+
[![GitHub license](https://img.shields.io/github/license/vanodevium/fastify-qs)](https://github.com/vanodevium/fastify-qs/blob/master/LICENSE.MD)
66
[![npm](https://img.shields.io/npm/v/fastify-qs)](https://www.npmjs.com/package/fastify-qs)
77

88
A plugin for [Fastify](https://fastify.io/) that adds support for parsing URL query parameters with [qs](https://www.npmjs.com/package/qs).

package.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fastify-qs",
3-
"version": "3.0.1",
3+
"version": "4.0.0",
44
"private": false,
55
"description": "Fastify plugin for querystring parsing with qs",
66
"keywords": [
@@ -9,13 +9,13 @@
99
"qs",
1010
"querystring"
1111
],
12-
"homepage": "https://github.com/webdevium/fastify-qs#readme",
12+
"homepage": "https://github.com/vanodevium/fastify-qs#readme",
1313
"bugs": {
14-
"url": "https://github.com/webdevium/fastify-qs/issues"
14+
"url": "https://github.com/vanodevium/fastify-qs/issues"
1515
},
1616
"repository": {
1717
"type": "git",
18-
"url": "git+ssh://git@github.com/webdevium/fastify-qs.git"
18+
"url": "git+ssh://git@github.com/vanodevium/fastify-qs.git"
1919
},
2020
"license": "MIT",
2121
"author": {
@@ -31,17 +31,17 @@
3131
"test-ci": "tap --cov 'test/**/*.test.js'"
3232
},
3333
"dependencies": {
34-
"fastify-plugin": "^3.0.0",
35-
"qs": "^6.10.1"
34+
"fastify-plugin": "^3.0.1",
35+
"qs": "^6.10.5"
3636
},
3737
"devDependencies": {
38-
"@types/node": "^14.17.5",
39-
"fastify": "^3.19.0",
40-
"phin": "^3.6.0",
38+
"@types/node": "^17.0.42",
39+
"fastify": "^4.0.1",
40+
"phin": "^3.6.1",
4141
"pre-commit": "^1.2.2",
4242
"snazzy": "^9.0.0",
43-
"standard": "^16.0.3",
44-
"tap": "^15.0.9"
43+
"standard": "^17.0.0",
44+
"tap": "^16.2.0"
4545
},
4646
"precommit": [
4747
"lint",

plugin.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ const plugin = (fastify, options, next) => {
1919
}
2020

2121
module.exports = fp(plugin, {
22-
fastify: '^3.0.0',
22+
fastify: '^4.0.0',
2323
name: packageJson.name
2424
})

0 commit comments

Comments
 (0)