Skip to content

Commit a8434fa

Browse files
committed
use ssl api server connection
1 parent efc1239 commit a8434fa

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ To install or update LODA, please follow the [installation instructions](https:/
22

33
## [Unreleased]
44

5+
## v25.1.31
6+
7+
### Enhancements
8+
9+
* Use SSL connection to API server
10+
511
## v25.1.8
612

713
### Enhancements

src/mine/api_client.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ApiClient::ApiClient()
2222
printed_throttling_warning(false) {
2323
auto server = Setup::getSetupValue("LODA_API_SERVER");
2424
if (server.empty()) {
25-
server = "http://api.loda-lang.org/";
25+
server = "https://api.loda-lang.org/";
2626
} else {
2727
Log::get().info("Using configured API server: " + server);
2828
}

0 commit comments

Comments
 (0)