-
Notifications
You must be signed in to change notification settings - Fork 380
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
List major changes #2335
List major changes #2335
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,18 @@ | ||
USER VISIBLE CHANGES BETWEEN ACE-8.0.2 and ACE-8.0.3 | ||
==================================================== | ||
|
||
. Deprecated ACE_Copy_Disabled in favor of deleted copy/assignment | ||
|
||
. Replaced usage of ACE_MIN and ACE_MAX with std::min/std::max | ||
|
||
. Add support for abstract paths to ACE_UNIX_ADDR | ||
|
||
. Improve support for 64bit file sizes | ||
|
||
. Minor fixes to ACE logging classes | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Verification agent 🧩 Analysis chainVerify the nature of logging fixes. The entry "Minor fixes to ACE logging classes" lacks specificity. Let's check what logging issues were addressed. 🏁 Script executed: #!/bin/bash
# Search for logging-related changes
rg -A 5 "ACE_Log|logging" Length of output: 124154 Clarify logging fixes in the commit message |
||
|
||
. Use C++11 default for more classes | ||
|
||
USER VISIBLE CHANGES BETWEEN ACE-8.0.1 and ACE-8.0.2 | ||
==================================================== | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Verification agent
🧩 Analysis chain
Verify the extent of 64-bit file size improvements.
The changelog entry about improved 64-bit file size support is vague. It would be helpful to verify which specific file operations now support 64-bit sizes.
🏁 Script executed:
Length of output: 58783
Action Required: Clarify Specific 64-Bit File Operation Enhancements
The NEWS entry remains quite terse. Based on our investigation, several file operations (such as lseek/llseek wrappers, ftell, and related offset management routines using types like ACE_OFF_T) have been updated for 64‑bit support. However, the changelog and accompanying documentation do not clearly enumerate which functions are affected.