@gitbeaker/core
Advanced tools
Comparing version 23.3.0 to 23.4.0
@@ -0,1 +1,14 @@ | ||
# v23.4.0 (Sun Jul 12 2020) | ||
#### 🐛 Bug Fix | ||
- Updating min node version supported [#957](https://github.com/jdalrymple/gitbeaker/pull/957) ([@jdalrymple](https://github.com/jdalrymple)) | ||
- Fixing encoding for requests of archive data [#954](https://github.com/jdalrymple/gitbeaker/pull/954) ([@jdalrymple](https://github.com/jdalrymple)) | ||
#### Authors: 1 | ||
- Justin Dalrymple ([@jdalrymple](https://github.com/jdalrymple)) | ||
--- | ||
# v23.3.0 (Sat Jul 11 2020) | ||
@@ -2,0 +15,0 @@ |
import { BaseService, Sudo, BaseRequestOptions } from '../infrastructure'; | ||
declare type ArchiveType = 'tar.gz' | 'tar.bz2' | 'tbz' | 'tbz2' | 'tb2' | 'bz2' | 'tar' | 'zip'; | ||
export declare class Repositories extends BaseService { | ||
@@ -6,4 +7,4 @@ compare(projectId: string | number, from: string, to: string, options?: Sudo): Promise<import("../infrastructure").GetResponse>; | ||
mergeBase(projectId: string | number, refs: string[], options?: Sudo): Promise<import("../infrastructure").GetResponse>; | ||
showArchive(projectId: string | number, options?: { | ||
sha: string; | ||
showArchive(projectId: string | number, { fileType, ...options }?: { | ||
fileType?: ArchiveType; | ||
} & Sudo): Promise<import("../infrastructure").GetResponse>; | ||
@@ -14,1 +15,2 @@ showBlob(projectId: string | number, sha: string, options?: Sudo): Promise<import("../infrastructure").GetResponse>; | ||
} | ||
export {}; |
{ | ||
"name": "@gitbeaker/core", | ||
"description": "Core API implementation of the GitLab API. Supports Promises, Async/Await.", | ||
"version": "23.3.0", | ||
"version": "23.4.0", | ||
"author": { | ||
@@ -12,3 +12,3 @@ "name": "Justin Dalrymple" | ||
"dependencies": { | ||
"@gitbeaker/requester-utils": "^23.3.0", | ||
"@gitbeaker/requester-utils": "^23.4.0", | ||
"form-data": "^3.0.0", | ||
@@ -30,3 +30,3 @@ "li": "^1.3.0", | ||
"engines": { | ||
"node": ">=10.0.0" | ||
"node": ">=10.19.0" | ||
}, | ||
@@ -58,3 +58,3 @@ "files": [ | ||
}, | ||
"gitHead": "e135a55279375ef9cab6c4225aaca2bb884bf5c1" | ||
"gitHead": "a6fd10fab785d9b5113b17503ed03147c82b9795" | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
328237
2620