Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
1783250
Update @react-native-community/template
vineethkuttan Oct 15, 2025
7133f21
Integrate-rn 0.82.0-nightly-20250806-5936f29d6
vineethkuttan Oct 16, 2025
64adc84
react-native-platform-override upgrade
vineethkuttan Oct 16, 2025
1d7f44c
resolving conflicts
vineethkuttan Oct 17, 2025
df58042
Manually Updating RN Nightlty
vineethkuttan Oct 17, 2025
4001820
commit for PR #15217
vineethkuttan Oct 17, 2025
805c962
Update tester files
vineethkuttan Oct 17, 2025
290f038
Lint fix
vineethkuttan Oct 17, 2025
54771da
lint issue fixes
vineethkuttan Oct 17, 2025
21285f1
fixinf build issues
vineethkuttan Oct 17, 2025
e826350
yarn change
vineethkuttan Oct 17, 2025
ba72f25
validate override fix
vineethkuttan Oct 17, 2025
e838eea
Merge branch 'main' into integrate3.0
vineethkuttan Oct 22, 2025
4705107
update yarn lock
vineethkuttan Oct 23, 2025
ffcafde
Bump rnx,eslint,metro-config
vineethkuttan Oct 23, 2025
b358e59
Added Minimatch
vineethkuttan Oct 23, 2025
72095e0
yarn change
vineethkuttan Oct 23, 2025
4ac3204
Update Cli and Check
vineethkuttan Oct 23, 2025
0910ccf
Update creaternwapp
vineethkuttan Oct 24, 2025
af30904
Merge branch 'main' into integrate3.0
vineethkuttan Oct 24, 2025
dc01d2e
resolve conflicts
vineethkuttan Oct 27, 2025
7d606cc
Merge branch 'main' of https://github.com/Microsoft/react-native-wind…
vineethkuttan Oct 27, 2025
dd22c1e
set node path import
vineethkuttan Oct 27, 2025
3b9959b
exclusionList Test
vineethkuttan Oct 27, 2025
83e2eb0
Merge branch 'main' into integrate3.0
vineethkuttan Oct 29, 2025
967d159
conflicts resolved
vineethkuttan Oct 29, 2025
9b9f6bd
revert rnx copy
vineethkuttan Oct 29, 2025
0ef9f78
config fix
vineethkuttan Oct 29, 2025
a924d4d
validate override.json
vineethkuttan Oct 29, 2025
ee60158
macOS test fix
vineethkuttan Oct 29, 2025
78fbd61
Merge branch 'main' into integrate3.0
vineethkuttan Oct 29, 2025
4eca118
Merge branch 'main' into integrate3.0
vineethkuttan Oct 30, 2025
6df8c33
lint fix
vineethkuttan Oct 30, 2025
a138bd6
view lint fix
vineethkuttan Oct 30, 2025
f194e9f
Update SnapShot
vineethkuttan Oct 30, 2025
cf6a5d7
lint fix
vineethkuttan Oct 30, 2025
86973c9
Change files
vineethkuttan Oct 30, 2025
4869d9d
view fix
vineethkuttan Oct 31, 2025
a727dd3
Resolution for react and react-native-renderer
vineethkuttan Oct 31, 2025
aad8034
update snapshot
vineethkuttan Oct 31, 2025
ec1f440
Review Changes
vineethkuttan Nov 1, 2025
64d89fc
Undo Viewwin32
vineethkuttan Nov 1, 2025
494c908
Suppress eslint
vineethkuttan Nov 1, 2025
2eff550
lint fix
vineethkuttan Nov 4, 2025
2af3879
lint fix 2.0
vineethkuttan Nov 4, 2025
c3125ba
Lint fix by supressing nonpolymorphic-type-arg
vineethkuttan Nov 4, 2025
5cae587
Merge branch 'main' into integrate3.0
vineethkuttan Nov 4, 2025
4d625c0
Merge branch 'main' of https://github.com/Microsoft/react-native-wind…
vineethkuttan Nov 6, 2025
144cbb7
Removing E2E Paper from pipelines
vineethkuttan Nov 6, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
116 changes: 0 additions & 116 deletions .ado/jobs/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,122 +36,6 @@ parameters:
UseChakra: false

