Skip to content

Commit 4a24c1e

Browse files
committed
Enable cert verification for HTTP request to oraios-software.de #1320
[skip ci]
1 parent 8a6b45b commit 4a24c1e

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@
22

33
Status of the `main` branch. Changes prior to the next official version change will appear here.
44

5+
* General:
6+
- Enable cert verification for HTTPS request to oraios-software.de #1320
7+
58
* Language Servers:
69
- Fix Dart LSP returning only symbol name as body instead of full method body
710

811
# 1.1.0
912

1013
* General:
11-
- Add `serena init` and `serena setup` commands
1214
- **Major**: Add commands for hooks and documentation of recommended setup. Consider setting up the [recommended hooks](https://oraios.github.io/serena/02-usage/030_clients.html) !
15+
- Add `serena init` and `serena setup` commands
1316
- Rework installation instructions, switching to releases on pypi for distribution. Please update your mcp startup commands!
1417
- Add minimal usage data collection on startup (only Serena version, language backend, OS, dashboard enabled status; no personally identifiable information)
1518
- Fix: git commit id in Serena version strings was incorrect

src/serena/agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ def _send_usage_info(self) -> None:
420420
"backend": self._language_backend.value,
421421
}
422422
try:
423-
requests.get("https://www.oraios-software.de/serena_usage.php", params=params, timeout=1, verify=False)
423+
requests.get("https://oraios-software.de/serena_usage.php", params=params, timeout=1)
424424
except Exception as e:
425425
log.debug(f"Failed to send usage info: {e}")
426426

0 commit comments

Comments
 (0)