Commit Graph

3227 Commits

Author SHA1 Message Date
Reactor Scram
8dab84ef20 fix(windows): add routes faster (#3118)
This will fix #3114 and save about 13 seconds at startup, compared to
shelling out to Powershell.

I'm not 100% sure it works for IPv6 routes - I'm setting port, flowinfo,
and scope to 0 and just assuming that it's fine.

For some reason Windows wants a socket address in this API even though I
don't think the port is used for anything.
2024-01-05 16:57:47 +00:00
dependabot[bot]
66ad1d0f47 build(deps): Bump itertools from 0.11.0 to 0.12.0 in /rust (#2679)
Bumps [itertools](https://github.com/rust-itertools/itertools) from
0.11.0 to 0.12.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md">itertools's
changelog</a>.</em></p>
<blockquote>
<h2>0.12.0</h2>
<h3>Breaking</h3>
<ul>
<li>Made <code>take_while_inclusive</code> consume iterator by value (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/709">#709</a>)</li>
<li>Added <code>Clone</code> bound to <code>Unique</code> (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/777">#777</a>)</li>
</ul>
<h3>Added</h3>
<ul>
<li>Added <code>Itertools::try_len</code> (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/723">#723</a>)</li>
<li>Added free function <code>sort_unstable</code> (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/796">#796</a>)</li>
<li>Added <code>GroupMap::fold_with</code> (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/778">#778</a>,
<a
href="https://redirect.github.com/rust-itertools/itertools/issues/785">#785</a>)</li>
<li>Added <code>PeekNth::{peek_mut, peek_nth_mut}</code> (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/716">#716</a>)</li>
<li>Added <code>PeekNth::{next_if, next_if_eq}</code> (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/734">#734</a>)</li>
<li>Added conversion into <code>(Option&lt;A&gt;,Option&lt;B&gt;)</code>
to <code>EitherOrBoth</code> (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/713">#713</a>)</li>
<li>Added conversion from <code>Either&lt;A, B&gt;</code> to
<code>EitherOrBoth&lt;A, B&gt;</code> (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/715">#715</a>)</li>
<li>Implemented <code>ExactSizeIterator</code> for <code>Tuples</code>
(<a
href="https://redirect.github.com/rust-itertools/itertools/issues/761">#761</a>)</li>
<li>Implemented <code>ExactSizeIterator</code> for
<code>(Circular)TupleWindows</code> (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/752">#752</a>)</li>
<li>Made <code>EitherOrBoth&lt;T&gt;</code> a shorthand for
<code>EitherOrBoth&lt;T, T&gt;</code> (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/719">#719</a>)</li>
</ul>
<h3>Changed</h3>
<ul>
<li>Added missing <code>#[must_use]</code> annotations on iterator
adaptors (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/794">#794</a>)</li>
<li>Made <code>Combinations</code> lazy (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/795">#795</a>)</li>
<li>Made <code>Intersperse(With)</code> lazy (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/797">#797</a>)</li>
<li>Made <code>Permutations</code> lazy (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/793">#793</a>)</li>
<li>Made <code>Product</code> lazy (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/800">#800</a>)</li>
<li>Made <code>TupleWindows</code> lazy (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/602">#602</a>)</li>
<li>Specialized <code>Combinations::{count, size_hint}</code> (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/729">#729</a>)</li>
<li>Specialized <code>CombinationsWithReplacement::{count,
size_hint}</code> (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/737">#737</a>)</li>
<li>Specialized <code>Powerset::fold</code> (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/765">#765</a>)</li>
<li>Specialized <code>Powerset::count</code> (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/735">#735</a>)</li>
<li>Specialized <code>TupleCombinations::{count, size_hint}</code> (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/763">#763</a>)</li>
<li>Specialized <code>TupleCombinations::fold</code> (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/775">#775</a>)</li>
<li>Specialized <code>WhileSome::fold</code> (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/780">#780</a>)</li>
<li>Specialized <code>WithPosition::fold</code> (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/772">#772</a>)</li>
<li>Specialized <code>ZipLongest::fold</code> (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/774">#774</a>)</li>
<li>Changed <code>{min, max}_set*</code> operations require
<code>alloc</code> feature, instead of <code>std</code> (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/760">#760</a>)</li>
<li>Improved documentation of <code>tree_fold1</code> (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/787">#787</a>)</li>
<li>Improved documentation of <code>permutations</code> (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/724">#724</a>)</li>
<li>Fixed typo in documentation of <code>multiunzip</code> (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/770">#770</a>)</li>
</ul>
<h3>Notable Internal Changes</h3>
<ul>
<li>Improved specialization tests (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/799">#799</a>,
<a
href="https://redirect.github.com/rust-itertools/itertools/issues/786">#786</a>,
<a
href="https://redirect.github.com/rust-itertools/itertools/issues/782">#782</a>)</li>
<li>Simplified implementation of <code>Permutations</code> (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/739">#739</a>,
<a
href="https://redirect.github.com/rust-itertools/itertools/issues/748">#748</a>,
<a
href="https://redirect.github.com/rust-itertools/itertools/issues/790">#790</a>)</li>
<li>Combined
<code>Merge</code>/<code>MergeBy</code>/<code>MergeJoinBy</code>
implementations (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/736">#736</a>)</li>
<li>Simplified <code>Permutations::size_hint</code> (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/739">#739</a>)</li>
<li>Fix wrapping arithmetic in benchmarks (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/770">#770</a>)</li>
<li>Enforced <code>rustfmt</code> in CI (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/751">#751</a>)</li>
<li>Disallowed compile warnings in CI (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/720">#720</a>)</li>
<li>Used <code>cargo hack</code> to check MSRV (<a
href="https://redirect.github.com/rust-itertools/itertools/issues/754">#754</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="98ecabb47d"><code>98ecabb</code></a>
chore: Release itertools version 0.12.0</li>
<li><a
href="22fc427ac5"><code>22fc427</code></a>
prepare v0.12.0 release</li>
<li><a
href="6d291786a9"><code>6d29178</code></a>
Document the field <code>a_cur</code> of <code>Product</code></li>
<li><a
href="bf2b0129d1"><code>bf2b012</code></a>
Better <code>Product::size_hint</code></li>
<li><a
href="8d07f6b856"><code>8d07f6b</code></a>
Make <code>Product</code> lazy</li>
<li><a
href="d7e6bab9fd"><code>d7e6bab</code></a>
Document the field <code>peek</code> of
<code>IntersperseWith</code></li>
<li><a
href="9b01a11891"><code>9b01a11</code></a>
Make <code>IntersperseWith</code> lazy</li>
<li><a
href="4f22173b93"><code>4f22173</code></a>
Refactor <code>IntersperseWith::next</code></li>
<li><a
href="b76172b412"><code>b76172b</code></a>
chore: adjust docs to reflect discussion in the PR</li>
<li><a
href="955927f6c4"><code>955927f</code></a>
chore: fixup docs of tree_fold1</li>
<li>Additional commits viewable in <a
href="https://github.com/rust-itertools/itertools/compare/v0.11.0...v0.12.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=itertools&package-manager=cargo&previous-version=0.11.0&new-version=0.12.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR 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>

> **Note**
> Automatic rebases have been disabled on this pull request as it has
been open for over 30 days.

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-05 01:09:27 +00:00
Reactor Scram
12997daf2e fix(windows): set the tunnel's IPv6 address correctly with netsh so IPv6 tunnelling works (#3120)
Tested manually with http://test-ipv6.com:


![image](https://github.com/firezone/firezone/assets/13400041/6d59d6c0-1d5a-4886-bb93-27c612957215)
2024-01-05 00:32:09 +00:00
Reactor Scram
720a50bafa fix(windows): set MTU for IPv6 too (#3121)
This can be seen in `Get-NetIPInterface` even if #3120 isn't merged
2024-01-05 00:31:17 +00:00
Reactor Scram
d8264cf664 feat(windows): implement export logs as zip (#3009)
This will be useful if I'm doing production-like testing in the Windows
Server VM.
2024-01-04 20:35:59 +00:00
Jamil
ce727e7ed5 refactor(portal): Use ghcr.io for public pulls of prod images (#3105)
Noticed our public pulls are coming from `pkg.dev` for prod, so this PR
fixes that so that they're from `ghcr.io` to avoid bandwidth fees and
segregate public pulls from our own infra pulls.

<img width="463" alt="Screenshot 2024-01-03 at 12 42 51 PM"
src="https://github.com/firezone/firezone/assets/167144/22f49996-fe6b-47c7-965f-23d14c9e4e59">
2024-01-04 19:39:47 +00:00
Jamil
47627d7643 fix(staging): Update demo access (#3116)
https://app.terraform.io/app/firezone/workspaces/staging/runs/run-NVEdbCHS9PnwXSF4
2024-01-04 11:39:18 -08:00
Gabi
71410b0553 feat(connlib): wildcard matching dns (#3109)
Fixes #3040
2024-01-04 18:01:14 +00:00
Reactor Scram
3a4f2cf9c0 fix(windows): set MTU on tunnel interface (#2990) 2024-01-03 23:37:38 +00:00
Jamil
d6985470ef fix(ci): Fix artifact name typo (#3108)
https://github.com/firezone/firezone/actions/runs/7402448436
2024-01-03 15:02:05 -08:00
Jamil
6fe5c96b15 fix(ci): Merge digests for same image name and different archs only (#3107)
https://github.com/firezone/firezone/actions/runs/7401857413
2024-01-03 13:11:21 -08:00
Gabi
23666e119b connlib: refactor names (#3104)
Applying suggestions for #3096 since it was merged before I could fix
2024-01-03 20:09:41 +00:00
Jamil
1251397651 fix(ios/android): Pass device name and os version as overrides over connect (#3036)
Fixes #3035 
Fixes #3037 

# Before

<img width="738" alt="Screenshot 2023-12-28 at 8 05 31 AM"
src="https://github.com/firezone/firezone/assets/167144/c7ab4d74-672c-4536-97fe-f75d8d158bfb">

<img width="546" alt="Screenshot 2023-12-28 at 6 12 30 PM"
src="https://github.com/firezone/firezone/assets/167144/1bd4ba98-d11d-4277-bd14-b0afcdf78119">

# After

<img width="742" alt="Screenshot 2023-12-28 at 10 48 31 AM"
src="https://github.com/firezone/firezone/assets/167144/96054f82-069f-47f7-862c-986455ef76c0">
<img width="744" alt="Screenshot 2023-12-28 at 6 29 37 PM"
src="https://github.com/firezone/firezone/assets/167144/4ffc19b6-7c87-4ccb-bcfe-cb0e76fe95b7">
2024-01-03 20:08:33 +00:00
Jamil
7ff2c22316 fix(ci): Use path subdirs for artifacts (#3103)
https://github.com/firezone/firezone/actions/runs/7400101287
2024-01-03 12:03:36 -08:00
Jamil
aefafc1e49 chore(docs): Remove outdated rust/connlib/README.md info (#3099)
This was an artifact leftover from when connlib was in its own repo.
2024-01-03 18:10:52 +00:00
Gabi
52edb12bbe fix(connlib): never delete allowed ips for a peer given dns (#3096)
Fixes #3094 

This will make the "packet unallowed" messages you might see in connlib
and make connections smoother.
2024-01-03 16:39:30 +00:00
Jamil
178d238a2d fix(ci): Add merge_multiple to fix artifact naming. (#3100)
https://github.com/firezone/firezone/actions/runs/7397984675
2024-01-03 15:51:57 +00:00
Roopesh Chander
6f0a7a39c4 fix(apple): In case tunnel crashes, try to reconnect (#3097)
When the tunnel crashes, we won't have a chance to write why the tunnel
disconnected in a file in the tunnel process. In that case too, this PR
makes the app try to reconnect.

Fixes #2898
2024-01-03 15:21:33 +00:00
Roopesh Chander
f48d8ac30a fix(apple): Fix potential race condition when updating login status (#3098)
Fixing a potential race when we update the login status (looking into
the keychain) from the tunnel auth status.

This might have been a cause for #2928 as well.
2024-01-03 13:22:04 +00:00
Jamil
3dc9533a35 fix(ci): Use pattern key (#3095)
https://github.com/actions/download-artifact?tab=readme-ov-file#inputs
2024-01-03 13:19:28 +00:00
Jamil
e65f29c3a3 chore(website): remove PostHog in favor of Mixpanel (#3033)
* Remove PostHog from product
* Remove PostHog from website
* Add Mixpanel to website

Why? PostHog is a bit too much overhead for simple analytics for us for
now, and some of the bugs we hit prevented us from using certain
workflows.

We are still tracking `ping` events from legacy instances in PostHog.
2024-01-03 01:13:01 +00:00
Jamil
e162192bc0 chore(deps): Bump website deps (#3092) 2024-01-02 16:25:09 -08:00
Jamil
3ded0d6170 fix(ci): Fix upload-artifact workflow artifact name (#3093) 2024-01-02 16:24:56 -08:00
Reactor Scram
ed3e76894a wip(windows): impl get_host_name (#3089)
Resolves #3082 
I can remove the debug subcommand before merging. I just wanted to
confirm it gets my laptop's hostname.

connlib already has an indirect dependency on `hostname` via Hickory, so
I just used that.


![image](https://github.com/firezone/firezone/assets/13400041/e1adada4-f3e9-47be-828e-3e1d1cb69e83)
2024-01-02 21:49:57 +00:00
Jamil
cf31112e82 fix(ci): Use unique name for artifacts (#3091)
Fixes
https://github.com/firezone/firezone/actions/runs/7390085822/job/20104967154

See
https://github.com/actions/upload-artifact/blob/main/docs/MIGRATION.md
2024-01-02 21:08:38 +00:00
Reactor Scram
3b1667cfe3 feat(windows): show whether files are still being counted (#3007)
I've also removed the 200 ms sleep I was using for debugging.

This does mean the GUI flashes through a bunch of messages when you
first open the tab. We could use a timer to hide those later on.
2024-01-02 20:30:12 +00:00
Jamil
859c6c1f59 Add more in-portal documentation and empty table state context (#2984)
Refs
https://github.com/firezone/firezone/pull/2979#discussion_r1434273368

Fixes #2597
2024-01-02 19:54:48 +00:00
Jamil
05774a39fc fix(portal): Improve OIDC usability and fix unexpected Mint.TransportError causing crash (#3049)
Fixes #3044

---------

Signed-off-by: Jamil <jamilbk@users.noreply.github.com>
Co-authored-by: Brian Manifold <bmanifold@users.noreply.github.com>
2024-01-02 19:18:48 +00:00
dependabot[bot]
0513c087e2 chore(deps): bump @types/react-dom from 18.2.14 to 18.2.18 in /website (#3087)
Bumps
[@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom)
from 18.2.14 to 18.2.18.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/react-dom&package-manager=npm_and_yarn&previous-version=18.2.14&new-version=18.2.18)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 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>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-02 19:17:17 +00:00
dependabot[bot]
2b5ec49005 chore(deps): bump postcss from 8.4.31 to 8.4.32 in /website (#3086)
Bumps [postcss](https://github.com/postcss/postcss) from 8.4.31 to
8.4.32.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/postcss/postcss/releases">postcss's
releases</a>.</em></p>
<blockquote>
<h2>8.4.32</h2>
<ul>
<li>Fixed <code>postcss().process()</code> types (by <a
href="https://github.com/ferreira-tb"><code>@​ferreira-tb</code></a>).</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/postcss/postcss/blob/main/CHANGELOG.md">postcss's
changelog</a>.</em></p>
<blockquote>
<h2>8.4.32</h2>
<ul>
<li>Fixed <code>postcss().process()</code> types (by Andrew
Ferreira).</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="a0d9f10324"><code>a0d9f10</code></a>
Release 8.4.32 version</li>
<li><a
href="0146b3e36f"><code>0146b3e</code></a>
Add Node.js 21 to CI</li>
<li><a
href="2398534350"><code>2398534</code></a>
Update dependencies</li>
<li><a
href="1918533810"><code>1918533</code></a>
Merge pull request <a
href="https://redirect.github.com/postcss/postcss/issues/1902">#1902</a>
from ferreira-tb/main</li>
<li><a
href="395e6dc1b9"><code>395e6dc</code></a>
Fix <code>ProcessOptions</code> interface</li>
<li><a
href="fa8cd158fd"><code>fa8cd15</code></a>
Update dependencies</li>
<li><a
href="199a7c4210"><code>199a7c4</code></a>
Typo</li>
<li><a
href="2528047169"><code>2528047</code></a>
Update EM link</li>
<li>See full diff in <a
href="https://github.com/postcss/postcss/compare/8.4.31...8.4.32">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=postcss&package-manager=npm_and_yarn&previous-version=8.4.31&new-version=8.4.32)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 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>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-02 19:16:13 +00:00
Jamil
2a9d48fd0a fix(gateway): Fallback to get_hostname() for systemd deployments (#3029)
Fixes #3025
2024-01-02 19:01:57 +00:00
dependabot[bot]
18c3d4e871 chore(deps): bump phoenix_live_view from 0.20.1 to 0.20.2 in /elixir (#3088)
Bumps
[phoenix_live_view](https://github.com/phoenixframework/phoenix_live_view)
from 0.20.1 to 0.20.2.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/phoenixframework/phoenix_live_view/blob/main/CHANGELOG.md">phoenix_live_view's
changelog</a>.</em></p>
<blockquote>
<h2>0.20.2 (2023-12-18)</h2>
<h3>Bug fixes</h3>
<ul>
<li>Fix javascript error when submitting a form that has in progress
uploads</li>
<li>Fix JS command <code>:target</code> failing to work when used as
phx-submit or phx-change with a selector-based target</li>
<li>Fix <code>JS.focus()</code> failing to focus negative tabindex</li>
<li>Fix <code>LiveViewTest</code> failing to remove items after stream
reset</li>
<li>Fix <code>phx-window-blur</code> and <code>phx-window-focus</code>
events not firing</li>
<li>Fix SVG anchor links throwing errors when clicked</li>
</ul>
<h3>Enhancements</h3>
<ul>
<li>Speed up DOM patching performance 3-30x 🔥</li>
<li>Support <code>handle_async</code> Lifecycle callback</li>
<li>Extend visibility checks for phx-click-away to better handle whether
an element is visible in the viewport or not</li>
<li>Allow <code>JS.patch</code> and <code>JS.navigate</code> to be
tested with <code>render_click</code></li>
<li>Support <code>:supervisor</code> option to <code>assign_async</code>
and <code>start_async</code></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="343911f9d3"><code>343911f</code></a>
Release 0.20.2</li>
<li><a
href="0cb17d6c1d"><code>0cb17d6</code></a>
Bump build</li>
<li><a
href="297a782b05"><code>297a782</code></a>
Optimize maybeHideFeedback for initial page render (<a
href="https://redirect.github.com/phoenixframework/phoenix_live_view/issues/2953">#2953</a>)</li>
<li><a
href="744a3ab075"><code>744a3ab</code></a>
Fix error on missing child</li>
<li><a
href="db964c5039"><code>db964c5</code></a>
Fix issue with new elements in stream DOM test (<a
href="https://redirect.github.com/phoenixframework/phoenix_live_view/issues/2677">#2677</a>)</li>
<li><a
href="4ca4885580"><code>4ca4885</code></a>
Bump changelog</li>
<li><a
href="997af5773d"><code>997af57</code></a>
Add async supervised (<a
href="https://redirect.github.com/phoenixframework/phoenix_live_view/issues/2818">#2818</a>)</li>
<li><a
href="2864bc024a"><code>2864bc0</code></a>
Clarify return values of :external upload functions (<a
href="https://redirect.github.com/phoenixframework/phoenix_live_view/issues/2821">#2821</a>)</li>
<li><a
href="639daf0add"><code>639daf0</code></a>
Bump build</li>
<li><a
href="067b632fdc"><code>067b632</code></a>
Use moudedown rather than clicks. Fixes <a
href="https://redirect.github.com/phoenixframework/phoenix_live_view/issues/2856">#2856</a>
<a
href="https://redirect.github.com/phoenixframework/phoenix_live_view/issues/2554">#2554</a></li>
<li>Additional commits viewable in <a
href="https://github.com/phoenixframework/phoenix_live_view/compare/v0.20.1...v0.20.2">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=phoenix_live_view&package-manager=hex&previous-version=0.20.1&new-version=0.20.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 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>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-02 18:54:07 +00:00
Jamil
b7197d04c3 chore(deps): Bump hilt and fix groups (#3081)
Fixes #2429
2024-01-02 17:37:02 +00:00
Jamil
2dc38a08fb chore(ci): clean up workflows (#3039)
Fixes #3006
2024-01-02 16:07:49 +00:00
Jamil
57133122e0 feat(ci): Architect e2e test suite (#3043)
Adds an overview document with a proposed plan and test bed architecture
for e2e testing the clients.

Drivers are available for [each platform using
Appium](https://appium.io/docs/en/2.3/ecosystem/drivers/).
2024-01-02 16:07:13 +00:00
Jamil
110e128b93 refactor(apple): guard packetTunnelProvider in one place (#3013)
Just a minor cleanup suggestion to consolidate guards in one place.

We could also make `networkSettings` a non-optional type which would
clean things up further (will it always be initialized while the Adapter
is?)

Draft because stacked on #3012
2024-01-02 13:51:19 +00:00
dependabot[bot]
506b357cd6 chore(deps): bump hashicorp/google from 5.9.0 to 5.10.0 in /terraform/environments/production (#3051)
Bumps
[hashicorp/google](https://github.com/hashicorp/terraform-provider-google)
from 5.9.0 to 5.10.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/hashicorp/terraform-provider-google/releases">hashicorp/google's
releases</a>.</em></p>
<blockquote>
<h2>v5.10.0</h2>
<p>FEATURES:</p>
<ul>
<li><strong>New Data Source:</strong>
<code>google_compute_region_disk</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16732">#16732</a>)</li>
<li><strong>New Data Source:</strong>
<code>google_vmwareengine_external_address</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16698">#16698</a>)</li>
<li><strong>New Data Source:</strong>
<code>google_vmwareengine_subnet</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16700">#16700</a>)</li>
<li><strong>New Data Source:</strong>
<code>google_vmwareengine_vcenter_credentials</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16709">#16709</a>)</li>
<li><strong>New Resource:</strong>
<code>google_vmwareengine_cluster</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16757">#16757</a>)</li>
<li><strong>New Resource:</strong>
<code>google_vmwareengine_external_address</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16698">#16698</a>)</li>
<li><strong>New Resource:</strong>
<code>google_vmwareengine_subnet</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16700">#16700</a>)</li>
<li><strong>New Resource:</strong>
<code>google_workbench_instance</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16773">#16773</a>)</li>
<li><strong>New Resource:</strong>
<code>google_workbench_instance_iam_*</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16773">#16773</a>)</li>
</ul>
<p>IMPROVEMENTS:</p>
<ul>
<li>compute: added <code>numeric_id</code> field to
<code>google_compute_network</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16712">#16712</a>)</li>
<li>compute: added <code>remove_instance_on_destroy</code> option to
<code>google_compute_per_instance_config</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16729">#16729</a>)</li>
<li>compute: added <code>remove_instance_on_destroy</code> option to
<code>google_compute_region_per_instance_config</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16729">#16729</a>)</li>
<li>container: added <code>network_performance_config</code> field to
<code>google_container_node_pool</code> resource to support GKE tier 1
networking (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16688">#16688</a>)</li>
<li>container: added support for in-place update for
<code>machine_type</code>/<code>disk_type</code>/<code>disk_size_gb</code>
in <code>google_container_node_pool</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16724">#16724</a>)</li>
<li>containerazure: added <code>config.labels</code> to
<code>google_container_azure_node_pool</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16754">#16754</a>)</li>
<li>dataform: added <code>display_name</code>, <code>labels</code> and
<code>npmrc_environment_variables_secret_version</code> fields to
<code>google_dataform_repository</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16733">#16733</a>)</li>
<li>monitoring: added <code>severity</code> field to
<code>google_monitoring_alert_policy</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16775">#16775</a>)</li>
<li>notebooks: added support for <code>labels</code> to
<code>google_notebooks_runtime</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16783">#16783</a>)</li>
<li>recaptchaenterprise: added <code>waf_settings</code> to
<code>google_recaptcha_enterprise_key</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16754">#16754</a>)</li>
<li>securesourcemanager: added <code>host_config</code>,
<code>state_note</code>, <code>kms_key</code>, and
<code>private_config</code> fields to
<code>google_secure_source_manager_instance</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16731">#16731</a>)</li>
<li>spanner: added <code>autoscaling_config.max_nodes</code> and
<code>autoscaling_config.min_nodes</code> to
<code>google_spanner_instance</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16786">#16786</a>)</li>
<li>storage: added <code>rpo</code> field to
<code>google_storage_bucket</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16756">#16756</a>)</li>
<li>vmwareengine: added <code>type</code> field to
<code>google_vmwareengine_private_cloud</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16781">#16781</a>)</li>
<li>workloadidentity: added <code>saml</code> block to
<code>google_iam_workload_identity_pool_provider</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16710">#16710</a>)</li>
</ul>
<p>BUG FIXES:</p>
<ul>
<li>logging: fixed an issue where value change of
<code>unique_writer_identity</code> on
<code>google_logging_project_sink</code> does not trigger diff on
dependent's usages of <code>writer_identity</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16776">#16776</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/hashicorp/terraform-provider-google/blob/main/CHANGELOG.md">hashicorp/google's
changelog</a>.</em></p>
<blockquote>
<h2>5.10.0 (Dec 18, 2023)</h2>
<p>FEATURES:</p>
<ul>
<li><strong>New Data Source:</strong>
<code>google_compute_region_disk</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16732">#16732</a>)</li>
<li><strong>New Data Source:</strong>
<code>google_vmwareengine_external_address</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16698">#16698</a>)</li>
<li><strong>New Data Source:</strong>
<code>google_vmwareengine_subnet</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16700">#16700</a>)</li>
<li><strong>New Data Source:</strong>
<code>google_vmwareengine_vcenter_credentials</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16709">#16709</a>)</li>
<li><strong>New Resource:</strong>
<code>google_vmwareengine_cluster</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16757">#16757</a>)</li>
<li><strong>New Resource:</strong>
<code>google_vmwareengine_external_address</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16698">#16698</a>)</li>
<li><strong>New Resource:</strong>
<code>google_vmwareengine_subnet</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16700">#16700</a>)</li>
<li><strong>New Resource:</strong>
<code>google_workbench_instance</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16773">#16773</a>)</li>
<li><strong>New Resource:</strong>
<code>google_workbench_instance_iam_*</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16773">#16773</a>)</li>
</ul>
<p>IMPROVEMENTS:</p>
<ul>
<li>compute: added <code>numeric_id</code> field to
<code>google_compute_network</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16712">#16712</a>)</li>
<li>compute: added <code>remove_instance_on_destroy</code> option to
<code>google_compute_per_instance_config</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16729">#16729</a>)</li>
<li>compute: added <code>remove_instance_on_destroy</code> option to
<code>google_compute_region_per_instance_config</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16729">#16729</a>)</li>
<li>container: added <code>network_performance_config</code> field to
<code>google_container_node_pool</code> resource to support GKE tier 1
networking (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16688">#16688</a>)</li>
<li>container: added support for in-place update for
<code>machine_type</code>/<code>disk_type</code>/<code>disk_size_gb</code>
in <code>google_container_node_pool</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16724">#16724</a>)</li>
<li>containerazure: added <code>config.labels</code> to
<code>google_container_azure_node_pool</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16754">#16754</a>)</li>
<li>dataform: added <code>display_name</code>, <code>labels</code> and
<code>npmrc_environment_variables_secret_version</code> fields to
<code>google_dataform_repository</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16733">#16733</a>)</li>
<li>monitoring: added <code>severity</code> field to
<code>google_monitoring_alert_policy</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16775">#16775</a>)</li>
<li>notebooks: added support for <code>labels</code> to
<code>google_notebooks_runtime</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16783">#16783</a>)</li>
<li>recaptchaenterprise: added <code>waf_settings</code> to
<code>google_recaptcha_enterprise_key</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16754">#16754</a>)</li>
<li>securesourcemanager: added <code>host_config</code>,
<code>state_note</code>, <code>kms_key</code>, and
<code>private_config</code> fields to
<code>google_secure_source_manager_instance</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16731">#16731</a>)</li>
<li>spanner: added <code>autoscaling_config.max_nodes</code> and
<code>autoscaling_config.min_nodes</code> to
<code>google_spanner_instance</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16786">#16786</a>)</li>
<li>storage: added <code>rpo</code> field to
<code>google_storage_bucket</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16756">#16756</a>)</li>
<li>vmwareengine: added <code>type</code> field to
<code>google_vmwareengine_private_cloud</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16781">#16781</a>)</li>
<li>workloadidentity: added <code>saml</code> block to
<code>google_iam_workload_identity_pool_provider</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16710">#16710</a>)</li>
</ul>
<p>BUG FIXES:</p>
<ul>
<li>logging: fixed an issue where value change of
<code>unique_writer_identity</code> on
<code>google_logging_project_sink</code> does not trigger diff on
dependent's usages of <code>writer_identity</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16776">#16776</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="d535085ad6"><code>d535085</code></a>
Update CHANGELOG.md (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/16796">#16796</a>)</li>
<li><a
href="47f412a71c"><code>47f412a</code></a>
Revert &quot;The version field should be under configmanagement instead
of under o...</li>
<li><a
href="b23960070e"><code>b239600</code></a>
The version field should be under configmanagement instead of under oci
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/958">#958</a>...</li>
<li><a
href="bb1e863a77"><code>bb1e863</code></a>
feat(spanner): support defining autoscaling limit as nodes (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/9606">#9606</a>)
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/16786">#16786</a>)</li>
<li><a
href="e6f762c758"><code>e6f762c</code></a>
Add missing <code>depends_on</code> meta arguments to acceptance test
config (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/9623">#9623</a>)
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/1">#1</a>...</li>
<li><a
href="7236e2f4f1"><code>7236e2f</code></a>
Label support for Google Managed Notebooks (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/9625">#9625</a>)
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/16783">#16783</a>)</li>
<li><a
href="a2b7042c90"><code>a2b7042</code></a>
Remove use of <code>google_kms_crypto_key_iam_binding</code> resource in
tests, to make ...</li>
<li><a
href="7664d6083b"><code>7664d60</code></a>
Add type field to PrivateCloud in Vmwareengine (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/9608">#9608</a>)
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/16781">#16781</a>)</li>
<li><a
href="270ad8618b"><code>270ad86</code></a>
Update Cloud Run v2 tests to make service account with sweepable name
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/9620">#9620</a>)...</li>
<li><a
href="b6532c06ad"><code>b6532c0</code></a>
taint writer_identity (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/9561">#9561</a>)
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/16776">#16776</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/hashicorp/terraform-provider-google/compare/v5.9.0...v5.10.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=hashicorp/google&package-manager=terraform&previous-version=5.9.0&new-version=5.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 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>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-02 03:51:02 +00:00
dependabot[bot]
66e2897d6c chore(deps): bump hashicorp/google-beta from 5.9.0 to 5.10.0 in /terraform/environments/production (#3052)
Bumps
[hashicorp/google-beta](https://github.com/hashicorp/terraform-provider-google-beta)
from 5.9.0 to 5.10.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/hashicorp/terraform-provider-google-beta/releases">hashicorp/google-beta's
releases</a>.</em></p>
<blockquote>
<h2>v5.10.0</h2>
<p>FEATURES:</p>
<ul>
<li><strong>New Data Source:</strong>
<code>google_compute_region_disk</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6726">#6726</a>)</li>
<li><strong>New Data Source:</strong>
<code>google_vmwareengine_external_address</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6714">#6714</a>)</li>
<li><strong>New Data Source:</strong>
<code>google_vmwareengine_subnet</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6715">#6715</a>)</li>
<li><strong>New Data Source:</strong>
<code>google_vmwareengine_vcenter_credentials</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6717">#6717</a>)</li>
<li><strong>New Resource:</strong>
<code>google_vmwareengine_external_address</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6714">#6714</a>)</li>
<li><strong>New Resource:</strong>
<code>google_vmwareengine_subnet</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6715">#6715</a>)</li>
<li><strong>New Resource:</strong>
<code>google_workbench_instance</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6739">#6739</a>)</li>
<li><strong>New Resource:</strong>
<code>google_workbench_instance_iam_*</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6739">#6739</a>)</li>
</ul>
<p>IMPROVEMENTS:</p>
<ul>
<li>bigquery: added <code>external_dataset_reference</code> field to
<code>google_bigquery_dataset</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6716">#6716</a>)</li>
<li>compute: added <code>network_performance_config</code> field to
<code>google_container_node_pool</code> resource to support GKE tier 1
networking (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6719">#6719</a>)</li>
<li>compute: added <code>remove_instance_on_destroy</code> option to
<code>google_compute_per_instance_config</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6724">#6724</a>)</li>
<li>compute: added <code>remove_instance_on_destroy</code> option to
<code>google_compute_region_per_instance_config</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6724">#6724</a>)</li>
<li>container: added support for
<code>network_performance_config.total_egress_bandwidth_tier</code> to
support GKE tier 1 networking (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6712">#6712</a>)</li>
<li>container: added support for in-place update for
<code>machine_type</code>/<code>disk_type</code>/<code>disk_size_gb</code>
in <code>google_container_node_pool</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6722">#6722</a>)</li>
<li>containerazure: added <code>config.labels</code> to
<code>google_container_azure_node_pool</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6732">#6732</a>)</li>
<li>dataform: added <code>display_name</code>, <code>labels</code> and
<code>npmrc_environment_variables_secret_version</code> fields to
<code>google_dataform_repository</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6727">#6727</a>)</li>
<li>monitoring: added <code>severity</code> field to
<code>google_monitoring_alert_policy</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6741">#6741</a>)</li>
<li>notebooks: added support for <code>labels</code> to
<code>google_notebooks_runtime</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6746">#6746</a>)</li>
<li>orgpolicy: added <code>dry_run_spec</code> to
<code>google_org_policy_policy</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6732">#6732</a>)</li>
<li>recaptchaenterprise: added <code>waf_settings</code> to
<code>google_recaptcha_enterprise_key</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6732">#6732</a>)</li>
<li>securesourcemanager: added <code>host_config</code>,
<code>state_note</code>, <code>kms_key</code>, and
<code>private_config</code> fields to
<code>google_secure_source_manager_instance</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6725">#6725</a>)</li>
<li>spanner: added <code>autoscaling_config.max_nodes</code> and
<code>autoscaling_config.min_nodes</code> to
<code>google_spanner_instance</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6748">#6748</a>)</li>
<li>storage: added <code>rpo</code> field to
<code>google_storage_bucket</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6734">#6734</a>)</li>
<li>vmwareengine: added <code>type</code> field to
<code>google_vmwareengine_private_cloud</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6744">#6744</a>)</li>
<li>workloadidentity: added <code>saml</code> block to
<code>google_iam_workload_identity_pool_provider</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6718">#6718</a>)</li>
</ul>
<p>BUG FIXES:</p>
<ul>
<li>logging: fixed an issue where value change of
<code>unique_writer_identity</code> on
<code>google_logging_project_sink</code> does not trigger diff on
dependent's usages of <code>writer_identity</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6742">#6742</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/hashicorp/terraform-provider-google-beta/blob/main/CHANGELOG.md">hashicorp/google-beta's
changelog</a>.</em></p>
<blockquote>
<h2>5.10.0 (Dec 18, 2023)</h2>
<p>FEATURES:</p>
<ul>
<li><strong>New Data Source:</strong>
<code>google_compute_region_disk</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6726">#6726</a>)</li>
<li><strong>New Data Source:</strong>
<code>google_vmwareengine_external_address</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6714">#6714</a>)</li>
<li><strong>New Data Source:</strong>
<code>google_vmwareengine_subnet</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6715">#6715</a>)</li>
<li><strong>New Data Source:</strong>
<code>google_vmwareengine_vcenter_credentials</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6717">#6717</a>)</li>
<li><strong>New Resource:</strong>
<code>google_vmwareengine_external_address</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6714">#6714</a>)</li>
<li><strong>New Resource:</strong>
<code>google_vmwareengine_subnet</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6715">#6715</a>)</li>
<li><strong>New Resource:</strong>
<code>google_workbench_instance</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6739">#6739</a>)</li>
<li><strong>New Resource:</strong>
<code>google_workbench_instance_iam_*</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6739">#6739</a>)</li>
</ul>
<p>IMPROVEMENTS:</p>
<ul>
<li>bigquery: added <code>external_dataset_reference</code> field to
<code>google_bigquery_dataset</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6716">#6716</a>)</li>
<li>compute: added <code>network_performance_config</code> field to
<code>google_container_node_pool</code> resource to support GKE tier 1
networking (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6719">#6719</a>)</li>
<li>compute: added <code>remove_instance_on_destroy</code> option to
<code>google_compute_per_instance_config</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6724">#6724</a>)</li>
<li>compute: added <code>remove_instance_on_destroy</code> option to
<code>google_compute_region_per_instance_config</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6724">#6724</a>)</li>
<li>container: added support for
<code>network_performance_config.total_egress_bandwidth_tier</code> to
support GKE tier 1 networking (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6712">#6712</a>)</li>
<li>container: added support for in-place update for
<code>machine_type</code>/<code>disk_type</code>/<code>disk_size_gb</code>
in <code>google_container_node_pool</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6722">#6722</a>)</li>
<li>containerazure: added <code>config.labels</code> to
<code>google_container_azure_node_pool</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6732">#6732</a>)</li>
<li>dataform: added <code>display_name</code>, <code>labels</code> and
<code>npmrc_environment_variables_secret_version</code> fields to
<code>google_dataform_repository</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6727">#6727</a>)</li>
<li>monitoring: added <code>severity</code> field to
<code>google_monitoring_alert_policy</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6741">#6741</a>)</li>
<li>notebooks: added support for <code>labels</code> to
<code>google_notebooks_runtime</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6746">#6746</a>)</li>
<li>orgpolicy: added <code>dry_run_spec</code> to
<code>google_org_policy_policy</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6732">#6732</a>)</li>
<li>recaptchaenterprise: added <code>waf_settings</code> to
<code>google_recaptcha_enterprise_key</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6732">#6732</a>)</li>
<li>securesourcemanager: added <code>host_config</code>,
<code>state_note</code>, <code>kms_key</code>, and
<code>private_config</code> fields to
<code>google_secure_source_manager_instance</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6725">#6725</a>)</li>
<li>spanner: added <code>autoscaling_config.max_nodes</code> and
<code>autoscaling_config.min_nodes</code> to
<code>google_spanner_instance</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6748">#6748</a>)</li>
<li>storage: added <code>rpo</code> field to
<code>google_storage_bucket</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6734">#6734</a>)</li>
<li>vmwareengine: added <code>type</code> field to
<code>google_vmwareengine_private_cloud</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6744">#6744</a>)</li>
<li>workloadidentity: added <code>saml</code> block to
<code>google_iam_workload_identity_pool_provider</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6718">#6718</a>)</li>
</ul>
<p>BUG FIXES:</p>
<ul>
<li>logging: fixed an issue where value change of
<code>unique_writer_identity</code> on
<code>google_logging_project_sink</code> does not trigger diff on
dependent's usages of <code>writer_identity</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6742">#6742</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="9d1e021357"><code>9d1e021</code></a>
Update CHANGELOG.md (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/6752">#6752</a>)</li>
<li><a
href="aaf0313d07"><code>aaf0313</code></a>
Revert &quot;The version field should be under configmanagement instead
of under o...</li>
<li><a
href="16d58fc591"><code>16d58fc</code></a>
The version field should be under configmanagement instead of under oci
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/958">#958</a>...</li>
<li><a
href="e8383d85c6"><code>e8383d8</code></a>
feat(spanner): support defining autoscaling limit as nodes (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/9606">#9606</a>)
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/6748">#6748</a>)</li>
<li><a
href="37003087f7"><code>3700308</code></a>
Add missing <code>depends_on</code> meta arguments to acceptance test
config (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/9623">#9623</a>)
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/6">#6</a>...</li>
<li><a
href="567919199e"><code>5679191</code></a>
Label support for Google Managed Notebooks (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/9625">#9625</a>)
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/6746">#6746</a>)</li>
<li><a
href="6551c73b14"><code>6551c73</code></a>
Remove use of <code>google_kms_crypto_key_iam_binding</code> resource in
tests, to make ...</li>
<li><a
href="046705011e"><code>0467050</code></a>
Add type field to PrivateCloud in Vmwareengine (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/9608">#9608</a>)
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/6744">#6744</a>)</li>
<li><a
href="7c5e16028b"><code>7c5e160</code></a>
Update Cloud Run v2 tests to make service account with sweepable name
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/9620">#9620</a>)...</li>
<li><a
href="8a78c35388"><code>8a78c35</code></a>
taint writer_identity (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/9561">#9561</a>)
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/6742">#6742</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/hashicorp/terraform-provider-google-beta/compare/v5.9.0...v5.10.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=hashicorp/google-beta&package-manager=terraform&previous-version=5.9.0&new-version=5.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 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>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-02 03:50:07 +00:00
dependabot[bot]
2a1476aa0b chore(deps): bump @types/react from 18.2.30 to 18.2.46 in /website (#3066)
Bumps
[@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react)
from 18.2.30 to 18.2.46.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/react&package-manager=npm_and_yarn&previous-version=18.2.30&new-version=18.2.46)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 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>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-02 03:33:51 +00:00
dependabot[bot]
f1624b8543 chore(deps): bump hashicorp/google from 5.9.0 to 5.10.0 in /terraform/environments/staging (#3057)
Bumps
[hashicorp/google](https://github.com/hashicorp/terraform-provider-google)
from 5.9.0 to 5.10.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/hashicorp/terraform-provider-google/releases">hashicorp/google's
releases</a>.</em></p>
<blockquote>
<h2>v5.10.0</h2>
<p>FEATURES:</p>
<ul>
<li><strong>New Data Source:</strong>
<code>google_compute_region_disk</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16732">#16732</a>)</li>
<li><strong>New Data Source:</strong>
<code>google_vmwareengine_external_address</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16698">#16698</a>)</li>
<li><strong>New Data Source:</strong>
<code>google_vmwareengine_subnet</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16700">#16700</a>)</li>
<li><strong>New Data Source:</strong>
<code>google_vmwareengine_vcenter_credentials</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16709">#16709</a>)</li>
<li><strong>New Resource:</strong>
<code>google_vmwareengine_cluster</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16757">#16757</a>)</li>
<li><strong>New Resource:</strong>
<code>google_vmwareengine_external_address</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16698">#16698</a>)</li>
<li><strong>New Resource:</strong>
<code>google_vmwareengine_subnet</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16700">#16700</a>)</li>
<li><strong>New Resource:</strong>
<code>google_workbench_instance</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16773">#16773</a>)</li>
<li><strong>New Resource:</strong>
<code>google_workbench_instance_iam_*</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16773">#16773</a>)</li>
</ul>
<p>IMPROVEMENTS:</p>
<ul>
<li>compute: added <code>numeric_id</code> field to
<code>google_compute_network</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16712">#16712</a>)</li>
<li>compute: added <code>remove_instance_on_destroy</code> option to
<code>google_compute_per_instance_config</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16729">#16729</a>)</li>
<li>compute: added <code>remove_instance_on_destroy</code> option to
<code>google_compute_region_per_instance_config</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16729">#16729</a>)</li>
<li>container: added <code>network_performance_config</code> field to
<code>google_container_node_pool</code> resource to support GKE tier 1
networking (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16688">#16688</a>)</li>
<li>container: added support for in-place update for
<code>machine_type</code>/<code>disk_type</code>/<code>disk_size_gb</code>
in <code>google_container_node_pool</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16724">#16724</a>)</li>
<li>containerazure: added <code>config.labels</code> to
<code>google_container_azure_node_pool</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16754">#16754</a>)</li>
<li>dataform: added <code>display_name</code>, <code>labels</code> and
<code>npmrc_environment_variables_secret_version</code> fields to
<code>google_dataform_repository</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16733">#16733</a>)</li>
<li>monitoring: added <code>severity</code> field to
<code>google_monitoring_alert_policy</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16775">#16775</a>)</li>
<li>notebooks: added support for <code>labels</code> to
<code>google_notebooks_runtime</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16783">#16783</a>)</li>
<li>recaptchaenterprise: added <code>waf_settings</code> to
<code>google_recaptcha_enterprise_key</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16754">#16754</a>)</li>
<li>securesourcemanager: added <code>host_config</code>,
<code>state_note</code>, <code>kms_key</code>, and
<code>private_config</code> fields to
<code>google_secure_source_manager_instance</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16731">#16731</a>)</li>
<li>spanner: added <code>autoscaling_config.max_nodes</code> and
<code>autoscaling_config.min_nodes</code> to
<code>google_spanner_instance</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16786">#16786</a>)</li>
<li>storage: added <code>rpo</code> field to
<code>google_storage_bucket</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16756">#16756</a>)</li>
<li>vmwareengine: added <code>type</code> field to
<code>google_vmwareengine_private_cloud</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16781">#16781</a>)</li>
<li>workloadidentity: added <code>saml</code> block to
<code>google_iam_workload_identity_pool_provider</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16710">#16710</a>)</li>
</ul>
<p>BUG FIXES:</p>
<ul>
<li>logging: fixed an issue where value change of
<code>unique_writer_identity</code> on
<code>google_logging_project_sink</code> does not trigger diff on
dependent's usages of <code>writer_identity</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16776">#16776</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/hashicorp/terraform-provider-google/blob/main/CHANGELOG.md">hashicorp/google's
changelog</a>.</em></p>
<blockquote>
<h2>5.10.0 (Dec 18, 2023)</h2>
<p>FEATURES:</p>
<ul>
<li><strong>New Data Source:</strong>
<code>google_compute_region_disk</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16732">#16732</a>)</li>
<li><strong>New Data Source:</strong>
<code>google_vmwareengine_external_address</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16698">#16698</a>)</li>
<li><strong>New Data Source:</strong>
<code>google_vmwareengine_subnet</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16700">#16700</a>)</li>
<li><strong>New Data Source:</strong>
<code>google_vmwareengine_vcenter_credentials</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16709">#16709</a>)</li>
<li><strong>New Resource:</strong>
<code>google_vmwareengine_cluster</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16757">#16757</a>)</li>
<li><strong>New Resource:</strong>
<code>google_vmwareengine_external_address</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16698">#16698</a>)</li>
<li><strong>New Resource:</strong>
<code>google_vmwareengine_subnet</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16700">#16700</a>)</li>
<li><strong>New Resource:</strong>
<code>google_workbench_instance</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16773">#16773</a>)</li>
<li><strong>New Resource:</strong>
<code>google_workbench_instance_iam_*</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16773">#16773</a>)</li>
</ul>
<p>IMPROVEMENTS:</p>
<ul>
<li>compute: added <code>numeric_id</code> field to
<code>google_compute_network</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16712">#16712</a>)</li>
<li>compute: added <code>remove_instance_on_destroy</code> option to
<code>google_compute_per_instance_config</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16729">#16729</a>)</li>
<li>compute: added <code>remove_instance_on_destroy</code> option to
<code>google_compute_region_per_instance_config</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16729">#16729</a>)</li>
<li>container: added <code>network_performance_config</code> field to
<code>google_container_node_pool</code> resource to support GKE tier 1
networking (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16688">#16688</a>)</li>
<li>container: added support for in-place update for
<code>machine_type</code>/<code>disk_type</code>/<code>disk_size_gb</code>
in <code>google_container_node_pool</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16724">#16724</a>)</li>
<li>containerazure: added <code>config.labels</code> to
<code>google_container_azure_node_pool</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16754">#16754</a>)</li>
<li>dataform: added <code>display_name</code>, <code>labels</code> and
<code>npmrc_environment_variables_secret_version</code> fields to
<code>google_dataform_repository</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16733">#16733</a>)</li>
<li>monitoring: added <code>severity</code> field to
<code>google_monitoring_alert_policy</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16775">#16775</a>)</li>
<li>notebooks: added support for <code>labels</code> to
<code>google_notebooks_runtime</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16783">#16783</a>)</li>
<li>recaptchaenterprise: added <code>waf_settings</code> to
<code>google_recaptcha_enterprise_key</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16754">#16754</a>)</li>
<li>securesourcemanager: added <code>host_config</code>,
<code>state_note</code>, <code>kms_key</code>, and
<code>private_config</code> fields to
<code>google_secure_source_manager_instance</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16731">#16731</a>)</li>
<li>spanner: added <code>autoscaling_config.max_nodes</code> and
<code>autoscaling_config.min_nodes</code> to
<code>google_spanner_instance</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16786">#16786</a>)</li>
<li>storage: added <code>rpo</code> field to
<code>google_storage_bucket</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16756">#16756</a>)</li>
<li>vmwareengine: added <code>type</code> field to
<code>google_vmwareengine_private_cloud</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16781">#16781</a>)</li>
<li>workloadidentity: added <code>saml</code> block to
<code>google_iam_workload_identity_pool_provider</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16710">#16710</a>)</li>
</ul>
<p>BUG FIXES:</p>
<ul>
<li>logging: fixed an issue where value change of
<code>unique_writer_identity</code> on
<code>google_logging_project_sink</code> does not trigger diff on
dependent's usages of <code>writer_identity</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/pull/16776">#16776</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="d535085ad6"><code>d535085</code></a>
Update CHANGELOG.md (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/16796">#16796</a>)</li>
<li><a
href="47f412a71c"><code>47f412a</code></a>
Revert &quot;The version field should be under configmanagement instead
of under o...</li>
<li><a
href="b23960070e"><code>b239600</code></a>
The version field should be under configmanagement instead of under oci
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/958">#958</a>...</li>
<li><a
href="bb1e863a77"><code>bb1e863</code></a>
feat(spanner): support defining autoscaling limit as nodes (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/9606">#9606</a>)
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/16786">#16786</a>)</li>
<li><a
href="e6f762c758"><code>e6f762c</code></a>
Add missing <code>depends_on</code> meta arguments to acceptance test
config (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/9623">#9623</a>)
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/1">#1</a>...</li>
<li><a
href="7236e2f4f1"><code>7236e2f</code></a>
Label support for Google Managed Notebooks (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/9625">#9625</a>)
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/16783">#16783</a>)</li>
<li><a
href="a2b7042c90"><code>a2b7042</code></a>
Remove use of <code>google_kms_crypto_key_iam_binding</code> resource in
tests, to make ...</li>
<li><a
href="7664d6083b"><code>7664d60</code></a>
Add type field to PrivateCloud in Vmwareengine (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/9608">#9608</a>)
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/16781">#16781</a>)</li>
<li><a
href="270ad8618b"><code>270ad86</code></a>
Update Cloud Run v2 tests to make service account with sweepable name
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/9620">#9620</a>)...</li>
<li><a
href="b6532c06ad"><code>b6532c0</code></a>
taint writer_identity (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/9561">#9561</a>)
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google/issues/16776">#16776</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/hashicorp/terraform-provider-google/compare/v5.9.0...v5.10.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=hashicorp/google&package-manager=terraform&previous-version=5.9.0&new-version=5.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 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>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-02 03:05:51 +00:00
dependabot[bot]
a42f27bbb1 chore(deps): bump hashicorp/google-beta from 5.9.0 to 5.10.0 in /terraform/environments/staging (#3058)
Bumps
[hashicorp/google-beta](https://github.com/hashicorp/terraform-provider-google-beta)
from 5.9.0 to 5.10.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/hashicorp/terraform-provider-google-beta/releases">hashicorp/google-beta's
releases</a>.</em></p>
<blockquote>
<h2>v5.10.0</h2>
<p>FEATURES:</p>
<ul>
<li><strong>New Data Source:</strong>
<code>google_compute_region_disk</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6726">#6726</a>)</li>
<li><strong>New Data Source:</strong>
<code>google_vmwareengine_external_address</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6714">#6714</a>)</li>
<li><strong>New Data Source:</strong>
<code>google_vmwareengine_subnet</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6715">#6715</a>)</li>
<li><strong>New Data Source:</strong>
<code>google_vmwareengine_vcenter_credentials</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6717">#6717</a>)</li>
<li><strong>New Resource:</strong>
<code>google_vmwareengine_external_address</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6714">#6714</a>)</li>
<li><strong>New Resource:</strong>
<code>google_vmwareengine_subnet</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6715">#6715</a>)</li>
<li><strong>New Resource:</strong>
<code>google_workbench_instance</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6739">#6739</a>)</li>
<li><strong>New Resource:</strong>
<code>google_workbench_instance_iam_*</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6739">#6739</a>)</li>
</ul>
<p>IMPROVEMENTS:</p>
<ul>
<li>bigquery: added <code>external_dataset_reference</code> field to
<code>google_bigquery_dataset</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6716">#6716</a>)</li>
<li>compute: added <code>network_performance_config</code> field to
<code>google_container_node_pool</code> resource to support GKE tier 1
networking (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6719">#6719</a>)</li>
<li>compute: added <code>remove_instance_on_destroy</code> option to
<code>google_compute_per_instance_config</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6724">#6724</a>)</li>
<li>compute: added <code>remove_instance_on_destroy</code> option to
<code>google_compute_region_per_instance_config</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6724">#6724</a>)</li>
<li>container: added support for
<code>network_performance_config.total_egress_bandwidth_tier</code> to
support GKE tier 1 networking (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6712">#6712</a>)</li>
<li>container: added support for in-place update for
<code>machine_type</code>/<code>disk_type</code>/<code>disk_size_gb</code>
in <code>google_container_node_pool</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6722">#6722</a>)</li>
<li>containerazure: added <code>config.labels</code> to
<code>google_container_azure_node_pool</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6732">#6732</a>)</li>
<li>dataform: added <code>display_name</code>, <code>labels</code> and
<code>npmrc_environment_variables_secret_version</code> fields to
<code>google_dataform_repository</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6727">#6727</a>)</li>
<li>monitoring: added <code>severity</code> field to
<code>google_monitoring_alert_policy</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6741">#6741</a>)</li>
<li>notebooks: added support for <code>labels</code> to
<code>google_notebooks_runtime</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6746">#6746</a>)</li>
<li>orgpolicy: added <code>dry_run_spec</code> to
<code>google_org_policy_policy</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6732">#6732</a>)</li>
<li>recaptchaenterprise: added <code>waf_settings</code> to
<code>google_recaptcha_enterprise_key</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6732">#6732</a>)</li>
<li>securesourcemanager: added <code>host_config</code>,
<code>state_note</code>, <code>kms_key</code>, and
<code>private_config</code> fields to
<code>google_secure_source_manager_instance</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6725">#6725</a>)</li>
<li>spanner: added <code>autoscaling_config.max_nodes</code> and
<code>autoscaling_config.min_nodes</code> to
<code>google_spanner_instance</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6748">#6748</a>)</li>
<li>storage: added <code>rpo</code> field to
<code>google_storage_bucket</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6734">#6734</a>)</li>
<li>vmwareengine: added <code>type</code> field to
<code>google_vmwareengine_private_cloud</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6744">#6744</a>)</li>
<li>workloadidentity: added <code>saml</code> block to
<code>google_iam_workload_identity_pool_provider</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6718">#6718</a>)</li>
</ul>
<p>BUG FIXES:</p>
<ul>
<li>logging: fixed an issue where value change of
<code>unique_writer_identity</code> on
<code>google_logging_project_sink</code> does not trigger diff on
dependent's usages of <code>writer_identity</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6742">#6742</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/hashicorp/terraform-provider-google-beta/blob/main/CHANGELOG.md">hashicorp/google-beta's
changelog</a>.</em></p>
<blockquote>
<h2>5.10.0 (Dec 18, 2023)</h2>
<p>FEATURES:</p>
<ul>
<li><strong>New Data Source:</strong>
<code>google_compute_region_disk</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6726">#6726</a>)</li>
<li><strong>New Data Source:</strong>
<code>google_vmwareengine_external_address</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6714">#6714</a>)</li>
<li><strong>New Data Source:</strong>
<code>google_vmwareengine_subnet</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6715">#6715</a>)</li>
<li><strong>New Data Source:</strong>
<code>google_vmwareengine_vcenter_credentials</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6717">#6717</a>)</li>
<li><strong>New Resource:</strong>
<code>google_vmwareengine_external_address</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6714">#6714</a>)</li>
<li><strong>New Resource:</strong>
<code>google_vmwareengine_subnet</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6715">#6715</a>)</li>
<li><strong>New Resource:</strong>
<code>google_workbench_instance</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6739">#6739</a>)</li>
<li><strong>New Resource:</strong>
<code>google_workbench_instance_iam_*</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6739">#6739</a>)</li>
</ul>
<p>IMPROVEMENTS:</p>
<ul>
<li>bigquery: added <code>external_dataset_reference</code> field to
<code>google_bigquery_dataset</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6716">#6716</a>)</li>
<li>compute: added <code>network_performance_config</code> field to
<code>google_container_node_pool</code> resource to support GKE tier 1
networking (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6719">#6719</a>)</li>
<li>compute: added <code>remove_instance_on_destroy</code> option to
<code>google_compute_per_instance_config</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6724">#6724</a>)</li>
<li>compute: added <code>remove_instance_on_destroy</code> option to
<code>google_compute_region_per_instance_config</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6724">#6724</a>)</li>
<li>container: added support for
<code>network_performance_config.total_egress_bandwidth_tier</code> to
support GKE tier 1 networking (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6712">#6712</a>)</li>
<li>container: added support for in-place update for
<code>machine_type</code>/<code>disk_type</code>/<code>disk_size_gb</code>
in <code>google_container_node_pool</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6722">#6722</a>)</li>
<li>containerazure: added <code>config.labels</code> to
<code>google_container_azure_node_pool</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6732">#6732</a>)</li>
<li>dataform: added <code>display_name</code>, <code>labels</code> and
<code>npmrc_environment_variables_secret_version</code> fields to
<code>google_dataform_repository</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6727">#6727</a>)</li>
<li>monitoring: added <code>severity</code> field to
<code>google_monitoring_alert_policy</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6741">#6741</a>)</li>
<li>notebooks: added support for <code>labels</code> to
<code>google_notebooks_runtime</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6746">#6746</a>)</li>
<li>orgpolicy: added <code>dry_run_spec</code> to
<code>google_org_policy_policy</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6732">#6732</a>)</li>
<li>recaptchaenterprise: added <code>waf_settings</code> to
<code>google_recaptcha_enterprise_key</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6732">#6732</a>)</li>
<li>securesourcemanager: added <code>host_config</code>,
<code>state_note</code>, <code>kms_key</code>, and
<code>private_config</code> fields to
<code>google_secure_source_manager_instance</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6725">#6725</a>)</li>
<li>spanner: added <code>autoscaling_config.max_nodes</code> and
<code>autoscaling_config.min_nodes</code> to
<code>google_spanner_instance</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6748">#6748</a>)</li>
<li>storage: added <code>rpo</code> field to
<code>google_storage_bucket</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6734">#6734</a>)</li>
<li>vmwareengine: added <code>type</code> field to
<code>google_vmwareengine_private_cloud</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6744">#6744</a>)</li>
<li>workloadidentity: added <code>saml</code> block to
<code>google_iam_workload_identity_pool_provider</code> resource (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6718">#6718</a>)</li>
</ul>
<p>BUG FIXES:</p>
<ul>
<li>logging: fixed an issue where value change of
<code>unique_writer_identity</code> on
<code>google_logging_project_sink</code> does not trigger diff on
dependent's usages of <code>writer_identity</code> (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/pull/6742">#6742</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="9d1e021357"><code>9d1e021</code></a>
Update CHANGELOG.md (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/6752">#6752</a>)</li>
<li><a
href="aaf0313d07"><code>aaf0313</code></a>
Revert &quot;The version field should be under configmanagement instead
of under o...</li>
<li><a
href="16d58fc591"><code>16d58fc</code></a>
The version field should be under configmanagement instead of under oci
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/958">#958</a>...</li>
<li><a
href="e8383d85c6"><code>e8383d8</code></a>
feat(spanner): support defining autoscaling limit as nodes (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/9606">#9606</a>)
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/6748">#6748</a>)</li>
<li><a
href="37003087f7"><code>3700308</code></a>
Add missing <code>depends_on</code> meta arguments to acceptance test
config (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/9623">#9623</a>)
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/6">#6</a>...</li>
<li><a
href="567919199e"><code>5679191</code></a>
Label support for Google Managed Notebooks (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/9625">#9625</a>)
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/6746">#6746</a>)</li>
<li><a
href="6551c73b14"><code>6551c73</code></a>
Remove use of <code>google_kms_crypto_key_iam_binding</code> resource in
tests, to make ...</li>
<li><a
href="046705011e"><code>0467050</code></a>
Add type field to PrivateCloud in Vmwareengine (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/9608">#9608</a>)
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/6744">#6744</a>)</li>
<li><a
href="7c5e16028b"><code>7c5e160</code></a>
Update Cloud Run v2 tests to make service account with sweepable name
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/9620">#9620</a>)...</li>
<li><a
href="8a78c35388"><code>8a78c35</code></a>
taint writer_identity (<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/9561">#9561</a>)
(<a
href="https://redirect.github.com/hashicorp/terraform-provider-google-beta/issues/6742">#6742</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/hashicorp/terraform-provider-google-beta/compare/v5.9.0...v5.10.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=hashicorp/google-beta&package-manager=terraform&previous-version=5.9.0&new-version=5.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 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>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-02 03:03:58 +00:00
dependabot[bot]
d6990a2351 chore(deps): bump org.jetbrains.kotlin:kotlin-stdlib from 1.9.21 to 1.9.22 in /rust/connlib/clients/android/connlib (#3056)
Bumps
[org.jetbrains.kotlin:kotlin-stdlib](https://github.com/JetBrains/kotlin)
from 1.9.21 to 1.9.22.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/JetBrains/kotlin/releases">org.jetbrains.kotlin:kotlin-stdlib's
releases</a>.</em></p>
<blockquote>
<h2>Kotlin 1.9.22</h2>
<h2>Changelog</h2>
<h3>JavaScript</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-63719"><code>KT-63719</code></a>
KJS: Test results ignored for ES module kind</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-63808"><code>KT-63808</code></a>
compileTestDevelopmentExecutableKotlinJs failed in
JsIntrinsicTransformers</li>
</ul>
<h3>Native</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-64139"><code>KT-64139</code></a>
Weird bug with while and coroutine in Kotlin Native</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-63471"><code>KT-63471</code></a>
linkDebugTestIosX64 Failed to build cache: NoSuchFileException
bitcode_deps</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-63789"><code>KT-63789</code></a>
Native: Incremental compilation problem with compose</li>
</ul>
<h3>Tools. CLI</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-64485"><code>KT-64485</code></a>
CLI: cache and optimize parsing of command-line arguments</li>
</ul>
<h3>Tools. Gradle</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-63990"><code>KT-63990</code></a>
&quot;Cannot query the value of property 'buildFlowServiceProperty'
because it has no value available&quot; with Isolated Projects</li>
</ul>
<h3>Tools. Gradle. Native</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-63363"><code>KT-63363</code></a>
Kotlin Gradle Plugin:
<code>KotlinNativeHostSpecificMetadataArtifact</code> breaks
configuration cache, implicitly includes output file as configuration
cache input</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-63742"><code>KT-63742</code></a>
Gradle wrongly caches Kotlin/Native compiler flags</li>
</ul>
<h3>Tools. JPS</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-64305"><code>KT-64305</code></a>
Kotlin JPS builder requests chunk rebuild with graph implementation</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-64112"><code>KT-64112</code></a>
Avoid using IJ's JPS mappings in Kotlin JPS tests</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-63799"><code>KT-63799</code></a>
Make plugin classpath serialization path agnostic</li>
</ul>
<h2>Checksums</h2>
<table>
<thead>
<tr>
<th>File</th>
<th>Sha256</th>
</tr>
</thead>
<tbody>
<tr>
<td>kotlin-compiler-1.9.22.zip</td>

<td>88b39213506532c816ff56348c07bbeefe0c8d18943bffbad11063cf97cac3e6</td>
</tr>
<tr>
<td>kotlin-native-linux-x86_64-1.9.22.tar.gz</td>

<td>c2b0a6481ced5401db4a7028661c039b7466996efaa554bbcc6a3d421ac5e7d4</td>
</tr>
<tr>
<td>kotlin-native-macos-x86_64-1.9.22.tar.gz</td>

<td>4646c9bc289d48a228064f565f3a968dde3dcccd7821f403717c708f6ffa8285</td>
</tr>
<tr>
<td>kotlin-native-macos-aarch64-1.9.22.tar.gz</td>

<td>8a95c0e0eb46b41b6d02a1942dc7dfe8c70082a2a26679490a77cd486f0ec8dd</td>
</tr>
<tr>
<td>kotlin-native-windows-x86_64-1.9.22.zip</td>

<td>a9d7bcf38a41a84002ba7a733b08e97b554225a39656d5158fc31dc6d0acede4</td>
</tr>
</tbody>
</table>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md">org.jetbrains.kotlin:kotlin-stdlib's
changelog</a>.</em></p>
<blockquote>
<h2>1.9.22</h2>
<h3>JavaScript</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-63719"><code>KT-63719</code></a>
KJS: Test results ignored for ES module kind</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-63808"><code>KT-63808</code></a>
compileTestDevelopmentExecutableKotlinJs failed in
JsIntrinsicTransformers</li>
</ul>
<h3>Native</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-64139"><code>KT-64139</code></a>
Weird bug with while and coroutine in Kotlin Native</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-63471"><code>KT-63471</code></a>
linkDebugTestIosX64 Failed to build cache: NoSuchFileException
bitcode_deps</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-63789"><code>KT-63789</code></a>
Native: Incremental compilation problem with compose</li>
</ul>
<h3>Tools. CLI</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-64485"><code>KT-64485</code></a>
CLI: cache and optimize parsing of command-line arguments</li>
</ul>
<h3>Tools. Gradle</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-63990"><code>KT-63990</code></a>
&quot;Cannot query the value of property 'buildFlowServiceProperty'
because it has no value available&quot; with Isolated Projects</li>
</ul>
<h3>Tools. Gradle. Native</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-63363"><code>KT-63363</code></a>
Kotlin Gradle Plugin:
<code>KotlinNativeHostSpecificMetadataArtifact</code> breaks
configuration cache, implicitly includes output file as configuration
cache input</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-63742"><code>KT-63742</code></a>
Gradle wrongly caches Kotlin/Native compiler flags</li>
</ul>
<h3>Tools. JPS</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-64305"><code>KT-64305</code></a>
Kotlin JPS builder requests chunk rebuild with graph implementation</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-64112"><code>KT-64112</code></a>
Avoid using IJ's JPS mappings in Kotlin JPS tests</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-63799"><code>KT-63799</code></a>
Make plugin classpath serialization path agnostic</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="44ed2e94f5"><code>44ed2e9</code></a>
Add changelog for 1.9.22</li>
<li><a
href="b7b0397d2c"><code>b7b0397</code></a>
[Gradle] Made klib unpacked for native metadata compile task</li>
<li><a
href="262697dc38"><code>262697d</code></a>
[K/JS] Fix file extension inside the JS KGP to run tests with ES modules
^KT-...</li>
<li><a
href="87c8aa1037"><code>87c8aa1</code></a>
[K/JS] Fix case with boxing/unboxing inside the BlockDecomposerLowering
^KT-6...</li>
<li><a
href="316df8d032"><code>316df8d</code></a>
[CLI] Add cache for reflection lookup of CLI arguments</li>
<li><a
href="b0cc245beb"><code>b0cc245</code></a>
Avoid throwing exception when BuildFusService can't be injected</li>
<li><a
href="cfbb957e02"><code>cfbb957</code></a>
[IR] Correct handling of loops in liveness analysis</li>
<li><a
href="204cecd5d9"><code>204cecd</code></a>
[box-tests] Added a reproducer for #KT-64139</li>
<li><a
href="9c7aac2ec0"><code>9c7aac2</code></a>
[gradle] Use more fine grained directory for K/N incremental
compilation</li>
<li><a
href="9012e67fdb"><code>9012e67</code></a>
Add KotlinBuilder 'dumb mode' flag</li>
<li>Additional commits viewable in <a
href="https://github.com/JetBrains/kotlin/compare/v1.9.21...v1.9.22">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.jetbrains.kotlin:kotlin-stdlib&package-manager=gradle&previous-version=1.9.21&new-version=1.9.22)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 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>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-02 02:51:45 +00:00
dependabot[bot]
b32ae49d0a chore(deps): bump github/codeql-action from 2 to 3 (#3059)
Bumps [github/codeql-action](https://github.com/github/codeql-action)
from 2 to 3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/github/codeql-action/releases">github/codeql-action's
releases</a>.</em></p>
<blockquote>
<h2>CodeQL Bundle v2.15.5</h2>
<p>Bundles CodeQL CLI v2.15.5</p>
<ul>
<li>(<a
href="https://github.com/github/codeql-cli-binaries/blob/HEAD/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql-cli-binaries/releases/tag/v2.15.5">release</a>)</li>
</ul>
<p>Includes the following CodeQL language packs from <a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5"><code>github/codeql@codeql-cli/v2.15.5</code></a>:</p>
<ul>
<li><code>codeql/cpp-queries</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/cpp/ql/src/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/cpp/ql/src">source</a>)</li>
<li><code>codeql/cpp-all</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/cpp/ql/lib/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/cpp/ql/lib">source</a>)</li>
<li><code>codeql/csharp-queries</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/csharp/ql/src/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/csharp/ql/src">source</a>)</li>
<li><code>codeql/csharp-all</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/csharp/ql/lib/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/csharp/ql/lib">source</a>)</li>
<li><code>codeql/go-queries</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/go/ql/src/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/go/ql/src">source</a>)</li>
<li><code>codeql/go-all</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/go/ql/lib/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/go/ql/lib">source</a>)</li>
<li><code>codeql/java-queries</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/java/ql/src/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/java/ql/src">source</a>)</li>
<li><code>codeql/java-all</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/java/ql/lib/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/java/ql/lib">source</a>)</li>
<li><code>codeql/javascript-queries</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/javascript/ql/src/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/javascript/ql/src">source</a>)</li>
<li><code>codeql/javascript-all</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/javascript/ql/lib/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/javascript/ql/lib">source</a>)</li>
<li><code>codeql/python-queries</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/python/ql/src/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/python/ql/src">source</a>)</li>
<li><code>codeql/python-all</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/python/ql/lib/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/python/ql/lib">source</a>)</li>
<li><code>codeql/ruby-queries</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/ruby/ql/src/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/ruby/ql/src">source</a>)</li>
<li><code>codeql/ruby-all</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/ruby/ql/lib/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/ruby/ql/lib">source</a>)</li>
<li><code>codeql/swift-queries</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/swift/ql/src/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/swift/ql/src">source</a>)</li>
<li><code>codeql/swift-all</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/swift/ql/lib/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.5/swift/ql/lib">source</a>)</li>
</ul>
<h2>CodeQL Bundle v2.15.4</h2>
<p>Bundles CodeQL CLI v2.15.4</p>
<ul>
<li>(<a
href="https://github.com/github/codeql-cli-binaries/blob/HEAD/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql-cli-binaries/releases/tag/v2.15.4">release</a>)</li>
</ul>
<p>Includes the following CodeQL language packs from <a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4"><code>github/codeql@codeql-cli/v2.15.4</code></a>:</p>
<ul>
<li><code>codeql/cpp-queries</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/cpp/ql/src/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/cpp/ql/src">source</a>)</li>
<li><code>codeql/cpp-all</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/cpp/ql/lib/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/cpp/ql/lib">source</a>)</li>
<li><code>codeql/csharp-queries</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/csharp/ql/src/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/csharp/ql/src">source</a>)</li>
<li><code>codeql/csharp-all</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/csharp/ql/lib/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/csharp/ql/lib">source</a>)</li>
<li><code>codeql/go-queries</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/go/ql/src/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/go/ql/src">source</a>)</li>
<li><code>codeql/go-all</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/go/ql/lib/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/go/ql/lib">source</a>)</li>
<li><code>codeql/java-queries</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/java/ql/src/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/java/ql/src">source</a>)</li>
<li><code>codeql/java-all</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/java/ql/lib/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/java/ql/lib">source</a>)</li>
<li><code>codeql/javascript-queries</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/javascript/ql/src/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/javascript/ql/src">source</a>)</li>
<li><code>codeql/javascript-all</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/javascript/ql/lib/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/javascript/ql/lib">source</a>)</li>
<li><code>codeql/python-queries</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/python/ql/src/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/python/ql/src">source</a>)</li>
<li><code>codeql/python-all</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/python/ql/lib/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/python/ql/lib">source</a>)</li>
<li><code>codeql/ruby-queries</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/ruby/ql/src/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/ruby/ql/src">source</a>)</li>
<li><code>codeql/ruby-all</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/ruby/ql/lib/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/ruby/ql/lib">source</a>)</li>
<li><code>codeql/swift-queries</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/swift/ql/src/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/swift/ql/src">source</a>)</li>
<li><code>codeql/swift-all</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/swift/ql/lib/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.4/swift/ql/lib">source</a>)</li>
</ul>
<h2>CodeQL Bundle</h2>
<p>Bundles CodeQL CLI v2.15.3</p>
<ul>
<li>(<a
href="https://github.com/github/codeql-cli-binaries/blob/HEAD/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql-cli-binaries/releases/tag/v2.15.3">release</a>)</li>
</ul>
<p>Includes the following CodeQL language packs from <a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.3"><code>github/codeql@codeql-cli/v2.15.3</code></a>:</p>
<ul>
<li><code>codeql/cpp-queries</code> (<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.3/cpp/ql/src/CHANGELOG.md">changelog</a>,
<a
href="https://github.com/github/codeql/tree/codeql-cli/v2.15.3/cpp/ql/src">source</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/github/codeql-action/blob/main/CHANGELOG.md">github/codeql-action's
changelog</a>.</em></p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="e0c2b0a8a0"><code>e0c2b0a</code></a>
change version numbers inside processing function as well</li>
<li><a
href="8e4a6c7a90"><code>8e4a6c7</code></a>
improve handling of changelog processing for backports</li>
<li><a
href="511f073971"><code>511f073</code></a>
Merge pull request <a
href="https://redirect.github.com/github/codeql-action/issues/2033">#2033</a>
from github/dependabot/npm_and_yarn/npm-0a98872b3d</li>
<li><a
href="ebf5a83713"><code>ebf5a83</code></a>
Merge pull request <a
href="https://redirect.github.com/github/codeql-action/issues/2035">#2035</a>
from github/mergeback/v3.22.11-to-main-b374143c</li>
<li><a
href="7813bda958"><code>7813bda</code></a>
Update checked-in dependencies</li>
<li><a
href="2b2fb6b1dc"><code>2b2fb6b</code></a>
Update changelog and version after v3.22.11</li>
<li><a
href="b374143c11"><code>b374143</code></a>
Merge pull request <a
href="https://redirect.github.com/github/codeql-action/issues/2034">#2034</a>
from github/update-v3.22.11-64e61baea</li>
<li><a
href="95591babe8"><code>95591ba</code></a>
Merge branch 'main' into dependabot/npm_and_yarn/npm-0a98872b3d</li>
<li><a
href="e2b5cc75ce"><code>e2b5cc7</code></a>
Update changelog for v3.22.11</li>
<li>See full diff in <a
href="https://github.com/github/codeql-action/compare/v2...v3">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github/codeql-action&package-manager=github_actions&previous-version=2&new-version=3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 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>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-02 02:51:01 +00:00
dependabot[bot]
7d8d172bef chore(deps): bump actions/upload-artifact from 3 to 4 (#3060)
Bumps
[actions/upload-artifact](https://github.com/actions/upload-artifact)
from 3 to 4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/actions/upload-artifact/releases">actions/upload-artifact's
releases</a>.</em></p>
<blockquote>
<h2>v4.0.0</h2>
<h2>What's Changed</h2>
<p>The release of upload-artifact@v4 and download-artifact@v4 are major
changes to the backend architecture of Artifacts. They have numerous
performance and behavioral improvements.</p>
<p>For more information, see the <a
href="https://github.com/actions/toolkit/tree/main/packages/artifact"><code>@​actions/artifact</code></a>
documentation.</p>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/vmjoseph"><code>@​vmjoseph</code></a>
made their first contribution in <a
href="https://redirect.github.com/actions/upload-artifact/pull/464">actions/upload-artifact#464</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/upload-artifact/compare/v3...v4.0.0">https://github.com/actions/upload-artifact/compare/v3...v4.0.0</a></p>
<h2>v3.1.3</h2>
<h2>What's Changed</h2>
<ul>
<li>chore(github): remove trailing whitespaces by <a
href="https://github.com/ljmf00"><code>@​ljmf00</code></a> in <a
href="https://redirect.github.com/actions/upload-artifact/pull/313">actions/upload-artifact#313</a></li>
<li>Bump <code>@​actions/artifact</code> version to v1.1.2 by <a
href="https://github.com/bethanyj28"><code>@​bethanyj28</code></a> in <a
href="https://redirect.github.com/actions/upload-artifact/pull/436">actions/upload-artifact#436</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/upload-artifact/compare/v3...v3.1.3">https://github.com/actions/upload-artifact/compare/v3...v3.1.3</a></p>
<h2>v3.1.2</h2>
<ul>
<li>Update all <code>@actions/*</code> NPM packages to their latest
versions- <a
href="https://redirect.github.com/actions/upload-artifact/issues/374">#374</a></li>
<li>Update all dev dependencies to their most recent versions - <a
href="https://redirect.github.com/actions/upload-artifact/issues/375">#375</a></li>
</ul>
<h2>v3.1.1</h2>
<ul>
<li>Update actions/core package to latest version to remove
<code>set-output</code> deprecation warning <a
href="https://redirect.github.com/actions/upload-artifact/issues/351">#351</a></li>
</ul>
<h2>v3.1.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Bump <code>@​actions/artifact</code> to v1.1.0 (<a
href="https://redirect.github.com/actions/upload-artifact/pull/327">actions/upload-artifact#327</a>)
<ul>
<li>Adds checksum headers on artifact upload (<a
href="https://redirect.github.com/actions/toolkit/pull/1095">actions/toolkit#1095</a>)
(<a
href="https://redirect.github.com/actions/toolkit/pull/1063">actions/toolkit#1063</a>)</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="c7d193f32e"><code>c7d193f</code></a>
Merge pull request <a
href="https://redirect.github.com/actions/upload-artifact/issues/466">#466</a>
from actions/v4-beta</li>
<li><a
href="13131bb095"><code>13131bb</code></a>
licensed cache</li>
<li><a
href="4a6c273b98"><code>4a6c273</code></a>
Merge branch 'main' into v4-beta</li>
<li><a
href="f391bb91a3"><code>f391bb9</code></a>
Merge pull request <a
href="https://redirect.github.com/actions/upload-artifact/issues/465">#465</a>
from actions/robherley/v4-documentation</li>
<li><a
href="9653d03c4b"><code>9653d03</code></a>
Apply suggestions from code review</li>
<li><a
href="875b630764"><code>875b630</code></a>
add limitations section</li>
<li><a
href="ecb21463e9"><code>ecb2146</code></a>
add compression example</li>
<li><a
href="5e7604f84a"><code>5e7604f</code></a>
trim some repeated info</li>
<li><a
href="d6437d0758"><code>d6437d0</code></a>
naming</li>
<li><a
href="1b56155703"><code>1b56155</code></a>
s/v4-beta/v4/g</li>
<li>Additional commits viewable in <a
href="https://github.com/actions/upload-artifact/compare/v3...v4">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/upload-artifact&package-manager=github_actions&previous-version=3&new-version=4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 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>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-02 02:49:19 +00:00
dependabot[bot]
fc8767acd3 chore(deps): bump actions/download-artifact from 3 to 4 (#3061)
Bumps
[actions/download-artifact](https://github.com/actions/download-artifact)
from 3 to 4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/actions/download-artifact/releases">actions/download-artifact's
releases</a>.</em></p>
<blockquote>
<h2>v4.0.0</h2>
<h2>What's Changed</h2>
<p>The release of upload-artifact@v4 and download-artifact@v4 are major
changes to the backend architecture of Artifacts. They have numerous
performance and behavioral improvements.</p>
<p>For more information, see the <a
href="https://github.com/actions/toolkit/tree/main/packages/artifact"><code>@​actions/artifact</code></a>
documentation.</p>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/bflad"><code>@​bflad</code></a> made
their first contribution in <a
href="https://redirect.github.com/actions/download-artifact/pull/194">actions/download-artifact#194</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/download-artifact/compare/v3...v4.0.0">https://github.com/actions/download-artifact/compare/v3...v4.0.0</a></p>
<h2>v3.0.2</h2>
<ul>
<li>Bump <code>@actions/artifact</code> to v1.1.1 - <a
href="https://redirect.github.com/actions/download-artifact/pull/195">actions/download-artifact#195</a></li>
<li>Fixed a bug in Node16 where if an HTTP download finished too quickly
(&lt;1ms, e.g. when it's mocked) we attempt to delete a temp file that
has not been created yet <a
href="hhttps://redirect.github.com/actions/toolkit/pull/1278">actions/toolkit#1278</a></li>
</ul>
<h2>v3.0.1</h2>
<ul>
<li><a
href="https://redirect.github.com/actions/download-artifact/pull/178">Bump
<code>@​actions/core</code> to 1.10.0</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="f44cd7b40b"><code>f44cd7b</code></a>
Merge pull request <a
href="https://redirect.github.com/actions/download-artifact/issues/259">#259</a>
from actions/robherley/glob-downloads</li>
<li><a
href="3181fe853d"><code>3181fe8</code></a>
add some migration docs</li>
<li><a
href="aaaac7b403"><code>aaaac7b</code></a>
licensed cache</li>
<li><a
href="7c9182f0e1"><code>7c9182f</code></a>
update readme</li>
<li><a
href="b94e701556"><code>b94e701</code></a>
licensed cache</li>
<li><a
href="0b55470e40"><code>0b55470</code></a>
add test case for globbed downloads to same directory</li>
<li><a
href="0b51c2ef90"><code>0b51c2e</code></a>
update prettier/eslint versions</li>
<li><a
href="c4c6db724f"><code>c4c6db7</code></a>
support globbing artifact list &amp; merging download directory</li>
<li><a
href="1bd0606e08"><code>1bd0606</code></a>
Merge pull request <a
href="https://redirect.github.com/actions/download-artifact/issues/252">#252</a>
from stchr/patch-1</li>
<li><a
href="eff4d42b1f"><code>eff4d42</code></a>
fix default for run-id</li>
<li>Additional commits viewable in <a
href="https://github.com/actions/download-artifact/compare/v3...v4">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/download-artifact&package-manager=github_actions&previous-version=3&new-version=4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 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>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-02 02:48:15 +00:00
dependabot[bot]
0d8d78d0ae chore(deps): bump actions/setup-python from 4 to 5 (#3062)
Bumps [actions/setup-python](https://github.com/actions/setup-python)
from 4 to 5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/actions/setup-python/releases">actions/setup-python's
releases</a>.</em></p>
<blockquote>
<h2>v5.0.0</h2>
<h2>What's Changed</h2>
<p>In scope of this release, we update node version runtime from node16
to node20 (<a
href="https://redirect.github.com/actions/setup-python/pull/772">actions/setup-python#772</a>).
Besides, we update dependencies to the latest versions.</p>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-python/compare/v4.8.0...v5.0.0">https://github.com/actions/setup-python/compare/v4.8.0...v5.0.0</a></p>
<h2>v4.8.0</h2>
<h2>What's Changed</h2>
<p>In scope of this release we added support for GraalPy (<a
href="https://redirect.github.com/actions/setup-python/pull/694">actions/setup-python#694</a>).
You can use this snippet to set up GraalPy:</p>
<pre lang="yaml"><code>steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4 
  with:
    python-version: 'graalpy-22.3' 
- run: python my_script.py
</code></pre>
<p>Besides, the release contains such changes as:</p>
<ul>
<li>Trim python version when reading from file by <a
href="https://github.com/FerranPares"><code>@​FerranPares</code></a> in
<a
href="https://redirect.github.com/actions/setup-python/pull/628">actions/setup-python#628</a></li>
<li>Use non-deprecated versions in examples by <a
href="https://github.com/jeffwidman"><code>@​jeffwidman</code></a> in <a
href="https://redirect.github.com/actions/setup-python/pull/724">actions/setup-python#724</a></li>
<li>Change deprecation comment to past tense by <a
href="https://github.com/jeffwidman"><code>@​jeffwidman</code></a> in <a
href="https://redirect.github.com/actions/setup-python/pull/723">actions/setup-python#723</a></li>
<li>Bump <code>@​babel/traverse</code> from 7.9.0 to 7.23.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/actions/setup-python/pull/743">actions/setup-python#743</a></li>
<li>advanced-usage.md: Encourage the use actions/checkout@v4 by <a
href="https://github.com/cclauss"><code>@​cclauss</code></a> in <a
href="https://redirect.github.com/actions/setup-python/pull/729">actions/setup-python#729</a></li>
<li>Examples now use checkout@v4 by <a
href="https://github.com/simonw"><code>@​simonw</code></a> in <a
href="https://redirect.github.com/actions/setup-python/pull/738">actions/setup-python#738</a></li>
<li>Update actions/checkout to v4 by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-python/pull/761">actions/setup-python#761</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/FerranPares"><code>@​FerranPares</code></a>
made their first contribution in <a
href="https://redirect.github.com/actions/setup-python/pull/628">actions/setup-python#628</a></li>
<li><a href="https://github.com/timfel"><code>@​timfel</code></a> made
their first contribution in <a
href="https://redirect.github.com/actions/setup-python/pull/694">actions/setup-python#694</a></li>
<li><a
href="https://github.com/jeffwidman"><code>@​jeffwidman</code></a> made
their first contribution in <a
href="https://redirect.github.com/actions/setup-python/pull/724">actions/setup-python#724</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-python/compare/v4...v4.8.0">https://github.com/actions/setup-python/compare/v4...v4.8.0</a></p>
<h2>v4.7.1</h2>
<h2>What's Changed</h2>
<ul>
<li>Bump word-wrap from 1.2.3 to 1.2.4 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/actions/setup-python/pull/702">actions/setup-python#702</a></li>
<li>Add range validation for toml files by <a
href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-python/pull/726">actions/setup-python#726</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-python/compare/v4...v4.7.1">https://github.com/actions/setup-python/compare/v4...v4.7.1</a></p>
<h2>v4.7.0</h2>
<p>In scope of this release, the support for reading python version from
pyproject.toml was added (<a
href="https://redirect.github.com/actions/setup-python/pull/669">actions/setup-python#669</a>).</p>
<pre lang="yaml"><code>      - name: Setup Python
        uses: actions/setup-python@v4
&lt;/tr&gt;&lt;/table&gt; 
</code></pre>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="0a5c615913"><code>0a5c615</code></a>
Update action to node20 (<a
href="https://redirect.github.com/actions/setup-python/issues/772">#772</a>)</li>
<li><a
href="0ae58361cd"><code>0ae5836</code></a>
Add example of GraalPy to docs (<a
href="https://redirect.github.com/actions/setup-python/issues/773">#773</a>)</li>
<li><a
href="b64ffcaf5b"><code>b64ffca</code></a>
update actions/checkout to v4 (<a
href="https://redirect.github.com/actions/setup-python/issues/761">#761</a>)</li>
<li><a
href="8d2896179a"><code>8d28961</code></a>
Examples now use checkout@v4 (<a
href="https://redirect.github.com/actions/setup-python/issues/738">#738</a>)</li>
<li><a
href="7bc6abb01e"><code>7bc6abb</code></a>
advanced-usage.md: Encourage the use actions/checkout@v4 (<a
href="https://redirect.github.com/actions/setup-python/issues/729">#729</a>)</li>
<li><a
href="e8111cec9d"><code>e8111ce</code></a>
Bump <code>@​babel/traverse</code> from 7.9.0 to 7.23.2 (<a
href="https://redirect.github.com/actions/setup-python/issues/743">#743</a>)</li>
<li><a
href="a00ea43da6"><code>a00ea43</code></a>
add fix for graalpy ci (<a
href="https://redirect.github.com/actions/setup-python/issues/741">#741</a>)</li>
<li><a
href="8635b1ccc5"><code>8635b1c</code></a>
Change deprecation comment to past tense (<a
href="https://redirect.github.com/actions/setup-python/issues/723">#723</a>)</li>
<li><a
href="f6cc428f53"><code>f6cc428</code></a>
Use non-deprecated versions in examples (<a
href="https://redirect.github.com/actions/setup-python/issues/724">#724</a>)</li>
<li><a
href="5f2af211d6"><code>5f2af21</code></a>
Add GraalPy support (<a
href="https://redirect.github.com/actions/setup-python/issues/694">#694</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/actions/setup-python/compare/v4...v5">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-python&package-manager=github_actions&previous-version=4&new-version=5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 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>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-02 02:47:36 +00:00
dependabot[bot]
2036f81476 chore(deps-dev): bump typescript from 5.2.2 to 5.3.3 in /website (#3063)
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.2.2
to 5.3.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/Microsoft/TypeScript/releases">typescript's
releases</a>.</em></p>
<blockquote>
<h2>TypeScript 5.3.3</h2>
<p>For release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-3/">release
announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.3.0%22+is%3Aclosed+">fixed
issues query for Typescript 5.3.0 (Beta)</a>.</li>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.3.1%22+is%3Aclosed+">fixed
issues query for Typescript 5.3.1 (RC)</a>.</li>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.3.2%22+is%3Aclosed+">fixed
issues query for Typescript 5.3.2 (Stable)</a>.</li>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.3.3%22+is%3Aclosed+">fixed
issues query for Typescript 5.3.3 (Stable)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a
href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild">NuGet
package</a></li>
</ul>
<h2>TypeScript 5.3</h2>
<p>For release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-3/">release
announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.3.0%22+is%3Aclosed+">fixed
issues query for Typescript 5.3.0 (Beta)</a>.</li>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.3.1%22+is%3Aclosed+">fixed
issues query for Typescript 5.3.1 (RC)</a>.</li>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.3.2%22+is%3Aclosed+">fixed
issues query for Typescript 5.3.2 (Stable)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a
href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild">NuGet
package</a></li>
</ul>
<h2>TypeScript 5.3 RC</h2>
<p>For release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-3-rc/">release
announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.3.0%22+is%3Aclosed+">fixed
issues query for Typescript 5.3.0 (Beta)</a>.</li>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.3.1%22+is%3Aclosed+">fixed
issues query for Typescript 5.3.1 (RC)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a
href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild">NuGet
package</a></li>
</ul>
<h2>TypeScript 5.3 Beta</h2>
<p>For release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-3-beta/">release
announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.3.0%22+is%3Aclosed+">fixed
issues query for Typescript v5.3.0 (Beta)</a>.</li>
</ul>
<p>Downloads are available on <a
href="https://www.npmjs.com/package/typescript">npm</a>.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="63717cf44a"><code>63717cf</code></a>
Bump version to 5.3.3 and LKG</li>
<li><a
href="4c2afa7f7b"><code>4c2afa7</code></a>
🤖 Pick PR <a
href="https://redirect.github.com/Microsoft/TypeScript/issues/56627">#56627</a>
(Transpile jsdoc parsing mode) into release-5.3 (<a
href="https://redirect.github.com/Microsoft/TypeScript/issues/56629">#56629</a>)</li>
<li><a
href="ba3d2b02b2"><code>ba3d2b0</code></a>
🤖 Pick PR <a
href="https://redirect.github.com/Microsoft/TypeScript/issues/56434">#56434</a>
(Fix support for intersections in te...) into release-5.3 (#...</li>
<li><a
href="f3808c416d"><code>f3808c4</code></a>
🤖 Pick PR <a
href="https://redirect.github.com/Microsoft/TypeScript/issues/56504">#56504</a>
(Fixed an issue in boolean compariso...) into release-5.3 (#...</li>
<li><a
href="b4fe221e65"><code>b4fe221</code></a>
Cherry-pick <a
href="https://redirect.github.com/Microsoft/TypeScript/issues/56489">#56489</a>
into release-5.3 (<a
href="https://redirect.github.com/Microsoft/TypeScript/issues/56490">#56490</a>)</li>
<li><a
href="f750eb3794"><code>f750eb3</code></a>
Pick <a
href="https://redirect.github.com/Microsoft/TypeScript/issues/56485">#56485</a>
into release-5.3 (<a
href="https://redirect.github.com/Microsoft/TypeScript/issues/56486">#56486</a>)</li>
<li><a
href="27047e3391"><code>27047e3</code></a>
Update LKG.</li>
<li><a
href="d09b1bfb5a"><code>d09b1bf</code></a>
Pick <a
href="https://redirect.github.com/Microsoft/TypeScript/issues/56449">#56449</a>
into release-5.3 (<a
href="https://redirect.github.com/Microsoft/TypeScript/issues/56451">#56451</a>)</li>
<li><a
href="e2a5d45b51"><code>e2a5d45</code></a>
Update LKG.</li>
<li><a
href="756efd2478"><code>756efd2</code></a>
Fixes for release-5.3. (<a
href="https://redirect.github.com/Microsoft/TypeScript/issues/56424">#56424</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/Microsoft/TypeScript/compare/v5.2.2...v5.3.3">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=typescript&package-manager=npm_and_yarn&previous-version=5.2.2&new-version=5.3.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 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>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-02 02:46:29 +00:00
dependabot[bot]
26585ff594 chore(deps): bump tailwindcss from 3.3.5 to 3.4.0 in /website (#3064)
Bumps [tailwindcss](https://github.com/tailwindlabs/tailwindcss) from
3.3.5 to 3.4.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tailwindlabs/tailwindcss/releases">tailwindcss's
releases</a>.</em></p>
<blockquote>
<h2>v3.4.0</h2>
<p><!-- raw HTML omitted --><!-- raw HTML omitted --><!-- raw HTML
omitted --></p>
<p>Tailwind CSS v3.4 has arrived! Check out the <a
href="https://tailwindcss.com/blog/tailwindcss-v3-4">announcement
post</a> for a guided tour through all of the highlights.</p>
<h3>Added</h3>
<ul>
<li>Add <code>svh</code>, <code>lvh</code>, and <code>dvh</code> values
to default
<code>height</code>/<code>min-height</code>/<code>max-height</code>
theme (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11317">#11317</a>)</li>
<li>Add <code>has-*</code> variants for <code>:has(...)</code>
pseudo-class (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11318">#11318</a>)</li>
<li>Add <code>text-wrap</code> utilities including
<code>text-balance</code> and <code>text-pretty</code> (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11320">#11320</a>,
<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12031">#12031</a>)</li>
<li>Extend default <code>opacity</code> scale to include all steps of 5
(<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11832">#11832</a>)</li>
<li>Update Preflight <code>html</code> styles to include shadow DOM
<code>:host</code> pseudo-class (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11200">#11200</a>)</li>
<li>Increase default values for <code>grid-rows-*</code> utilities from
1–6 to 1–12 (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12180">#12180</a>)</li>
<li>Add <code>size-*</code> utilities (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12287">#12287</a>)</li>
<li>Add utilities for CSS subgrid (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12298">#12298</a>)</li>
<li>Add spacing scale to <code>min-w-*</code>, <code>min-h-*</code>, and
<code>max-w-*</code> utilities (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12300">#12300</a>)</li>
<li>Add <code>forced-color-adjust</code> utilities (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11931">#11931</a>)</li>
<li>Add <code>forced-colors</code> variant (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11694">#11694</a>,
<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12582">#12582</a>)</li>
<li>Add <code>appearance-auto</code> utility (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12404">#12404</a>)</li>
<li>Add logical property values for <code>float</code> and
<code>clear</code> utilities (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12480">#12480</a>)</li>
<li>Add <code>*</code> variant for targeting direct children (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12551">#12551</a>)</li>
</ul>
<h3>Changed</h3>
<ul>
<li>Simplify the <code>sans</code> font-family stack (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11748">#11748</a>)</li>
<li>Disable the tap highlight overlay on iOS (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12299">#12299</a>)</li>
<li>Improve relative precedence of <code>rtl</code>, <code>ltr</code>,
<code>forced-colors</code>, and <code>dark</code> variants (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12584">#12584</a>)</li>
</ul>
<h2>v3.3.7</h2>
<h3>Fixed</h3>
<ul>
<li>Fix support for container query utilities with arbitrary values (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12534">#12534</a>)</li>
<li>Fix custom config loading in Standalone CLI (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12616">#12616</a>)</li>
</ul>
<h2>v3.3.6</h2>
<h3>Fixed</h3>
<ul>
<li>Don’t add spaces to negative numbers following a comma (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12324">#12324</a>)</li>
<li>Don't emit <code>@config</code> in CSS when watching via the CLI (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12327">#12327</a>)</li>
<li>Improve types for <code>resolveConfig</code> (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12272">#12272</a>)</li>
<li>Ensure configured <code>font-feature-settings</code> for
<code>mono</code> are included in Preflight (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12342">#12342</a>)</li>
<li>Improve candidate detection in minified JS arrays (without spaces)
(<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12396">#12396</a>)</li>
<li>Don't crash when given applying a variant to a negated version of a
simple utility (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12514">#12514</a>)</li>
<li>Fix support for slashes in arbitrary modifiers (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12515">#12515</a>)</li>
<li>Fix source maps of variant utilities that come from an
<code>@layer</code> rule (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12508">#12508</a>)</li>
<li>Fix loading of built-in plugins when using an ESM or TypeScript
config with the Standalone CLI (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12506">#12506</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/tailwindlabs/tailwindcss/blob/master/CHANGELOG.md">tailwindcss's
changelog</a>.</em></p>
<blockquote>
<h2>[3.4.0] - 2023-12-19</h2>
<h3>Added</h3>
<ul>
<li>Add <code>svh</code>, <code>lvh</code>, and <code>dvh</code> values
to default
<code>height</code>/<code>min-height</code>/<code>max-height</code>
theme (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11317">#11317</a>)</li>
<li>Add <code>has-*</code> variants for <code>:has(...)</code>
pseudo-class (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11318">#11318</a>)</li>
<li>Add <code>text-wrap</code> utilities including
<code>text-balance</code> and <code>text-pretty</code> (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11320">#11320</a>,
<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12031">#12031</a>)</li>
<li>Extend default <code>opacity</code> scale to include all steps of 5
(<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11832">#11832</a>)</li>
<li>Update Preflight <code>html</code> styles to include shadow DOM
<code>:host</code> pseudo-class (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11200">#11200</a>)</li>
<li>Increase default values for <code>grid-rows-*</code> utilities from
1–6 to 1–12 (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12180">#12180</a>)</li>
<li>Add <code>size-*</code> utilities (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12287">#12287</a>)</li>
<li>Add utilities for CSS subgrid (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12298">#12298</a>)</li>
<li>Add spacing scale to <code>min-w-*</code>, <code>min-h-*</code>, and
<code>max-w-*</code> utilities (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12300">#12300</a>)</li>
<li>Add <code>forced-color-adjust</code> utilities (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11931">#11931</a>)</li>
<li>Add <code>forced-colors</code> variant (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11694">#11694</a>,
<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12582">#12582</a>)</li>
<li>Add <code>appearance-auto</code> utility (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12404">#12404</a>)</li>
<li>Add logical property values for <code>float</code> and
<code>clear</code> utilities (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12480">#12480</a>)</li>
<li>Add <code>*</code> variant for targeting direct children (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12551">#12551</a>)</li>
</ul>
<h3>Changed</h3>
<ul>
<li>Simplify the <code>sans</code> font-family stack (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/11748">#11748</a>)</li>
<li>Disable the tap highlight overlay on iOS (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12299">#12299</a>)</li>
<li>Improve relative precedence of <code>rtl</code>, <code>ltr</code>,
<code>forced-colors</code>, and <code>dark</code> variants (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12584">#12584</a>)</li>
</ul>
<h2>[3.3.7] - 2023-12-18</h2>
<h3>Fixed</h3>
<ul>
<li>Fix support for container query utilities with arbitrary values (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12534">#12534</a>)</li>
<li>Fix custom config loading in Standalone CLI (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12616">#12616</a>)</li>
</ul>
<h2>[3.3.6] - 2023-12-04</h2>
<h3>Fixed</h3>
<ul>
<li>Improve types for <code>resolveConfig</code> (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12272">#12272</a>)</li>
<li>Don’t add spaces to negative numbers following a comma (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12324">#12324</a>)</li>
<li>Don't emit <code>@config</code> in CSS when watching via the CLI (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12327">#12327</a>)</li>
<li>Ensure configured <code>font-feature-settings</code> for
<code>mono</code> are included in Preflight (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12342">#12342</a>)</li>
<li>Improve candidate detection in minified JS arrays (without spaces)
(<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12396">#12396</a>)</li>
<li>Don't crash when given applying a variant to a negated version of a
simple utility (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12514">#12514</a>)</li>
<li>Fix support for slashes in arbitrary modifiers (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12515">#12515</a>)</li>
<li>Fix source maps of variant utilities that come from an
<code>@layer</code> rule (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12508">#12508</a>)</li>
<li>Fix loading of built-in plugins when using an ESM or TypeScript
config with the Standalone CLI (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/12506">#12506</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="8350cffdad"><code>8350cff</code></a>
3.4.0</li>
<li><a
href="fbdb858e97"><code>fbdb858</code></a>
Improve relative precedence of <code>rtl</code>, <code>ltr</code>,
<code>forced-colors</code> and <code>dark</code> varia...</li>
<li><a
href="dae4618e97"><code>dae4618</code></a>
Update changelog</li>
<li><a
href="11a6ba3949"><code>11a6ba3</code></a>
Move forced-colors variant after dark variant (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/12582">#12582</a>)</li>
<li><a
href="47dbb4a2b3"><code>47dbb4a</code></a>
Add <code>*</code> variant for targeting direct children (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/12551">#12551</a>)</li>
<li><a
href="7642e28cfe"><code>7642e28</code></a>
Disable tap highlights on iOS (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/12299">#12299</a>)</li>
<li><a
href="06972065de"><code>0697206</code></a>
feat(preflight): simplify sans-serif font stack (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/11748">#11748</a>)</li>
<li><a
href="b215f13276"><code>b215f13</code></a>
Update changelog</li>
<li><a
href="9129defd0d"><code>9129def</code></a>
Add logical properties support for float and clear (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/12480">#12480</a>)</li>
<li><a
href="4ef97179cd"><code>4ef9717</code></a>
Fix typo in changelog</li>
<li>Additional commits viewable in <a
href="https://github.com/tailwindlabs/tailwindcss/compare/v3.3.5...v3.4.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tailwindcss&package-manager=npm_and_yarn&previous-version=3.3.5&new-version=3.4.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 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>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-02 02:46:19 +00:00
dependabot[bot]
ddbbfd1962 chore(deps): bump @mdx-js/react from 2.3.0 to 3.0.0 in /website (#3065)
Bumps
[@mdx-js/react](https://github.com/mdx-js/mdx/tree/HEAD/packages/react)
from 2.3.0 to 3.0.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mdx-js/mdx/releases"><code>@​mdx-js/react</code>'s
releases</a>.</em></p>
<blockquote>
<h2>3.0.0</h2>
<p>(see <a
href="https://mdxjs.com/migrating/v3/">https://mdxjs.com/migrating/v3/</a>
on how to migrate)</p>
<h4>Change</h4>
<ul>
<li>e08b7596 5afa48e6 Change to require Node 16</li>
<li>5a13d73b Change to use export maps</li>
<li>cbc2822f Update <code>unified</code>, types, plugins, etc</li>
<li>96b51f93 Remove inferral of development from
<code>NODE_ENV</code></li>
</ul>
<h4>Change (unlikely to affect you)</h4>
<ul>
<li>c961af80 Remove <code>useDynamicImport</code> option</li>
<li>9cb26fd1 <code>@mdx-js/register</code>: remove package</li>
<li>0d1558a3 <code>@mdx-js/esbuild</code>: remove experimental
<code>allowDangerousRemoteMdx</code></li>
<li>0f62bce9 <code>@mdx-js/node-loader</code>: remove
<code>fixRuntimeWithoutExportMap</code></li>
<li>4f924227 <code>@mdx-js/preact</code>: remove deprecated
<code>MDXContext</code>, <code>withMDXComponents</code></li>
<li>a362bb43 <code>@mdx-js/react</code>: remove deprecated
<code>MDXContext</code>, <code>withMDXComponents</code></li>
</ul>
<h4>Add</h4>
<ul>
<li>e12f3079 Add support for passing <code>baseUrl</code> when
running</li>
<li>2c511a40 Add support for <code>baseUrl</code> as a
<code>URL</code></li>
<li>1863914c Add deprecation warning for classic runtime</li>
<li>a34177c3 Add support for ES2024 in MDX, adjacent JSX and expression
blocks</li>
<li>44fd9cac Add support for <code>await</code> in MDX</li>
<li>3a7f1947 Add <code>tableCellAlignToStyle</code> option, to use
<code>align</code></li>
<li>fdfe17b8 <code>@mdx-js/rollup</code>: add support for Vite
development mode
by <a
href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>
in <a
href="https://redirect.github.com/mdx-js/mdx/pull/2376">mdx-js/mdx#2376</a></li>
</ul>
<h4>Misc</h4>
<ul>
<li>f48d038b Remove unneeded pragma comment after transform</li>
<li>8f3b2920 Add a <code>use strict</code> directive to function
bodies</li>
<li>172e5190 <code>@mdx-js/react</code>: fix to classify
<code>@types/react</code> as a peer dependency
by <a
href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>
in <a
href="https://redirect.github.com/mdx-js/mdx/pull/2281">mdx-js/mdx#2281</a></li>
<li>a7bd79bb Refactor output to immediately export default</li>
<li>e525db9b dae82ae4 Refactor some errors</li>
<li>ce173f28 Refactor to add types for JSX runtimes</li>
<li>8a563128 Refactor output to use spread, not
<code>Object.assign</code>
by <a
href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>
in <a
href="https://redirect.github.com/mdx-js/mdx/pull/2328">mdx-js/mdx#2328</a></li>
<li>825717fd Refactor to sort default components
by <a
href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>
in <a
href="https://redirect.github.com/mdx-js/mdx/pull/2318">mdx-js/mdx#2318</a></li>
<li>d8a62d20 Add missing type dependencies
by <a href="https://github.com/arcanis"><code>@​arcanis</code></a> in <a
href="https://redirect.github.com/mdx-js/mdx/pull/2256">mdx-js/mdx#2256</a></li>
</ul>
<h4>Docs</h4>
<ul>
<li>a9f0c046 Add guide on injecting components</li>
<li>24e3d8d1 Add compat sections to readmes</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="9a40e181db"><code>9a40e18</code></a>
3.0.0</li>
<li><a
href="e08b759668"><code>e08b759</code></a>
Change to require Node 16</li>
<li><a
href="bc1d9e56ce"><code>bc1d9e5</code></a>
Refactor more docs</li>
<li><a
href="24e3d8d126"><code>24e3d8d</code></a>
Add compat sections to readmes</li>
<li><a
href="a51248a379"><code>a51248a</code></a>
Remove unneeded Vue JSX setup</li>
<li><a
href="74aee5693a"><code>74aee56</code></a>
Refactor docs of packages</li>
<li><a
href="172e519013"><code>172e519</code></a>
react: fix to classify <code>@types/react</code> as a peer
dependency</li>
<li><a
href="5a13d73bca"><code>5a13d73</code></a>
Change to use <code>exports</code></li>
<li><a
href="a362bb43ee"><code>a362bb4</code></a>
react: remove deprecated, <code>MDXContext</code>,
<code>withMDXComponents</code></li>
<li><a
href="a94f28521d"><code>a94f285</code></a>
Refactor code-style</li>
<li>Additional commits viewable in <a
href="https://github.com/mdx-js/mdx/commits/3.0.0/packages/react">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@mdx-js/react&package-manager=npm_and_yarn&previous-version=2.3.0&new-version=3.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 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>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-02 02:45:40 +00:00
dependabot[bot]
45cca8a4cf chore(deps): bump @types/node from 20.10.1 to 20.10.6 in /website (#3067)
Bumps
[@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)
from 20.10.1 to 20.10.6.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=20.10.1&new-version=20.10.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 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>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-02 02:44:26 +00:00