jobs:
- ${{ each config in parameters.buildMatrix }}:
- ${{ if eq(config.BuildEnvironment, parameters.buildEnvironment) }}:
- ${{ each matrix in config.Matrix }}:
- job: E2ETest${{ matrix.Name }}
displayName: E2E Test App ${{ matrix.Name }}

variables: [template: ../variables/windows.yml]
pool: ${{ parameters.AgentPool.Medium }}
timeoutInMinutes: 60 # how long to run the job before automatically cancelling
cancelTimeoutInMinutes: 5 # how much time to give 'run always even if cancelled tasks' before killing them

steps:
- template: ../templates/checkout-shallow.yml

- template: ../templates/prepare-js-env.yml

- template: ../templates/prepare-build-env.yml
parameters:
platform: ${{ matrix.BuildPlatform }}
configuration: Release
buildEnvironment: ${{ config.buildEnvironment }}

- powershell: |
Write-Host "##vso[task.setvariable variable=BuildLogDirectory]$(Build.BinariesDirectory)\${{ matrix.BuildPlatform }}\BuildLogs"
displayName: Set BuildLogDirectory

- task: PowerShell@2
displayName: Start tracing
inputs:
targetType: filePath # filePath | inline
filePath: $(Build.SourcesDirectory)\vnext\Scripts\Tracing\Start-Tracing.ps1

- template: ../templates/set-experimental-feature.yml
parameters:
workingDir: packages/e2e-test-app/windows
feature: UseHermes
${{ if eq(matrix.UseChakra, true) }}:
value: false
${{ else }}:
value: true

- template: ../templates/run-windows-with-certificates.yml
parameters:
buildEnvironment: ${{ parameters.BuildEnvironment }}
buildConfiguration: Release
buildPlatform: ${{ matrix.BuildPlatform }}
buildLogDirectory: $(BuildLogDirectory)
workingDirectory: packages/e2e-test-app
errorOnNuGetLockChanges: false # Sometimes the content hashes of NuGet packages are wrong on VMs, workaround for later .NET versions don't work for UWP C#.

- script: |
echo ##vso[task.setvariable variable=StartedTests]true
displayName: Set StartedTests

- script: yarn e2etest
displayName: yarn e2etest
workingDirectory: packages/e2e-test-app

- script: npx jest --clearCache
displayName: clear jest cache
workingDirectory: packages/e2e-test-app
condition: and(failed(), eq(variables.StartedTests, 'true'))

- script: yarn e2etest -u
displayName: Update snapshots
workingDirectory: packages/e2e-test-app
condition: and(failed(), eq(variables.StartedTests, 'true'))

- task: PowerShell@2
displayName: Stop tracing
inputs:
targetType: filePath # filePath | inline
filePath: $(Build.SourcesDirectory)\vnext\Scripts\Tracing\Stop-Tracing.ps1
arguments: -NoAnalysis -outputFolder $(Build.StagingDirectory)/Tracing
condition: true

- task: PublishBuildArtifacts@1
displayName: Upload traces
inputs:
pathtoPublish: '$(Build.StagingDirectory)/Tracing'
artifactName: 'Traces - $(Agent.JobName)-$(System.JobAttempt)'
condition: true

- task: CopyFiles@2
displayName: Copy snapshots
inputs:
sourceFolder: packages/e2e-test-app/test/__snapshots__
targetFolder: $(Build.StagingDirectory)/snapshots
contents: "**"
condition: failed()

- task: CopyFiles@2
displayName: Copy RNTesterApp artifacts
inputs:
sourceFolder: $(Build.SourcesDirectory)/packages/e2e-test-app/windows/RNTesterApp
targetFolder: $(Build.StagingDirectory)/RNTesterApp
contents: AppPackages\**
condition: failed()

