Skip to content
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
2 changes: 1 addition & 1 deletion nanoFramework.System.Net.Sockets.UdpClient.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<tags>nanoFramework C# csharp netmf netnf Udp</tags>
<dependencies>
<dependency id="nanoFramework.CoreLibrary" version="1.17.11" />
<dependency id="nanoFramework.System.Net" version="1.11.46" />
<dependency id="nanoFramework.System.Net" version="1.11.47" />
</dependencies>
</metadata>
<files>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
<Reference Include="System.IO.Streams, Version=1.1.96.0, Culture=neutral, PublicKeyToken=c07d481e9758c731">
<HintPath>..\packages\nanoFramework.System.IO.Streams.1.1.96\lib\System.IO.Streams.dll</HintPath>
</Reference>
<Reference Include="System.Net, Version=1.11.46.0, Culture=neutral, PublicKeyToken=c07d481e9758c731">
<HintPath>..\packages\nanoFramework.System.Net.1.11.46\lib\System.Net.dll</HintPath>
<Reference Include="System.Net, Version=1.11.47.0, Culture=neutral, PublicKeyToken=c07d481e9758c731">
<HintPath>..\packages\nanoFramework.System.Net.1.11.47\lib\System.Net.dll</HintPath>
</Reference>
<Reference Include="System.Threading, Version=1.1.52.34401, Culture=neutral, PublicKeyToken=c07d481e9758c731">
<HintPath>..\packages\nanoFramework.System.Threading.1.1.52\lib\System.Threading.dll</HintPath>
Expand Down
2 changes: 1 addition & 1 deletion nanoFramework.System.Net.Sockets.UdpClient/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package id="nanoFramework.CoreLibrary" version="1.17.11" targetFramework="netnano1.0" />
<package id="nanoFramework.Runtime.Events" version="1.11.32" targetFramework="netnano1.0" />
<package id="nanoFramework.System.IO.Streams" version="1.1.96" targetFramework="netnano1.0" />
<package id="nanoFramework.System.Net" version="1.11.46" targetFramework="netnano1.0" />
<package id="nanoFramework.System.Net" version="1.11.47" targetFramework="netnano1.0" />
<package id="nanoFramework.System.Text" version="1.3.42" targetFramework="netnano1.0" />
<package id="nanoFramework.System.Threading" version="1.1.52" targetFramework="netnano1.0" />
<package id="Nerdbank.GitVersioning" version="3.9.50" targetFramework="netnano1.0" developmentDependency="true" />
Expand Down
6 changes: 3 additions & 3 deletions nanoFramework.System.Net.Sockets.UdpClient/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
},
"nanoFramework.System.Net": {
"type": "Direct",
"requested": "[1.11.46, 1.11.46]",
"resolved": "1.11.46",
"contentHash": "cowzYj1VZHdo2Ey+AmIt3u8+rXQHu+q7KuQq1C46SKhSZoVW5PTMaLOvOZ2sXN1ySiHTLqSebRJEKomcA+XnxA=="
"requested": "[1.11.47, 1.11.47]",
"resolved": "1.11.47",
"contentHash": "fPjTPfaqDiirh9AysBLlEX5/KbaOliSxyspwpBTcM5OupCNjVXz0aZ9fOWex+BMjZei6GpG74kP8Z4ml912pcw=="
Comment on lines +25 to +27
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

Verify the package version and integrity hash.

The dependency version bump and contentHash update appear consistent. However, verify that version 1.11.47 is a legitimate release and that the contentHash correctly matches the package.

To confirm the contentHash matches the official package, you may also run:


🏁 Script executed:

#!/bin/bash
# Verify the nanoFramework.System.Net 1.11.47 package details from NuGet
curl -s https://api.nuget.org/v3-flatcontainer/nanoframework.system.net/1.11.47/nanoframework.system.net.1.11.47.nupkg.sha512

Length of output: 213


🌐 Web query:

nanoFramework.System.Net 1.11.47 release NuGet

💡 Result:

I couldn't find nanoFramework.System.Net version 1.11.47 on NuGet. The latest published version on nuget.org is 1.11.46 (published 2025-11-13). [1][2]

Sources:

  • nuget.org package page (shows v1.11.46 as latest). [1]
  • .NET nanoFramework stable releases announcement. [2]

Revert to nanoFramework.System.Net version 1.11.46 — version 1.11.47 does not exist on NuGet.

Version 1.11.47 is not published on NuGet; the latest published version is 1.11.46 (released 2025-11-13). The lock file references a non-existent package, which will prevent package restoration. Update lines 25-27 to restore the version to 1.11.46 or wait for 1.11.47 to be officially released before committing this change.

🤖 Prompt for AI Agents
In nanoFramework.System.Net.Sockets.UdpClient/packages.lock.json around lines 25
to 27 the lockfile references nanoFramework.System.Net version 1.11.47 which
does not exist on NuGet; update the "requested" and "resolved" entries from
1.11.47 to 1.11.46 (and adjust contentHash if necessary by regenerating the
lockfile via a restore) so the lockfile matches the published package version,
or revert this change and wait for 1.11.47 to be published before committing.

},
"nanoFramework.System.Text": {
"type": "Direct",
Expand Down
Loading