diff --git a/.changeset/auto-follow-artist-coin-purchase.md b/.changeset/auto-follow-artist-coin-purchase.md deleted file mode 100644 index 9f151cb1c8e..00000000000 --- a/.changeset/auto-follow-artist-coin-purchase.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@audius/common": patch -"@audius/mobile": patch -"@audius/web": patch ---- - -Automatically follow an artist when a user successfully purchases their artist coin diff --git a/.changeset/collection-likes-reposts-album.md b/.changeset/collection-likes-reposts-album.md deleted file mode 100644 index f076458e68b..00000000000 --- a/.changeset/collection-likes-reposts-album.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@audius/web": patch ---- - -Show likes and reposts counts on album collection pages (desktop) diff --git a/.changeset/explore-tracks-lineup-playback.md b/.changeset/explore-tracks-lineup-playback.md deleted file mode 100644 index e16d60baf10..00000000000 --- a/.changeset/explore-tracks-lineup-playback.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@audius/common": patch -"@audius/mobile": patch -"@audius/web": patch ---- - -Fix Explore page tracks to queue as a lineup so pressing next plays the next track in the section diff --git a/.changeset/playlist-play-analytics.md b/.changeset/playlist-play-analytics.md deleted file mode 100644 index 5f1ab269d00..00000000000 --- a/.changeset/playlist-play-analytics.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@audius/common": patch -"@audius/mobile": patch -"@audius/web": patch ---- - -Add a dedicated Playlist: Play amplitude event that fires when a user starts playback of a playlist or album from the collection page or from a collection tile on web and mobile diff --git a/.changeset/playlist-play-collection-id.md b/.changeset/playlist-play-collection-id.md deleted file mode 100644 index 6f211903158..00000000000 --- a/.changeset/playlist-play-collection-id.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@audius/common": patch -"@audius/mobile": patch -"@audius/web": patch ---- - -Add collectionId to PLAYBACK_PLAY analytics events when a track is played from a playlist or album context diff --git a/package-lock.json b/package-lock.json index 34c98a18735..46dbe4c4c40 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5770,7 +5770,6 @@ }, "node_modules/@clack/prompts/node_modules/is-unicode-supported": { "version": "1.3.0", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -115269,7 +115268,7 @@ }, "packages/common": { "name": "@audius/common", - "version": "1.5.77", + "version": "1.5.78", "dependencies": { "@audius/fetch-nft": "0.2.8", "@audius/fixed-decimal": "*", @@ -137042,7 +137041,7 @@ }, "packages/mobile": { "name": "@audius/mobile", - "version": "1.5.179", + "version": "1.5.180", "dependencies": { "@amplitude/analytics-react-native": "1.4.11", "@audius/common": "*", @@ -146439,7 +146438,7 @@ }, "packages/web": { "name": "@audius/web", - "version": "1.5.169", + "version": "1.5.170", "hasInstallScript": true, "dependencies": { "@amplitude/analytics-browser": "2.11.9", diff --git a/packages/common/CHANGELOG.md b/packages/common/CHANGELOG.md index 1839549d7b1..18d8c0b6eee 100644 --- a/packages/common/CHANGELOG.md +++ b/packages/common/CHANGELOG.md @@ -1,5 +1,14 @@ # @audius/common +## 1.5.78 + +### Patch Changes + +- 44dba8d: Automatically follow an artist when a user successfully purchases their artist coin +- ab85f43: Fix Explore page tracks to queue as a lineup so pressing next plays the next track in the section +- 6da21c6: Add a dedicated Playlist: Play amplitude event that fires when a user starts playback of a playlist or album from the collection page or from a collection tile on web and mobile +- 2e2e7b3: Add collectionId to PLAYBACK_PLAY analytics events when a track is played from a playlist or album context + ## 1.5.77 ### Patch Changes diff --git a/packages/common/package.json b/packages/common/package.json index e1c75333051..690a0e80356 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@audius/common", - "version": "1.5.77", + "version": "1.5.78", "description": "Common utilities and store for web and mobile.", "private": true, "author": "Audius", diff --git a/packages/mobile/CHANGELOG.md b/packages/mobile/CHANGELOG.md index 32eca73f30f..a94cb985bf6 100644 --- a/packages/mobile/CHANGELOG.md +++ b/packages/mobile/CHANGELOG.md @@ -1,5 +1,19 @@ # @audius/mobile +## 1.5.180 + +### Patch Changes + +- 44dba8d: Automatically follow an artist when a user successfully purchases their artist coin +- ab85f43: Fix Explore page tracks to queue as a lineup so pressing next plays the next track in the section +- 6da21c6: Add a dedicated Playlist: Play amplitude event that fires when a user starts playback of a playlist or album from the collection page or from a collection tile on web and mobile +- 2e2e7b3: Add collectionId to PLAYBACK_PLAY analytics events when a track is played from a playlist or album context +- Updated dependencies [44dba8d] +- Updated dependencies [ab85f43] +- Updated dependencies [6da21c6] +- Updated dependencies [2e2e7b3] + - @audius/common@1.5.78 + ## 1.5.175 ### Patch Changes diff --git a/packages/mobile/package.json b/packages/mobile/package.json index e04f3d27b9c..6c496dc4dce 100644 --- a/packages/mobile/package.json +++ b/packages/mobile/package.json @@ -1,6 +1,6 @@ { "name": "@audius/mobile", - "version": "1.5.179", + "version": "1.5.180", "private": true, "scripts": { "android:dev": "ENVFILE=.env.dev turbo run android -- --mode=prodDebug", @@ -217,7 +217,9 @@ }, "jest": { "preset": "react-native", - "setupFilesAfterEnv": ["/jest.setup.js"], + "setupFilesAfterEnv": [ + "/jest.setup.js" + ], "moduleNameMapper": { "^react-native$": "/node_modules/react-native", "^@testing-library/react-native$": "/node_modules/@testing-library/react-native" diff --git a/packages/web/CHANGELOG.md b/packages/web/CHANGELOG.md index 0b9eee86b3c..87719437f2a 100644 --- a/packages/web/CHANGELOG.md +++ b/packages/web/CHANGELOG.md @@ -1,5 +1,20 @@ # @audius/web +## 1.5.170 + +### Patch Changes + +- 44dba8d: Automatically follow an artist when a user successfully purchases their artist coin +- ab33d7b: Show likes and reposts counts on album collection pages (desktop) +- ab85f43: Fix Explore page tracks to queue as a lineup so pressing next plays the next track in the section +- 6da21c6: Add a dedicated Playlist: Play amplitude event that fires when a user starts playback of a playlist or album from the collection page or from a collection tile on web and mobile +- 2e2e7b3: Add collectionId to PLAYBACK_PLAY analytics events when a track is played from a playlist or album context +- Updated dependencies [44dba8d] +- Updated dependencies [ab85f43] +- Updated dependencies [6da21c6] +- Updated dependencies [2e2e7b3] + - @audius/common@1.5.78 + ## 1.5.169 ### Patch Changes diff --git a/packages/web/package.json b/packages/web/package.json index 283fc2d6633..282188bfb95 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -3,7 +3,7 @@ "productName": "Audius", "description": "The Audius web client reference implementation", "author": "Audius", - "version": "1.5.169", + "version": "1.5.170", "private": true, "scripts": { "DEV & BUILD========================================": "",