Skip to content

Bump react and @types/react in /src/vscode-bicep #16755

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 30, 2025

Bumps react and @types/react. These dependencies needed to be updated together.
Updates react from 18.3.1 to 19.1.0

Release notes

Sourced from react's releases.

19.1.0 (March 28, 2025)

Owner Stack

An Owner Stack is a string representing the components that are directly responsible for rendering a particular component. You can log Owner Stacks when debugging or use Owner Stacks to enhance error overlays or other development tools. Owner Stacks are only available in development builds. Component Stacks in production are unchanged.

  • An Owner Stack is a development-only stack trace that helps identify which components are responsible for rendering a particular component. An Owner Stack is distinct from a Component Stacks, which shows the hierarchy of components leading to an error.
  • The captureOwnerStack API is only available in development mode and returns a Owner Stack, if available. The API can be used to enhance error overlays or log component relationships when debugging. #29923, #32353, #30306, #32538, #32529, #32538

React

  • Enhanced support for Suspense boundaries to be used anywhere, including the client, server, and during hydration. #32069, #32163, #32224, #32252
  • Reduced unnecessary client rendering through improved hydration scheduling #31751
  • Increased priority of client rendered Suspense boundaries #31776
  • Fixed frozen fallback states by rendering unfinished Suspense boundaries on the client. #31620
  • Reduced garbage collection pressure by improving Suspense boundary retries. #31667
  • Fixed erroneous “Waiting for Paint” log when the passive effect phase was not delayed #31526
  • Fixed a regression causing key warnings for flattened positional children in development mode. #32117
  • Updated useId to use valid CSS selectors, changing format from :r123: to «r123». #32001
  • Added a dev-only warning for null/undefined created in useEffect, useInsertionEffect, and useLayoutEffect. #32355
  • Fixed a bug where dev-only methods were exported in production builds. React.act is no longer available in production builds. #32200
  • Improved consistency across prod and dev to improve compatibility with Google Closure Complier and bindings #31808
  • Improve passive effect scheduling for consistent task yielding. #31785
  • Fixed asserts in React Native when passChildrenWhenCloningPersistedNodes is enabled for OffscreenComponent rendering. #32528
  • Fixed component name resolution for Portal #32640
  • Added support for beforetoggle and toggle events on the dialog element. #32479 #32479

React DOM

  • Fixed double warning when the href attribute is an empty string #31783
  • Fixed an edge case where getHoistableRoot() didn’t work properly when the container was a Document #32321
  • Removed support for using HTML comments (e.g. <!-- -->) as a DOM container. #32250
  • Added support for <script> and \<template> tags to be nested within <select> tags. #31837
  • Fixed responsive images to be preloaded as HTML instead of headers #32445

use-sync-external-store

  • Added exports field to package.json for use-sync-external-store to support various entrypoints. #25231

React Server Components

  • Added unstable_prerender, a new experimental API for prerendering React Server Components on the server #31724
  • Fixed an issue where streams would hang when receiving new chunks after a global error #31840, #31851
  • Fixed an issue where pending chunks were counted twice. #31833
  • Added support for streaming in edge environments #31852
  • Added support for sending custom error names from a server so that they are available in the client for console replaying. #32116
  • Updated the server component wire format to remove IDs for hints and console.log because they have no return value #31671
  • Exposed registerServerReference in client builds to handle server references in different environments. #32534
  • Added react-server-dom-parcel package which integrates Server Components with the Parcel bundler #31725, #32132, #31799, #32294, #31741

19.0.0 (December 5, 2024)

Below is a list of all new features, APIs, deprecations, and breaking changes. Read React 19 release post and React 19 upgrade guide for more information.

Note: To help make the upgrade to React 19 easier, we’ve published a [email protected] release that is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19. We recommend upgrading to React 18.3.1 first to help identify any issues before upgrading to React 19.

... (truncated)

Changelog

Sourced from react's changelog.

19.1.0 (March 28, 2025)

Owner Stack

An Owner Stack is a string representing the components that are directly responsible for rendering a particular component. You can log Owner Stacks when debugging or use Owner Stacks to enhance error overlays or other development tools. Owner Stacks are only available in development builds. Component Stacks in production are unchanged.

  • An Owner Stack is a development-only stack trace that helps identify which components are responsible for rendering a particular component. An Owner Stack is distinct from a Component Stacks, which shows the hierarchy of components leading to an error.
  • The captureOwnerStack API is only available in development mode and returns a Owner Stack, if available. The API can be used to enhance error overlays or log component relationships when debugging. #29923, #32353, #30306, #32538, #32529, #32538

