Closed Bug 1886037 Opened 2 months ago Closed 7 days ago

[wpt-sync] Sync PR 45177 - Bump pyobjc-core from 9.2 to 10.2 in /tools

Categories

(Testing :: web-platform-tests, task, P4)

task

Tracking

(firefox127 fixed)

RESOLVED FIXED
127 Branch
Tracking Status
firefox127 --- fixed

People

(Reporter: wpt-sync, Unassigned)

References

()

Details

(Whiteboard: [wptsync downstream])

Sync web-platform-tests PR 45177 into mozilla-central (this bug is closed when the sync is complete).

PR: https://github.com/web-platform-tests/wpt/pull/45177
Details from upstream follow.

dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> wrote:

Bump pyobjc-core from 9.2 to 10.2 in /tools

Bumps pyobjc-core from 9.2 to 10.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/ronaldoussoren/pyobjc/releases">pyobjc-core's releases</a>.</em></p>
<blockquote>
<h2>v10.1</h2>
<ul>
<li>
<p>Upgrade framework bindings for the macOS 14.2 SDK</p>
</li>
<li>
<p><a href="https://redirect.github.com/ronaldoussoren/pyobjc/issues/579">#579</a>: Make sure the <code>install.py</code> and <code>develop.py</code> scripts in the
repository work when run out of tree.</p>
</li>
<li>
<p><a href="https://redirect.github.com/ronaldoussoren/pyobjc/issues/577">#577</a>: <code>os.fspath(someURL)</code> will not work with Cocoa URLs (NSURL, CFURLRef) that
refer to local filesystem paths. <code>TypeError</code> will be raised for other URLs.</p>
<p>This enables using regular Python filesystem APIs with URLs that refer to
local filesystem paths.</p>
</li>
<li>
<p><a href="https://redirect.github.com/ronaldoussoren/pyobjc/issues/572">#572</a>: Fix compilation issue when building on macOS 13 or earlier</p>
</li>
<li>
<p>Fix build error on ancient macOS versions where clang doesn't support
<code>-flto=thin</code>.</p>
</li>
<li>
<p>Add a workaround for a crash in pyobjc-core when running the testsuite
on macOS 10.14.</p>
</li>
<li>
<p>Fix some issues found while running the testsuite on macOS 10.9 to
macOS 13, instead of only testing on the latest macOS version. Most
issues found where problems in the testsuite itself, but not all.</p>
<p>Some of the changes skip tests on older macOS versions (10.12, 10.13
and 10.14) due to running into what appears to be crashing
platform bugs.</p>
</li>
<li>
<p><a href="https://redirect.github.com/ronaldoussoren/pyobjc/issues/581">#581</a>: Fix dependencies between framework binding packages</p>
</li>
<li>
<p>Fix build error with the current Python 3.13 alpha release (3.13a2).</p>
</li>
</ul>
<h2>v10.0</h2>
<ul>
<li>
<p>Update bindings for macOS 14</p>
<p>Symbols newly introduced in macOS 14 were added to the existing bindings,
and the following new bindings were introduced:</p>
<ul>
<li>
<p>Cinematic</p>
</li>
<li>
<p>MediaExtension</p>
</li>
<li>
<p>SensitiveContentAnalysis</p>
</li>
<li>
<p>Symbols</p>
</li>
</ul>
</li>
<li>
<p>The "IMServicePlugIn" bindings are no longer available</p>
<p>The entire framework was deprecated in macOS 10.13 and removed in macOS 14.</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/ronaldoussoren/pyobjc/blob/master/docs/changelog.rst">pyobjc-core's changelog</a>.</em></p>
<blockquote>
<h2>Version 10.2</h2>
<ul>
<li>
<p>Fix a number of warnings found by adding <code>-Wpendantic</code> to the CFLAGS for
pyobjc-core</p>
</li>
<li>
<p>Fix undefined behaviour warnings:</p>
<ul>
<li>
<p>Suppress the undefined behaviour warning about out of range values in
double to (unsigned) long long in the <code>OC_PythonNumber</code> implementation
as these are unavoidable when matching <code>NSNumber</code> behaviour.</p>
</li>
<li>
<p>Switch to using <code>memcpy</code> instead of direct assignment in converting
plain C values to/from Python because "packed" structs might result
in accessing values through unaligned pointers.</p>
</li>
</ul>
</li>
<li>
<p>Updated bindings for the macOS 14.4 SDK (Xcode 15.3)</p>
</li>
<li>
<p>Added bindings for the "BrowserEngineKit" framework on macOS 14.4 or later.</p>
</li>
<li>
<p>Add :func:<code>obj.registerPathType</code> to register a Python type as a path like
type with PyObjC. By default only :class:<code>pathlib.Path</code> is registered as such.</p>
<p>A minor backward compatibility issue is that instances of the registered types
will be written to <code>NSArchive</code> and <code>NSKeyArchive</code> archives as instances
of <code>NSURL</code> and won't roundtrip back to the original Python type. This might
change in future versions of PyObjC, at least for :class:<code>pathlib.Path</code>.</p>
</li>
<li>
<p>:issue:<code>589</code>: Instances of :class:<code>pathlib.Path</code> (and other types registered with
<code>objc.registerPathType</code>) are bridged into Objective-C as instances of <code>NSURL</code>.</p>
<p>This means that these types can be used as values passed to APIs expecting
a filesystem URL, e.g.:</p>
<pre lang="python"><code>
path = pathlib.Path("/Applications/Numbers.app")
bundle = NSBundle.bundleWithURL_(path)
</code></pre>
</li>
<li>
<p>Fix some warnings in pyobjc-core when testing with Python 3.13a4.</p>
</li>
<li>
<p>Add support for <code>NSBezierPathElementQuadraticCurveTo</code> in <code>NSBezierPath.elementAtIndex_associatedPoints_</code>.</p>
</li>
<li>
<p>:issue:<code>595</code>: Fix compilation error in <code>pyobjc-framework-Cocoa</code> with a recent
deployment target.</p>
</li>
</ul>
<h2>Version 10.1</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/ronaldoussoren/pyobjc/commit/5a24aad5e91a874adb7c23d712d1fee5d94d5f18"><code>5a24aad</code></a> Prepare for release</li>
<li><a href="https://github.com/ronaldoussoren/pyobjc/commit/3c8a978b5054a26c38fa1c9ef29eca4f6765a055"><code>3c8a978</code></a> Prepare for release</li>
<li><a href="https://github.com/ronaldoussoren/pyobjc/commit/4c0e92efe8e9bda59233ea838c9ab1c4ad84987b"><code>4c0e92e</code></a> Updates for the 14.4 SDK (Xcode 15.3 final)</li>
<li><a href="https://github.com/ronaldoussoren/pyobjc/commit/31b4044b37b4fe7de85f0bc02ec2587d5275a438"><code>31b4044</code></a> switch to modern constants in the nsbezierpath binding</li>
<li><a href="https://github.com/ronaldoussoren/pyobjc/commit/b231006d69fdfae8ad9c923e6f4880606d219bea"><code>b231006</code></a> Fix some warnings found when running the testsuite with Python 3.13a4</li>
<li><a href="https://github.com/ronaldoussoren/pyobjc/commit/24e989ad6035f98d3e0be2ac1a66b789d844510d"><code>24e989a</code></a> Some fixes after running tests on a 14.4 VM</li>
<li><a href="https://github.com/ronaldoussoren/pyobjc/commit/da6d03569dabc64a35200939966343352c0f1580"><code>da6d035</code></a> Updates for Xcode 15.3 beta 3</li>
<li><a href="https://github.com/ronaldoussoren/pyobjc/commit/dee913c26b276112d061c3ca953275ec106344b1"><code>dee913c</code></a> Proxy pathlib.Path as <code>NSURL</code></li>
<li><a href="https://github.com/ronaldoussoren/pyobjc/commit/03033cff1f7612711fb65c9b45c2ab781acb4ac7"><code>03033cf</code></a> Fix test typo</li>
<li><a href="https://github.com/ronaldoussoren/pyobjc/commit/7afeb6a41874b05547d187cb9f308124bafac4b3"><code>7afeb6a</code></a> Merge branch 'master' of github.com:ronaldoussoren/pyobjc</li>
<li>Additional commits viewable in <a href="https://github.com/ronaldoussoren/pyobjc/compare/v9.2...v10.2">compare view</a></li>
</ul>
</details>
<br />

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

</details>

The PR was not expected to affect any tests, but the try push wasn't a success. Check the try results for infrastructure issues
Pushed by wptsync@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/a416bf61ba87
[wpt PR 45177] - Bump pyobjc-core from 9.2 to 10.2 in /tools, a=testonly
Status: NEW → RESOLVED
Closed: 7 days ago
Resolution: --- → FIXED
Target Milestone: --- → 127 Branch
You need to log in before you can comment on or make changes to this bug.