-
-
Notifications
You must be signed in to change notification settings - Fork 299
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
breaking: Added content as a required parameter for RepositoryFiles
breaking: Removed projectId from System Hooks API since it wasn't required breaking: Removed dependency on FS. Now the Projects API takes in two arguments `projectId` and `content` as well as an option fileName argument breaking: Changing everything to named exports for simplicity breaking: Switching required initialization argument from 'url' to 'host' breaking: Updated Approvals API support to match https://docs.gitlab.com/ee/api/merge_request_approvals.html breaking: MergeRequest Pipelines require the mergeRequestId breaking: NotificationSettings API edit function now takes one parameter, `options` breaking: Changing the access level enum property from master to maintainer as per https://gitlab.com/gitlab-org/gitlab-ce/issues/42751 breaking: Notes now require a body argument instead of checking the options argument for a body parameter fix: #227 (#227) Fixing array syntax thanks to Lukas Eipert (https://github.com/leipert) (f9bc34d (f9bc34d)) fix: Fixing Todos support. If todoId was not passed, an undefined value would be introduced into the url (cbeef18 (cbeef18)) fix: ResourceAwardEmojis API wasn't properly filtering based on awardId (70f4315 (70f4315)) fix: Removed xhr library in favour of ky, and switched request for got for a smaller package size and retry functionality feat: Adding the ability to add sudo to specific requests (780244f (780244f)) chore: Adding editorconfig file chore: Removing some overrides from the tslint chore: Removing unused dependencies chore: Adding prettier as a dev dependency docs: Removing xml request docs docs: Updating imports to be named imports
- Loading branch information
1 parent
6981399
commit fe74d99
Showing
120 changed files
with
3,351 additions
and
2,373 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
end_of_line = lf | ||
|
||
# editorconfig-tools is unable to ignore longs strings or urls | ||
max_line_length = null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ node_modules | |
npm-debug.log | ||
dist | ||
coverage | ||
.rpt2_cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
printWidth: 100 | ||
singleQuote: true | ||
trailingComma: all | ||
tabWidth: 2 | ||
useTabs: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,4 +37,4 @@ jobs: | |
- stage: release | ||
node_js: 10.0.0 | ||
script: | ||
- npm run semantic-release | ||
- npm run release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.