Skip to content
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

🔖 Bump version to 0.9.0 #207

Merged
merged 6 commits into from
Dec 11, 2024
Merged
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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 0.9.0 - 2024-12-11

No change - new release to run the CI again after disabling CodeQL which fails with net9.0

## 0.8.15 - 2024-12-11

No change - new release to run the CI again after disabling CodeQL which fails with net9.0

## 0.8.15 - 2024-12-11

### ⬆️ Upgrade dependencies

- Add dotnet 9 target

## 0.8.14 - 2024-11-14

### ⚡️ Improve performance
Expand Down
4 changes: 2 additions & 2 deletions CodeMirror6/CodeMirror6.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<AssemblyName>GaelJ.BlazorCodeMirror6</AssemblyName>
<IsPackable>true</IsPackable>
<PackageId>GaelJ.BlazorCodeMirror6</PackageId>
<Version>0.8.14</Version>
<Version>0.9.0</Version>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down Expand Up @@ -68,4 +68,4 @@
<None Include="..\icon.png" Pack="true" PackagePath="\" />
<None Include="..\codemirror.svg" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>
</Project>
4 changes: 2 additions & 2 deletions Examples.BlazorServer/Examples.BlazorServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<ImplicitUsings>enable</ImplicitUsings>
<Version>0.8.14</Version>
<Version>0.9.0</Version>
</PropertyGroup>
<ItemGroup>
<SupportedPlatform Include="browser" />
Expand All @@ -16,4 +16,4 @@
<ProjectReference Include="..\CodeMirror6\CodeMirror6.csproj" />
<ProjectReference Include="..\Examples.Common\Examples.Common.csproj" />
</ItemGroup>
</Project>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>false</IsPackable>
<Version>0.8.14</Version>
<Version>0.9.0</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Sentry.AspNetCore" Version="4.13.0" />
Expand All @@ -13,4 +13,4 @@
<ProjectReference Include="..\CodeMirror6\CodeMirror6.csproj" />
<ProjectReference Include="..\Examples.Common\Examples.Common.csproj" />
</ItemGroup>
</Project>
</Project>
4 changes: 2 additions & 2 deletions Examples.BlazorWasm/Examples.BlazorWasm.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>false</IsPackable>
<Version>0.8.14</Version>
<Version>0.9.0</Version>
</PropertyGroup>
<ItemGroup>
<SupportedPlatform Include="browser-wasm" />
Expand All @@ -17,4 +17,4 @@
<ProjectReference Include="..\CodeMirror6\CodeMirror6.csproj" />
<ProjectReference Include="..\Examples.Common\Examples.Common.csproj" />
</ItemGroup>
</Project>
</Project>
4 changes: 2 additions & 2 deletions Examples.Common/Examples.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<Version>0.8.14</Version>
<Version>0.9.0</Version>
</PropertyGroup>
<ItemGroup>
<SupportedPlatform Include="browser" />
Expand All @@ -18,4 +18,4 @@
<ItemGroup>
<ProjectReference Include="..\CodeMirror6\CodeMirror6.csproj" />
</ItemGroup>
</Project>
</Project>
18 changes: 1 addition & 17 deletions NEW_CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1 @@
### ⚡️ Improve performance

- Persist style tag created by CM6 after reloads, without needing any HeadOutlet in Blazor Server interactive (#187), as described in https://learn.microsoft.com/en-us/aspnet/core/blazor/javascript-interoperability/static-server-rendering?view=aspnetcore-8.0
- Dispose the JS object if the parent div does not exist ; robustify dispose method

### 🐛 Fix a bug

- Fix example 3 in server interactive mode
- Fix null refs

### 💥 Introduce breaking changes

- Make parameter IsWASM obsolete: it can be automatically inferred from `OperatingSystem.IsBrowser()`

### 📝 Add or update documentation

- Add missing example3 page
No change - new release to run the CI again after disabling CodeQL which fails with net9.0
Loading