Commit Graph

3234 Commits

Author SHA1 Message Date
Jamil
68fe638ab3 fix(ci): Use pre-releases when calculating changelog (#3138)
Fixes the incorrect changelog generated on our releases.
2024-01-08 18:02:01 -08:00
Reactor Scram
23f8d1f904 wip(windows): make sure app panics show up in the logs (#3085)
Related to this discussion
https://github.com/firezone/firezone/pull/2990#discussion_r1439629571

Add a dependency on the `tracing-panic` crate. This is about 100 lines
of code that adds a panic handle so app panics get a line number, file
name, etc. in the logs. No backtrace I think since we stripe symbols for
release builds. I _think_ the line numbers are baked into the panic
macro so those might still stay.

@conectado I should remove the debug command before closing it, right?
2024-01-08 19:17:17 +00:00
Jamil
bc93762c16 fix(gateway): Fix systemd gateways on SELinux-enabled distros and improve systemd gateway UX (#3127)
- Fix permissions and caps on each start
- Fixes incompatibility with some systemd versions that barf at the
inline `ExecStartPre`
- Fixes erroneous error printed by iptables
- Fixes masquerading not working for wireless interfaces
- Single-step systemd copy-paste command
- Fixes #2944 
- Fixes #3124 
- Fixes #3112 


Tested on CentOS 7 and Ubuntu 22.04
2024-01-08 17:56:54 +00:00
Brian Manifold
c02e7ed332 fix(portal): Update portal font to source sans 3 (#3106)
Why:

* The previous font being used in the portal (Source Sans Pro) did not
have multiple weights available, which meant that the `font-*` classes
      on all html tags were not being used.  Switching to Source Sans 3
allows all but 1 (`font-thin` or `100` is not present) of the Tailwind
      font sizes to be used.

Closes #2893
2024-01-08 17:56:43 +00:00
Jamil
408961917e fix(portal): Add help text for DNS resources (#3130)
Clarifies confusion I'm seeing on demos and will suffice until we have
in-depth docs.
2024-01-06 05:04:15 +00:00
Jamil
7b26aed586 fix(portal): Add plan badge to edit Site (#3129)
Fixes #3125
2024-01-05 19:42:22 +00:00
Roopesh Chander
eaf60ca558 fix(Apple): Attempt to fix window selectedness of the authentication webview (#3126)
Attempt to fix #2881.

I can't reproduce the exact issue anymore, but I'm guessing activating
the app causes the web view window to lose selectedness. So we don't do
that in the PR.

Also, this PR fixes the scenario where the app is quit while the web
view is shown -- we now close the webview window in that case.
2024-01-05 16:58:06 +00:00
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