Releases: c-wilkinson/basic-FPL-scrape-scripts
Patch Release 1.1.1
This release is to cover the extra gameweeks caused by the COVID lockdown.
Initial release
This is the point in the repository that version 1.0 was released in to the PowerShell Gallery. This release contains three basic object creations: -
- Session
- League
- Chart
The session object is used to authenticate with various parts of the FPL system. The league object contains an array with information about the mini-league it has parsed. The chart object is able to output a chart of the history of the league object that has been passed in.
Patch Release
Authenticate no longer takes a username and password string combination, instead expecting a PSCredential. A PSCredential object can be created by running "New-Object System.Management.Automation.PSCredential(yourUsername, yourPassword);". This change was made remove any potential expose of sensitive information outside of the module.