React

  • Enhanced support for Suspense boundaries to be used anywhere, including the client, server, and during hydration. #32069, #32163, #32224, #32252
  • Reduced unnecessary client rendering through improved hydration scheduling #31751
  • Increased priority of client rendered Suspense boundaries #31776
  • Fixed frozen fallback states by rendering unfinished Suspense boundaries on the client. #31620
  • Reduced garbage collection pressure by improving Suspense boundary retries. #31667
  • Fixed erroneous “Waiting for Paint” log when the passive effect phase was not delayed #31526
  • Fixed a regression causing key warnings for flattened positional children in development mode. #32117
  • Updated useId to use valid CSS selectors, changing format from :r123: to «r123». #32001
  • Added a dev-only warning for null/undefined created in useEffect, useInsertionEffect, and useLayoutEffect. #32355
  • Fixed a bug where dev-only methods were exported in production builds. React.act is no longer available in production builds. #32200
  • Improved consistency across prod and dev to improve compatibility with Google Closure Complier and bindings #31808
  • Improve passive effect scheduling for consistent task yielding. #31785
  • Fixed asserts in React Native when passChildrenWhenCloningPersistedNodes is enabled for OffscreenComponent rendering. #32528
  • Fixed component name resolution for Portal #32640
  • Added support for beforetoggle and toggle events on the dialog element. #32479 #32479

React DOM

  • Fixed double warning when the href attribute is an empty string #31783
  • Fixed an edge case where getHoistableRoot() didn’t work properly when the container was a Document #32321
  • Removed support for using HTML comments (e.g. <!-- -->) as a DOM container. #32250
  • Added support for <script> and \<template> tags to be nested within <select> tags. #31837
  • Fixed responsive images to be preloaded as HTML instead of headers #32445

use-sync-external-store

  • Added exports field to package.json for use-sync-external-store to support various entrypoints. #25231

React Server Components

  • Added unstable_prerender, a new experimental API for prerendering React Server Components on the server #31724
  • Fixed an issue where streams would hang when receiving new chunks after a global error #31840, #31851
  • Fixed an issue where pending chunks were counted twice. #31833
  • Added support for streaming in edge environments #31852
  • Added support for sending custom error names from a server so that they are available in the client for console replaying. #32116
  • Updated the server component wire format to remove IDs for hints and console.log because they have no return value #31671
  • Exposed registerServerReference in client builds to handle server references in different environments. #32534
  • Added react-server-dom-parcel package which integrates Server Components with the Parcel bundler #31725, #32132, #31799, #32294, #31741

19.0.0 (December 5, 2024)

Below is a list of all new features, APIs, deprecations, and breaking changes. Read React 19 release post and React 19 upgrade guide for more information.

... (truncated)

Commits

Updates @types/react from 18.3.12 to 19.0.12

Commits

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

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)
###### Microsoft Reviewers: [Open in CodeFlow](https://microsoft.github.io/open-pr/?codeflow=https://github.com//pull/16755)

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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 30, 2025
@microsoft-github-policy-service microsoft-github-policy-service bot enabled auto-merge (squash) March 30, 2025 23:10
@microsoft-github-policy-service microsoft-github-policy-service bot added the auto-merge Automatically merge this PR label Mar 30, 2025
Copy link
Contributor

@microsoft-github-policy-service microsoft-github-policy-service bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:shipit:

Copy link
Contributor

github-actions bot commented Mar 30, 2025

Test this change out locally with the following install scripts (Action run 14980034820)

