Skip to content

Commit

Permalink
v2.3.1 changes
Browse files Browse the repository at this point in the history
Stability improvements
  • Loading branch information
Terbau committed Jul 24, 2020
2 parents b568ea4 + 776f3d2 commit 1217192
Show file tree
Hide file tree
Showing 10 changed files with 266 additions and 318 deletions.
9 changes: 9 additions & 0 deletions docs/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -954,12 +954,21 @@ Data Classes

Data classes used as data containers in the library.

DefaultPartyConfig
~~~~~~~~~~~~~~~~~~

.. autoclass:: DefaultPartyConfig()
:members:

DefaultPartyMemberConfig
~~~~~~~~~~~~~~~~~~~~~~~~

.. autoclass:: DefaultPartyMemberConfig()
:members:

Avatar
~~~~~~

.. autoclass:: Avatar()
:members:

Expand Down
20 changes: 20 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,26 @@ Changelog
Detailed version changes.


v2.3.1
------

Stability improvements.

Changed
~~~~~~~

- Dropped the underlying launcher session since it's not longer used for anything.
- Authentication now attempts to reauthenticate on startup in some cases.
- Reauthentication on sudden access token invalid has been improved.

Bug Fixes
~~~~~~~~~

- Fixed some issues with incorrect handling of websocket disconnects that resulted in the xmpp connection to eventually time out.
- A graceful close is now attempted even if the client is not ready.
- Processing of messages now handles some race conditions that some times resulted in :attr:`FriendMessage.author` being ``None``.


v2.3.0
------

Expand Down
2 changes: 1 addition & 1 deletion fortnitepy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
SOFTWARE.
"""

__version__ = '2.3.0'
__version__ = '2.3.1'

from .client import Client, run_multiple, start_multiple, close_multiple
from .auth import (Auth, EmailAndPasswordAuth, ExchangeCodeAuth,
Expand Down

0 comments on commit 1217192

Please sign in to comment.