aboutsummaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index caeb88845..e182e6d85 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,26 @@
##
- Feature: Hub dashboard now shows a Resources tile with disk and memory usage against configured limits
- Feature: Hub module listing now shows state-change timestamps and duration for each instance
+- Feature: Added `--hub-hydration-target-config` option to specify the hydration target via a JSON config file (mutually exclusive with `--hub-hydration-target-spec`); supports `file` and `s3` types with structured settings
+ ```json
+ {
+ "type": "file",
+ "settings": {
+ "path": "/path/to/hydration/storage"
+ }
+ }
+ ```
+ ```json
+ {
+ "type": "s3",
+ "settings": {
+ "uri": "s3://bucket[/prefix]",
+ "region": "us-east-1",
+ "endpoint": "http://localhost:9000",
+ "path-style": true
+ }
+ }
+ ```
- Improvement: Hub provisioning rejects new instances when disk or memory usage exceeds configurable thresholds; limits are disabled by default (0 = no limit)
- `--hub-provision-disk-limit-bytes` - Reject provisioning when used disk exceeds this many bytes
- `--hub-provision-disk-limit-percent` - Reject provisioning when used disk exceeds this percentage of total disk
@@ -8,8 +28,10 @@
- `--hub-provision-memory-limit-percent` - Reject provisioning when used memory exceeds this percentage of total RAM
- Improvement: Hub process metrics are now tracked atomically per active instance slot, eliminating per-query process handle lookups
- Improvement: Hub, Build Store, and Workspaces service stats sections in the dashboard are now collapsible
+- Improvement: Hub hydration dehydration skips the `.sentry-native` directory
- Bugfix: Fix an issue when a file goes from being internally stored to externally referenced and it could get into an inconsistent state
- Bugfix: Hub watchdog loop did not check `m_ShutdownFlag`, causing it to spin indefinitely on shutdown
+- Bugfix: Fixed `MakeSafeAbsolutePathInPlace` when a UNC prefix is present but path uses mixed delimiters
## 5.8.0
- Feature: Hub watchdog automatically deprovisions inactive provisioned and hibernated instances