[clang][dataflow] Fix assignment of unknown values. (#178943)
Just because the right-hand side of the assignment doesn't have a known
value, doesn't mean the left-hand side gets to keep its old value.
databases/mysql80-{client, server}: Update to 8.0.45
Bugs Fixed
InnoDB: Under certain circumstances, when using the que_eval_sql
interface, a race condition could occur. (Bug #118705, Bug #38310595)
Binary log purged before persisted binlog_expire_* options were
loaded. (Bug #38554467)
When 2 of 6 instances in a geographically dispersed InnoDB Cluster
lost connectivity, the primary server became unresponsive, causing the
COMMIT and INSERT operations to become unresponsive as well. (Bug
Fixed several issues relating to Thread Pool blocking connections
from closing. (Bug #38170188, Bug #36782728, Bug #38549372)
GTID gaps were generated because of the replica- skip-errors option.
(Bug #28590993)
[9 lines not shown]
NAS-139559 Exclude Time Machine shares from TrueSearch indexing (#18132)
Modified the smb_directories() method in TrueSearchService to filter out
SMB shares with purpose=TIMEMACHINE_SHARE from TrueSearch indexing.
Time Machine shares contain backup data that doesn't need to be
searchable and can unnecessarily bloat the search index.
https://claude.ai/code/session_01NTZVVoGwKcwEh9gWk3Zjrx
Co-authored-by: Claude <noreply at anthropic.com>
NAS-139443 / 26.0.0-BETA.1 / Fix IPMI SEL ignore filter for Processor Presence detected (#18131)
## Problem
Alerts are being raised for CPU0_Status sensor with "Processor Presence
detected" assertion events on V140-HA systems. This is a benign IPMI
event that occurs on every boot cycle, simply indicating the CPU is
present in its socket - not an actual hardware issue requiring
attention.
`Warning Sensor: 'CPU0_Status' had an 'Assertion Event' (Processor
Presence detected)`
## Solution
After checking upstream FreeIPMI source and system debug data, the issue
was identified in the sensor_events_to_ignore filter. The existing
filter used `("Processor", "Presence detected")` but the actual event
string from FreeIPMI is "Processor Presence detected".
[10 lines not shown]
Exclude Time Machine shares from TrueSearch indexing
Modified the smb_directories() method in TrueSearchService to filter out
SMB shares with purpose=TIMEMACHINE_SHARE from TrueSearch indexing.
Time Machine shares contain backup data that doesn't need to be searchable
and can unnecessarily bloat the search index.
https://claude.ai/code/session_01NTZVVoGwKcwEh9gWk3Zjrx
databases/rainfrog: Add new port
Rainfrog is a lightweight, terminal-based tool for interacting with databases.
Features:
- efficient navigation via vim-like keybindings and mouse controls
- query editor with keyword highlighting, session history, and favorites
- quickly copy data, filter tables, and switch between schemas
- shortcuts to view table metadata and properties
- cross-platform (Android via termux, FreeBSD, Linux, MacOS, Windows)
Supported databases:
- Postgres
- MySQL
- Sqlite
- Redshift (via wire protocol of Postgres)
- DuckDB
[3 lines not shown]
tests: sys/capsicum/functional requires mqueuefs
Skip this test if mqueuefs isn't loaded. Unfortunately, that will skip
the entire googletest test program, including test cases that don't
require mqueuefs. But the test's own skipping logic doesn't work, and
we don't yet have a googletest-compatible require_kmods() function.
MFC after: 2 weeks
Sponsored by: ConnectWise
Reviewed by: emaste, ngie
Differential Revision: https://reviews.freebsd.org/D54902
[clang][bytecode] Fix crash on __builtin_align_up with one-past-end pointers (#178652)
## Summary
Fix assertion failure when evaluating
`__builtin_align_up`/`__builtin_align_down`/`__builtin_is_aligned` with
one-past-end pointers like `&array[size]`.
## Root Cause
`getIndex()` calls `getOffset()` which asserts when `Offset ==
PastEndMark`. This happens for one-past-end element pointers.
## Fix
Check `isElementPastEnd()` before calling `getIndex()`. For past-end
pointers, use `getNumElems()` instead which gives the correct index
value.
## Test
Added test cases in `builtin-align-cxx.cpp` for one-past-end pointer
alignment.
Fixes #178647
databases/py-harlequin: Add new port
Harlequin is an easy, fast, and beautiful database client for the terminal.
It has all the features you'd expect from an SQL IDE, delightfully running
right in your terminal.
- View tables, columns, and their types across one or more attached
databases. Optionally view local files or S3 objects.
- A full-featured editor: autocomplete, open, save, format, cut, copy, paste,
and more. Supports multiple tabbed buffers!
- View 1M+ results in an interactive table. Multiple queries loaded into
separate tabs.
- Full Screen
- Export query results and configure the export using a helpful UI.
- View a list of executed queries and a summary of results. Select to insert
into a new buffer.
https://harlequin.sh/
textproc/py-textual-textarea: Add new port
Textual-textarea is a text area (multi-line input) with syntax highlighting for
Textual.
It offers a full-featured text editor experience with VS-Code-like bindings, in
your Textual App:
- Syntax highlighting and support for Pygments themes.
- Move cursor and scroll with mouse or keys (including ctrl+arrow, PgUp/Dn,
ctrl+Home/End).
- Open (ctrl+o) and save (ctrl+s) files.
- Cut (ctrl+x), copy (ctrl+c), paste (ctrl+u/v), optionally using the system
clipboard.
- Comment selections with ctrl+/.
- Indent and dedent (optionally for a multiline selection) to tab stops with
Tab and shift+Tab.
- Automatic completions of quotes and brackets.
- Select text by double-, triple-, or quadruple-clicking.
[3 lines not shown]
textproc/py-textual-fastdatatable: Add new port
Textual-fastdatatable is a performance-focused reimplementation of Textual's
DataTable widget, with a pluggable data storage backend.
https://github.com/tconbeer/textual-fastdatatable