Skip to content

Commit 4c2992a

Browse files
committed
Build fixes
1 parent f920b56 commit 4c2992a

File tree

3 files changed

+16
-10
lines changed

3 files changed

+16
-10
lines changed

Diff for: appveyor.yml

+10-7
Original file line numberDiff line numberDiff line change
@@ -19,24 +19,27 @@ environment:
1919
Appveyor: true
2020
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
2121
# Postgres
22-
POSTGRES_PATH: C:\Program Files\PostgreSQL\9.6
22+
POSTGRES_PATH: C:\Program Files\PostgreSQL\16
2323
PGUSER: postgres
2424
PGPASSWORD: Password12!
2525
POSTGRES_ENV_POSTGRES_USER: postgres
2626
POSTGRES_ENV_POSTGRES_PASSWORD: Password12!
2727
POSTGRES_ENV_POSTGRES_DB: test
2828
PostgreSqlConnectionString: Server=localhost;Port=5432;Database=test;User Id=postgres;Password=Password12!;
2929
# MySQL
30-
MYSQL_PATH: C:\Program Files\MySql\MySQL Server 5.7
30+
MYSQL_PATH: C:\Program Files\MySQL\MySQL Server 8.0
3131
MYSQL_PWD: Password12!
3232
MYSQL_ENV_MYSQL_USER: root
3333
MYSQL_ENV_MYSQL_PASSWORD: Password12!
3434
MYSQL_ENV_MYSQL_DATABASE: test
3535
MySQLConnectionString: server=localhost;uid=root;pwd=Password12!;database=test;Allow User Variables=true
36-
services:
37-
- mssql2019
38-
- mysql
39-
- postgresql
36+
37+
init:
38+
- git config --global core.autocrlf input
39+
- SET PATH=%POSTGRES_PATH%\bin;%MYSQL_PATH%\bin;%PATH%
40+
- net start MSSQL$SQL2019
41+
- net start postgresql-x64-16
42+
- ps: Start-Service MySQL80
4043

4144
nuget:
4245
disable_publish_on_pr: true
@@ -45,7 +48,7 @@ build_script:
4548
# Postgres
4649
- createdb test
4750
# MySQL
48-
- mysql -e "create database test;" --user=root
51+
- '"C:\Program Files\MySQL\MySQL Server 8.0\bin\mysql" -e "create database test;" --user=root'
4952
- ps: .\build.ps1 -PullRequestNumber "$env:APPVEYOR_PULL_REQUEST_NUMBER" -CreatePackages $true
5053

5154
test: off

Diff for: docs/Releases.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,15 @@ This page tracks major changes included in any update starting with version 4.0.
88
#### Unreleased
99
- **New**:
1010
- Support for strict CSP (dynamic inline styles removed) ([#634](https://github.com/MiniProfiler/dotnet/pull/634) - thanks [rwasef1830](https://github.com/rwasef1830))
11-
- Adds `net8.0` build with no `Newtonsoft.Json` dependency ([#641](https://github.com/MiniProfiler/dotnet/pull/641))
11+
- Moved .NET Core to `net8.0` with no `Newtonsoft.Json` dependency ([#641](https://github.com/MiniProfiler/dotnet/pull/641) & [#679](https://github.com/MiniProfiler/dotnet/pull/679))
1212
- **Fixes/Changes**:
1313
- Upgraded MongoDB driver, allowing automatic index creation and profiler expiration ([#613](https://github.com/MiniProfiler/dotnet/pull/613) - thanks [IanKemp](https://github.com/IanKemp))
1414
- Fixed [#652](https://github.com/MiniProfiler/dotnet/issues/652): Respect `PopupDecimalPlaces` in all cases ([#655](https://github.com/MiniProfiler/dotnet/pull/655))
1515
- **Removed**:
16-
- Support for rarely used `MiniProfiler.EFC7`, `MiniProfiler.Providers.RavenDB`, and `MiniProfiler.Providers.SqlServerCe` providers
16+
- Support for rarely used providers ([#679](https://github.com/MiniProfiler/dotnet/pull/679))
17+
- `MiniProfiler.EFC7`
18+
- `MiniProfiler.Providers.RavenDB`
19+
- `MiniProfiler.Providers.SqlServerCe`
1720

1821
#### Version 4.3.8
1922
- **New**:

Diff for: src/MiniProfiler.Shared/MiniProfiler.Shared.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<ItemGroup>
1515
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="2.0.0" />
1616

17-
<PackageReference Include="BuildBundlerMinifier2022" Version="2.9.11" PrivateAssets="all" />
17+
<PackageReference Include="BuildBundlerMinifier" Version="3.2.449" PrivateAssets="all" />
1818
<PackageReference Include="Microsoft.TypeScript.MSBuild" Version="5.7.1" PrivateAssets="all" />
1919
</ItemGroup>
2020

0 commit comments

Comments
 (0)