VSCode
  • Mac/Linux
    bash <(curl -Ls https://aka.ms/bicep/nightly-vsix.sh) --run-id 14980034820
  • Windows
    iex "& { $(irm https://aka.ms/bicep/nightly-vsix.ps1) } -RunId 14980034820"
Azure CLI
  • Mac/Linux
    bash <(curl -Ls https://aka.ms/bicep/nightly-cli.sh) --run-id 14980034820
  • Windows
    iex "& { $(irm https://aka.ms/bicep/nightly-cli.ps1) } -RunId 14980034820"

Copy link
Contributor

github-actions bot commented Mar 30, 2025

Dotnet Test Results

    78 files   -     39      78 suites   - 39   35m 16s ⏱️ - 21m 6s
12 134 tests +    34  12 134 ✅ +    34  0 💤 ±0  0 ❌ ±0 
28 030 runs   - 13 863  28 030 ✅  - 13 863  0 💤 ±0  0 ❌ ±0 

Results for commit 7bf04a3. ± Comparison against base commit 4ebd1d3.

This pull request removes 1992 and adds 860 tests. Note that renamed tests count towards both.

		nestedProp1: 1
		nestedProp2: 2
		prop1: true
		prop2: false
	1
	2
	\$'")
	prop1: true
	prop2: false
…
Bicep.Cli.IntegrationTests.SnapshotCommandTests ‑ Snapshot_with_overwrite_should_generate_a_valid_snapshot_file
Bicep.Core.IntegrationTests.AzTypesViaRegistryTests ‑ Bicep_compiler_handles_corrupted_extension_package_gracefully (\u001f�\u0008\u0000\u0000\u0000\u0000\u0000\u0000
�ӽ\u000e� \u0010\u0000`�>\u0005O�w\u0002b\u0007��}\u0005Ғ�'b�\u0018M��{ϡI\u0007M\u0017�M�70p\8��H���9{tu#0\u0005H\u0004�\u001b�L���\u0001jdh^��ђN�~�JF�M�5���]?(͹
��\u0015h����m.4��(7\u0014;LƐ�l8\u0015�������T~H(�\u0012�~h4����բO�\u000f�2Ԁ�\u0014\u0002f4�H+�������v\u0005Q\u0014E�\u001a�J=�\u000e\u0000\u000c\u0000\u0000,"The path: index.json was not found in artifact contents")
Bicep.Core.IntegrationTests.AzTypesViaRegistryTests ‑ Bicep_compiler_handles_corrupted_extension_package_gracefully (\u001f�\u0008\u0000\u0000\u0000\u0000\u0000\u0000
���\u000b�0\u0014\u0007��+�?`�77����CFX\u0010t��B\u0006Z���?�<D\u0017��?��9n\u000f���w�٫z��8)J�\u000c���o�y���7�K��
\u0008H��\u0010�\u0016��R�ne��~\u0010�[�J�$@ɥ\u001e��}�\��\��޹k\u000f}뮪K��qR�ky˛�|�k\u001a\u001d>�7܈��\u001f\u0018'(\u0000�s\u0004�\u0004<�:��d�������܆��氋셥��{2\u000c�0��\u0002\u0012\u000e\G\u0000\u000c\u0000\u0000,"'7' is an invalid end of a number. Expected a delimiter. Path: $.INVALID_JSON | LineNumber: 0 | BytePositionInLine: 20.")
Bicep.Core.IntegrationTests.AzTypesViaRegistryTests ‑ Bicep_compiler_handles_corrupted_extension_package_gracefully (\u001f�\u0008\u0000\u0000\u0000\u0000\u0000\u0000
���\u000e�0\u000c\u0000Н���\u000f�-\u0016\u0006&ܽ�x�\u0003&Ԉ\u0011$�	��ߝ\u0007�\u0005�\u0005�Ľc�d]����t+6\u0019׍B\u001f`����
�z�\u000fHZ�~\u0002\u0001: \u0014Bv�w��Ҵ���|�\u001f�GҴy�	j�v�A\u001c�h��P���ҡ\u001cƲ2�!�ˌ;ul�壼\u0018*���΀��>7�w�\u000f\u000b\u0012\u0018\u0000\u0002\u0011\u0002j\u0001a`#B~�&�����ۖ�U������q�-�ޜ\u001a�Mݛ�8��9w\u0017	\u001e<\u0000\u000c\u0000\u0000,"Value cannot be null. (Parameter 'source')")
Bicep.Core.IntegrationTests.AzTypesViaRegistryTests ‑ Bicep_compiler_handles_corrupted_extension_package_gracefully (\u001f�\u0008\u0000\u0000\u0000\u0000\u0000\u0000\u0003�ӽ\u000e� \u0010\u0007pf��'�w\u0014<;tw�\u0015�6�#������݅�ġ�K-&�\u001b9�\u001d���vf�V�P���\u0011(\u0013ln୕\u001a]\u000fP#Cz\u0001\u0006��n>�>Ɉ�s���,��\u0007�
7�TW%����\u0005
�\u000b )W����!�\u001aw,{{��͊s��p��:\u0010��ɨ���V�O�\u0007�\u000c5 (���>�(s��E2����?bO�$I���\u0004�k��\u0000\u000c\u0000\u0000,"The path: index.json was not found in artifact contents")
Bicep.Core.IntegrationTests.AzTypesViaRegistryTests ‑ Bicep_compiler_handles_corrupted_extension_package_gracefully (\u001f�\u0008\u0000\u0000\u0000\u0000\u0000\u0000\u0003�ӽ\u000e�0\u0010\u0007��>E�\u0003�\u001e\u001c\u0014L�]L\|�
g�\u0008\u0012�������@\�0���w�]���z��-锪Zx �Z��I#@�=�\u0000*\u0006�M2�|\u001f\u0018�����׍��*s��An�u��\u0014�Be\u001e\u001e#\u0010��EA\u0018�L-\u0019�A�Kݜ�H�\u0015��Vt��P��״\u0006|�o�\u0019��/=d�K����c2���ϒ�?���;��ڒ���\u001d�G��
?�kMϥw�,˲��\u00028#��\u0000\u000c\u0000\u0000,"Value cannot be null. (Parameter 'source')")
Bicep.Core.IntegrationTests.AzTypesViaRegistryTests ‑ Bicep_compiler_handles_corrupted_extension_package_gracefully (\u001f�\u0008\u0000\u0000\u0000\u0000\u0000\u0000\u0003���\u000b�0\u0014\u0007��+�?`�����C�!#,\u0008���A\u0006Z���?�<D\u0017��?��9n\u000f���w���z�d���z�С�oL�9o]o\u0000G\u0002��\u0008C!�\u0010��}�\u0016����\u001ee�^?ȝ[�J3\u0015\u0002r�\u0017�\u0003�"p�E��s�\u001e\u0004�]V�0�\u0013U�ky˛�|�c\u001a\u001d>�7\�o�g.' \u00180�u�G�/<��\u001f%�����\u001d���6Z�6�]l/,�\u0003O=�a\u0018�1�\u0017�ɔ�\u0000\u000c\u0000\u0000,"'7' is an invalid end of a number. Expected a delimiter. Path: $.INVALID_JSON | LineNumber: 0 | BytePositionInLine: 20.")
Bicep.Core.IntegrationTests.CompileTimeImportTests ‑ Importing_types_is_permitted_in_bicepparam_files
Bicep.Core.IntegrationTests.DirectResourceCollectionTests ‑ DirectResourceCollectionAccess_NotAllowedWithinLoops ("output loopOutput array = [for i in range(0, 2): {
  prop: map(containerWorkers, (w) => w.properties.ipAddress.ip)
}]")
Bicep.Core.IntegrationTests.DirectResourceCollectionTests ‑ DirectResourceCollectionAccess_NotAllowedWithinLoops ("resource propertyLoop 'Microsoft.ContainerInstance/containerGroups@2022-09-01' = {
  name: 'gh9440-loop'
  location: 'westus'
  properties: {
    containers: [for i in range(0, 2): {
      name: 'gh9440-w1c-${i}'
      properties: {
        command: [
          'echo "${join(map(containerWorkers, (w) => w.properties.ipAddress.ip), ',')}"'
        ]
      }
    }]
  }
}")
…

♻️ This comment has been updated with latest results.

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/src/vscode-bicep/multi-bb7dbf9f58 branch from 6e1477e to 9accded Compare March 30, 2025 23:25
auto-merge was automatically disabled April 3, 2025 21:57

Pull request was closed

@StephenWeatherford
Copy link
Contributor

Fix-DependabotPRs.ps1: Forcing rebuild

Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 3, 2025

OK, I won't notify you again about this release, but will get in touch when a new version is available. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/src/vscode-bicep/multi-bb7dbf9f58 branch from 9accded to 21db4b9 Compare April 7, 2025 00:08
@StephenWeatherford
Copy link
Contributor

Fix-DependabotPRs.ps1: Forcing rebuild

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/src/vscode-bicep/multi-bb7dbf9f58 branch 3 times, most recently from 150a324 to 757801b Compare April 14, 2025 17:20
@StephenWeatherford
Copy link
Contributor

Fix-DependabotPRs.ps1: Forcing rebuild

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/src/vscode-bicep/multi-bb7dbf9f58 branch from 757801b to 51a9463 Compare April 15, 2025 13:20
@StephenWeatherford
Copy link
Contributor

Fix-DependabotPRs.ps1: Forcing rebuild

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/src/vscode-bicep/multi-bb7dbf9f58 branch from 51a9463 to fdf86fd Compare April 21, 2025 00:04
Bumps [react](https://github.com/facebook/react/tree/HEAD/packages/react) and [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react). These dependencies needed to be updated together.

Updates `react` from 18.3.1 to 19.1.0
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.1.0/packages/react)

Updates `@types/react` from 18.3.12 to 19.0.12
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

---
updated-dependencies:
- dependency-name: react
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/src/vscode-bicep/multi-bb7dbf9f58 branch from fdf86fd to 7bf04a3 Compare April 27, 2025 23:20
@StephenWeatherford
Copy link
Contributor

Fix-DependabotPRs.ps1: Forcing rebuild

@StephenWeatherford
Copy link
Contributor

Fix-DependabotPRs.ps1: Forcing rebuild

@StephenWeatherford
Copy link
Contributor

Fix-DependabotPRs.ps1: Forcing rebuild

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
auto-merge Automatically merge this PR dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants