Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: chickensoft-games/Introspection
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.1.0
Choose a base ref
...
head repository: chickensoft-games/Introspection
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2.2.0
Choose a head ref
  • 6 commits
  • 7 files changed
  • 2 contributors

Commits on Jan 7, 2025

  1. Downgrade to latest net8

    xodial committed Jan 7, 2025
    Copy the full SHA
    0770b58 View commit details
  2. Copy the full SHA
    9084122 View commit details

Commits on Jan 8, 2025

  1. fix: also pin CSharp analyzer

    xodial committed Jan 8, 2025
    Copy the full SHA
    02a31a7 View commit details
  2. Copy the full SHA
    05f4e87 View commit details
  3. chore: copyrights don't work like that

    xodial committed Jan 8, 2025
    Copy the full SHA
    8ba7dc5 View commit details
  4. Merge pull request #18 from xodial/xodial/net8-downgrade

    Downgrade to latest net8 to stay synced with GodotSharp
    jolexxa authored Jan 8, 2025
    Copy the full SHA
    9f65c0e View commit details
2 changes: 0 additions & 2 deletions .github/workflows/auto_release.yaml
Original file line number Diff line number Diff line change
@@ -33,8 +33,6 @@ jobs:
- name: 🧾 Checkout
uses: actions/checkout@v4
with:
# Use your GitHub Personal Access Token variable here.
token: ${{ secrets.GH_BASIC }}
lfs: true
submodules: "recursive"

1 change: 0 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -35,7 +35,6 @@ jobs:
- name: 🧾 Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.GH_BASIC }}
lfs: true
submodules: "recursive"
fetch-depth: 0 # So we can get all tags.
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.11.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
Original file line number Diff line number Diff line change
@@ -12,6 +12,7 @@
<OutputPath>./nupkg</OutputPath>
<IsRoslynComponent>true</IsRoslynComponent>
<AnalyzerLanguage>cs</AnalyzerLanguage>
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
<DebugType>portable</DebugType>

<Title>Introspection</Title>
@@ -43,7 +44,7 @@

<!-- The following libraries include the source generator interfaces and types we need -->
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.11.0" PrivateAssets="all" />
<PackageReference Include="IsExternalInit" Version="1.0.3" PrivateAssets="all">
</PackageReference>
</ItemGroup>
2 changes: 1 addition & 1 deletion Chickensoft.Introspection/Chickensoft.Introspection.csproj
Original file line number Diff line number Diff line change
@@ -46,6 +46,6 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Chickensoft.Collections" Version="1.6.0" />
<PackageReference Include="Chickensoft.Collections" Version="1.12.5" />
</ItemGroup>
</Project>
4 changes: 2 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"sdk": {
"version": "9.0.100",
"version": "8.0.404",
"rollForward": "latestMinor"
},
"msbuild-sdks": {
"Godot.NET.Sdk": "4.2.2"
}
}
}
14 changes: 10 additions & 4 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -10,15 +10,21 @@
"groupName": "all dependencies",
"groupSlug": "all-deps",
"automerge": true,
"matchPackageNames":
[
"matchPackageNames": [
"*"
]
},
{
"matchPackageNames": [
"dotnet-sdk{/,}**"
]
"dotnet-sdk"
],
"allowedVersions": "<9"
},
{
"matchPackageNames": [
"Microsoft.CodeAnalysis.CSharp"
],
"allowedVersions": "<4.12.0"
},
{
"matchPackageNames": [