Follow a strict commit message convention to keep project history clean and readable. Please follow the format:
<type>(<scope>): <subject>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>
feat
: A new featurefix
: A bug fixdocs
: Documentation only changesstyle
: Changes that do not affect the meaning of the code (white-space, formatting, etc.)refactor
: A code change that neither fixes a bug nor adds a featureperf
: A code change that improves performancetest
: Adding missing or correcting existing testschore
: Changes to the build process or auxiliary tools and libraries such as documentation generation
feat(parser): add ability to parse arrays
This commit adds a new feature to the parser module which allows it to parse
arrays.
Closes #123
fix(login): handle authentication error
Fixes a bug where the login process would not handle authentication errors
correctly.
Closes #456