Skip to content

Commit

Permalink
PyTAK 6.0.0
Browse files Browse the repository at this point in the history
-----------
- Moved & expanded documentation at https://pytak.readthedocs.io/
- ``COT_URL`` now defaults to ``udp+wo://239.2.3.1:6969``, aka 'Mesh SA' in
  ATAK & WinTAK. This disables receiveing CoT by default. To enable receiving
CoT, remove the ``+wo`` modifier.
* Fixes #31: 'protobuf support', "TAK Protocol, Version 1" is now the default
* output from PyTAK, *BUT* you must install the ``takproto`` python module
* seperately to ENABLE, otherwise reverts to CoT XML. PyTAK will automatically
* detect if the ``COT_URL`` is multicast or unicast, and use the appropriate
* protobuf format. See: https://github.com/snstac/takproto
* Fixes #36: 'Network is unreachable', added ``PYTAK_MULTICAST_LOCAL_ADDR`` to
* allow setting bind port on network connections.
* Fixes #37: 'unknown compression', reverted to github builder ubuntu-20.04
- Added support for reading PKCS#12 (.p12) files containing public-private key
  pairs. Set p12 file with ``PYTAK_TLS_CLIENT_CERT``, and keystore password
with ``PYTAK_TLS_CLIENT_PASSWORD``.
- Updates for AirTAK v1 support:
  https://www.snstac.com/blog/introducing-airtak-v1
- Moved setup.py metadata to setup.cfg
- Style, lint and layout cleanup of code.
- Added CI testing for Python 3.11
- Added Read The Docs builder.
- Added PyTAK shield logo & screenshots.
  • Loading branch information
ampledata committed Jul 6, 2023
1 parent 73a98f4 commit 48c2eff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
10 changes: 4 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PyTAK 5.7.0b6
-------------
PyTAK 6.0.0
-----------
- Moved & expanded documentation at https://pytak.readthedocs.io/
- COT_URL now defaults to ``udp+wo://239.2.3.1:6969``, aka 'Mesh SA' in ATAK & WinTAK. This disables receiveing CoT by default. To enable receiving CoT, remove the ``+wo`` modifier.
* Fixes #31: 'protobuf support', "TAK Protocol, Version 1" is now the default output from PyTAK, *BUT* you must install the ``takproto`` python module seperately to ENABLE, otherwise reverts to CoT XML. PyTAK will automatically detect if the ``COT_URL`` is multicast or unicast, and use the appropriate protobuf format.
- ``COT_URL`` now defaults to ``udp+wo://239.2.3.1:6969``, aka 'Mesh SA' in ATAK & WinTAK. This disables receiveing CoT by default. To enable receiving CoT, remove the ``+wo`` modifier.
* Fixes #31: 'protobuf support', "TAK Protocol, Version 1" is now the default output from PyTAK, *BUT* you must install the ``takproto`` python module seperately to ENABLE, otherwise reverts to CoT XML. PyTAK will automatically detect if the ``COT_URL`` is multicast or unicast, and use the appropriate protobuf format. See: https://github.com/snstac/takproto
* Fixes #36: 'Network is unreachable', added ``PYTAK_MULTICAST_LOCAL_ADDR`` to allow setting bind port on network connections.
* Fixes #37: 'unknown compression', reverted to github builder ubuntu-20.04
- Added support for reading PKCS#12 (.p12) files containing public-private key pairs. Set p12 file with ``PYTAK_TLS_CLIENT_CERT``, and keystore password with ``PYTAK_TLS_CLIENT_PASSWORD``.
Expand All @@ -13,8 +13,6 @@ PyTAK 5.7.0b6
- Added Read The Docs builder.
- Added PyTAK shield logo & screenshots.



PyTAK 5.6.1
-----------
Exported `read_pref_package()` from client_functions.
Expand Down
2 changes: 1 addition & 1 deletion pytak/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
:source: <https://github.com/snstac/pytak>
"""

__version__ = "5.7.0-beta6"
__version__ = "6.0.0"


from .constants import ( # NOQA
Expand Down

0 comments on commit 48c2eff

Please sign in to comment.