Skip to content

Commit

Permalink
🆙 8.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
volkanceylan committed Oct 16, 2024
1 parent 7a76c31 commit 6182466
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## 8.7.1 (2024-10-16)

### Features

- ComboboxEditor tries to preserve order during initSelection for async / sync sources.
- Add an optional hook for fetchScriptData that allows intercepting script data loading by fetch / xhr (sync) primarily for testing purposes.
- Use queueMicrotask for side effect import of referenced types as it may cause issues for circular deps (noticed with swc based jest tests)
- Allow passing callback and fail arguments to loadByIdAndOpenDialog
- Added a Html.ModulePageInit extension that generates pageInit script and also auto includes related css if exists
- Added a Html.AutoIncludeModuleCss extension to auto include es module's related css file generated by esbuild into pages, e.g. GridPage etc.
- Added layout option to grid/panel page extensions
- Make use of esbuild's CSS import / bundling functionality in samples like Northwind, split page specific CSS rules into their own XYZPage.css file imported by XYZPage.ts
- Also delete extra .css and .css.map files that maybe generated by esbuild in TSBuild clean plugin
- Updated Microsoft.Extensions.Caching.Memory to 8.0.1, System.Text.Json to 8.0.5, Microsoft.TypeScript.MSBuild to 5.6.2, FluentMigrator to 6.2.0, MailKit to 4.8.0, Mono.Cecil to 0.11.6, Npgsql to 8.0.4, Selenium.WebDriver to 4.25.0, xunit to 2.9.2
- Updated @swc/core to 1.7.26, typescript to 5.6.2, dompurify to 3.1.7, preact to 10.24.2, tsbuild to 8.7.4

## 8.7.0 (2024-10-07)

### Features
Expand Down
2 changes: 1 addition & 1 deletion build/Package.Version.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<Version>8.7.0</Version>
<Version>8.7.1</Version>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion packages/corelib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@serenity-is/corelib",
"version": "8.7.0",
"version": "8.7.1",
"author": "Serenity (https://serenity.is)",
"bugs": "https://github.com/serenity-is/serenity/issues",
"description": "Serenity Core Library",
Expand Down
4 changes: 2 additions & 2 deletions src/Serenity.Net.CodeGenerator/Commands/DoctorCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ void CheckTSBuildVersion(PackageJson packageJson, Version serenityVersion)
}

var recommendedVersion = RecommendedTSBuildVersion.LastOrDefault(x =>
serenityVersion >= x.Item1)?.Item2;
serenityVersion >= x.Item1).Item2;

if (version != null && version < recommendedVersion)
{
Expand Down Expand Up @@ -395,7 +395,7 @@ void CheckJsxDomVersion(PackageJson packageJson, Version serenityVersion)
}

var recommendedVersion = RecommendedJsxDomVersion.LastOrDefault(x =>
serenityVersion >= x.Item1)?.Item2;
serenityVersion >= x.Item1).Item2;

if (version != null && version < recommendedVersion)
{
Expand Down

0 comments on commit 6182466

Please sign in to comment.