@ibm-aspera/sdk 0.2.9 → 0.2.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +13 -0
- package/.github/CODEOWNERS +1 -0
- package/.github/CODE_OF_CONDUCT.md +128 -0
- package/.github/CONTRIBUTING.md +147 -0
- package/.github/dependabot.yml +10 -0
- package/.github/workflows/ci.yml +39 -0
- package/.github/workflows/documentation.yml +44 -0
- package/.github/workflows/publish.yml +23 -0
- package/.github/workflows/version.yml +32 -0
- package/CHANGELOG.md +204 -0
- package/docs/DEVELOPMENT.md +38 -0
- package/eslint.config.js +104 -0
- package/example/README.md +7 -0
- package/example/index.html +14 -0
- package/example/package-lock.json +2989 -0
- package/example/package.json +30 -0
- package/example/public/404.html +5 -0
- package/example/public/sdk-code.js +326 -0
- package/example/src/App/App.scss +40 -0
- package/example/src/App/index.tsx +196 -0
- package/example/src/Views/AllTogether.tsx +26 -0
- package/example/src/Views/DragDrop.tsx +23 -0
- package/example/src/Views/Home.tsx +10 -0
- package/example/src/Views/Initialize.tsx +31 -0
- package/example/src/Views/Installer.tsx +154 -0
- package/example/src/Views/MonitorTransfers.tsx +88 -0
- package/example/src/Views/Other.tsx +24 -0
- package/example/src/Views/SelectItems.tsx +46 -0
- package/example/src/Views/StartTransfer.tsx +37 -0
- package/example/src/Views/Test.tsx +20 -0
- package/example/src/Views/Views.scss +111 -0
- package/example/src/helpers/index.ts +19 -0
- package/example/src/index.scss +47 -0
- package/example/src/main.tsx +17 -0
- package/example/src/vite-env.d.ts +2 -0
- package/example/tsconfig.json +30 -0
- package/example/vite.config.ts +23 -0
- package/jest.config.js +19 -0
- package/jest.setup.js +0 -0
- package/package.json +15 -21
- package/renovate.json +12 -0
- package/scripts/version.sh +24 -0
- package/src/app/core.ts +765 -0
- package/src/app/installer.ts +53 -0
- package/src/connect/core.ts +83 -0
- package/src/constants/constants.ts +19 -0
- package/src/constants/messages.ts +35 -0
- package/src/helpers/client/client.ts +11 -0
- package/src/helpers/client/http-client.ts +92 -0
- package/src/helpers/client/safari-client.ts +334 -0
- package/src/helpers/helpers.ts +253 -0
- package/src/helpers/http.ts +39 -0
- package/src/helpers/ws.ts +191 -0
- package/src/http-gateway/core.ts +273 -0
- package/src/http-gateway/download.ts +217 -0
- package/src/http-gateway/index.ts +19 -0
- package/src/http-gateway/models.ts +20 -0
- package/src/http-gateway/upload.ts +148 -0
- package/src/index.ts +72 -0
- package/src/models/aspera-sdk.model.ts +446 -0
- package/src/models/models.ts +740 -0
- package/tests/client.spec.ts +52 -0
- package/tests/core.spec.ts +13 -0
- package/tests/helpers.spec.ts +127 -0
- package/tests/http.spec.ts +14 -0
- package/tests/installer.spec.ts +135 -0
- package/tests/mocks.ts +11 -0
- package/tsconfig.json +14 -0
- package/tsconfig.module.json +16 -0
- package/typedoc.js +7 -0
- package/webpack.config.js +35 -0
- package/dist/commonjs/app/core.d.ts +0 -205
- package/dist/commonjs/app/core.js +0 -615
- package/dist/commonjs/app/installer.d.ts +0 -9
- package/dist/commonjs/app/installer.js +0 -50
- package/dist/commonjs/constants/constants.d.ts +0 -8
- package/dist/commonjs/constants/constants.js +0 -11
- package/dist/commonjs/constants/messages.d.ts +0 -35
- package/dist/commonjs/constants/messages.js +0 -38
- package/dist/commonjs/helpers/client/client.d.ts +0 -5
- package/dist/commonjs/helpers/client/client.js +0 -7
- package/dist/commonjs/helpers/client/http-client.d.ts +0 -42
- package/dist/commonjs/helpers/client/http-client.js +0 -84
- package/dist/commonjs/helpers/client/safari-client.d.ts +0 -101
- package/dist/commonjs/helpers/client/safari-client.js +0 -264
- package/dist/commonjs/helpers/helpers.d.ts +0 -109
- package/dist/commonjs/helpers/helpers.js +0 -249
- package/dist/commonjs/helpers/http.d.ts +0 -16
- package/dist/commonjs/helpers/http.js +0 -42
- package/dist/commonjs/helpers/ws.d.ts +0 -62
- package/dist/commonjs/helpers/ws.js +0 -176
- package/dist/commonjs/http-gateway/core.d.ts +0 -76
- package/dist/commonjs/http-gateway/core.js +0 -254
- package/dist/commonjs/http-gateway/download.d.ts +0 -14
- package/dist/commonjs/http-gateway/download.js +0 -186
- package/dist/commonjs/http-gateway/index.d.ts +0 -11
- package/dist/commonjs/http-gateway/index.js +0 -11
- package/dist/commonjs/http-gateway/models.d.ts +0 -16
- package/dist/commonjs/http-gateway/models.js +0 -2
- package/dist/commonjs/http-gateway/upload.d.ts +0 -14
- package/dist/commonjs/http-gateway/upload.js +0 -124
- package/dist/commonjs/index.d.ts +0 -8
- package/dist/commonjs/index.js +0 -104
- package/dist/commonjs/models/aspera-sdk.model.d.ts +0 -244
- package/dist/commonjs/models/aspera-sdk.model.js +0 -324
- package/dist/commonjs/models/models.d.ts +0 -692
- package/dist/commonjs/models/models.js +0 -2
- package/dist/js/aspera-sdk.js +0 -3
- package/dist/js/aspera-sdk.js.LICENSE.txt +0 -15
- package/dist/js/aspera-sdk.js.map +0 -1
package/.editorconfig
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Editor configuration, see http://editorconfig.org
|
|
2
|
+
root = true
|
|
3
|
+
|
|
4
|
+
[*]
|
|
5
|
+
charset = utf-8
|
|
6
|
+
indent_style = space
|
|
7
|
+
indent_size = 2
|
|
8
|
+
insert_final_newline = true
|
|
9
|
+
trim_trailing_whitespace = true
|
|
10
|
+
|
|
11
|
+
[*.md]
|
|
12
|
+
max_line_length = off
|
|
13
|
+
trim_trailing_whitespace = false
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
* @IBM/aspera
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our Pledge
|
|
4
|
+
|
|
5
|
+
We as members, contributors, and leaders pledge to make participation in our
|
|
6
|
+
community a harassment-free experience for everyone, regardless of age, body
|
|
7
|
+
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
|
8
|
+
identity and expression, level of experience, education, socio-economic status,
|
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity
|
|
10
|
+
and orientation.
|
|
11
|
+
|
|
12
|
+
We pledge to act and interact in ways that contribute to an open, welcoming,
|
|
13
|
+
diverse, inclusive, and healthy community.
|
|
14
|
+
|
|
15
|
+
## Our Standards
|
|
16
|
+
|
|
17
|
+
Examples of behavior that contributes to a positive environment for our
|
|
18
|
+
community include:
|
|
19
|
+
|
|
20
|
+
* Demonstrating empathy and kindness toward other people
|
|
21
|
+
* Being respectful of differing opinions, viewpoints, and experiences
|
|
22
|
+
* Giving and gracefully accepting constructive feedback
|
|
23
|
+
* Accepting responsibility and apologizing to those affected by our mistakes,
|
|
24
|
+
and learning from the experience
|
|
25
|
+
* Focusing on what is best not just for us as individuals, but for the
|
|
26
|
+
overall community
|
|
27
|
+
|
|
28
|
+
Examples of unacceptable behavior include:
|
|
29
|
+
|
|
30
|
+
* The use of sexualized language or imagery, and sexual attention or
|
|
31
|
+
advances of any kind
|
|
32
|
+
* Trolling, insulting or derogatory comments, and personal or political attacks
|
|
33
|
+
* Public or private harassment
|
|
34
|
+
* Publishing others' private information, such as a physical or email
|
|
35
|
+
address, without their explicit permission
|
|
36
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
|
37
|
+
professional setting
|
|
38
|
+
|
|
39
|
+
## Enforcement Responsibilities
|
|
40
|
+
|
|
41
|
+
Community leaders are responsible for clarifying and enforcing our standards of
|
|
42
|
+
acceptable behavior and will take appropriate and fair corrective action in
|
|
43
|
+
response to any behavior that they deem inappropriate, threatening, offensive,
|
|
44
|
+
or harmful.
|
|
45
|
+
|
|
46
|
+
Community leaders have the right and responsibility to remove, edit, or reject
|
|
47
|
+
comments, commits, code, wiki edits, issues, and other contributions that are
|
|
48
|
+
not aligned to this Code of Conduct, and will communicate reasons for moderation
|
|
49
|
+
decisions when appropriate.
|
|
50
|
+
|
|
51
|
+
## Scope
|
|
52
|
+
|
|
53
|
+
This Code of Conduct applies within all community spaces, and also applies when
|
|
54
|
+
an individual is officially representing the community in public spaces.
|
|
55
|
+
Examples of representing our community include using an official e-mail address,
|
|
56
|
+
posting via an official social media account, or acting as an appointed
|
|
57
|
+
representative at an online or offline event.
|
|
58
|
+
|
|
59
|
+
## Enforcement
|
|
60
|
+
|
|
61
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
62
|
+
reported to the community leaders responsible for enforcement at
|
|
63
|
+
Aspera-Release@wwpdl.vnet.ibm.com.
|
|
64
|
+
All complaints will be reviewed and investigated promptly and fairly.
|
|
65
|
+
|
|
66
|
+
All community leaders are obligated to respect the privacy and security of the
|
|
67
|
+
reporter of any incident.
|
|
68
|
+
|
|
69
|
+
## Enforcement Guidelines
|
|
70
|
+
|
|
71
|
+
Community leaders will follow these Community Impact Guidelines in determining
|
|
72
|
+
the consequences for any action they deem in violation of this Code of Conduct:
|
|
73
|
+
|
|
74
|
+
### 1. Correction
|
|
75
|
+
|
|
76
|
+
**Community Impact**: Use of inappropriate language or other behavior deemed
|
|
77
|
+
unprofessional or unwelcome in the community.
|
|
78
|
+
|
|
79
|
+
**Consequence**: A private, written warning from community leaders, providing
|
|
80
|
+
clarity around the nature of the violation and an explanation of why the
|
|
81
|
+
behavior was inappropriate. A public apology may be requested.
|
|
82
|
+
|
|
83
|
+
### 2. Warning
|
|
84
|
+
|
|
85
|
+
**Community Impact**: A violation through a single incident or series
|
|
86
|
+
of actions.
|
|
87
|
+
|
|
88
|
+
**Consequence**: A warning with consequences for continued behavior. No
|
|
89
|
+
interaction with the people involved, including unsolicited interaction with
|
|
90
|
+
those enforcing the Code of Conduct, for a specified period of time. This
|
|
91
|
+
includes avoiding interactions in community spaces as well as external channels
|
|
92
|
+
like social media. Violating these terms may lead to a temporary or
|
|
93
|
+
permanent ban.
|
|
94
|
+
|
|
95
|
+
### 3. Temporary Ban
|
|
96
|
+
|
|
97
|
+
**Community Impact**: A serious violation of community standards, including
|
|
98
|
+
sustained inappropriate behavior.
|
|
99
|
+
|
|
100
|
+
**Consequence**: A temporary ban from any sort of interaction or public
|
|
101
|
+
communication with the community for a specified period of time. No public or
|
|
102
|
+
private interaction with the people involved, including unsolicited interaction
|
|
103
|
+
with those enforcing the Code of Conduct, is allowed during this period.
|
|
104
|
+
Violating these terms may lead to a permanent ban.
|
|
105
|
+
|
|
106
|
+
### 4. Permanent Ban
|
|
107
|
+
|
|
108
|
+
**Community Impact**: Demonstrating a pattern of violation of community
|
|
109
|
+
standards, including sustained inappropriate behavior, harassment of an
|
|
110
|
+
individual, or aggression toward or disparagement of classes of individuals.
|
|
111
|
+
|
|
112
|
+
**Consequence**: A permanent ban from any sort of public interaction within
|
|
113
|
+
the community.
|
|
114
|
+
|
|
115
|
+
## Attribution
|
|
116
|
+
|
|
117
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
|
118
|
+
version 2.0, available at
|
|
119
|
+
https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
|
|
120
|
+
|
|
121
|
+
Community Impact Guidelines were inspired by [Mozilla's code of conduct
|
|
122
|
+
enforcement ladder](https://github.com/mozilla/diversity).
|
|
123
|
+
|
|
124
|
+
[homepage]: https://www.contributor-covenant.org
|
|
125
|
+
|
|
126
|
+
For answers to common questions about this code of conduct, see the FAQ at
|
|
127
|
+
https://www.contributor-covenant.org/faq. Translations are available at
|
|
128
|
+
https://www.contributor-covenant.org/translations.
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
# Contributing
|
|
2
|
+
|
|
3
|
+
First off, thank you for your interest!
|
|
4
|
+
|
|
5
|
+
The Aspera JavaScript SDK is an **open source** project at IBM. We pride ourselves in open and inclusive development. If you're wondering more about our contribution process, you're in the right place.
|
|
6
|
+
|
|
7
|
+
## Code of conduct
|
|
8
|
+
|
|
9
|
+
We value all of our community members, and thus want to foster a positive contributing environment. Please take a look at our [code of conduct](./CODE_OF_CONDUCT.md) before beginning any work.
|
|
10
|
+
|
|
11
|
+
## Who can contribute?
|
|
12
|
+
|
|
13
|
+
Anyone! The one and only requirement is you'll need a [public GitHub account](https://github.com/join), as all our assets live on GitHub.
|
|
14
|
+
|
|
15
|
+
- **Bug Reports:** Found an issue? Feel free to [open a bug report](https://github.com/IBM/aspera-sdk-js/issues) to notify us of a potential issue, but please include as much detailed information as possible, such as the version of the Aspera SDK, configuration options, browser version, etc.
|
|
16
|
+
- **Development:** If coding is your thing, you can help us by contributing bug fixes or new features.
|
|
17
|
+
- **Documentation:** Our documentation is just as important as the code itself, and anyone is welcome contribute to our documentation to make sure it stays correct and up-to-date.
|
|
18
|
+
|
|
19
|
+
## Prerequisites
|
|
20
|
+
|
|
21
|
+
Before contributing, check out [DEVELOPMENT](../docs/DEVELOPMENT.md#prerequisites) to make sure you have the necessary tools installed.
|
|
22
|
+
|
|
23
|
+
## Start contributing
|
|
24
|
+
|
|
25
|
+
### 1. Fork the repo:
|
|
26
|
+
|
|
27
|
+
Go to the [Aspera SDK](https://github.com/IBM/aspera-sdk-js) repository in GitHub and click the `Fork` button in the top-right corner. This will create a copy repo of the Aspera SDK associated with your account.
|
|
28
|
+
|
|
29
|
+
### 2. Clone your fork:
|
|
30
|
+
|
|
31
|
+
```sh
|
|
32
|
+
git clone git@github.com:[your_github_username]/aspera-sdk-js.git
|
|
33
|
+
cd aspera-sdk-js
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
See [GitHub docs](https://help.github.com/articles/fork-a-repo/) for more
|
|
37
|
+
details.
|
|
38
|
+
|
|
39
|
+
### 3. Add upstream remotes
|
|
40
|
+
|
|
41
|
+
When you clone your forked repo, running `git remote -v` will show that the
|
|
42
|
+
`origin` is pointing to your forked repo by default.
|
|
43
|
+
|
|
44
|
+
Now you need to add the `IBM/aspera-sdk-js` repo as your upstream
|
|
45
|
+
remote branch:
|
|
46
|
+
|
|
47
|
+
```sh
|
|
48
|
+
# Add the upstream remote to your repo
|
|
49
|
+
git remote add upstream git@github.com:IBM/aspera-sdk-js.git
|
|
50
|
+
|
|
51
|
+
# Verify the remote was added
|
|
52
|
+
git remote -v
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Your terminal should output something like this:
|
|
56
|
+
|
|
57
|
+
```sh
|
|
58
|
+
origin [your forked repo] (fetch)
|
|
59
|
+
origin [your forked repo] (push)
|
|
60
|
+
upstream git@github.com:IBM/aspera-sdk-js.git (fetch)
|
|
61
|
+
upstream git@github.com:IBM/aspera-sdk-js.git (push)
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
### 4. Work in a branch
|
|
65
|
+
|
|
66
|
+
When contributing, your work should always be done in a branch off of your repo, this is also how you will submit your pull request when your work is done.
|
|
67
|
+
|
|
68
|
+
To create a new branch, ensure you are in your forked branch in your terminal
|
|
69
|
+
and run:
|
|
70
|
+
|
|
71
|
+
```sh
|
|
72
|
+
git pull origin main
|
|
73
|
+
git checkout -b {your-branch-name}
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
### 5. Build
|
|
77
|
+
|
|
78
|
+
From the root directory of your fork, run:
|
|
79
|
+
|
|
80
|
+
```sh
|
|
81
|
+
# To install the project's dependencies
|
|
82
|
+
npm install
|
|
83
|
+
|
|
84
|
+
# To build the project:
|
|
85
|
+
npm run build
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
For coding style, we generally follow the [Airbnb JavaScript Style Guide](https://github.com/airbnb/javascript).
|
|
89
|
+
|
|
90
|
+
### 6. Test your code
|
|
91
|
+
|
|
92
|
+
If you're contributing, test your changes by running our test commands:
|
|
93
|
+
|
|
94
|
+
```sh
|
|
95
|
+
npm run test
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
When adding or changing functionality, please include new tests for them as part of your contribution. Also, always make sure to run our linter command:
|
|
99
|
+
|
|
100
|
+
```sh
|
|
101
|
+
npm run lint
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
### 7. Make a pull request
|
|
105
|
+
|
|
106
|
+
**Note:** Before you make a pull request, [search](https://github.com/IBM/aspera-sdk-js/issues) the issues to see if a similar issue has already been submitted. If a similar issue has been submitted, assign yourself or ask to be assigned to the issue by posting a comment. If the issue does not exist, please make a new issue. Issues give us context about what you are contributing and expedite the process to getting your contributions merged.
|
|
107
|
+
|
|
108
|
+
When you're at a good stopping place and you're ready for feedback from other
|
|
109
|
+
contributors and maintainers, **push your commits to your fork**:
|
|
110
|
+
|
|
111
|
+
To do so, go to your terminal and run:
|
|
112
|
+
|
|
113
|
+
```sh
|
|
114
|
+
git add -A
|
|
115
|
+
git commit -m "YOUR COMMIT MESSAGE HERE"
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
#### Commit tip
|
|
119
|
+
|
|
120
|
+
> **Writing commit messages**
|
|
121
|
+
>
|
|
122
|
+
> - `<type>` indicates the type of commit that's being made. This can be:
|
|
123
|
+
> `feat`, `fix`, `perf`, `docs`, `chore`, `style`, `refactor`
|
|
124
|
+
> - `<scope>` The scope could be anything specifying place of the commit change
|
|
125
|
+
> or the thing(s) that changed.
|
|
126
|
+
|
|
127
|
+
After your changes are committed, run:
|
|
128
|
+
|
|
129
|
+
```sh
|
|
130
|
+
git push -u origin { YOUR_BRANCH_NAME }
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
In your browser, navigate to
|
|
134
|
+
[IBM/aspera-sdk-js](https://github.com/IBM/aspera-sdk-js)
|
|
135
|
+
and click the button that reads `Compare & pull request`
|
|
136
|
+
|
|
137
|
+
Write a title and description then click `Create pull request`
|
|
138
|
+
|
|
139
|
+
- [How to write the perfect pull request](https://github.com/blog/1943-how-to-write-the-perfect-pull-request)
|
|
140
|
+
|
|
141
|
+
### 9. Updating a pull request
|
|
142
|
+
|
|
143
|
+
Stay up to date with the activity in your pull request. Maintainers from the Aspera SDK team will be reviewing your work and making comments, asking questions and suggesting changes to be made before they merge your code.
|
|
144
|
+
|
|
145
|
+
When you need to make a change, use the same method detailed above except you no longer need to run `git push -u origin { YOUR_BRANCH_NAME }` just `git push`.
|
|
146
|
+
|
|
147
|
+
Once all revisions to your pull request are complete, one of the maintainers will squash and merge your commits for you.
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
workflow_dispatch:
|
|
6
|
+
|
|
7
|
+
permissions:
|
|
8
|
+
contents: read
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
CI:
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
strategy:
|
|
14
|
+
matrix:
|
|
15
|
+
node: [24]
|
|
16
|
+
steps:
|
|
17
|
+
- uses: actions/checkout@v6
|
|
18
|
+
|
|
19
|
+
- name: Setup Node.js ${{ matrix.node }}
|
|
20
|
+
uses: actions/setup-node@v6
|
|
21
|
+
with:
|
|
22
|
+
node-version: ${{ matrix.node }}
|
|
23
|
+
|
|
24
|
+
- name: Install
|
|
25
|
+
run: |
|
|
26
|
+
npm ci
|
|
27
|
+
|
|
28
|
+
- name: Build Package
|
|
29
|
+
run: |
|
|
30
|
+
npm run build
|
|
31
|
+
npm run build:module
|
|
32
|
+
|
|
33
|
+
- name: Run Linter
|
|
34
|
+
run: |
|
|
35
|
+
npm run lint
|
|
36
|
+
|
|
37
|
+
- name: Run Unit Tests
|
|
38
|
+
run: |
|
|
39
|
+
npm run test
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
name: Documentation
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
push:
|
|
6
|
+
branches:
|
|
7
|
+
- main
|
|
8
|
+
|
|
9
|
+
permissions:
|
|
10
|
+
pages: write
|
|
11
|
+
id-token: write
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
Documentation:
|
|
15
|
+
if: ${{ !contains(github.event.commits[0].message, '[ci-ignore]') }}
|
|
16
|
+
environment:
|
|
17
|
+
name: github-pages
|
|
18
|
+
url: ${{ steps.deployment.outputs.page_url }}
|
|
19
|
+
|
|
20
|
+
runs-on: ubuntu-latest
|
|
21
|
+
steps:
|
|
22
|
+
- uses: actions/checkout@v6
|
|
23
|
+
|
|
24
|
+
- name: Setup Node.js
|
|
25
|
+
uses: actions/setup-node@v6
|
|
26
|
+
with:
|
|
27
|
+
node-version: 24
|
|
28
|
+
|
|
29
|
+
- name: Install
|
|
30
|
+
run: |
|
|
31
|
+
npm ci
|
|
32
|
+
|
|
33
|
+
- name: Build Documentation
|
|
34
|
+
run: |
|
|
35
|
+
npm run build:demo
|
|
36
|
+
|
|
37
|
+
- name: Upload Artifact
|
|
38
|
+
uses: actions/upload-pages-artifact@v4
|
|
39
|
+
with:
|
|
40
|
+
path: dist
|
|
41
|
+
|
|
42
|
+
- name: Deploy to GitHub Pages
|
|
43
|
+
id: deployment
|
|
44
|
+
uses: actions/deploy-pages@v4
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: Publish to npm
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- 'v*.*.*'
|
|
7
|
+
|
|
8
|
+
permissions:
|
|
9
|
+
contents: read
|
|
10
|
+
id-token: write
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
publish:
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/checkout@v6
|
|
17
|
+
- uses: actions/setup-node@v6
|
|
18
|
+
with:
|
|
19
|
+
node-version: 24
|
|
20
|
+
registry-url: https://registry.npmjs.org/
|
|
21
|
+
scope: '@ibm-aspera'
|
|
22
|
+
- run: npm ci
|
|
23
|
+
- run: npm publish --provenance --access public
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
name: Version
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
|
|
8
|
+
permissions:
|
|
9
|
+
contents: write
|
|
10
|
+
id-token: write
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
npm:
|
|
14
|
+
if: ${{ !contains(github.event.commits[0].message, '[ci-ignore]') }}
|
|
15
|
+
runs-on: ubuntu-latest
|
|
16
|
+
steps:
|
|
17
|
+
- uses: actions/checkout@v6
|
|
18
|
+
with:
|
|
19
|
+
token: ${{ secrets.GH_PAT }}
|
|
20
|
+
|
|
21
|
+
- name: Setup NodeJS
|
|
22
|
+
uses: actions/setup-node@v6
|
|
23
|
+
with:
|
|
24
|
+
node-version: 24
|
|
25
|
+
|
|
26
|
+
- name: Update version
|
|
27
|
+
run: |
|
|
28
|
+
git config user.name github-actions
|
|
29
|
+
git config user.email github-actions@github.com
|
|
30
|
+
npm ci
|
|
31
|
+
npm run version:update
|
|
32
|
+
git push origin main
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
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.
|
|
4
|
+
|
|
5
|
+
### [0.2.9](https://github.com/IBM/aspera-sdk-js/compare/v0.2.8...v0.2.9) (2025-09-18)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **#39:** init HTTP Gateway basic setup ([#97](https://github.com/IBM/aspera-sdk-js/issues/97)) ([ec5e1e3](https://github.com/IBM/aspera-sdk-js/commit/ec5e1e38be10597c8fbe92c429c28cf2697208a3)), closes [#39](https://github.com/IBM/aspera-sdk-js/issues/39)
|
|
11
|
+
* download via presign ([#119](https://github.com/IBM/aspera-sdk-js/issues/119)) ([a1a11f9](https://github.com/IBM/aspera-sdk-js/commit/a1a11f967a741c4a873e23822f754e4663b72208))
|
|
12
|
+
* drag and drop for folders and file pickers ([#101](https://github.com/IBM/aspera-sdk-js/issues/101)) ([42bb703](https://github.com/IBM/aspera-sdk-js/commit/42bb703d41e028c862635e0671e24d46e25bbb36))
|
|
13
|
+
* http-gateway download support ([#109](https://github.com/IBM/aspera-sdk-js/issues/109)) ([a507ccf](https://github.com/IBM/aspera-sdk-js/commit/a507ccf10d4ba1d0f0218f7a9de7dc089c183bbc))
|
|
14
|
+
* upload support for HTTP Gateway ([#103](https://github.com/IBM/aspera-sdk-js/issues/103)) ([d7c3e52](https://github.com/IBM/aspera-sdk-js/commit/d7c3e52ff12203703fb1646c38c2bf47f13e50ab))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **#113:** add request-id header ([#117](https://github.com/IBM/aspera-sdk-js/issues/117)) ([895711c](https://github.com/IBM/aspera-sdk-js/commit/895711cf5670b2f54ecef1261fcd113d236a75d9)), closes [#113](https://github.com/IBM/aspera-sdk-js/issues/113)
|
|
20
|
+
* **#118:** support auth headers for http gateway ([#125](https://github.com/IBM/aspera-sdk-js/issues/125)) ([4a0a958](https://github.com/IBM/aspera-sdk-js/commit/4a0a958701e55c37079782b53ad372278dfe82c8)), closes [#118](https://github.com/IBM/aspera-sdk-js/issues/118)
|
|
21
|
+
* **#39:** file picking and clean up init logic ([#99](https://github.com/IBM/aspera-sdk-js/issues/99)) ([682703c](https://github.com/IBM/aspera-sdk-js/commit/682703cfabd2e4981296cb45a996f9a8b788cf59)), closes [#39](https://github.com/IBM/aspera-sdk-js/issues/39)
|
|
22
|
+
* **#59:** remove safari callbacks ([#129](https://github.com/IBM/aspera-sdk-js/issues/129)) ([f6a181c](https://github.com/IBM/aspera-sdk-js/commit/f6a181ceab18777900f34adcd9444f35d2440dc6)), closes [#59](https://github.com/IBM/aspera-sdk-js/issues/59)
|
|
23
|
+
* add HTTP Gateway v2 SDK ([#102](https://github.com/IBM/aspera-sdk-js/issues/102)) ([fafee9d](https://github.com/IBM/aspera-sdk-js/commit/fafee9d04f4c27cd5444f157a5b17c2e9fad6382))
|
|
24
|
+
* build docs migration ([#90](https://github.com/IBM/aspera-sdk-js/issues/90)) ([a8844af](https://github.com/IBM/aspera-sdk-js/commit/a8844af7659afefff8022272c19de74a349ab6de))
|
|
25
|
+
* HTTP initial setup structure ([#96](https://github.com/IBM/aspera-sdk-js/issues/96)) ([efc0351](https://github.com/IBM/aspera-sdk-js/commit/efc0351632e549c667323487f33803df0c2d682c))
|
|
26
|
+
* if failed upload http do not reset on other changes. ([#104](https://github.com/IBM/aspera-sdk-js/issues/104)) ([6333708](https://github.com/IBM/aspera-sdk-js/commit/633370883408219895b0c7545ab4fad887ad4bbf))
|
|
27
|
+
* update deps ([#105](https://github.com/IBM/aspera-sdk-js/issues/105)) ([9f2d33a](https://github.com/IBM/aspera-sdk-js/commit/9f2d33af52ef6eefedfff390680cc62b6888f5fa))
|
|
28
|
+
* update libs and typo ([#128](https://github.com/IBM/aspera-sdk-js/issues/128)) ([90ba81a](https://github.com/IBM/aspera-sdk-js/commit/90ba81a4d359bb5b2ef881088254d5eb1a26298a))
|
|
29
|
+
* update security and migrate jest and eslint ([#87](https://github.com/IBM/aspera-sdk-js/issues/87)) ([d460133](https://github.com/IBM/aspera-sdk-js/commit/d4601337f8d4b70050a414051849608eafc783b2))
|
|
30
|
+
* v2 support for http gateway ([#110](https://github.com/IBM/aspera-sdk-js/issues/110)) ([a7f35b8](https://github.com/IBM/aspera-sdk-js/commit/a7f35b845a32959c477bbcca13777a14ad01948d))
|
|
31
|
+
|
|
32
|
+
### [0.2.8](https://github.com/IBM/aspera-sdk-js/compare/v0.2.7...v0.2.8) (2025-05-09)
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
### Bug Fixes
|
|
36
|
+
|
|
37
|
+
* 404 for GH pages ([0cf7abd](https://github.com/IBM/aspera-sdk-js/commit/0cf7abdf7784ceadfcd58175effc4c6628fdd708))
|
|
38
|
+
* add vue to example for installer ([#60](https://github.com/IBM/aspera-sdk-js/issues/60)) ([6a79ad2](https://github.com/IBM/aspera-sdk-js/commit/6a79ad2c2c12a70682b8ef787c97923979e75a6e))
|
|
39
|
+
* basename for router and vite ([7d03afd](https://github.com/IBM/aspera-sdk-js/commit/7d03afd1b7749be40c49d347491c4307ade12039))
|
|
40
|
+
* clean NPM script to remove un needed files ([#66](https://github.com/IBM/aspera-sdk-js/issues/66)) ([7882879](https://github.com/IBM/aspera-sdk-js/commit/7882879f98e31854c4a38ef485ff8062b11b184f))
|
|
41
|
+
* do not fail out init if drag and drop fails ([#61](https://github.com/IBM/aspera-sdk-js/issues/61)) ([82ae64d](https://github.com/IBM/aspera-sdk-js/commit/82ae64d95d50448570d1057277284cd157f57e97))
|
|
42
|
+
* handle 404 on the nested route ([386ba5e](https://github.com/IBM/aspera-sdk-js/commit/386ba5e16905368f67f01a886870098607697285))
|
|
43
|
+
|
|
44
|
+
### [0.2.7](https://github.com/IBM/aspera-sdk-js/compare/v0.2.6...v0.2.7) (2025-04-11)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
### Features
|
|
48
|
+
|
|
49
|
+
* **#54:** handle isAlive safari extension events ([#57](https://github.com/IBM/aspera-sdk-js/issues/57)) ([266a649](https://github.com/IBM/aspera-sdk-js/commit/266a649643ee4d07f4546054807d901c3edbe444)), closes [#54](https://github.com/IBM/aspera-sdk-js/issues/54)
|
|
50
|
+
* example app ([#58](https://github.com/IBM/aspera-sdk-js/issues/58)) ([a29728f](https://github.com/IBM/aspera-sdk-js/commit/a29728f357b374cafa0667e87e92f8bea804bdfe))
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
### Bug Fixes
|
|
54
|
+
|
|
55
|
+
* add base to build ([9c1e1ea](https://github.com/IBM/aspera-sdk-js/commit/9c1e1ea20e5b22669eb742cd35aa33ee4b797d96))
|
|
56
|
+
|
|
57
|
+
### [0.2.6](https://github.com/IBM/aspera-sdk-js/compare/v0.2.5...v0.2.6) (2024-11-27)
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
### Bug Fixes
|
|
61
|
+
|
|
62
|
+
* reverse multiple user number logic ([#52](https://github.com/IBM/aspera-sdk-js/issues/52)) ([24468a4](https://github.com/IBM/aspera-sdk-js/commit/24468a429a8d2fdd44b5ab0c50d6b914e5146d94))
|
|
63
|
+
|
|
64
|
+
### [0.2.5](https://github.com/IBM/aspera-sdk-js/compare/v0.2.4...v0.2.5) (2024-11-15)
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
### Bug Fixes
|
|
68
|
+
|
|
69
|
+
* URL export info ([#51](https://github.com/IBM/aspera-sdk-js/issues/51)) ([86fe712](https://github.com/IBM/aspera-sdk-js/commit/86fe712e7100bcf5fc04d0034879865198f55875))
|
|
70
|
+
|
|
71
|
+
### [0.2.4](https://github.com/IBM/aspera-sdk-js/compare/v0.2.3...v0.2.4) (2024-11-07)
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
### Bug Fixes
|
|
75
|
+
|
|
76
|
+
* websocket port scan opt in only ([#50](https://github.com/IBM/aspera-sdk-js/issues/50)) ([18ab7e1](https://github.com/IBM/aspera-sdk-js/commit/18ab7e19a9ba7ec8109d44ff20daf109d7759ba5))
|
|
77
|
+
|
|
78
|
+
### [0.2.3](https://github.com/IBM/aspera-sdk-js/compare/v0.2.2...v0.2.3) (2024-10-31)
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
### Bug Fixes
|
|
82
|
+
|
|
83
|
+
* **#48:** use download site instead of cloudfront ([#49](https://github.com/IBM/aspera-sdk-js/issues/49)) ([cc44ece](https://github.com/IBM/aspera-sdk-js/commit/cc44ecec186d8ca1fdb2797ddd0704c11c6abc0d)), closes [#48](https://github.com/IBM/aspera-sdk-js/issues/48)
|
|
84
|
+
|
|
85
|
+
### [0.2.2](https://github.com/IBM/aspera-sdk-js/compare/v0.2.1...v0.2.2) (2024-10-25)
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
### Features
|
|
89
|
+
|
|
90
|
+
* rename to aspera SDK ([#47](https://github.com/IBM/aspera-sdk-js/issues/47)) ([680e891](https://github.com/IBM/aspera-sdk-js/commit/680e8914f04ad3edafeae54af7ab115c5fa63045))
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
### Bug Fixes
|
|
94
|
+
|
|
95
|
+
* ws read appid from global ([#46](https://github.com/IBM/aspera-sdk-js/issues/46)) ([576ecea](https://github.com/IBM/aspera-sdk-js/commit/576ecea5d1a050edcac188c21779267a88f335d6))
|
|
96
|
+
|
|
97
|
+
### [0.2.1](https://github.com/IBM/aspera-sdk-js/compare/v0.2.0...v0.2.1) (2024-10-25)
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
### Features
|
|
101
|
+
|
|
102
|
+
* initial multiple user session implementation ([#37](https://github.com/IBM/aspera-sdk-js/issues/37)) ([338f058](https://github.com/IBM/aspera-sdk-js/commit/338f058597b00f3121ff9a1d9f53b561818e8107))
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
### Bug Fixes
|
|
106
|
+
|
|
107
|
+
* use desktop_spec for payload ([c516649](https://github.com/IBM/aspera-sdk-js/commit/c51664904b01a4200cba6bdef665b108567123b4))
|
|
108
|
+
|
|
109
|
+
## [0.2.0](https://github.com/IBM/aspera-sdk-js/compare/v0.1.36...v0.2.0) (2024-10-23)
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
### ⚠ BREAKING CHANGES
|
|
113
|
+
|
|
114
|
+
* **#38:** old desktop-sdk-js is no longer used. Move to @ibm-aspera/browser-sdk-js
|
|
115
|
+
|
|
116
|
+
* fix: undo desktop specific and URL
|
|
117
|
+
|
|
118
|
+
* fix: unit tests for installer URL change
|
|
119
|
+
|
|
120
|
+
### Features
|
|
121
|
+
|
|
122
|
+
* **#38:** migrate to aspera browser naming instead of desktop ([#40](https://github.com/IBM/aspera-sdk-js/issues/40)) ([8770121](https://github.com/IBM/aspera-sdk-js/commit/87701218e6f63c034ef334059abece2402bb6e5c)), closes [#38](https://github.com/IBM/aspera-sdk-js/issues/38) [#38](https://github.com/IBM/aspera-sdk-js/issues/38)
|
|
123
|
+
* notify last event on callback registration ([#34](https://github.com/IBM/aspera-sdk-js/issues/34)) ([08fd161](https://github.com/IBM/aspera-sdk-js/commit/08fd1612408ae6a66dd39f597b2ee340dfa88ace))
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
### Bug Fixes
|
|
127
|
+
|
|
128
|
+
* **#38:** remove JS from npm name ([#41](https://github.com/IBM/aspera-sdk-js/issues/41)) ([b18a20f](https://github.com/IBM/aspera-sdk-js/commit/b18a20f9d2610d1725b237da57e345434110ff33)), closes [#38](https://github.com/IBM/aspera-sdk-js/issues/38)
|
|
129
|
+
* dependabot alerts ([#35](https://github.com/IBM/aspera-sdk-js/issues/35)) ([126417c](https://github.com/IBM/aspera-sdk-js/commit/126417c9665d6103cc81e409a7d128d4d28aacf0))
|
|
130
|
+
* safari extension status ([#33](https://github.com/IBM/aspera-sdk-js/issues/33)) ([5d7c915](https://github.com/IBM/aspera-sdk-js/commit/5d7c9156cfaf4f6d10c0d0ac741c520c0f6d7c68))
|
|
131
|
+
|
|
132
|
+
### [0.1.36](https://github.com/IBM/aspera-sdk-js/compare/v0.1.35...v0.1.36) (2024-09-26)
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
### Bug Fixes
|
|
136
|
+
|
|
137
|
+
* use correct callbacks for safari extension notifications ([#32](https://github.com/IBM/aspera-sdk-js/issues/32)) ([74ab8d6](https://github.com/IBM/aspera-sdk-js/commit/74ab8d67ffb4ab17354d038dbd7821ffa1815c7f))
|
|
138
|
+
|
|
139
|
+
### [0.1.35](https://github.com/IBM/aspera-sdk-js/compare/v0.1.34...v0.1.35) (2024-09-25)
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
### Features
|
|
143
|
+
|
|
144
|
+
* add safari extension status callback registration ([#27](https://github.com/IBM/aspera-sdk-js/issues/27)) ([41e3bbe](https://github.com/IBM/aspera-sdk-js/commit/41e3bbe289dbd07bbb164f7daa6256207b256945))
|
|
145
|
+
|
|
146
|
+
### [0.1.34](https://github.com/IBM/aspera-sdk-js/compare/v0.1.33...v0.1.34) (2024-09-24)
|
|
147
|
+
|
|
148
|
+
### [0.1.33](https://github.com/IBM/aspera-sdk-js/compare/v0.1.32...v0.1.33) (2024-09-24)
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
### Bug Fixes
|
|
152
|
+
|
|
153
|
+
* initial is closed status ([#30](https://github.com/IBM/aspera-sdk-js/issues/30)) ([acf1cd1](https://github.com/IBM/aspera-sdk-js/commit/acf1cd101788fb076f5a31e30413262d0260338c))
|
|
154
|
+
|
|
155
|
+
### [0.1.32](https://github.com/IBM/aspera-sdk-js/compare/v0.1.31...v0.1.32) (2024-09-24)
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
### Bug Fixes
|
|
159
|
+
|
|
160
|
+
* notify last event on callback registration ([#29](https://github.com/IBM/aspera-sdk-js/issues/29)) ([0558fe8](https://github.com/IBM/aspera-sdk-js/commit/0558fe8b8ba607641cf8b79e742fe151f4b6ac54))
|
|
161
|
+
|
|
162
|
+
### [0.1.31](https://github.com/IBM/aspera-sdk-js/compare/v0.1.30...v0.1.31) (2024-09-24)
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
### Bug Fixes
|
|
166
|
+
|
|
167
|
+
* trigger status event on init chain ([#28](https://github.com/IBM/aspera-sdk-js/issues/28)) ([c519c9d](https://github.com/IBM/aspera-sdk-js/commit/c519c9dcc33e462614a3e42e861c440120916fc6))
|
|
168
|
+
|
|
169
|
+
### [0.1.30](https://github.com/IBM/aspera-sdk-js/compare/v0.1.29...v0.1.30) (2024-09-20)
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
### Bug Fixes
|
|
173
|
+
|
|
174
|
+
* **#24:** prevent ws event duplication ([#26](https://github.com/IBM/aspera-sdk-js/issues/26)) ([9959b69](https://github.com/IBM/aspera-sdk-js/commit/9959b69dcb00693f79d963bad8da73caf0932192)), closes [#24](https://github.com/IBM/aspera-sdk-js/issues/24)
|
|
175
|
+
|
|
176
|
+
### [0.1.29](https://github.com/IBM/aspera-sdk-js/compare/v0.1.28...v0.1.29) (2024-09-19)
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
### Bug Fixes
|
|
180
|
+
|
|
181
|
+
* **#23:** reject when safari extension is not enabled ([#25](https://github.com/IBM/aspera-sdk-js/issues/25)) ([6e46a99](https://github.com/IBM/aspera-sdk-js/commit/6e46a99a3e1fdfc8e39ef8a41cc7416d2e1163c5)), closes [#23](https://github.com/IBM/aspera-sdk-js/issues/23)
|
|
182
|
+
|
|
183
|
+
### [0.1.28](https://github.com/IBM/aspera-sdk-js/compare/v0.1.26...v0.1.28) (2024-07-17)
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
### Features
|
|
187
|
+
|
|
188
|
+
* **#8:** get info method ([#9](https://github.com/IBM/aspera-sdk-js/issues/9)) ([84f38c4](https://github.com/IBM/aspera-sdk-js/commit/84f38c42458d942243b7d7cb375e8c2a7287f086)), closes [#8](https://github.com/IBM/aspera-sdk-js/issues/8)
|
|
189
|
+
* safari client implementation ([#10](https://github.com/IBM/aspera-sdk-js/issues/10)) ([35170a6](https://github.com/IBM/aspera-sdk-js/commit/35170a6a00daa25d979ae8753e8ca79329baf422))
|
|
190
|
+
* safari extension state detection ([#12](https://github.com/IBM/aspera-sdk-js/issues/12)) ([94b376e](https://github.com/IBM/aspera-sdk-js/commit/94b376ec3416e0fb9e8cda5bc773a3942a09881b))
|
|
191
|
+
* support for transfer activity on safari ([#11](https://github.com/IBM/aspera-sdk-js/issues/11)) ([616c23b](https://github.com/IBM/aspera-sdk-js/commit/616c23bd9f58a3da8099468bbb66b10fe0c8582a))
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
### Bug Fixes
|
|
195
|
+
|
|
196
|
+
* main field in package.json ([#13](https://github.com/IBM/aspera-sdk-js/issues/13)) ([8d103ee](https://github.com/IBM/aspera-sdk-js/commit/8d103ee0dffa8753c0c507f38ea375b8721555db))
|
|
197
|
+
* scrub for open source ([#82](https://github.com/IBM/aspera-sdk-js/issues/82)) ([ec71567](https://github.com/IBM/aspera-sdk-js/commit/ec71567f9a1271c765c13fcbe9acb8cac517e595))
|
|
198
|
+
|
|
199
|
+
### [0.1.27](https://github.com/IBM/aspera-sdk-js/compare/v0.1.26...v0.1.27) (2024-06-10)
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
### Bug Fixes
|
|
203
|
+
|
|
204
|
+
* scrub for open source ([#82](https://github.com/IBM/aspera-sdk-js/issues/82)) ([ec71567](https://github.com/IBM/aspera-sdk-js/commit/ec71567f9a1271c765c13fcbe9acb8cac517e595))
|