mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-18 15:55:30 +00:00
# [15.0.0](https://github.com/jdalrymple/gitbeaker/compare/14.2.2...15.0.0) (2020-03-22) ### Bug Fixes * **gitbeaker-core:** 🐛 Notification Settings API special PUT requests ([6c748ec](6c748eceb4)) * **gitbeaker-core:** 🐛 ResourceTemplate.show was using the wrong http method ([e068e6a](e068e6a0e2)) ### Code Refactoring * **gitbeaker-core:** 💡 Adjusted the argument order for ResourceAwardEmojis ([348f6c1](348f6c1870)) * **gitbeaker-core:** 💡 Updated the function header for Group.create ([4a3906a](4a3906ad35)) * **gitbeaker-core:** 💡 Updated the License API ([2e9e580](2e9e58013b)) * 💡 Migrated to a monorepo structure ([d9cd4c9](d9cd4c9a91)) ### Features * **gitbeaker-cli:** 🎸 Added support for GITBEAKER_[Property] env variable ([6851800](6851800ca8)) ### BREAKING CHANGES * **gitbeaker-core:** 🧨 The order of arguments that include both the awardId and noteId has changed. It is now projectId, resourceId, noteId, and then awardId. This affects the award, remove and show functions. * **gitbeaker-core:** 🧨 Changed the spelling of the License API from Licence to License. Additionally the license.create method has been replaced with license.add and has a required first parameter that is the license. The license.all method now returns all licenses and no longer the license for the current user. This is now done by license.show. * **gitbeaker-core:** 🧨 Group.create takes an additional argument * 🧨 This migration requires users to import specific subpackages. For NodeJS usage, that would be @gitbeaker/node.
54 lines
1.1 KiB
JSON
54 lines
1.1 KiB
JSON
{
|
|
"name": "@gitbeaker/cli",
|
|
"description": "Full NodeJS CLI implementation of the GitLab API.",
|
|
"version": "15.0.0",
|
|
"author": {
|
|
"name": "Justin Dalrymple"
|
|
},
|
|
"bin": {
|
|
"gitbeaker": "dist/index.js"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/jdalrymple/gitbeaker/issues"
|
|
},
|
|
"dependencies": {
|
|
"@gitbeaker/core": "^15.0.3",
|
|
"@gitbeaker/node": "^15.0.3",
|
|
"chalk": "^3.0.0",
|
|
"ora": "^4.0.3",
|
|
"sywac": "^1.2.2",
|
|
"xcase": "^2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-json": "^4.0.1",
|
|
"rollup": "^1.31.0",
|
|
"rollup-plugin-preserve-shebangs": "^0.1.2",
|
|
"rollup-plugin-terser": "^5.2.0",
|
|
"rollup-plugin-typescript2": "^0.25.3",
|
|
"strip-ansi": "^6.0.0",
|
|
"typescript": "^3.7.5"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.0.0"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"homepage": "https://github.com/jdalrymple/gitbeaker#readme",
|
|
"keywords": [
|
|
"api",
|
|
"cli",
|
|
"gitbeaker",
|
|
"gitlab",
|
|
"got"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jdalrymple/gitbeaker"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc && rollup -c"
|
|
}
|
|
}
|