New release

- Updating packages
- Adding support for the retrieval of projects by user id [#105](https://github.com/jdalrymple/node-gitlab/pull/105) thanks to [Michael Townsend](https://github.com/Continuities)
This commit is contained in:
Justin 2018-06-25 22:58:08 -04:00
parent cfcae7bfd3
commit 7ee08ac2e7
4 changed files with 22 additions and 8 deletions

View File

@ -1,5 +1,10 @@
# Changelog
[3.4.3](https://github.com/jdalrymple/node-gitlab/tags/3.4.3) (2018-6-25)
------------------
- Updating packages
- Adding support for the retrieval of projects by user id [#105](https://github.com/jdalrymple/node-gitlab/pull/105) thanks to [Michael Townsend](https://github.com/Continuities)
[3.4.2](https://github.com/jdalrymple/node-gitlab/tags/3.4.2) (2018-6-06)
------------------
- Fixing previous release errors [#100](https://github.com/jdalrymple/node-gitlab/issues/100)

View File

@ -467,6 +467,7 @@ This started off as a fork from [node-gitlab](https://github.com/node-gitlab/nod
- [Sharma-Rajat](https://github.com/Sharma-Rajat)
- [Joseph Petersen](https://github.com/casz)
- [Igor Katsuba](https://github.com/Defenderbass)
- [Michael Townsend](https://github.com/Continuities)
## License

20
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "gitlab",
"version": "0.0.0-development",
"version": "3.4.3",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -711,8 +711,7 @@
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.0.0-beta.51.tgz",
"integrity": "sha1-SLjtGDBwNMZiD2Q1FGUMoszAFlo=",
"requires": {
"core-js": "^2.5.7",
"regenerator-runtime": "^0.11.1"
"core-js": "^2.5.7"
},
"dependencies": {
"core-js": {
@ -1705,6 +1704,14 @@
"requires": {
"core-js": "^2.4.0",
"regenerator-runtime": "^0.11.0"
},
"dependencies": {
"regenerator-runtime": {
"version": "0.11.1",
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
"integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==",
"dev": true
}
}
},
"babel-template": {
@ -7821,9 +7828,10 @@
}
},
"regenerator-runtime": {
"version": "0.11.1",
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
"integrity": "sha1-vgWtf5v30i4Fb5cmzuUBf78Z4uk="
"version": "0.12.0",
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.12.0.tgz",
"integrity": "sha512-SpV2LhF5Dm9UYMEprB3WwsBnWwqTrmjrm2UZb42cl2G02WVGgx7Mg8aa9pdLEKp6hZ+/abcMc2NxKA8f02EG2w==",
"dev": true
},
"regenerator-transform": {
"version": "0.12.4",

View File

@ -1,6 +1,6 @@
{
"name": "gitlab",
"version": "0.0.0-development",
"version": "3.4.3",
"description": "Full NodeJS implementation of the GitLab API. Supports Promises, Async/Await.",
"main": "dist/latest/index.js",
"engines": {
@ -54,7 +54,7 @@
"eslint-plugin-react": "^7.9.1",
"jest": "^23.1.0",
"jest-tap-reporter": "^1.9.0",
"regenerator-runtime": "^0.12.0"
"regenerator-runtime": "^0.12.0",
"semantic-release": "^15.6.0"
},
"dependencies": {