Skip to content

Commit 83b5463

Browse files
committed
Merge branch 'YBTopaz8-Testt'
2 parents 3d6df63 + ec234eb commit 83b5463

File tree

179 files changed

+13085
-10817
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

179 files changed

+13085
-10817
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,22 @@ on:
88
paths-ignore:
99
- '**/**.md'
1010
jobs:
11-
check-ci:
11+
check-dotnet:
12+
strategy:
13+
matrix:
14+
DOTNET_VERSION: ['6.0', '7.0', '8.0', '9.0']
15+
fail-fast: false
16+
name: .NET ${{ matrix.DOTNET_VERSION }}
1217
runs-on: windows-latest
1318
steps:
1419
- name: Checkout repository
1520
uses: actions/checkout@v4
1621
- name: Set up .NET SDK
1722
uses: actions/setup-dotnet@v4
1823
with:
19-
dotnet-version: '6.x'
24+
dotnet-version: ${{ matrix.DOTNET_VERSION }}
2025
- name: Cache NuGet packages
21-
uses: actions/cache@v2
26+
uses: actions/cache@v4
2227
with:
2328
path: |
2429
~/.nuget/packages
@@ -36,7 +41,7 @@ jobs:
3641
run: dotnet build Parse.sln --configuration Debug --no-restore
3742
- name: Run tests with coverage
3843
run: |
39-
OpenCover.Console.exe -target:dotnet.exe -targetargs:"test --configuration Debug --test-adapter-path:. --logger:console /p:DebugType=full .\Parse.Tests\Parse.Tests.csproj" -filter:"+[Parse*]* -[Parse.Tests*]*" -oldstyle -output:parse_sdk_dotnet_coverage.xml -register:user
44+
OpenCover.Console.exe -target:dotnet.exe -targetargs:"test --framework net${{ matrix.DOTNET_VERSION }} --configuration Debug --test-adapter-path:. --logger:console /p:DebugType=full .\Parse.Tests\Parse.Tests.csproj" -filter:"+[Parse*]* -[Parse.Tests*]*" -oldstyle -output:parse_sdk_dotnet_coverage.xml -register:user
4045
- name: Upload code coverage
4146
uses: codecov/codecov-action@v4
4247
with:

CHANGELOG.md

Lines changed: 33 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,37 @@
1-
## [0.0.1](https://github.com/YBTopaz8/parse-live-query-dotnet) (2024-05-24)
1+
# [4.0.0](https://github.com/parse-community/Parse-SDK-dotNET/compare/3.0.2...4.0.0) (2024-12-19)
2+
3+
4+
### Features
5+
6+
* Upgrade target framework from NET Standard 2.0 to .NET 6.0 ([#393](https://github.com/parse-community/Parse-SDK-dotNET/issues/393)) ([1d4ab13](https://github.com/parse-community/Parse-SDK-dotNET/commit/1d4ab1339a8b49a6ac406c66bb697fe17c6726b5))
7+
8+
9+
### BREAKING CHANGES
10+
11+
* This release requires .NET 6.0 or later and removes compatibility with NET Standard 2.0; Xamarin developers should migrate to .NET MAUI to use this version of the Parse SDK; Unity developers should use the previous SDK version until Unity supports .NET. ([1d4ab13](1d4ab13))
12+
13+
## [3.0.2](https://github.com/parse-community/Parse-SDK-dotNET/compare/3.0.1...3.0.2) (2024-05-24)
214

315

416
### Initial Release!
517

6-
* Initial release with support for .net MAUI apps in .net 9.
18+
* Cannot access objects without user login ([#368](https://github.com/parse-community/Parse-SDK-dotNET/issues/368)) ([aa278df](https://github.com/parse-community/Parse-SDK-dotNET/commit/aa278df8147516a2ff8a95e1fa0f5f7972c63cc4))
19+
20+
## [3.0.1](https://github.com/parse-community/Parse-SDK-dotNET/compare/3.0.0...3.0.1) (2024-05-24)
21+
22+
23+
### Bug Fixes
24+
25+
* SDK crash on conversion of double type range values to long type ([#342](https://github.com/parse-community/Parse-SDK-dotNET/issues/342)) ([816ba02](https://github.com/parse-community/Parse-SDK-dotNET/commit/816ba02fa3765e01825da741cedb377eb53c97f6))
26+
27+
# [3.0.0](https://github.com/parse-community/Parse-SDK-dotNET/compare/2.0.0...3.0.0) (2024-05-23)
28+
29+
30+
### Features
31+
32+
* Change license to Apache 2.0 ([#374](https://github.com/parse-community/Parse-SDK-dotNET/issues/374)) ([6887aff](https://github.com/parse-community/Parse-SDK-dotNET/commit/6887affb8f30683d47fdfaf00ccf8207576d3477))
33+
34+
35+
### BREAKING CHANGES
36+
37+
* This changes the license to Apache 2.0. This release may contain breaking changes which are not listed here, so please make sure to test your app carefully when upgrading. ([6887aff](6887aff))

0 commit comments

Comments
 (0)