diff --git a/samples/browser/pub_sub_mqtt5/README.md b/samples/browser/pub_sub_mqtt5/README.md index c7b60d5e..7bd17244 100644 --- a/samples/browser/pub_sub_mqtt5/README.md +++ b/samples/browser/pub_sub_mqtt5/README.md @@ -8,8 +8,6 @@ for AWS IoT to send and receive messages through an MQTT connection using MQTT5 MQTT5 introduces additional features and enhancements that improve the development experience with MQTT. You can read more about MQTT5 in the Java V2 SDK by checking out the [MQTT5 user guide](https://github.com/awslabs/aws-crt-nodejs/blob/main/MQTT5-UserGuide.md). -Note: MQTT5 support is currently in **developer preview**. We encourage feedback at all times, but feedback during the preview window is especially valuable in shaping the final product. During the preview period we may make backwards-incompatible changes to the public API, but in general, this is something we will try our best to avoid. - Your IoT Core Thing's [Policy](https://docs.aws.amazon.com/iot/latest/developerguide/iot-policies.html) must provide privileges for this sample to connect, subscribe, publish, and receive. Below is a sample policy that can be used on your IoT Core Thing that will allow this sample to run as intended.
diff --git a/samples/browser/react_sample/README.md b/samples/browser/react_sample/README.md index 9364114d..09689eae 100644 --- a/samples/browser/react_sample/README.md +++ b/samples/browser/react_sample/README.md @@ -8,8 +8,6 @@ for AWS IoT to send and receive messages through an MQTT connection using MQTT5/ MQTT5 introduces additional features and enhancements that improve the development experience with MQTT. You can read more about MQTT5 in the Java V2 SDK by checking out the [MQTT5 user guide](https://github.com/awslabs/aws-crt-nodejs/blob/main/MQTT5-UserGuide.md). -Note: MQTT5 support is currently in **developer preview**. We encourage feedback at all times, but feedback during the preview window is especially valuable in shaping the final product. During the preview period we may make backwards-incompatible changes to the public API, but in general, this is something we will try our best to avoid. - Your IoT Core Thing's [Policy](https://docs.aws.amazon.com/iot/latest/developerguide/iot-policies.html) must provide privileges for this sample to connect, subscribe, publish, and receive. Below is a sample policy that can be used on your IoT Core Thing that will allow this sample to run as intended.
diff --git a/samples/browser/shared_subscription/README.md b/samples/browser/shared_subscription/README.md index cd7a217d..87a83f19 100644 --- a/samples/browser/shared_subscription/README.md +++ b/samples/browser/shared_subscription/README.md @@ -8,8 +8,6 @@ for AWS IoT to send and receive messages over an MQTT5 connection using a shared MQTT5 introduces additional features and enhancements that improve the development experience with MQTT. You can read more about MQTT5 in the Javascript V2 SDK by checking out the [MQTT5 user guide](https://github.com/awslabs/aws-crt-nodejs/blob/main/MQTT5-UserGuide.md). -Note: MQTT5 support is currently in **developer preview**. We encourage feedback at all times, but feedback during the preview window is especially valuable in shaping the final product. During the preview period we may make backwards-incompatible changes to the public API, but in general, this is something we will try our best to avoid. - [Shared Subscriptions](https://docs.aws.amazon.com/iot/latest/developerguide/mqtt.html#mqtt5-shared-subscription) allow IoT devices to connect to a group where messages sent to a topic are then relayed to the group in a round-robin-like fashion. This is useful for distributing message load across multiple subscribing MQTT5 clients automatically. This is helpful for load balancing when you have many messages that need to be processed. Shared Subscriptions rely on a group name/identifier, which tells the MQTT5 broker/server which IoT devices to treat as a group for message distribution. This is done when subscribing by formatting the subscription topic like the following: `$share//`. diff --git a/samples/node/pub_sub_electron_node/README.md b/samples/node/pub_sub_electron_node/README.md index 3d670ef4..7be33517 100644 --- a/samples/node/pub_sub_electron_node/README.md +++ b/samples/node/pub_sub_electron_node/README.md @@ -11,8 +11,6 @@ for AWS IoT to send and receive messages through an MQTT connection using MQTT5. MQTT5 introduces additional features and enhancements that improve the development experience with MQTT. You can read more about MQTT5 in the Java V2 SDK by checking out the [MQTT5 user guide](https://github.com/awslabs/aws-crt-nodejs/blob/main/MQTT5-UserGuide.md). -Note: MQTT5 support is currently in **developer preview**. We encourage feedback at all times, but feedback during the preview window is especially valuable in shaping the final product. During the preview period we may make backwards-incompatible changes to the public API, but in general, this is something we will try our best to avoid. - ## Requirements The sample is built with typescript@5^ and Electron@19. Please note the SDK currently does not support Electron20+. diff --git a/samples/node/pub_sub_mqtt5/README.md b/samples/node/pub_sub_mqtt5/README.md index 5c140aad..e235dbe8 100644 --- a/samples/node/pub_sub_mqtt5/README.md +++ b/samples/node/pub_sub_mqtt5/README.md @@ -8,8 +8,6 @@ for AWS IoT to send and receive messages through an MQTT connection using MQTT5. MQTT5 introduces additional features and enhancements that improve the development experience with MQTT. You can read more about MQTT5 in the Java V2 SDK by checking out the [MQTT5 user guide](https://github.com/awslabs/aws-crt-nodejs/blob/main/MQTT5-UserGuide.md). -Note: MQTT5 support is currently in **developer preview**. We encourage feedback at all times, but feedback during the preview window is especially valuable in shaping the final product. During the preview period we may make backwards-incompatible changes to the public API, but in general, this is something we will try our best to avoid. - Your IoT Core Thing's [Policy](https://docs.aws.amazon.com/iot/latest/developerguide/iot-policies.html) must provide privileges for this sample to connect, subscribe, publish, and receive. Below is a sample policy that can be used on your IoT Core Thing that will allow this sample to run as intended.
diff --git a/samples/node/shared_subscription/README.md b/samples/node/shared_subscription/README.md index 120a8924..15f6fb71 100644 --- a/samples/node/shared_subscription/README.md +++ b/samples/node/shared_subscription/README.md @@ -8,8 +8,6 @@ for AWS IoT to send and receive messages over an MQTT5 connection using a shared MQTT5 introduces additional features and enhancements that improve the development experience with MQTT. You can read more about MQTT5 in the Javascript V2 SDK by checking out the [MQTT5 user guide](https://github.com/awslabs/aws-crt-nodejs/blob/main/MQTT5-UserGuide.md). -Note: MQTT5 support is currently in **developer preview**. We encourage feedback at all times, but feedback during the preview window is especially valuable in shaping the final product. During the preview period we may make backwards-incompatible changes to the public API, but in general, this is something we will try our best to avoid. - [Shared Subscriptions](https://docs.aws.amazon.com/iot/latest/developerguide/mqtt.html#mqtt5-shared-subscription) allow IoT devices to connect to a group where messages sent to a topic are then relayed to the group in a round-robin-like fashion. This is useful for distributing message load across multiple subscribing MQTT5 clients automatically. This is helpful for load balancing when you have many messages that need to be processed. Shared Subscriptions rely on a group name/identifier, which tells the MQTT5 broker/server which IoT devices to treat as a group for message distribution. This is done when subscribing by formatting the subscription topic like the following: `$share//`.