- task: PublishPipelineArtifact@1
displayName: "Publish Artifact: RNTesterApp"
inputs:
artifactName: RNTesterApp-${{ matrix.Name }}-$(System.JobAttempt)
targetPath: $(Build.StagingDirectory)/RNTesterApp
condition: failed()

- task: PublishPipelineArtifact@1
displayName: "Publish Artifact: Snapshots"
inputs:
artifactName: Snapshots - RNTesterApp-${{ matrix.Name }}-$(System.JobAttempt)
targetPath: $(Build.StagingDirectory)/snapshots
condition: failed()

- template: ../templates/upload-build-logs.yml
parameters:
buildLogDirectory: '$(BuildLogDirectory)'
- ${{ each config in parameters.buildMatrix }}:
- ${{ if eq(config.BuildEnvironment, parameters.buildEnvironment) }}:
- ${{ each matrix in config.Matrix }}:
Expand Down
3 changes: 3 additions & 0 deletions .ado/templates/prep-and-pack-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ steps:
artifact: ${{ parameters.artifactName2 }}.${{ slice.platform }}.${{ slice.configuration }}
path: ${{parameters.nugetroot}}/${{ parameters.artifactName2 }}/${{ slice.platform }}/${{ slice.configuration }}

- pwsh: yarn build
displayName: Run yarn build

