You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Use `std::thread::scope()` instead of `crossbeam-utils::thread::scope()`. ([`571ec0d`](https://github.com/Byron/gitoxide/commit/571ec0d7c3e1eb167d55daa6551bd2b27d3c5b25))
Copy file name to clipboardExpand all lines: gix-pack/CHANGELOG.md
+34-1Lines changed: 34 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,38 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## Unreleased
9
+
10
+
### Bug Fixes
11
+
12
+
- <csr-id-ce182d6dae7e277d104893f0eec3285709946233/> don't over-estimate the number of objects to be received in the indexing phase.
13
+
Previously, it would work with a number that is pessimistically duplicated as each object
14
+
could in theory be a ref-delta, which then causes another base to be added to the stream,
15
+
duplicating the amount of objects we need to account for in the acceleration data structure,
16
+
which unfortunatelly cannot actually grow dynamically without violating invariants.
17
+
18
+
Now we simply don't try to estimata the number of ref-deltas (which don't exist here anymore)
19
+
at this stage.
20
+
21
+
### Commit Statistics
22
+
23
+
<csr-read-only-do-not-edit/>
24
+
25
+
- 1 commit contributed to the release.
26
+
- 3 days passed between releases.
27
+
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
28
+
- 0 issues like '(#ID)' were seen in commit messages
29
+
30
+
### Commit Details
31
+
32
+
<csr-read-only-do-not-edit/>
33
+
34
+
<details><summary>view details</summary>
35
+
36
+
***Uncategorized**
37
+
- Don't over-estimate the number of objects to be received in the indexing phase. ([`ce182d6`](https://github.com/Byron/gitoxide/commit/ce182d6dae7e277d104893f0eec3285709946233))
- Remove versions from dev-dependencies to workspace crates. ([`3cfbf89`](https://github.com/Byron/gitoxide/commit/3cfbf89f8630dfc71c9085eee6ca286a5c96ad84))
69
102
- Adjust manifests prior to release ([`addd789`](https://github.com/Byron/gitoxide/commit/addd78958fdd1e54eb702854e96079539d01965a))
0 commit comments