mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-25 16:04:01 +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.
59 lines
1.9 KiB
JSON
59 lines
1.9 KiB
JSON
{
|
|
"bugs": {
|
|
"url": "https://github.com/jdalrymple/gitbeaker/issues"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "cz-conventional-changelog"
|
|
}
|
|
},
|
|
"repository": "github:jdalrymple/gitbeaker",
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^8.3.5",
|
|
"@commitlint/config-conventional": "^8.3.4",
|
|
"@commitlint/config-lerna-scopes": "^8.3.4",
|
|
"@semantic-release/changelog": "^5.0.0",
|
|
"@semantic-release/git": "^9.0.0",
|
|
"@types/jest": "^25.1.4",
|
|
"@typescript-eslint/eslint-plugin": "^2.24.0",
|
|
"@typescript-eslint/parser": "^2.24.0",
|
|
"codecov": "^3.6.5",
|
|
"commitizen": "^4.0.3",
|
|
"cz-conventional-changelog": "^3.1.0",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-airbnb-base": "^14.1.0",
|
|
"eslint-config-prettier": "^6.10.1",
|
|
"eslint-plugin-import": "^2.20.1",
|
|
"eslint-plugin-jest": "^23.8.2",
|
|
"eslint-plugin-prettier": "^3.1.2",
|
|
"got": "^10.6.0",
|
|
"husky": "^4.2.3",
|
|
"jest": "^25.1.0",
|
|
"jest-extended": "^0.11.5",
|
|
"lerna": "^3.20.2",
|
|
"lint-staged": "^10.0.8",
|
|
"prettier": "^2.0.1",
|
|
"semantic-release": "^17.0.4",
|
|
"semantic-release-npmx": "^1.1.0",
|
|
"ts-jest": "^25.2.1",
|
|
"typescript": "^3.8.3"
|
|
},
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"build": "lerna run build",
|
|
"lint": "prettier --check 'packages/**/{src,test}/**/*.ts' && eslint 'packages/**/{src,test}/**/*/*.ts'",
|
|
"lint:doc": "prettier --check './*.json' './*.yml' './*.js'",
|
|
"lint:doc:fix": "prettier --write './*.json' './*.yml' './*.md' './*.js'",
|
|
"lint:fix": "prettier --write 'packages/**/{src,test}/**/*.ts' && eslint 'packages/**/{src,test}/**/*/*.ts' --fix",
|
|
"test:integration": "jest test/integration",
|
|
"test:unit": "jest test/unit",
|
|
"commit": "git-cz --retry",
|
|
"prepublishOnly": "lerna run build",
|
|
"release": "semantic-release --no-ci"
|
|
},
|
|
"version": "15.0.0"
|
|
}
|