Skip to content

Commit d3f1157

Browse files
committed
Merge branch 'develop' into wind/fix_ci_failures
2 parents 3053525 + 4dde7be commit d3f1157

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

.yamato/wrench/wrench_config.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,15 @@
1919
"coverageCommands": [
2020
"generateAdditionalMetrics;generateHtmlReport;assemblyFilters:ASSEMBLY_NAME;pathReplacePatterns:@*,,**/PackageCache/,;sourcePaths:YAMATO_SOURCE_DIR/Packages;"
2121
],
22-
"dependantsToIgnoreInPreviewApv": {}
22+
"dependantsToIgnoreInPreviewApv": {
23+
"6000.3": [
24+
"com.unity.polyspatial",
25+
"com.unity.polyspatial.extensions",
26+
"com.unity.polyspatial.visionos",
27+
"com.unity.polyspatial.xr",
28+
"com.unity.xr.visionos"
29+
]
30+
}
2331
}
2432
},
2533
"releasing_packages": [

Packages/com.unity.inputsystem/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
88
Due to package verification, the latest version below is the unpublished version and the date is meaningless.
99
however, it has to be formatted properly to pass verification tests.
1010

11-
## [Unreleased] - yyyy-mm-dd
11+
## [1.14.2] - 2025-08-05
1212

1313
### Fixed
1414
- Fixed an issue where using Pen devices on Android tablets would result in double clicks for UI interactions. [ISXB-1456](https://issuetracker.unity3d.com/product/unity/issues/guid/ISXB-1456)

Tools/CI/Settings/InputSystemSettings.cs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using RecipeEngine.Modules.Wrench.Models;
55
using RecipeEngine.Modules.Wrench.Settings;
66
using RecipeEngine.Platforms;
7+
using RecipeEngine.Unity.Abstractions.Editors;
78

89
namespace InputSystem.Cookbook.Settings;
910

@@ -65,6 +66,22 @@ public InputSystemSettings()
6566
// change default images as per Dictionary above.
6667
Wrench.Packages["com.unity.inputsystem"].EditorPlatforms = ImageOverrides;
6768

69+
// ignore packages listed below in PreviewAPV
70+
Wrench.Packages["com.unity.inputsystem"].DependantsToIgnoreInPreviewApv = new Dictionary<Editor, ISet<string>>()
71+
{
72+
{
73+
new Editor("6000.3", ""),
74+
new HashSet<string>()
75+
{
76+
"com.unity.polyspatial",
77+
"com.unity.polyspatial.visionos",
78+
"com.unity.polyspatial.extensions",
79+
"com.unity.polyspatial.xr",
80+
"com.unity.xr.visionos"
81+
}
82+
}
83+
};
84+
6885
Wrench.PvpProfilesToCheck = new HashSet<string>() { "supported" };
6986
}
7087

0 commit comments

Comments
 (0)