Skip to content

Releases: scrapy/itemadapter

v0.9.0

07 May 08:10
Compare
Choose a tag to compare
  • Dropped Python 3.7 support, added official Python 3.12 support (#75, #77).
  • Updated the documentation and the type hint about ItemAdapter.ADAPTER_CLASSES to say that subclasses can use any iterable, not just collections.deque (#74).
  • Documented that Pydantic >= 2 is not supported yet (#73).
  • Updated CI configuration (#77, #80).

v0.8.0

30 Mar 19:14
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.7.0...v0.8.0

v0.7.0

02 Aug 17:45
v0.7.0
0bd037c
Compare
Choose a tag to compare

What's Changed

  • ItemAdapter.get_field_names_from_class by @kmike in #64

New Contributors

  • @kmike made their first contribution in #64

Full Changelog: v0.6.0...v0.7.0

v0.6.0

12 May 23:19
v0.6.0
927ee25
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.5.0...v0.6.0

v0.5.0

18 Mar 20:02
v0.5.0
1203b5e
Compare
Choose a tag to compare

What's Changed

  • Deprecate undocumented predicates from the utils module by @elacuesta in #56
  • Improve performance by avoiding imports inside functions by @elacuesta in #60

Full Changelog: v0.4.0...v0.5.0

v0.4.0

26 Aug 21:16
v0.4.0
bb722cf
Compare
Choose a tag to compare

Added ItemAdapter.is_item_class and ItemAdapter.get_field_meta_from_class class methods (#54)

Release 0.3.0

15 Jul 13:49
v0.3.0
4527d77
Compare
Choose a tag to compare

Highlights:

Release 0.2.0

06 Nov 13:07
v0.2.0
dba6e33
Compare
Choose a tag to compare

Highlights

  • Added the ability to extend the library to support arbitrary types, by implementing a MutableMapping-based interface (as a consequence of this change, now any type can be used as a Scrapy item! 🎉)