mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
68fe638ab34bf95fcbb78518b295117ff2ad5c38
3234 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
68fe638ab3 |
fix(ci): Use pre-releases when calculating changelog (#3138)
Fixes the incorrect changelog generated on our releases. |
||
|
|
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? |
||
|
|
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 |
||
|
|
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
|
||
|
|
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. |
||
|
|
7b26aed586 |
fix(portal): Add plan badge to edit Site (#3129)
Fixes #3125 |
||
|
|
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. |
||
|
|
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. |
||
|
|
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<A>,Option<B>)</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<A, B></code> to <code>EitherOrBoth<A, B></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<T></code> a shorthand for <code>EitherOrBoth<T, T></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=" |
||
|
|
12997daf2e |
fix(windows): set the tunnel's IPv6 address correctly with netsh so IPv6 tunnelling works (#3120)
Tested manually with http://test-ipv6.com:  |
||
|
|
720a50bafa |
fix(windows): set MTU for IPv6 too (#3121)
This can be seen in `Get-NetIPInterface` even if #3120 isn't merged |
||
|
|
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. |
||
|
|
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"> |
||
|
|
47627d7643 |
fix(staging): Update demo access (#3116)
https://app.terraform.io/app/firezone/workspaces/staging/runs/run-NVEdbCHS9PnwXSF4 |
||
|
|
71410b0553 |
feat(connlib): wildcard matching dns (#3109)
Fixes #3040 |
||
|
|
3a4f2cf9c0 | fix(windows): set MTU on tunnel interface (#2990) | ||
|
|
d6985470ef |
fix(ci): Fix artifact name typo (#3108)
https://github.com/firezone/firezone/actions/runs/7402448436 |
||
|
|
6fe5c96b15 |
fix(ci): Merge digests for same image name and different archs only (#3107)
https://github.com/firezone/firezone/actions/runs/7401857413 |
||
|
|
23666e119b |
connlib: refactor names (#3104)
Applying suggestions for #3096 since it was merged before I could fix |
||
|
|
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"> |
||
|
|
7ff2c22316 |
fix(ci): Use path subdirs for artifacts (#3103)
https://github.com/firezone/firezone/actions/runs/7400101287 |
||
|
|
aefafc1e49 |
chore(docs): Remove outdated rust/connlib/README.md info (#3099)
This was an artifact leftover from when connlib was in its own repo. |
||
|
|
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. |
||
|
|
178d238a2d |
fix(ci): Add merge_multiple to fix artifact naming. (#3100)
https://github.com/firezone/firezone/actions/runs/7397984675 |
||
|
|
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 |
||
|
|
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. |
||
|
|
3dc9533a35 |
fix(ci): Use pattern key (#3095)
https://github.com/actions/download-artifact?tab=readme-ov-file#inputs |
||
|
|
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. |
||
|
|
e162192bc0 | chore(deps): Bump website deps (#3092) | ||
|
|
3ded0d6170 | fix(ci): Fix upload-artifact workflow artifact name (#3093) | ||
|
|
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.  |
||
|
|
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 |
||
|
|
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. |
||
|
|
859c6c1f59 |
Add more in-portal documentation and empty table state context (#2984)
Refs https://github.com/firezone/firezone/pull/2979#discussion_r1434273368 Fixes #2597 |
||
|
|
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> |
||
|
|
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 /> [](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> |
||
|
|
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=" |
||
|
|
2a9d48fd0a |
fix(gateway): Fallback to get_hostname() for systemd deployments (#3029)
Fixes #3025 |
||
|
|
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=" |
||
|
|
b7197d04c3 |
chore(deps): Bump hilt and fix groups (#3081)
Fixes #2429 |
||
|
|
2dc38a08fb |
chore(ci): clean up workflows (#3039)
Fixes #3006 |
||
|
|
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/). |
||
|
|
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 |
||
|
|
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=" |
||
|
|
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=" |
||
|
|
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 /> [](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> |
||
|
|
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=" |
||
|
|
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=" |
||
|
|
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> "Cannot query the value of property 'buildFlowServiceProperty' because it has no value available" 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> "Cannot query the value of property 'buildFlowServiceProperty' because it has no value available" 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=" |
||
|
|
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=" |