Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions .changeset/strong-ravens-sip.md

This file was deleted.

90 changes: 85 additions & 5 deletions package-lock.json

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

7 changes: 7 additions & 0 deletions packages/libs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @audius/sdk

## 6.0.16

### Patch Changes

- Updated dependencies [aa4e32c]
- @audius/sdk@12.0.0

## 6.0.15

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/libs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@audius/sdk-legacy",
"version": "6.0.15",
"version": "6.0.16",
"audius": {
"releaseSHA": "f1d70a2a0643c5c84d8ab053f70c1e0a2ec3ad49"
},
Expand Down Expand Up @@ -44,7 +44,7 @@
"dependencies": {
"@audius/fixed-decimal": "0.2.1",
"@audius/hedgehog": "3.0.0-alpha.1",
"@audius/sdk": "11.3.0",
"@audius/sdk": "12.0.0",
"@audius/spl": "2.1.0",
"@babel/core": "^7.23.7",
"@babel/plugin-proposal-class-static-block": "7.21.0",
Expand Down
13 changes: 13 additions & 0 deletions packages/sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @audius/sdk

## 12.0.0

### Major Changes

- aa4e32c: Update track file uploads to use TUS protocol

- `sdk.tracks.uploadTrack()`, `sdk.tracks.updateTrack()`, `sdk.playlists.uploadPlaylist()`, `sdk.playlists.updatePlaylist()`, `sdk.albums.uploadAlbum()`, `sdk.albums.updateAlbum()`, parameters have changed:
- `trackFile`/`trackFiles` is now `audioFile`/`audioFiles`
- `coverArtFile` is now `imageFile`
- `onProgress` for tracks, playlists, and albums uploads/updates now has the form `(progress: number, event: { key: 'audio' | 'image' | number, loaded?: number, total?: number, transcode?: number }) => void`, where `progress` is a number between 0 and 1 showing the overall progress, `key` is a reference to what's being uploaded (where numbers are the index of the audio file in the case of albums/playlists), `loaded`/`total` are the number of bytes uploaded and total bytes, respectively, and `transcode` is a number between 0-1 of the transcode progress, if applicable.

Audio file uploads will now autoretry three times on failure/network disconnect, and resume if there were pending uploads in local storage.

## 11.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@audius/sdk",
"version": "11.3.0",
"version": "12.0.0",
"audius": {
"releaseSHA": "f1d70a2a0643c5c84d8ab053f70c1e0a2ec3ad49"
},
Expand Down
6 changes: 6 additions & 0 deletions packages/sp-actions/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @audius/sp-actions

## 1.0.20

### Patch Changes

- @audius/sdk-legacy@6.0.16

## 1.0.19

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/sp-actions/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@audius/sp-actions",
"version": "1.0.19",
"version": "1.0.20",
"description": "A utility for audius service providers to claim token rewards.",
"bin": {
"claim": "claim.js"
},
"author": "Audius",
"license": "Apache-2.0",
"dependencies": {
"@audius/sdk-legacy": "6.0.15",
"@audius/sdk-legacy": "6.0.16",
"@truffle/hdwallet-provider": "^1.2.2",
"axios": "^0.21.0",
"commander": "^6.2.1",
Expand Down