Skip to content

Releases: CrazyProger1/Resty-Client

Resty-Client V0.0.6

29 Apr 12:26
6517869
Compare
Choose a tag to compare

v0.0.6

  • Changed Manager API:

Now instantiating manager is required.

You can pass the REST Client into the constructor:

manager = UserManager(client=client)

response = await manager.read(
    response_type=UserReadSchema,
)

or specify the client explicitly during calling:

manager = UserManager()

response = await manager.read(
    response_type=UserReadSchema,
    client=client,
)
  • Added Django pagination middlewares:

    • LimitOffsetPaginationMiddleware
    • PagePaginationMiddleware

Resty-Client V0.0.5

26 Apr 19:39
b4df3f4
Compare
Choose a tag to compare

v0.0.5

  • Improved test coverage to 100%
  • Improved architecture
  • Added examples

Resty-Client V0.0.4

25 Apr 09:02
3084093
Compare
Choose a tag to compare

v0.0.4

  • Manager important fixes!!!!

Resty-Client V0.0.3

23 Apr 18:47
f96862f
Compare
Choose a tag to compare

v0.0.3

  • Refactored manager & httpx client
  • Added more examples
  • Added serializer tests
  • Added URL injecting mechanism (allows to perform many-layer requests: api/v1/users/123/product/321).
    See example
  • Added deserialize_many serializer method

RestyClient V0.0.2

22 Apr 15:19
692066b
Compare
Choose a tag to compare

v0.0.2

  • Serializer many schemas support

Release 0.0.1

26 Jan 15:38
Compare
Choose a tag to compare

First release of RestyClient