Skip to content

Commit f1115f6

Browse files
committed
Merge branch 'main' of github.com:oraios/serena
Conflicts: CHANGELOG.md
2 parents f30b3cc + 4a24c1e commit f1115f6

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,6 +2,9 @@
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
* JetBrains:
69
- `JetBrainsRenameTool` can now also rename occurrences in comments and text.
710

@@ -11,8 +14,8 @@ Status of the `main` branch. Changes prior to the next official version change w
1114
# 1.1.0
1215

1316
* General:
14-
- Add `serena init` and `serena setup` commands
1517
- **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) !
18+
- Add `serena init` and `serena setup` commands
1619
- Rework installation instructions, switching to releases on pypi for distribution. Please update your mcp startup commands!
1720
- Add minimal usage data collection on startup (only Serena version, language backend, OS, dashboard enabled status; no personally identifiable information)
1821
- 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)