mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-25 16:04:01 +00:00
# [5.0.0](https://github.com/jdalrymple/node-gitlab/compare/4.5.1...5.0.0) (2019-05-25) ### Bug Fixes * [#227](https://github.com/jdalrymple/node-gitlab/issues/227) Fixing array syntax thanks to Lukas Eipert (https://github.com/leipert) ([aa6acb1](https://github.com/jdalrymple/node-gitlab/commit/aa6acb1)) * Fixing Todos support. If todoId was not passed, an undefined value would be introduced into the url ([cea5a2b](https://github.com/jdalrymple/node-gitlab/commit/cea5a2b)) * Fixing typing structure and configuration ([a79dabe](https://github.com/jdalrymple/node-gitlab/commit/a79dabe)) * Merge Request Approvals API did not match official API ([e4ba731](https://github.com/jdalrymple/node-gitlab/commit/e4ba731)) * Removed xhr library in favour of ky, and switched request for got for a smaller package size and retry functionality ([ee4730f](https://github.com/jdalrymple/node-gitlab/commit/ee4730f)) * ResourceAwardEmojis API wasn't properly filtering based on awardId ([a7b29c1](https://github.com/jdalrymple/node-gitlab/commit/a7b29c1)) ### Code Refactoring * Expose optional parameters for the NotiicationSettings API ([1ba9126](https://github.com/jdalrymple/node-gitlab/commit/1ba9126)) * Removed Fs dependency for better browser support ([037f4ed](https://github.com/jdalrymple/node-gitlab/commit/037f4ed)) * Removed inconsistent export strategies ([03e85ef](https://github.com/jdalrymple/node-gitlab/commit/03e85ef)) * Removed the confusing url parameter from BaseService ([26e2e52](https://github.com/jdalrymple/node-gitlab/commit/26e2e52)) * Requiring content for the Note related APIs ([7453779](https://github.com/jdalrymple/node-gitlab/commit/7453779)) * Similar to the RepositoryFiles API changes ([97dd060](https://github.com/jdalrymple/node-gitlab/commit/97dd060)) * SystemHooks API function header updates ([6ea90d3](https://github.com/jdalrymple/node-gitlab/commit/6ea90d3)) * Triggers API required arguments exposed as optional ([62e032b](https://github.com/jdalrymple/node-gitlab/commit/62e032b)) * Updating the MergeRequest API's pipeline function header ([46a541b](https://github.com/jdalrymple/node-gitlab/commit/46a541b)) ### Features * Added LDAP support to the Groups API ([3f6d409](https://github.com/jdalrymple/node-gitlab/commit/3f6d409)) * Added the ability to add sudo to specific requests ([18effa2](https://github.com/jdalrymple/node-gitlab/commit/18effa2)) * Added the missing edit function to the Groups API ([ee6d490](https://github.com/jdalrymple/node-gitlab/commit/ee6d490)) * Adding the option to conditionally camelize response body ([5f97193](https://github.com/jdalrymple/node-gitlab/commit/5f97193)) ### BREAKING CHANGES * Triggers API pipeline function requires the ref and token * Notes now require a body argument * NotificationSettings API edit function now takes one parameter, `options` * MergeRequest Pipelines require the mergeRequestId * Updated Approvals API support to match https://docs.gitlab.com/ee/api/merge_request_approvals.html * Removed dependency on FS. Now the Projects API takes in two arguments `projectId` and `content` as well as an option fileName argument * Removed projectId from System Hooks API since it wasn't required * Added content as a required parameter for RepositoryFiles * Changing everything to named exports for simplicity * Switching required initialization argument from 'url' to 'host'
95 lines
2.5 KiB
JSON
95 lines
2.5 KiB
JSON
{
|
|
"name": "gitlab",
|
|
"version": "5.0.0",
|
|
"description": "Full NodeJS implementation of the GitLab API. Supports Promises, Async/Await.",
|
|
"keywords": [
|
|
"api",
|
|
"browser",
|
|
"es5",
|
|
"es6",
|
|
"gitlab",
|
|
"ky"
|
|
],
|
|
"homepage": "https://github.com/jdalrymple/node-gitlab#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/jdalrymple/node-gitlab/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jdalrymple/node-gitlab"
|
|
},
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Justin Dalrymple",
|
|
"email": "justin.s.dalrymple@gmail.com"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"typings"
|
|
],
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.es.js",
|
|
"browser": "dist/index.browser.js",
|
|
"typings": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc && rollup -c",
|
|
"commit": "npx git-cz",
|
|
"coverage": "codecov",
|
|
"lint": "tslint -p . -t stylish",
|
|
"lint:doc:fix": "prettier --write './*.json' './*.yml' './*.md'",
|
|
"lint:fix": "npm run lint -- --fix",
|
|
"prepublishOnly": "npm run build",
|
|
"release": "semantic-release",
|
|
"test:integration": "jest test/integration -c=jest.config.json",
|
|
"test:unit": "jest test/unit --debug -c=jest.config.json"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"form-data": "^2.3.3",
|
|
"humps": "^2.0.1",
|
|
"ky": "^0.11.0",
|
|
"ky-universal": "^0.2.1",
|
|
"li": "^1.3.0",
|
|
"lint-staged": "^8.1.7",
|
|
"query-string": "^6.5.0",
|
|
"randomstring": "^1.1.5",
|
|
"universal-url": "^2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@semantic-release/changelog": "^3.0.2",
|
|
"@semantic-release/git": "^7.0.8",
|
|
"@semantic-release/npm": "^5.1.7",
|
|
"@types/form-data": "^2.2.1",
|
|
"@types/humps": "^1.1.2",
|
|
"@types/jest": "^24.0.13",
|
|
"codecov": "^3.5.0",
|
|
"cz-conventional-changelog": "^2.1.0",
|
|
"husky": "^2.3.0",
|
|
"jest": "^24.8.0",
|
|
"jest-extended": "^0.11.1",
|
|
"jest-tap-reporter": "^1.9.0",
|
|
"prettier": "^1.17.1",
|
|
"rollup": "^1.12.3",
|
|
"rollup-plugin-commonjs": "^10.0.0",
|
|
"rollup-plugin-json": "^4.0.0",
|
|
"rollup-plugin-node-builtins": "^2.1.2",
|
|
"rollup-plugin-node-globals": "^1.4.0",
|
|
"rollup-plugin-node-resolve": "^5.0.0",
|
|
"rollup-plugin-terser": "^5.0.0",
|
|
"rollup-plugin-typescript2": "^0.21.1",
|
|
"semantic-release": "^15.13.13",
|
|
"ts-jest": "^24.0.2",
|
|
"tslint": "^5.16.0",
|
|
"tslint-config-airbnb": "^5.11.1",
|
|
"tslint-config-prettier": "^1.18.0",
|
|
"typescript": "^3.4.5"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.9.0"
|
|
}
|
|
}
|