Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Build.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
<PackageReference Include="Fake.JavaScript.Npm" Version="6.1.4" />
<PackageReference Include="Fake.Tools.Git" Version="6.1.4" />
<PackageReference Include="Partas.GitNet" Version="3.0.0" />
<PackageReference Include="FSharp.Core" Version="10.0.100" />
<PackageReference Update="FSharp.Core" Version="10.0.100" />
<PackageReference Include="FSharp.Core" Version="10.1.203" />
<PackageReference Update="FSharp.Core" Version="10.1.203" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="src\ElectronApi.Json.Parser\ElectronApi.Json.Parser.fsproj" />
Expand Down
356 changes: 206 additions & 150 deletions RELEASE_NOTES.md

Large diffs are not rendered by default.

14 changes: 13 additions & 1 deletion ci/Build.fs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,19 @@ Target.create Ops.push (fun _ ->
Target.deactivateFinal Ops.gitnet)

Target.create Ops.generateApiDocs (ignore >> ApiDocs.validateDir >> ApiDocs.build)
Target.create Ops.setupTest (fun _ -> Electron.installTests Args.npmCi)
Target.create Ops.setupTest (fun _ ->
let tryRun (withNpmCi: bool) =
try Electron.installTests withNpmCi
ValueNone
with e -> ValueSome e

// If the CI fails because of a lock file error, then we'll do a standard install first
// to update the lock file, try again, and then fallback again to a clean install if that also fails.
tryRun Args.npmCi
|> ValueOption.bind (fun _ -> tryRun false)
|> ValueOption.bind (fun _ -> tryRun true)
|> ValueOption.iter raise
)

Target.create Ops.test
<| function
Expand Down
2 changes: 1 addition & 1 deletion ci/cache.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"createdAt":"2026-02-19T05:27:01Z","isLatest":true,"isPrerelease":false,"tagName":"v40.6.0"}
{"createdAt":"2026-05-19T16:00:20Z","isLatest":true,"isPrerelease":false,"tagName":"v42.2.0"}
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "10.0.100",
"version": "10.0.203",
"rollForward": "latestMinor",
"allowPrerelease": true
}
Expand Down
4 changes: 2 additions & 2 deletions src/Fable.Electron.Forge/Fable.Electron.Forge.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
<Authors>Shayan Habibi and Contributors</Authors>
<Copyright>Copyright (c) 2025 Shayan Habibi and Fable-Hub contributors</Copyright>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageVersion>8.1.0</PackageVersion>
<Version>8.1.0</Version>
<PackageVersion>8.3.0</PackageVersion>
<Version>8.3.0</Version>
<GitNetInitialVersion>7.0.0</GitNetInitialVersion>
<PackageIcon>feleico-dark.png</PackageIcon>

Expand Down
4 changes: 2 additions & 2 deletions src/Fable.Electron.Remoting/Fable.Electron.Remoting.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
<PackageTags>Fable;F#;FSharp;Electron;Bindings;Native;JavaScript;JS;Remoting;fable-javascript</PackageTags>
<Authors>Shayan Habibi and Contributors</Authors>
<Copyright>Copyright (c) 2025 Shayan Habibi and Fable-Hub contributors</Copyright>
<PackageVersion>7.1.0</PackageVersion>
<Version>7.1.0</Version>
<PackageVersion>7.3.0</PackageVersion>
<Version>7.3.0</Version>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GitNetInitialVersion>0.1.0</GitNetInitialVersion>
<PackageIcon>feleico-dark.png</PackageIcon>
Expand Down
6 changes: 3 additions & 3 deletions src/Fable.Electron/Fable.Electron.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
<Authors>Shayan Habibi and Contributors</Authors>
<Copyright>Copyright (c) 2025 Shayan Habibi and Fable-Hub contributors</Copyright>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Version>40.6.0</Version>
<PackageVersion>40.6.0</PackageVersion>
<ElectronVersion>40.6.0</ElectronVersion>
<Version>42.2.0</Version>
<PackageVersion>42.2.0</PackageVersion>
<ElectronVersion>42.2.0</ElectronVersion>
<PackageIcon>feleico-dark.png</PackageIcon>
</PropertyGroup>

Expand Down
1,313 changes: 1,123 additions & 190 deletions src/Fable.Electron/Program.fs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion tests/Build.Tests/Build.Tests.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<PackageReference Include="Expecto" Version="10.*"/>
<PackageReference Include="YoloDev.Expecto.TestSdk" Version="0.15.5" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
<PackageReference Update="FSharp.Core" Version="10.0.100" />
<PackageReference Update="FSharp.Core" Version="10.1.203" />
</ItemGroup>

<ItemGroup>
Expand Down