mail/phpmailer7: Update to 7.0.1
-Use From domain when generating CIDs in msgHTML.
-Update to PHPCompatibility 10, resolve numerous PHPCS issues in PHP 8.5.
-Revise GitHub actions for PHP 8.5 and experimental 8.6 tests.
-Switch gmail example from the deprecated IMAP extension to use
directorytree/imapengine for IMAP uploads.
-Set htmlspecialchars() flags explicitly and consistently.
-Convert XOAUTH2 token exceptions into PHPMailer Exceptions. The original
exception is available as an inner exception.
-Deprecate VERSION constants in POP3 and SMTP classes.
-Remove dependency on roave/security-advisories; it's now built into composer 2.9.
-Update Dutch, Esperanto, and Norwegian translations.
Sponsored by: Netzkommune GmbH
subfinder: Update to 2.11.0
Changes:
2.11.0
New Features
- Added Profundis source
- Added MerkleMap source
- Added THC source
Other Changes
- Improved context cancellation sources
- Updated Censys to adapt recent changes in the API
graphics/jogamp-jogl: pin to java 8
After ignoring the faulty build.xml check which does not recognize that
JDK11 > JDK1.6, it gave an error for ${target.rt.jar} to set bootclasspath.
This port needs a maintainer or it might not survive a future prune of openjdk8.
But is has a port depending on this, so leave it for now.
PR: 272855
Approved-by: no maintainer
[MLIR][OpenMP] Add Initial Taskloop Clause Support
Following on from the work to implement MLIR -> LLVM IR
Translation for Taskloop, this adds support for the following
clauses to be used alongside taskloop:
- if
- grainsize
- num_tasks
- untied
- Nogroup
- Final
- Mergeable
- Priority
These clauses are ones which work directly through the relevant
OpenMP Runtime functions, so their information just needed collecting
from the relevant location and passing through to the appropriate
runtime function.
[2 lines not shown]
system: introduce an is_ipv6_allowed()
Since it is splattered over many places add a function to
reduce the hardcoding. There's still a problem if the
migration fails so it would be nicer to imply IPv6 is on
than explicitly looking for it (in 2026 and beyond).
games/solarus-quest-editor: Update to 2.0.2
- The new CMAKE args will ensure the assets are installed in the
original place. The software was renamed upstream to solarus-editor.
Ideally, the port should also be renamed and these new args
removed.
Changelog:
https://gitlab.com/solarus-games/solarus/-/blob/v2.0.2/editor/changelog.md
[lldb] Correct version -v output for booleans (#174742)
We were checking whether the structured data value could be got as a
boolean, not what value that boolean had. This meant we were incorrectly
showing "yes" for everything.
[LifetimeSafety] Add origin tracking for pointer dereference (#170006)
Fix lifetime safety analysis for pointer dereference operations by
properly tracking origin flow.
Added support in `FactsGenerator::VisitUnaryOperator()` to handle the
dereference operator (`UO_Deref`). This change ensures that when a
pointer is dereferenced, the origin of the pointer is properly
propagated to the dereference expression.
[AArch64] Fix using NEON copies in streaming-mode-enable regions.
The current checks for if we're allowed to use a NEON copy works based on the
function attributes, which works most of the time. However in one particular
case where a normal function calls a streaming one, there's a window of time
where we enable SM at the call site and the emit a copy for an outgoign parameter.
This copy was lowered to a NEON move which is illegal.
There's also another case where we could end up generating these, related
to zero cycle move tuning features.
Both of these cases is fixed in this patch by walking back from the copy to look
for any streaming mode changes (within the current block). I know this is
pretty ugly but I don't have a better solution right now.
rdar://167439642
Remove incorrect assertion
This was my mistake whilst tidying something up. We can have an empty
context structure at the point when this is run, and the helper is still
required to add enough dummy entries to the geps array so that its
dimensions match the size of the privatization decls. I've added a
regression test.