Skip to content
Merged
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
5 changes: 0 additions & 5 deletions .changeset/breezy-humans-sip.md

This file was deleted.

18 changes: 0 additions & 18 deletions .changeset/purple-suns-reflect.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/young-dryers-grab.md

This file was deleted.

10 changes: 5 additions & 5 deletions package-lock.json

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

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

## 6.0.18

### Patch Changes

- Updated dependencies [825a39d]
- Updated dependencies [0129871]
- Updated dependencies [e376ade]
- @audius/sdk@13.0.0

## 6.0.17

### 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.17",
"version": "6.0.18",
"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": "12.0.1",
"@audius/sdk": "13.0.0",
"@audius/spl": "2.1.0",
"@babel/core": "^7.23.7",
"@babel/plugin-proposal-class-static-block": "7.21.0",
Expand Down
27 changes: 27 additions & 0 deletions packages/sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# @audius/sdk

## 13.0.0

### Major Changes

- 0129871: Rewrite write endpoints

Write endpoints have gone an entire overhaul, and now will call the API conditionally to handle writes on behalf of apps if the EntityManager service is not initialized. In order to support this, and moving towards having this be the default path moving forward, the signatures for the writes have all changed to align with the autogenerated code from the API schema of the API write endpoints.

Non-exhaustive list of changes (see updated dev docs post release for complete breakdown of methods):

- Creating albums and playlists no longer lets you pass in track IDs separately. They must be part of the `playlistContents`
- No more `advancedOptions` in order to match the required schema for the write endpoints in API. For now there's no replacement. Reach out if you desire these abilities again.
- Most write method parameters now have top level `userId` and (if applicable) entity id (eg. `playlistId` for `updatePlaylist`) and a `metadata` field, to mirror the autogenerated code which separates the request path/query params and body. CommentsAPI for example has been affected greatly by this.
- `updateUserProfile` is now `updateUser`
- `addTrackToPlaylist`, `removeTrackToPlaylist` etc should _not_ be used going forward.
- `updateCoinRequest` is now `metadata` in `updateCoin` method parameters.
- USDC access gates for stream/download conditions now have splits formatted as a list with elements `user_id` and `percentage`
- Authentication can now be done via a Bearer token when using the API routes

### Minor Changes

- 825a39d: Support bearer token initialization

### Patch Changes

- e376ade: Add/update user should use CID for photo/cover art

## 12.0.1

### Patch 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": "12.0.1",
"version": "13.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.22

### Patch Changes

- @audius/sdk-legacy@6.0.18

## 1.0.21

### 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.21",
"version": "1.0.22",
"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.17",
"@audius/sdk-legacy": "6.0.18",
"@truffle/hdwallet-provider": "^1.2.2",
"axios": "^0.21.0",
"commander": "^6.2.1",
Expand Down