|
1 | 1 | # Changelog
|
| 2 | + |
2 | 3 | All notable changes to this project will be documented in this file.
|
3 | 4 |
|
4 | 5 | The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
5 | 6 | and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
| 7 | + |
6 | 8 | ## [Unreleased]
|
7 | 9 |
|
| 10 | +### Fixed |
| 11 | + |
| 12 | +- Reference error for javascript projects [#127](https://github.com/cjam/react-native-spotify-remote/issues/127) |
| 13 | + |
8 | 14 | ## [0.3.6] - 2021-04-15
|
| 15 | + |
9 | 16 | ### Added
|
| 17 | + |
10 | 18 | - `playerContextChanged` events to iOS & Android [#118](https://github.com/cjam/react-native-spotify-remote/pull/118)
|
11 | 19 | - CODE flow for Android Authentication [#121](https://github.com/cjam/react-native-spotify-remote/pull/121)
|
| 20 | + |
12 | 21 | ### Fixed
|
| 22 | + |
13 | 23 | - Fix iOS returning access token instead of session object when re-authing [#112](https://github.com/cjam/react-native-spotify-remote/pull/112)
|
14 | 24 | - Readme error in example code https://github.com/cjam/react-native-spotify-remote/pull/115
|
15 | 25 |
|
16 | 26 | ## [0.3.5] - 2021-02-27
|
| 27 | + |
17 | 28 | ### Fixed
|
| 29 | + |
18 | 30 | - Fix for [Issue #100](https://github.com/cjam/react-native-spotify-remote/issues/100)
|
19 | 31 |
|
20 | 32 | ## [0.3.4] - 2021-02-15
|
21 |
| -### Fixed |
| 33 | + |
| 34 | +### Fixed |
| 35 | + |
22 | 36 | - Renamed `RNSpotifyConvert` -> `RNSpotifyRemoteConvert` to fix [Issue #94](https://github.com/cjam/react-native-spotify-remote/issues/94) ([IbrahimCanKALYA](https://github.com/IbrahimCanKALYA))
|
23 | 37 | - Fix [Issue #97](https://github.com/cjam/react-native-spotify-remote/issues/97)
|
| 38 | + |
24 | 39 | ### Updated
|
| 40 | + |
25 | 41 | - Allow partial item to be passed into `playItemWithIndex` ([PR #91](https://github.com/cjam/react-native-spotify-remote/pull/91))
|
26 | 42 | - Example to use library from source instead of installing local version
|
27 | 43 | - Autogenerated documentation
|
28 | 44 |
|
29 | 45 | ## [0.3.3] - 2020-12-13
|
| 46 | + |
30 | 47 | ### Fixed
|
| 48 | + |
31 | 49 | - Updated Peer Dependency on React Native to `>=0.60` [Issue #80](https://github.com/cjam/react-native-spotify-remote/issues/80)
|
| 50 | + |
32 | 51 | ### Added
|
33 |
| -- Better error messages on connection failures [Issue #65](https://github.com/cjam/react-native-spotify-remote/issues/65) |
34 |
| - - iOS now checks to see if Spotify is installed |
| 52 | + |
| 53 | +- Better error messages on connection failures [Issue #65](https://github.com/cjam/react-native-spotify-remote/issues/65) |
| 54 | + - iOS now checks to see if Spotify is installed |
35 | 55 | - License file
|
| 56 | + |
36 | 57 | ### Updated
|
| 58 | + |
37 | 59 | - Example app to RN 63.4
|
38 | 60 |
|
39 | 61 | ## [0.3.2] - 2020-05-17
|
| 62 | + |
40 | 63 | ### Fixed
|
| 64 | + |
41 | 65 | - added some defaults for ApiConfig
|
42 | 66 |
|
43 | 67 | ### Added
|
| 68 | + |
44 | 69 | - More documentation around setting up android project
|
45 | 70 |
|
46 | 71 | ## [0.3.1] - 2020-05-17 (pre-release)
|
| 72 | + |
47 | 73 | ### Fixed
|
| 74 | + |
48 | 75 | - added some additional exports to `index.ts` to support missing typings
|
49 | 76 |
|
50 | 77 | ## [0.3.0] - 2020-05-16 (pre-release)
|
| 78 | + |
51 | 79 | ### Changed
|
52 |
| - - `ApiConfig.scope` to `ApiConfig.scopes` which is now of type `ApiScope[]` and also aligns to the web api scopes |
53 |
| - - `ApiScope` enum values are now same as web api instead of bit flags |
54 |
| - - `PlayerState.paused` -> `PlayerState.isPaused` to align with Spotify's iOS/Android sdk's |
| 80 | + |
| 81 | +- `ApiConfig.scope` to `ApiConfig.scopes` which is now of type `ApiScope[]` and also aligns to the web api scopes |
| 82 | +- `ApiScope` enum values are now same as web api instead of bit flags |
| 83 | +- `PlayerState.paused` -> `PlayerState.isPaused` to align with Spotify's iOS/Android sdk's |
55 | 84 |
|
56 | 85 | ### Added
|
57 |
| - - Android Support! Big thanks to @YozhikM for the initial work on this |
58 |
| - - `PlaybackRestrictions.canSeek` |
59 |
| - - `SpotifyRemote.getChildrenOfItem` now has optional `options:GetChildrenItemsOptions` for android paging |
60 |
| - - `SpotifyAuth.authorize` to replace `SpotifyAuth.initialize` which will now return a session object instead of just a token |
| 86 | + |
| 87 | +- Android Support! Big thanks to @YozhikM for the initial work on this |
| 88 | +- `PlaybackRestrictions.canSeek` |
| 89 | +- `SpotifyRemote.getChildrenOfItem` now has optional `options:GetChildrenItemsOptions` for android paging |
| 90 | +- `SpotifyAuth.authorize` to replace `SpotifyAuth.initialize` which will now return a session object instead of just a token |
61 | 91 |
|
62 | 92 | ### Deprecated
|
63 |
| -- `SpotifyAuth.initialize` in favor of `SpotifyAuth.authorize` |
64 | 93 |
|
| 94 | +- `SpotifyAuth.initialize` in favor of `SpotifyAuth.authorize` |
65 | 95 |
|
66 | 96 | ## [0.2.2] - 2020-03-22
|
| 97 | + |
67 | 98 | ### Changed
|
| 99 | + |
68 | 100 | - Removed logging on release builds [Issue #31](https://github.com/cjam/react-native-spotify-remote/issues/31)
|
69 | 101 |
|
70 | 102 | ## [0.2.1] - 2020-03-22
|
| 103 | + |
71 | 104 | ### Fixed
|
| 105 | + |
72 | 106 | - Playing Playlist Item would throw exception on PlayerState update [Issue #35](https://github.com/cjam/react-native-spotify-remote/issues/35)
|
73 | 107 | - Safer use of the remote apis [Issue #32](https://github.com/cjam/react-native-spotify-remote/issues/32)
|
74 | 108 |
|
75 | 109 | ## [0.2.0] - 2020-02-19
|
| 110 | + |
76 | 111 | ### Changed
|
| 112 | + |
77 | 113 | - Spotify SDK from 1.2.0 to 1.2.2
|
78 | 114 | - Example App to use an App Context so that components could be factored to separate files
|
| 115 | + |
79 | 116 | ### Added
|
| 117 | + |
80 | 118 | - `ApiConfig` (Used to authenticate and initialize session with `SpotifyAuth`)
|
81 |
| - - `PlayURI` - URI to play when authorizing ([Issue #29](https://github.com/cjam/react-native-spotify-remote/issues/29)) |
82 |
| - - `showDialog` - Whether or not to show the auth dialog |
| 119 | + - `PlayURI` - URI to play when authorizing ([Issue #29](https://github.com/cjam/react-native-spotify-remote/issues/29)) |
| 120 | + - `showDialog` - Whether or not to show the auth dialog |
83 | 121 | - `SpotifyAuth`
|
84 |
| - - `endSession()` - Ends current session |
85 |
| - - `getSession()` - Gets the current session object |
| 122 | + - `endSession()` - Ends current session |
| 123 | + - `getSession()` - Gets the current session object |
86 | 124 | - `SpotifySession` - Session Object Definition
|
87 | 125 | - `SpotifyRemote`
|
88 |
| - - `disconnect()` - Disconnects the Remote from Spotify |
| 126 | + - `disconnect()` - Disconnects the Remote from Spotify |
89 | 127 | - [Feature Matrix](./README.md#Features) to Readme (Docs)
|
90 | 128 | - Example of queuing many tracks
|
91 | 129 | - Requirement of XCode 11
|
92 | 130 |
|
93 | 131 | ## [0.1.1] - 2020-01-21
|
| 132 | + |
94 | 133 | ### Fixed
|
| 134 | + |
95 | 135 | - Missing SpotifyiOS headers / Framework [Issue #25](https://github.com/cjam/react-native-spotify-remote/issues/25)
|
96 | 136 |
|
97 | 137 | ## [0.1.0] - 2020-01-17
|
| 138 | + |
98 | 139 | ### Changed
|
| 140 | + |
99 | 141 | - `getRecommendedContentItems` now takes `options` object instead of `ContentType`
|
100 | 142 | - Example app to more fully exercise exposed functionality [Issue #20](https://github.com/cjam/react-native-spotify-remote/issues/20)
|
| 143 | + |
101 | 144 | ### Fixed
|
| 145 | + |
102 | 146 | - playerStateChanged event not triggered [Issue #14](https://github.com/cjam/react-native-spotify-remote/issues/14)
|
| 147 | + |
103 | 148 | ### Added
|
| 149 | + |
104 | 150 | - `playItem`
|
105 | 151 | - `playItemWithIndex` for [Issue #15](https://github.com/cjam/react-native-spotify-remote/issues/15)
|
106 | 152 | - `getRootContentItems`
|
107 | 153 | - `getContentItemForUri`
|
108 | 154 | - `getCrossfadeState`
|
109 | 155 | - `Track` Properties
|
110 |
| - - `saved` |
111 |
| - - `episode` |
112 |
| - - `podcast` |
| 156 | + - `saved` |
| 157 | + - `episode` |
| 158 | + - `podcast` |
113 | 159 | - `ContentItem` Properties
|
114 |
| - - `availableOffline` |
115 |
| - - `children` |
| 160 | + - `availableOffline` |
| 161 | + - `children` |
116 | 162 |
|
117 | 163 | ## [0.0.8] - 2019-12-14
|
118 |
| -### Fixed |
| 164 | + |
| 165 | +### Fixed |
| 166 | + |
119 | 167 | - #12: 'React/RCTConvert.h' file not found
|
| 168 | + |
120 | 169 | ### Added
|
| 170 | + |
121 | 171 | - Troubleshooting section to readme
|
122 | 172 |
|
123 | 173 | ## [0.0.7] - 2019-12-13
|
| 174 | + |
124 | 175 | ### Fixed
|
| 176 | + |
125 | 177 | - Error in Cocoapod install docs
|
126 | 178 |
|
127 | 179 | ## [0.0.6] - 2019-12-13
|
| 180 | + |
128 | 181 | ### Added
|
| 182 | + |
129 | 183 | - Cocoapod support
|
130 | 184 | - RN >= 0.60 support
|
131 | 185 |
|
132 | 186 | ## [0.0.5] - 2019-03-16
|
| 187 | + |
133 | 188 | ### Fixed
|
| 189 | + |
134 | 190 | - Usage in README as it did not work
|
135 | 191 |
|
136 | 192 | ## [0.0.4] - 2019-03-16
|
| 193 | + |
137 | 194 | ### Added
|
| 195 | + |
138 | 196 | - Example Server
|
139 | 197 | - Example Project
|
140 | 198 |
|
141 | 199 | ## [0.0.2] - 2019-03-13
|
| 200 | + |
142 | 201 | ### Added
|
| 202 | + |
143 | 203 | - Surfacing errors on iOS Authentication flow
|
| 204 | + |
144 | 205 | ### Changed
|
| 206 | + |
145 | 207 | - Updates to API Docs
|
146 | 208 |
|
147 | 209 | ## [0.0.1] - 2019-03-13
|
| 210 | + |
148 | 211 | ### Added
|
| 212 | + |
149 | 213 | - iOS Auth Support
|
150 | 214 | - iOS App Remote
|
151 | 215 | - Minor API Documentation
|
0 commit comments