mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-25 16:04:01 +00:00
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:
parent
cfcae7bfd3
commit
7ee08ac2e7
@ -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)
|
||||
|
||||
@ -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
20
package-lock.json
generated
@ -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",
|
||||
|
||||
@ -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": {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user