- task: PowerShell@2
displayName: Copy MSRN Resources to NuGet layout
inputs:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "prerelease",
"comment": "Integrate 0.82.0-nightly-20250806-5936f29d6",
"packageName": "@office-iss/react-native-win32",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Integrate 0.82.0-nightly-20250806-5936f29d6",
"packageName": "@react-native-windows/automation",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Integrate 0.82.0-nightly-20250806-5936f29d6",
"packageName": "@react-native-windows/automation-channel",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Integrate 0.82.0-nightly-20250806-5936f29d6",
"packageName": "@react-native-windows/automation-commands",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "prerelease",
"comment": "Integrate 0.82.0-nightly-20250806-5936f29d6",
"packageName": "@react-native-windows/cli",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "prerelease",
"comment": "Integrate 0.82.0-nightly-20250806-5936f29d6",
"packageName": "@react-native-windows/codegen",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "prerelease",
"comment": "Integrate 0.82.0-nightly-20250806-5936f29d6",
"packageName": "@react-native-windows/find-repo-root",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "prerelease",
"comment": "Integrate 0.82.0-nightly-20250806-5936f29d6",
"packageName": "@react-native-windows/fs",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "prerelease",
"comment": "Integrate 0.82.0-nightly-20250806-5936f29d6",
"packageName": "@react-native-windows/package-utils",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "prerelease",
"comment": "Integrate 0.82.0-nightly-20250806-5936f29d6",
"packageName": "@react-native-windows/telemetry",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Integrate 0.82.0-nightly-20250806-5936f29d6",
"packageName": "@rnw-scripts/create-github-releases",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Integrate 0.82.0-nightly-20250806-5936f29d6",
"packageName": "@rnw-scripts/doxysaurus",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Integrate 0.82.0-nightly-20250806-5936f29d6",
"packageName": "@rnw-scripts/eslint-config",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Integrate 0.82.0-nightly-20250806-5936f29d6",
"packageName": "@rnw-scripts/format-files",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Integrate 0.82.0-nightly-20250806-5936f29d6",
"packageName": "@rnw-scripts/integrate-rn",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Integrate 0.82.0-nightly-20250806-5936f29d6",
"packageName": "@rnw-scripts/just-task",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Integrate 0.82.0-nightly-20250806-5936f29d6",
"packageName": "@rnw-scripts/take-screenshot",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "prerelease",
"comment": "Integrate 0.82.0-nightly-20250806-5936f29d6",
"packageName": "react-native-windows",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Integrate 0.82.0-nightly-20250806-5936f29d6",
"packageName": "react-native-windows-init",
"email": "[email protected]",
"dependentChangeType": "patch"
}
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
"lodash": "^4.17.15"
},
"resolutions": {
"react": "19.1.1",
"convert-source-map": "^2.0.0",
"kind-of": "6.0.3",
"glob-parent": "^5.1.2",
Expand All @@ -70,4 +71,4 @@
"z-schema": "CVE-2021-3765 in validator. z-schema is used by rush which is a dependency of lage so should not be executed in this repo"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
* @format
*/

import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
import codegenNativeCommands from 'react-native/Libraries/Utilities/codegenNativeCommands';
import {codegenNativeComponent} from 'react-native';
import {codegenNativeCommands} from 'react-native';
import type {HostComponent} from 'react-native';
import type {ViewProps} from 'react-native/Libraries/Components/View/ViewPropTypes';
import type {ViewProps} from 'react-native';
import type {Float} from 'react-native/Libraries/Types/CodegenTypes';
import * as React from 'react';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @format
*/

import type {TurboModule} from 'react-native/Libraries/TurboModule/RCTExport';
import type {TurboModule} from 'react-native';

import {TurboModuleRegistry} from 'react-native';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @format
*/

import type {TurboModule} from 'react-native/Libraries/TurboModule/RCTExport';
import type {TurboModule} from 'react-native';
import * as TurboModuleRegistry from 'react-native/Libraries/TurboModule/TurboModuleRegistry';
import type {UnsafeObject} from 'react-native/Libraries/Types/CodegenTypes';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
*/

import type {HostComponent} from 'react-native';
import type {ViewProps} from 'react-native/Libraries/Components/View/ViewPropTypes';
import type {ViewProps} from 'react-native';

import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
import {codegenNativeComponent} from 'react-native';

type NativeProps = $ReadOnly<{
...ViewProps,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
"excludePatterns": [
"src/js/examples-win32/**"
],
"baseVersion": "0.81.0-nightly-20250709-6892dde36",
"baseVersion": "0.82.0-nightly-20250806-5936f29d6",
"overrides": [
{
"type": "patch",
"file": "src/js/components/ListExampleShared.win32.js",
"baseFile": "packages/rn-tester/js/components/ListExampleShared.js",
"baseHash": "885ca16a7587f79d6404679ee1b1309d3844afe9"
"baseHash": "5eddedbaff0a785757713beb25750aac98e40fcb"
},
{
"type": "patch",
Expand Down Expand Up @@ -42,7 +42,7 @@
"type": "derived",
"file": "src/js/utils/RNTesterList.win32.js",
"baseFile": "packages/rn-tester/js/utils/RNTesterList.android.js",
"baseHash": "c89e65c8063b338c86ec9db173b05b96c589f69e"
"baseHash": "8cd219abae140e98f9578432954fc9ef62421308"
}
]
}
6 changes: 3 additions & 3 deletions packages/@office-iss/react-native-win32-tester/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
"validate-overrides": "react-native-platform-override validate"
},
"dependencies": {
"@react-native/tester": "0.80.0-main",
"@react-native/tester": "0.82.0-main",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"flow-enums-runtime": "^0.0.6"
},
"peerDependencies": {
"@office-iss/react-native-win32": "^0.0.0-canary.299",
"react": "19.1.0",
"react-native": "0.81.0-nightly-20250709-6892dde36"
"react-native": "0.82.0-nightly-20250806-5936f29d6"
},
"devDependencies": {
"@office-iss/react-native-win32": "^0.0.0-canary.299",
Expand All @@ -30,7 +30,7 @@
"@types/node": "^22.14.0",
"eslint": "^8.19.0",
"just-scripts": "^1.3.3",
"react-native": "0.81.0-nightly-20250709-6892dde36",
"react-native": "0.82.0-nightly-20250806-5936f29d6",
"react-native-platform-override": "^1.9.59",
"typescript": "5.0.4"
},
Expand Down
Loading
Loading