Skip to content

Commit a1fdf85

Browse files
committed
Deploying to gh-pages from @ 5894b65 🚀
1 parent 9920777 commit a1fdf85

File tree

14 files changed

+51
-38
lines changed

14 files changed

+51
-38
lines changed

dev/news/index.html

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/news/index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
## mirai (development version)
44

5+
##### Updates
6+
7+
- Fixes
8+
[`launch_remote()`](https://mirai.r-lib.org/dev/reference/launch_local.md)
9+
with
10+
[`http_config()`](https://mirai.r-lib.org/dev/reference/http_config.md)
11+
failing for TLS connections, where newlines in the PEM certificate
12+
produced invalid JSON in the request payload.
13+
514
## mirai 2.6.1
615

716
CRAN release: 2026-03-02

dev/pkgdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ articles:
1010
v05-opentelemetry: v05-opentelemetry.html
1111
v06-packages: v06-packages.html
1212
v07-questions: v07-questions.html
13-
last_built: 2026-03-02T23:56Z
13+
last_built: 2026-03-06T11:54Z
1414
urls:
1515
reference: https://mirai.r-lib.org/reference
1616
article: https://mirai.r-lib.org/articles

dev/reference/daemons.html

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/reference/daemons.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ daemons(sync = TRUE)
292292
m <- mirai(Sys.getpid())
293293
daemons(0)
294294
m[]
295-
#> [1] 6677
295+
#> [1] 6559
296296

297297
# Synchronous mode restricted to a specific compute profile
298298
daemons(sync = TRUE, .compute = "sync")
@@ -301,5 +301,5 @@ with_daemons("sync", {
301301
})
302302
daemons(0, .compute = "sync")
303303
m[]
304-
#> [1] 6677
304+
#> [1] 6559
305305
```

dev/reference/host_url.html

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/reference/host_url.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,16 @@ and named pipes on Windows.
5858
``` r
5959
host_url()
6060
#> eth0 docker0
61-
#> "tcp://10.1.0.130:0" "tcp://172.17.0.1:0"
61+
#> "tcp://10.1.0.80:0" "tcp://172.17.0.1:0"
6262
host_url(tls = TRUE)
6363
#> eth0 docker0
64-
#> "tls+tcp://10.1.0.130:0" "tls+tcp://172.17.0.1:0"
64+
#> "tls+tcp://10.1.0.80:0" "tls+tcp://172.17.0.1:0"
6565
host_url(tls = TRUE, port = 5555)
6666
#> eth0 docker0
67-
#> "tls+tcp://10.1.0.130:5555" "tls+tcp://172.17.0.1:5555"
67+
#> "tls+tcp://10.1.0.80:5555" "tls+tcp://172.17.0.1:5555"
6868

6969
local_url()
70-
#> [1] "abstract://d8737c201411ae731a62a6f3"
70+
#> [1] "abstract://bb1b49978ff4c4a4276ebbc4"
7171
local_url(tcp = TRUE)
7272
#> [1] "tcp://127.0.0.1:0"
7373
local_url(tcp = TRUE, port = 5555)

dev/reference/http_config.html

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/reference/http_config.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ tryCatch(http_config(), error = identity)
7171
#> $url
7272
#> function ()
7373
#> posit_workbench_get("url")
74-
#> <bytecode: 0x555f4426c468>
74+
#> <bytecode: 0x563a7c8733c8>
7575
#> <environment: namespace:mirai>
7676
#>
7777
#> $method
@@ -80,7 +80,7 @@ tryCatch(http_config(), error = identity)
8080
#> $cookie
8181
#> function ()
8282
#> posit_workbench_get("cookie")
83-
#> <bytecode: 0x555f44269e70>
83+
#> <bytecode: 0x563a7c873a90>
8484
#> <environment: namespace:mirai>
8585
#>
8686
#> $token
@@ -89,7 +89,7 @@ tryCatch(http_config(), error = identity)
8989
#> $data
9090
#> function (rscript = "Rscript")
9191
#> posit_workbench_get("data", rscript)
92-
#> <bytecode: 0x555f4426aea0>
92+
#> <bytecode: 0x563a7c874200>
9393
#> <environment: namespace:mirai>
9494
#>
9595

@@ -113,12 +113,12 @@ http_config(
113113
#> $cookie
114114
#> function ()
115115
#> Sys.getenv("MY_SESSION_COOKIE")
116-
#> <environment: 0x555f44456e50>
116+
#> <environment: 0x563a7c8915b8>
117117
#>
118118
#> $token
119119
#> function ()
120120
#> Sys.getenv("MY_API_KEY")
121-
#> <environment: 0x555f44456e50>
121+
#> <environment: 0x563a7c8915b8>
122122
#>
123123
#> $data
124124
#> [1] "{\"command\": \"%s\"}"

dev/reference/nextstream.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)