This repository has been archived by the owner on Jun 24, 2024. It is now read-only.
Releases: googleapis/gcs-resumable-upload
Releases · googleapis/gcs-resumable-upload
v2.1.1
v2.1.0
v2.0.0
v1.1.0
03-26-2019 07:13 PDT
New Features
- feat: support ConfigStore configPath option (#194)
Internal / Testing Changes
v1.0.0
02-28-2019 06:27 PST
This release has breaking changes. The underlying transport library was changed from request to gaxios. Any response
objects returned via the API will now return a GaxiosResponse
object.
Old Code
.on('response', function (resp, metadata) {
console.log(resp.statusCode);
})
New Code
.on('response', function (resp) {
console.log(resp.status);
});
Implementation Changes
- fix: replace request with gaxios (#174)
Documentation
Internal / Testing Changes
v0.14.1
v0.14.0
01-23-2019 17:57 PST
New Features
- feat: support async functions (#164)
- fix: use the reject handler for promises (#144)
- feat: add progress events (#135)
Dependencies
- fix(deps): update dependency google-auth-library to v3 (#165)
- refactor: use teeny-request (part 1) (#141)
- chore(deps): update dependency @types/configstore to v4 (#145)
- chore(deps): update dependency typescript to ~3.2.0 (#140)
- chore(deps): update dependency gts to ^0.9.0 (#137)
- chore(deps): update dependency through2 to v3 (#131)
- refactor: move from axios back to request (#123)
- chore(deps): update dependency nock to v10 (#113)
- chore: update the version of typescript (#106)
Documentation
- build: ignore googleapis.com in doc link checker (#166)
- build: check broken links in generated docs (#162)
Internal / Testing Changes
- fix: fix the unit tests (#161)
- chore(build): inject yoshi automation key (#160)
- chore: update nyc and eslint configs (#159)
- chore: fix publish.sh permission +x (#156)
- fix(build): fix Kokoro release script (#155)
- build: add Kokoro configs for autorelease (#154)
- chore: always nyc report before calling codecov (#153)
- chore: nyc ignore build/test by default (#152)
- chore: update synth and common config (#150)
- fix(build): fix system key decryption (#142)
- chore: add synth.metadata
- chore: update eslintignore config (#136)
- chore: use latest npm on Windows (#134)
- chore: update CircleCI config (#129)
- chore: include build in eslintignore (#126)
- chore: update issue templates (#121)
- chore: remove old issue template (#119)
- build: run tests on node11 (#118)
- chores(build): run codecov on continuous builds (#112)
- chores(build): do not collect sponge.xml from windows builds (#114)
- chore: update new issue template (#111)
- build: fix codecov uploading on Kokoro (#108)
- Update kokoro config (#105)
- Update CI config (#103)
- Update kokoro config (#101)
- test: remove appveyor config (#100)
- Update kokoro config (#99)
- Enable prefer-const in the eslint config (#98)
- Enable no-var in eslint (#97)
- Update to new repo location (#96)
- Update CI config (#95)
v0.13.0
v0.12.0
v0.11.1
Updated dependencies.