Skip to content

Commit a7f600e

Browse files
Version Packages (#13782)
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## @audius/sdk@14.0.0 ### Major Changes - d864806: Remove getPlaylistByHandleAndSlug in favor of getBulkPlaylists - Removes `sdk.playlists.getPlaylistByHandleAndSlug()` in favor of calling `sdk.playlists.getBulkPlaylists({ permalink: ['/handle/playlist/playlist-name-slug'] })` - Changes return values of `CommentsAPI` to match other APIs, removing `success` param. ### Minor Changes - 71bb31b: Add programmable distribution config to stream_conditions ### Patch Changes - 71bb31b: Fix missing bearer token for PUT /users - a7a9e17: Fix create/upload/update playlist in legacy path - `publishTracks` returns string track IDs, which were being incorrectly parsed as though they were numbers that needed converting. This was changed behavior from recent SDK changes made to match the POST endpoints as this was working previously - `createPlaylist` wasn't equipped to handle using a preset `playlistId` like our client expects, rejecting calls that had `playlistId` already set in the metadata (which would happen on our creation of playlists from scratch). - `createPlaylistInternal` was being passed parsed parameters in the `createPlaylist` case, and unparsed in the `uploadPlaylist` case, and used types that made it hard to squeeze both callsites in. This was resulting in incorrectly setting some IDs to hash IDs (eg in `playlistContents`) and was uncovered when fixing the playlistId bug above - `updatePlaylist` had incorrect schema still referencing `coverArtCid` instead of `playlistImageSizesMultihash`, blocking any playlist updates that included an image update - 8f12bb7: Fix cover art CID metadata properties for playlists and tracks. - 6cb4b6f: Fix UploadsApi to make start() a function ## @audius/sdk-legacy@6.0.21 ### Patch Changes - Updated dependencies [71bb31b] - Updated dependencies [71bb31b] - Updated dependencies [a7a9e17] - Updated dependencies [d864806] - Updated dependencies [8f12bb7] - Updated dependencies [6cb4b6f] - @audius/sdk@14.0.0 ## @audius/sp-actions@1.0.25 ### Patch Changes - @audius/sdk-legacy@6.0.21 Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent d97368a commit a7f600e

13 files changed

Lines changed: 54 additions & 48 deletions

.changeset/afraid-mayflies-hunt.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/chilled-bobcats-sit.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/cool-onions-argue.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

.changeset/four-peas-impress.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/plenty-starfishes-walk.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/purple-experts-allow.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/libs/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @audius/sdk
22

3+
## 6.0.21
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [71bb31b]
8+
- Updated dependencies [71bb31b]
9+
- Updated dependencies [a7a9e17]
10+
- Updated dependencies [d864806]
11+
- Updated dependencies [8f12bb7]
12+
- Updated dependencies [6cb4b6f]
13+
- @audius/sdk@14.0.0
14+
315
## 6.0.20
416

517
### Patch Changes

packages/libs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@audius/sdk-legacy",
3-
"version": "6.0.20",
3+
"version": "6.0.21",
44
"audius": {
55
"releaseSHA": "f1d70a2a0643c5c84d8ab053f70c1e0a2ec3ad49"
66
},
@@ -44,7 +44,7 @@
4444
"dependencies": {
4545
"@audius/fixed-decimal": "0.2.1",
4646
"@audius/hedgehog": "3.0.0-alpha.1",
47-
"@audius/sdk": "13.1.0",
47+
"@audius/sdk": "14.0.0",
4848
"@audius/spl": "2.1.0",
4949
"@babel/core": "^7.23.7",
5050
"@babel/plugin-proposal-class-static-block": "7.21.0",

packages/sdk/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# @audius/sdk
22

3+
## 14.0.0
4+
5+
### Major Changes
6+
7+
- d864806: Remove getPlaylistByHandleAndSlug in favor of getBulkPlaylists
8+
9+
- Removes `sdk.playlists.getPlaylistByHandleAndSlug()` in favor of calling `sdk.playlists.getBulkPlaylists({ permalink: ['/handle/playlist/playlist-name-slug'] })`
10+
- Changes return values of `CommentsAPI` to match other APIs, removing `success` param.
11+
12+
### Minor Changes
13+
14+
- 71bb31b: Add programmable distribution config to stream_conditions
15+
16+
### Patch Changes
17+
18+
- 71bb31b: Fix missing bearer token for PUT /users
19+
- a7a9e17: Fix create/upload/update playlist in legacy path
20+
21+
- `publishTracks` returns string track IDs, which were being incorrectly parsed as though they were numbers that needed converting. This was changed behavior from recent SDK changes made to match the POST endpoints as this was working previously
22+
- `createPlaylist` wasn't equipped to handle using a preset `playlistId` like our client expects, rejecting calls that had `playlistId` already set in the metadata (which would happen on our creation of playlists from scratch).
23+
- `createPlaylistInternal` was being passed parsed parameters in the `createPlaylist` case, and unparsed in the `uploadPlaylist` case, and used types that made it hard to squeeze both callsites in. This was resulting in incorrectly setting some IDs to hash IDs (eg in `playlistContents`) and was uncovered when fixing the playlistId bug above
24+
- `updatePlaylist` had incorrect schema still referencing `coverArtCid` instead of `playlistImageSizesMultihash`, blocking any playlist updates that included an image update
25+
26+
- 8f12bb7: Fix cover art CID metadata properties for playlists and tracks.
27+
- 6cb4b6f: Fix UploadsApi to make start() a function
28+
329
## 13.1.0
430

531
### Minor Changes

0 commit comments

Comments
 (0)