Releases: vslee/IEXSharp
v2.1.0
There were multiple contributors to this release:
@JamiePrentice put CoreData in its own namespace (#47, #57). He also added additional streaming endpoints (#59, #60) and the following PremiumData endpoints: Wall Street Horizon (#49, #50), Fraud Factors (#51), ExtractAlpha (#52), PrecisionAlpha (#53), Kavout (#54), AuditAnalytics (#55), and Brain (#56).
@amine-mejaouel added exponential back-off rate-limiting (#48), made unit tests more strict (#46), and improved DateTime parsing (#44).
@longpshorn added more Chart Range options (#45).
Breaking changes to be aware of:
- CoreData namespace change (mentioned above)
- new dependency on Polly for rate limiting (mentioned above)
- more direct DateTime parsing (1, 2, 3)
- renaming of previous SSE endpoints
v2.0.0
There were multiple contributors to this release:
@JamiePrentice added enpoints to RefData (#11, #13), Stocks (#14), Crypto (#15), Forex (#17, #18), CorporateActions (#19), EconomicData (#34), and Enum descriptions (#21). He also fixed VolumeByVenue (#12), added ConfigureAwait (#22), refactored MarketInfo (#24, #26), removed deprecated Legacy endpoints (#39), and other tidying (#20, #27, #28, #35).
@longpshorn added Options (#23, #36), AnalystRecommendations (#25), CEOComp/SocialSentiment/Treasuries (#29), News (#32), Commodities (#33), improved Enum descriptions (#31), and other tidying/additions (#38, #43).
@amine-mejaouel fixed duplicate PK injections (#9) and added IncomeStatementAsync Period param (#10).
In addition, there has been further work behind the scenes cleaning up code and reorganizing categories:
- StockService has been broken up into its components: Batch, Prices, Profiles, Fundamentals, and Research.
- AlternativeDataService and SSEService have been removed.
- Namespace changes were made, including removing the VSLee prefix, as well as renaming V2 to Cloud and V1 to Legacy.
- Because of these breaking changes, the major version number has been incremented to 2.0.0.
- Issues #2, #4, and #8 were resolved.
v1.2.0
In this release, all endpoints have been converted to returning IEXResponse instead of the returnType directly. This allows the endpoints to return IEXResponse.ErrorMessage instead of throwing an exception. The returnType is now at IEXResponse.Data.
@Matthiee also contributed two new endpoints: Search (#5) and Advanced Dividends (#7).
An extension method DateTimeExtensions.GetDateTimeInUTC()
was added (currently only works with HistoricalPriceResponse
)
SecretKey and PublishableKey were renamed from pk/sk
Many other small changes were made to clean up the code behind the scenes...