Skip to content

Commit

Permalink
Bump the other group with 2 updates (#527)
Browse files Browse the repository at this point in the history
Bumps the other group with 2 updates:
[apache-arrow](https://github.com/apache/arrow) and
[esbuild](https://github.com/evanw/esbuild).

Updates `apache-arrow` from 16.0.0 to 16.1.0
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/apache/arrow/commit/7dd1d34074af176d9e861a360e135ae57b21cf96"><code>7dd1d34</code></a>
MINOR: [Release] Update versions for 16.1.0</li>
<li><a
href="https://github.com/apache/arrow/commit/ca3e9d1b6fbf9a1e2d2fe34a387041132ecddd3e"><code>ca3e9d1</code></a>
MINOR: [Release] Update .deb/.rpm changelogs for 16.1.0</li>
<li><a
href="https://github.com/apache/arrow/commit/63a42871f206edf9889f1617eac29b11514df316"><code>63a4287</code></a>
MINOR: [Release] Update CHANGELOG.md for 16.1.0</li>
<li><a
href="https://github.com/apache/arrow/commit/58742877144a4f728c99682cae52898ccab5f954"><code>5874287</code></a>
<a
href="https://redirect.github.com/apache/arrow/issues/41594">GH-41594</a>:
[Go] Support reading <code>date64</code> type &amp; properly validate
list-like ty...</li>
<li><a
href="https://github.com/apache/arrow/commit/81940c69e6843c22c2fa61ad05c668c3241b3016"><code>81940c6</code></a>
<a
href="https://redirect.github.com/apache/arrow/issues/41431">GH-41431</a>:
[C++][Parquet][Dataset] Fix repeated scan on encrypted dataset (<a
href="https://redirect.github.com/apache/arrow/issues/41">#41</a>...</li>
<li><a
href="https://github.com/apache/arrow/commit/be62f6c5717d960282c70f6150725b306919a672"><code>be62f6c</code></a>
<a
href="https://redirect.github.com/apache/arrow/issues/41577">GH-41577</a>:
[Java][Packaging] Add org.apache.arrow.memory.core to
--add-opens=j...</li>
<li><a
href="https://github.com/apache/arrow/commit/6cfebb947e9c91b3a823e5dc7a1672d1b0a0141e"><code>6cfebb9</code></a>
<a
href="https://redirect.github.com/apache/arrow/issues/41562">GH-41562</a>:
[C++][Parquet] Decoding: Fix num_value handling in
ByteStreamSplitD...</li>
<li><a
href="https://github.com/apache/arrow/commit/dcfeceb93f29b343cedbee4a2f93cbdbc4eed8e7"><code>dcfeceb</code></a>
<a
href="https://redirect.github.com/apache/arrow/issues/41140">GH-41140</a>:
[C#] Account for offset and length in union arrays (<a
href="https://redirect.github.com/apache/arrow/issues/41165">#41165</a>)</li>
<li><a
href="https://github.com/apache/arrow/commit/b28633cfe5263ac977598f058b53d76f95d3d1fc"><code>b28633c</code></a>
MINOR: [Release] Manually commit fix to avoid cherry-pick conflict for
changi...</li>
<li><a
href="https://github.com/apache/arrow/commit/ac8af222dd2e5800e2c6cbf45a5bdbb2309deed4"><code>ac8af22</code></a>
<a
href="https://redirect.github.com/apache/arrow/issues/41566">GH-41566</a>:
[CI][Packaging] macOS wheel for Catalina fails to build on macOS
ar...</li>
<li>Additional commits viewable in <a
href="https://github.com/apache/arrow/compare/apache-arrow-16.0.0...apache-arrow-16.1.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `esbuild` from 0.21.2 to 0.21.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/evanw/esbuild/releases">esbuild's
releases</a>.</em></p>
<blockquote>
<h2>v0.21.3</h2>
<ul>
<li>
<p>Implement the decorator metadata proposal (<a
href="https://redirect.github.com/evanw/esbuild/issues/3760">#3760</a>)</p>
<p>This release implements the <a
href="https://github.com/tc39/proposal-decorator-metadata">decorator
metadata proposal</a>, which is a sub-proposal of the <a
href="https://github.com/tc39/proposal-decorators">decorators
proposal</a>. Microsoft shipped the decorators proposal in <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-0/#decorators">TypeScript
5.0</a> and the decorator metadata proposal in <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-2/#decorator-metadata">TypeScript
5.2</a>, so it's important that esbuild also supports both of these
features. Here's a quick example:</p>
<pre lang="js"><code>// Shim the &quot;Symbol.metadata&quot; symbol
Symbol.metadata ??= Symbol('Symbol.metadata')
<p>const track = (_, context) =&gt; {
(context.metadata.names ||= []).push(context.name)
}</p>
<p>class Foo {
<a href="https://github.com/track"><code>@​track</code></a> foo = 1
<a href="https://github.com/track"><code>@​track</code></a> bar = 2
}</p>
<p>// Prints [&quot;foo&quot;, &quot;bar&quot;]
console.log(Foo[Symbol.metadata].names)
</code></pre></p>
<p><strong>⚠️ WARNING ⚠️</strong></p>
<p>This proposal has been marked as &quot;stage 3&quot; which means
&quot;recommended for implementation&quot;. However, it's still a work
in progress and isn't a part of JavaScript yet, so keep in mind that any
code that uses JavaScript decorator metadata may need to be updated as
the feature continues to evolve. If/when that happens, I will update
esbuild's implementation to match the specification. I will not be
supporting old versions of the specification.</p>
</li>
<li>
<p>Fix bundled decorators in derived classes (<a
href="https://redirect.github.com/evanw/esbuild/issues/3768">#3768</a>)</p>
<p>In certain cases, bundling code that uses decorators in a derived
class with a class body that references its own class name could
previously generate code that crashes at run-time due to an incorrect
variable name. This problem has been fixed. Here is an example of code
that was compiled incorrectly before this fix:</p>
<pre lang="js"><code>class Foo extends Object {
  @(x =&gt; x) foo() {
    return Foo
  }
}
console.log(new Foo().foo())
</code></pre>
</li>
<li>
<p>Fix <code>tsconfig.json</code> files inside symlinked directories (<a
href="https://redirect.github.com/evanw/esbuild/issues/3767">#3767</a>)</p>
<p>This release fixes an issue with a scenario involving a
<code>tsconfig.json</code> file that <code>extends</code> another file
from within a symlinked directory that uses the <code>paths</code>
feature. In that case, the implicit <code>baseURL</code> value should be
based on the real path (i.e. after expanding all symbolic links) instead
of the original path. This was already done for other files that esbuild
resolves but was not yet done for <code>tsconfig.json</code> because
it's special-cased (the regular path resolver can't be used because the
information inside <code>tsconfig.json</code> is involved in path
resolution). Note that this fix no longer applies if the
<code>--preserve-symlinks</code> setting is enabled.</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/evanw/esbuild/blob/main/CHANGELOG.md">esbuild's
changelog</a>.</em></p>
<blockquote>
<h2>0.21.3</h2>
<ul>
<li>
<p>Implement the decorator metadata proposal (<a
href="https://redirect.github.com/evanw/esbuild/issues/3760">#3760</a>)</p>
<p>This release implements the <a
href="https://github.com/tc39/proposal-decorator-metadata">decorator
metadata proposal</a>, which is a sub-proposal of the <a
href="https://github.com/tc39/proposal-decorators">decorators
proposal</a>. Microsoft shipped the decorators proposal in <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-0/#decorators">TypeScript
5.0</a> and the decorator metadata proposal in <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-2/#decorator-metadata">TypeScript
5.2</a>, so it's important that esbuild also supports both of these
features. Here's a quick example:</p>
<pre lang="js"><code>// Shim the &quot;Symbol.metadata&quot; symbol
Symbol.metadata ??= Symbol('Symbol.metadata')
<p>const track = (_, context) =&gt; {
(context.metadata.names ||= []).push(context.name)
}</p>
<p>class Foo {
<a href="https://github.com/track"><code>@​track</code></a> foo = 1
<a href="https://github.com/track"><code>@​track</code></a> bar = 2
}</p>
<p>// Prints [&quot;foo&quot;, &quot;bar&quot;]
console.log(Foo[Symbol.metadata].names)
</code></pre></p>
<p><strong>⚠️ WARNING ⚠️</strong></p>
<p>This proposal has been marked as &quot;stage 3&quot; which means
&quot;recommended for implementation&quot;. However, it's still a work
in progress and isn't a part of JavaScript yet, so keep in mind that any
code that uses JavaScript decorator metadata may need to be updated as
the feature continues to evolve. If/when that happens, I will update
esbuild's implementation to match the specification. I will not be
supporting old versions of the specification.</p>
</li>
<li>
<p>Fix bundled decorators in derived classes (<a
href="https://redirect.github.com/evanw/esbuild/issues/3768">#3768</a>)</p>
<p>In certain cases, bundling code that uses decorators in a derived
class with a class body that references its own class name could
previously generate code that crashes at run-time due to an incorrect
variable name. This problem has been fixed. Here is an example of code
that was compiled incorrectly before this fix:</p>
<pre lang="js"><code>class Foo extends Object {
  @(x =&gt; x) foo() {
    return Foo
  }
}
console.log(new Foo().foo())
</code></pre>
</li>
<li>
<p>Fix <code>tsconfig.json</code> files inside symlinked directories (<a
href="https://redirect.github.com/evanw/esbuild/issues/3767">#3767</a>)</p>
<p>This release fixes an issue with a scenario involving a
<code>tsconfig.json</code> file that <code>extends</code> another file
from within a symlinked directory that uses the <code>paths</code>
feature. In that case, the implicit <code>baseURL</code> value should be
based on the real path (i.e. after expanding all symbolic links) instead
of the original path. This was already done for other files that esbuild
resolves but was not yet done for <code>tsconfig.json</code> because
it's special-cased (the regular path resolver can't be used because the
information inside <code>tsconfig.json</code> is involved in path
resolution). Note that this fix no longer applies if the
<code>--preserve-symlinks</code> setting is enabled.</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/evanw/esbuild/commit/efa3dd2d8e895f7f9a9bef0d588560bbae7d776e"><code>efa3dd2</code></a>
publish 0.21.3 to npm</li>
<li><a
href="https://github.com/evanw/esbuild/commit/5e7cf259752f500d75c5640b1d72fbf498be9dcd"><code>5e7cf25</code></a>
fix <a
href="https://redirect.github.com/evanw/esbuild/issues/3760">#3760</a>:
implement decorator metadata proposal</li>
<li><a
href="https://github.com/evanw/esbuild/commit/bd0b13b969054752739beef7a63c1d076adf38a7"><code>bd0b13b</code></a>
lowering: always propagate class expression names</li>
<li><a
href="https://github.com/evanw/esbuild/commit/90acd14833b56f1f1335877f0b9d83837aadc6ea"><code>90acd14</code></a>
explicit bitwise operators for initializer flags</li>
<li><a
href="https://github.com/evanw/esbuild/commit/ba548dfd3224bf4029724e4db773008e93b6c74e"><code>ba548df</code></a>
move decorator initializer list to after the class</li>
<li><a
href="https://github.com/evanw/esbuild/commit/66b7c6d174e0fbe693c7d7545c7430ad20d47c39"><code>66b7c6d</code></a>
fix <a
href="https://redirect.github.com/evanw/esbuild/issues/3768">#3768</a>:
bundled decorators in derived classes</li>
<li><a
href="https://github.com/evanw/esbuild/commit/6e6f15f9d6a32237ac68da2978de22ee25a2ae17"><code>6e6f15f</code></a>
fix <a
href="https://redirect.github.com/evanw/esbuild/issues/3767">#3767</a>:
<code>tsconfig.json</code> files inside symlinks</li>
<li><a
href="https://github.com/evanw/esbuild/commit/b7dcb95dc5b03b530ec2618f471698f6e4f1d0f5"><code>b7dcb95</code></a>
transform: reuse <code>lowerField</code> for auto-accessors</li>
<li>See full diff in <a
href="https://github.com/evanw/esbuild/compare/v0.21.2...v0.21.3">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`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<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 <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored May 20, 2024
1 parent 2233c68 commit c0903e2
Show file tree
Hide file tree
Showing 2 changed files with 117 additions and 117 deletions.
Loading

0 comments on commit c0903e2

Please sign in to comment.