Releases: wimglenn/advent-of-code-data
Releases · wimglenn/advent-of-code-data
v2.1.0
What's Changed
aocd.extraattr, for when the sample data needs some extra context @wimglenn in #153- Date introspection: split "part" out of filename by @wimglenn in #154
- prevent excessive checking of puzzle page for pre-existing answers by @wimglenn in #155
- handle the case where an entry-point return non-answers for both part… by @wimglenn in #157
- expose models.Puzzle._coerce_val as utils.coerce by @wimglenn in #158
- Fix REPL detection for Python 3.13 by @wimglenn in #159
- Always pre-check for an unlocked puzzle page when accessing examples. by @wimglenn in #160
Full Changelog: v2.0.4...v2.1.0
v2.0.4
v2.0.3
v2.0.2
What's Changed
- test on 3.12 by @wimglenn in #124
- Ci by @wimglenn in #130
- Update utils.py to use urllib3.ProxyManager by @SecPascal in #129
- Move pook dep from git sources to PyPI index by @wimglenn in #135
- Provide type annotations for the public API by @mjpieters in #131
- Add get_data as an export by @mjpieters in #136
- Add support for retrieving session cookies from the Edge browser by @Cogito in #138
- Update tests.yml by @wimglenn in #139
- remove pook fixture which is upstream now by @wimglenn in #141
- remove x64 by @wimglenn in #142
- update CI by @wimglenn in #145
New Contributors
- @SecPascal made their first contribution in #129
- @mjpieters made their first contribution in #131
- @Cogito made their first contribution in #138
Full Changelog: v2.0.1...v2.0.2
v2.0.1
v2.0.0
What's Changed
- Dropped Python 2 support. Python 3.9+ required. by @wimglenn in #108
- Permit type conversions from numpy scalars (without adding numpy dependency) by @wimglenn in #109
- Drop requests dependency and just use urllib3 directly by @wimglenn in #110
- Better text for aocd --help by @wimglenn in #111
- Better detection of expired tokens for get_stats by @wimglenn in #112
- Example data parsing - cache full html files by @wimglenn in #114
- Example scraper plugin system by @wimglenn in #115
- Implement rate-limiting (requested by topaz) by @wimglenn in #117
- Submit bounds, prevent submitting answers known to be too low/high by @wimglenn in #118
- Add ability to run against example data instead of user data with
aoc --exampleby @wimglenn in #121
Full Changelog: v1.3.2...v2.0.0
v1.3.2
What's Changed
- If you submit a float value which for which
float.is_integer()returnsTrue, a warning will be logged and the value will be coerced usingstr(int(val)). Prevents sadness where e.g. 1234 is the right answer but you get the wrong answer by submitting "1234.0"
New Contributors
Full Changelog: v1.3.1...v1.3.2