Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: aws/aws-iot-device-sdk-python-v2
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.14.0
Choose a base ref
...
head repository: aws/aws-iot-device-sdk-python-v2
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.14.1
Choose a head ref
  • 3 commits
  • 3 files changed
  • 2 contributors

Commits on May 4, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    7e7ef7d View commit details

Commits on May 5, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    7cb0e5f View commit details
  2. [v1.14.1] MQTT311 shared subscription support (#452)

    Co-authored-by: GitHub Actions <[email protected]>
    TwistedTwigleg and aws-crt-bot authored May 5, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    99e4ddf View commit details
Showing with 3 additions and 3 deletions.
  1. +1 −1 README.md
  2. +1 −1 samples/basic_discovery.py
  3. +1 −1 setup.py
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -102,4 +102,4 @@ We need your help in making this SDK great. Please participate in the community

This library is licensed under the [Apache 2.0 License](./documents/LICENSE).

Latest released version: v1.14.0
Latest released version: v1.14.1
2 changes: 1 addition & 1 deletion samples/basic_discovery.py
Original file line number Diff line number Diff line change
@@ -66,7 +66,7 @@ def try_iot_endpoints():
ca_bytes=gg_group.certificate_authorities[0].encode('utf-8'),
on_connection_interrupted=on_connection_interupted,
on_connection_resumed=on_connection_resumed,
client_id=cmdData.input_clientId,
client_id=cmdData.input_thing_name,
clean_session=False,
keep_alive_secs=30)

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@ def _load_version():
"Operating System :: OS Independent",
],
install_requires=[
'awscrt==0.16.14',
'awscrt==0.16.17',
],
python_requires='>=3.7',
)