Releases: AnswerDotAI/fastcore
Releases · AnswerDotAI/fastcore
v1.3.11
Bugs Squashed
- regression in urlopen header user-agent not set (#237)
loads
incompatible with Python 3.9 (#236)
- Documentation search not working (#235)
v1.3.10
1.3.10
New Features
- split
parallel
and net
modules out of xtras
(#234)
- New HTTP Exceptions hierarchy for each status code, used by
url*
functions
- add
Request.summary
and debug
paramaeter to urlsend
(#233)
- Add
ImportEnum
, StrEnum
, and str_enum
(#232)
- handle encoded data in
urlrequest
(#231)
1.3.9
1.3.9
New Features
- use
__slots__
in store_attr
if exists (#226)
- add
urlrequest
(#225)
- add
loads
and urlsend
(#224)
- add
PartialFormatter
and partial_format
(#223)
- add
stringfmt_names
(#222)
1.3.8
1.3.8
New Features
- rename
negate_func
to not_
for consistency with other curried ops (#221)
- Support empty content for
urljson
(#219)
- move
patch
and patch_to
to fastcore.basics
, and avoid clobbering existing symbols when patching (#214)
1.3.7
1.3.7
New Features
- add
startthread
(#218)
- make
run
compatible with py36 (#216)
reuse_addr
param to start_server
(#215)
- add rfc3986 list to
urlquote
(#213)
1.3.6
1.3.6
New Features
- quote URL paths in
urlwrap
(#211)
- Add
start_server
and start_client
for simple socket networking (#210)
- new
uniqueify
and val2idx
functions, and additional params to listify
(#209)
- improve representation in
basic_repr
(#197)
1.3.5
1.3.5
Breaking Changes
New Features
Stateful
base class/mixin for objects that should not serialize all their state (#196)
- new
frame
param to argnames
(#195)
- add
urlopen
and untar_dir
(#192)
SCRIPT_INFO.func
to let functions know what CLI name was called in fastcore.script
(#185)
- add
annotations
and argnames
functions (#179)
- allow
but
param in store_attr
to be either list
or str
(#174)
- add
urlvalid
(#173)
Bugs Squashed
1.3.2
1.3.2
New Features
- add
repr_dict
and use for display for AttrDict
(#172)
- add
urlsave
, urlclean
, and repo_details
(#171)
remove_suffix
function (#170)
- add
urlcheck
and urlwrap
(#168)
- new
AutoInit
mixin (#165)
Bugs Squashed
risinstance
fails if param is not truthy (#166)
1.3.1
1.3.1
New Features
- callable support for
Self
(#162)
- add filter func to
first
(#161)
maybe_open
context manager and fast image_size
funcion (#160)
Bugs Squashed
- Redundent
L.map_filter
removed (since L.map.filter
does the same thing)
1.3.0
1.3.0
Breaking Changes
- change param name
copy_meta
->as_copy
in retain_meta
(#157)
New Features
Bugs Squashed
- fixed coll_repr printing incorrectly when max_n!=10, and added relevant tests (#154), thanks to @kessido