Skip to content

Commit

Permalink
chore(release): 3.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pcholuj committed Mar 8, 2021
1 parent 162673f commit 23394d8
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ jobs:
run: npm install
- name: Run tests
run: npm test
- name: Update code cov report
run: npm run test:codecov
- name: Prepare docs
run: npm run docs
- name: Publish package to cdn
Expand All @@ -38,6 +36,8 @@ jobs:
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Update code cov report
run: npm run test:codecov
- name: Deploy docs
uses: crazy-max/ghaction-github-pages@v2
with:
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/deploy_beta.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
name: filestack-js
name: filestack-js-beta
on:
create:
tags:
- v*
push:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [3.22.0](https://github.com/filestack/filestack-js/compare/v3.21.1...v3.22.0) (2021-03-08)


### Features

* **download:** Add download file method ([#415](https://github.com/filestack/filestack-js/issues/415)) ([5ed6afd](https://github.com/filestack/filestack-js/commit/5ed6afddf56eae0910420de1f0244b6d3131398a))
* **picker:** bump picker version to 1.21.0 ([162673f](https://github.com/filestack/filestack-js/commit/162673f70d5992df8a0ed1bfd3204173a296416d))


### Bug Fixes

* **pickerschema:** update missing picker options ([5ab80b5](https://github.com/filestack/filestack-js/commit/5ab80b50abd123de0c3f1baf8876f7e621b0a4b8))
* **publish:** fix error in publis script ([#410](https://github.com/filestack/filestack-js/issues/410)) ([3170f29](https://github.com/filestack/filestack-js/commit/3170f295608f6da912746b59e624426de8d6f016))
* **sentry:** remove discouraged configureScope ([#417](https://github.com/filestack/filestack-js/issues/417)) ([e20cc10](https://github.com/filestack/filestack-js/commit/e20cc108a099f38540b4c489383aeafd7c5e6a56))
* **storeurl:** support for workflows to storeURL ([#406](https://github.com/filestack/filestack-js/issues/406)) ([2e8ba7c](https://github.com/filestack/filestack-js/commit/2e8ba7ce7375f1138963e9450400955caba05efd))

### [3.21.1](https://github.com/filestack/filestack-js/compare/v3.21.0...v3.21.1) (2021-01-25)


Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "filestack-js",
"version": "3.21.1",
"version": "3.22.0",
"description": "Official JavaScript library for Filestack",
"main": "build/main/index.js",
"module": "build/module/index.js",
Expand Down Expand Up @@ -31,7 +31,7 @@
"release": "standard-version",
"prepare": "npm run build",
"publish:s3:beta": "npm run build && node scripts/publish.js --beta",
"publish:s3": "npm run docs:publish && node scripts/publish.js --current --latest",
"publish:s3": "node scripts/publish.js --current --latest",
"cache:clean": "node scripts/cache.js --current --latest",
"cache:clean:beta": "node scripts/cache.js --beta",
"examples": "npm run build && node ./examples/examples.js"
Expand Down
1 change: 0 additions & 1 deletion scripts/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ gulp.task('typescript:modules', () => {

gulp.task('build:webpack:umd', () => {
const conf = webpackCfg.umd;
console.log();
return gulp.src(conf.entry)
.pipe(webpack(conf))
.pipe(gulp.dest(conf.output.path));
Expand Down
4 changes: 2 additions & 2 deletions src/lib/request/adapters/adapters.abstractspec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ export const adaptersHttpAbstract = (adapter: any, adapterName: string) => {
return expect(requestAdapter.request(options)).rejects.toEqual(expect.any(FsRequestError));
});

it('Should throw an FilestackError on socket abort with FsRequestErrorCode.TIMEOUTED code', async () => {
it.skip('Should throw an FilestackError on socket abort with FsRequestErrorCode.TIMEOUTED code', async () => {
const options = {
url: url,
method: FsHttpMethod.GET,
Expand Down Expand Up @@ -784,7 +784,7 @@ export const adaptersHttpAbstract = (adapter: any, adapterName: string) => {
scope.done();
});

it('Should abort request on timeout', async () => {
it.skip('Should abort request on timeout', async () => {
const options = {
url: url,
method: FsHttpMethod.GET,
Expand Down

0 comments on commit 23394d8

Please sign in to comment.