Skip to content

Commit 5791f0f

Browse files
authored
Merge pull request #94 from arduino/Update-default-broker-ports
ucloud: update ports to match new Arduino CA.
2 parents 346f808 + 0d3aadf commit 5791f0f

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

.github/workflows/client-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
uses: actions/checkout@v3
3333

3434
- name: '♻ Caching dependencies'
35-
uses: actions/cache@v3.3.1
35+
uses: actions/cache@v4.2.2
3636
id: cache
3737
with:
3838
path: ~/cache/bin/

src/arduino_iot_cloud/__init__.py

+15-15
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,22 @@
1212

1313

1414
CADATA = binascii.unhexlify(
15-
b"308201cf30820174a00302010202141f101deba7e125e727c1a391e3ec0d"
16-
b"174ded4a59300a06082a8648ce3d0403023045310b300906035504061302"
15+
b"308201d030820176a00302010202146fad9e2bf56fd5b69a3c0698e43003"
16+
b"0546f1075a300a06082a8648ce3d0403023045310b300906035504061302"
1717
b"555331173015060355040a130e41726475696e6f204c4c43205553310b30"
18-
b"09060355040b130249543110300e0603550403130741726475696e6f301e"
19-
b"170d3138303732343039343730305a170d3438303731363039343730305a"
20-
b"3045310b300906035504061302555331173015060355040a130e41726475"
21-
b"696e6f204c4c43205553310b3009060355040b130249543110300e060355"
22-
b"0403130741726475696e6f3059301306072a8648ce3d020106082a8648ce"
23-
b"3d030107034200046d776c5acf611c7d449851f25ee1024077b79cbd49a2"
24-
b"a38c4eab5e98ac82fc695b442277b44d2e8edf2a71c1396cd63914bdd96b"
25-
b"184b4becb3d5ee4289895522a3423040300e0603551d0f0101ff04040302"
26-
b"0106300f0603551d130101ff040530030101ff301d0603551d0e04160414"
27-
b"5b3e2a6b8ec9b01aa854e6369b8c09f9fce1b980300a06082a8648ce3d04"
28-
b"03020349003046022100bfd3dc236668b50adc3f0d0ec373e20ac7f760aa"
29-
b"100dd320bfe102969b6b05d8022100ead9d9da5acd12529709a8ed660fe1"
30-
b"8d6444ffe82217304ff2b89aafca8ecf6c"
18+
b"09060355040b130249543110300e0603550403130741726475696e6f3020"
19+
b"170d3235303131303130353332325a180f32303535303130333130353332"
20+
b"325a3045310b300906035504061302555331173015060355040a130e4172"
21+
b"6475696e6f204c4c43205553310b3009060355040b130249543110300e06"
22+
b"03550403130741726475696e6f3059301306072a8648ce3d020106082a86"
23+
b"48ce3d03010703420004a1e1536c35521a330de82bac5b12c18f5037b33e"
24+
b"649ba0ee270235c78d5a1045d0caf552ec97f29aff81c6e279973fd339c6"
25+
b"d7a1cc6b618570f63bae621d71c8a3423040300f0603551d130101ff0405"
26+
b"30030101ff300e0603551d0f0101ff040403020106301d0603551d0e0416"
27+
b"041442652984d00488d1c603f409b378e33b1228e03e300a06082a8648ce"
28+
b"3d0403020348003045022100cfa4cb60ff5e8953abfdc554ff5d73c06a1f"
29+
b"7bf16835ee29d41973325ec6555002206f2d2f74dad966c839a515a412f6"
30+
b"81f2ee23d5925b5b11fbecd73fecc58667a7"
3131
)
3232

3333

src/arduino_iot_cloud/ucloud.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ class InvalidStateError(Exception):
2121
try:
2222
from arduino_iot_cloud._version import __version__
2323
except (ImportError, AttributeError):
24-
__version__ = "1.3.3"
24+
__version__ = "1.4.1"
2525

2626
# Server/port for basic auth.
2727
_DEFAULT_SERVER = "iot.arduino.cc"
2828

2929
# Default port for cert based auth and basic auth.
30-
_DEFAULT_PORT = (8883, 8884)
30+
_DEFAULT_PORT = (8885, 8884)
3131

3232

3333
class DoneException(Exception):

0 commit comments

Comments
 (0)