-
Notifications
You must be signed in to change notification settings - Fork 10
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
2.0.0 Release #36
2.0.0 Release #36
Commits on Aug 20, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 887a593 - Browse repository at this point
Copy the full SHA 887a593View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0c95a68 - Browse repository at this point
Copy the full SHA 0c95a68View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6749938 - Browse repository at this point
Copy the full SHA 6749938View commit details -
Configuration menu - View commit details
-
Copy full SHA for 34e190f - Browse repository at this point
Copy the full SHA 34e190fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8441d19 - Browse repository at this point
Copy the full SHA 8441d19View commit details -
Configuration menu - View commit details
-
Copy full SHA for 665c481 - Browse repository at this point
Copy the full SHA 665c481View commit details -
Configuration menu - View commit details
-
Copy full SHA for 610026b - Browse repository at this point
Copy the full SHA 610026bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7544f5b - Browse repository at this point
Copy the full SHA 7544f5bView commit details
Commits on Aug 23, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 7613996 - Browse repository at this point
Copy the full SHA 7613996View commit details -
Configuration menu - View commit details
-
Copy full SHA for b6d5f34 - Browse repository at this point
Copy the full SHA b6d5f34View commit details
Commits on Dec 24, 2021
-
Configuration menu - View commit details
-
Copy full SHA for b092ce4 - Browse repository at this point
Copy the full SHA b092ce4View commit details -
Merge pull request #25 from liammclennan/remove-gitter
removed gitter link
Configuration menu - View commit details
-
Copy full SHA for 240a971 - Browse repository at this point
Copy the full SHA 240a971View commit details
Commits on Apr 19, 2023
-
retargets piggy at net6.0 and upgrades .nupkgs
Tod Thomson committedApr 19, 2023 Configuration menu - View commit details
-
Copy full SHA for 9687604 - Browse repository at this point
Copy the full SHA 9687604View commit details -
Tod Thomson committed
Apr 19, 2023 Configuration menu - View commit details
-
Copy full SHA for b406900 - Browse repository at this point
Copy the full SHA b406900View commit details
Commits on Apr 20, 2023
-
removes custom Npgsql logging classes...
- use standard mapping of Microsoft.Extensions.Logging - to Serilog (via SerilogLoggerFactory) from Serilog.Extensions.Logging - tested outputting log messages at INF level ok
Tod Thomson committedApr 20, 2023 Configuration menu - View commit details
-
Copy full SHA for cbb8bd5 - Browse repository at this point
Copy the full SHA cbb8bd5View commit details -
Tod Thomson committed
Apr 20, 2023 Configuration menu - View commit details
-
Copy full SHA for d0d7a11 - Browse repository at this point
Copy the full SHA d0d7a11View commit details -
set build image to Visual Studio 2022 (net7.0)
Tod Thomson committedApr 20, 2023 Configuration menu - View commit details
-
Copy full SHA for 1787601 - Browse repository at this point
Copy the full SHA 1787601View commit details -
removes autofac module reflection and adds tests
Tod Thomson committedApr 20, 2023 Configuration menu - View commit details
-
Copy full SHA for 33bc3ff - Browse repository at this point
Copy the full SHA 33bc3ffView commit details -
net7.0 changes trim behavior...
- to <TrimMode>full</TrimMode> by default - add <TrimMode>partial</TrimMode> to get old net5.0 / net6.0 behaviour - and <SuppressTrimAnalysisWarnings>true</SuppressTrimAnalysisWarnings> - to only suppress IL2104 warnings - e.g. error IL2104: Assembly 'Autofac' produced trim warnings - which otherwise would be treated as errors - as we set <TreatWarningsAsErrors>true</TreatWarningsAsErrors> - see: https://stackoverflow.com/questions/74151256/c-sharp-publishtrimmed-how-to-deal-with-il2104-trim-warnings-in-dependencies - "you can suppress these warnings, but essentially, .. - there's no way for you to solve the problem".
Tod Thomson committedApr 20, 2023 Configuration menu - View commit details
-
Copy full SHA for af69c68 - Browse repository at this point
Copy the full SHA af69c68View commit details -
wip => needs tests (a job for tomorrow)
Tod Thomson committedApr 20, 2023 Configuration menu - View commit details
-
Copy full SHA for 74a270d - Browse repository at this point
Copy the full SHA 74a270dView commit details -
Tod Thomson committed
Apr 20, 2023 Configuration menu - View commit details
-
Copy full SHA for d01c245 - Browse repository at this point
Copy the full SHA d01c245View commit details -
improve the code, still needs tests! (tomorrow)
Tod Thomson committedApr 20, 2023 Configuration menu - View commit details
-
Copy full SHA for 14c7a33 - Browse repository at this point
Copy the full SHA 14c7a33View commit details -
Tod Thomson committed
Apr 20, 2023 Configuration menu - View commit details
-
Copy full SHA for da13b75 - Browse repository at this point
Copy the full SHA da13b75View commit details -
extract connection string parser with tests
Tod Thomson committedApr 20, 2023 Configuration menu - View commit details
-
Copy full SHA for 1196b48 - Browse repository at this point
Copy the full SHA 1196b48View commit details -
better name for the piggy module test
Tod Thomson committedApr 20, 2023 Configuration menu - View commit details
-
Copy full SHA for 83ce276 - Browse repository at this point
Copy the full SHA 83ce276View commit details
Commits on Apr 21, 2023
-
changes parser to be case insensitive and...
- handle duplicate keys - by dropping subsequent items with same key
Tod Thomson committedApr 21, 2023 Configuration menu - View commit details
-
Copy full SHA for 1dce10b - Browse repository at this point
Copy the full SHA 1dce10bView commit details -
InternalsVisibleTo Datalust.Piggy.Tests
Tod Thomson committedApr 21, 2023 Configuration menu - View commit details
-
Copy full SHA for fc0ce13 - Browse repository at this point
Copy the full SHA fc0ce13View commit details -
Merge pull request #26 from todthomson/fix/upgrade-to-net70-and-updat…
…e-nupkgs-and-remove-custom-serilog-logger Upgrades Piggy to `net7.0`, updates all `.nupkg`s to latest, and removes custom Npgsql to Serilog logging bridge... - Upgrades Piggy to net7.0. - Updates all .nupkgs to latest. - Removes custom Npgsql to Serilog logging bridge. - Rather, uses Microsoft.Extensions.Logging bridge via NpgsqlLoggingConfiguration.InitializeLogging(new SerilogLoggerFactory()); - Because we already use /p:PublishTrimmed=true, we have to set TrimMode=partial and SuppressTrimAnalysisWarnings=true to get back to the net5.0 and net6.0 behaviour. - This is because net7.0 now defaults to "trim everything that doesn't explicitly opt-out of trimming" where as net6.0 and earlier defaulted to "trim only things that have explicitly opted-in to trimming. - Also, fixes a bug (applies to datalust.co) where Piggy reports it's connecting to host=null, which obviously isn't true.
Tod Thomson authoredApr 21, 2023 Configuration menu - View commit details
-
Copy full SHA for 775ecdb - Browse repository at this point
Copy the full SHA 775ecdbView commit details -
try to get the builds working with update scripts
Tod Thomson committedApr 21, 2023 Configuration menu - View commit details
-
Copy full SHA for 69cbc6d - Browse repository at this point
Copy the full SHA 69cbc6dView commit details -
Tod Thomson committed
Apr 21, 2023 Configuration menu - View commit details
-
Copy full SHA for f4383b2 - Browse repository at this point
Copy the full SHA f4383b2View commit details -
auto-install .net sdk version from global.json
Tod Thomson committedApr 21, 2023 Configuration menu - View commit details
-
Copy full SHA for 14032b5 - Browse repository at this point
Copy the full SHA 14032b5View commit details
Commits on Apr 24, 2023
-
updated (hopefully working) .\Build.ps1
Tod Thomson committedApr 24, 2023 Configuration menu - View commit details
-
Copy full SHA for da1a8fd - Browse repository at this point
Copy the full SHA da1a8fdView commit details -
use .artifacts which is the standard in .NET 8
Tod Thomson committedApr 24, 2023 Configuration menu - View commit details
-
Copy full SHA for 504b5b0 - Browse repository at this point
Copy the full SHA 504b5b0View commit details -
also moves appveyor.yml to .artifacts dir
Tod Thomson committedApr 24, 2023 Configuration menu - View commit details
-
Copy full SHA for 300e351 - Browse repository at this point
Copy the full SHA 300e351View commit details -
Tod Thomson committed
Apr 24, 2023 Configuration menu - View commit details
-
Copy full SHA for a64c13d - Browse repository at this point
Copy the full SHA a64c13dView commit details -
Tod Thomson committed
Apr 24, 2023 Configuration menu - View commit details
-
Copy full SHA for 6f04a31 - Browse repository at this point
Copy the full SHA 6f04a31View commit details -
upgrades to 7-Zip 22.01 (2022-07-15)
Tod Thomson committedApr 24, 2023 Configuration menu - View commit details
-
Copy full SHA for 5eb3072 - Browse repository at this point
Copy the full SHA 5eb3072View commit details -
Merge pull request #28 from todthomson/make-appveyor-builds-build-dev…
…-branches #2 try to get the builds working with updated scripts
Configuration menu - View commit details
-
Copy full SHA for 5d95cf2 - Browse repository at this point
Copy the full SHA 5d95cf2View commit details
Commits on Apr 25, 2023
-
updates NuGet.org encrypted API key
Tod Thomson committedApr 25, 2023 Configuration menu - View commit details
-
Copy full SHA for b24c76e - Browse repository at this point
Copy the full SHA b24c76eView commit details -
removes "dev" as we don't push dev artifacts to GitHub
Tod Thomson committedApr 25, 2023 Configuration menu - View commit details
-
Copy full SHA for 02a2a46 - Browse repository at this point
Copy the full SHA 02a2a46View commit details
Commits on Apr 26, 2023
-
Merge pull request #29 from todthomson/fix-nuget-publish
Attempts to fix NuGet.org publish. - Updates the encrypted NuGet.org deployment API key. - Removes "dev" deployment of packages to GitHub, as we don't currently (and don't want to) deploy prerelease packages to GitHub. @nblumhardt has reviewed (over my shoulder) and approved this to be merged.
Tod Thomson authoredApr 26, 2023 Configuration menu - View commit details
-
Copy full SHA for 63c1c42 - Browse repository at this point
Copy the full SHA 63c1c42View commit details -
upgrades "npgsql" to version 7.0.4
Tod Thomson committedApr 26, 2023 Configuration menu - View commit details
-
Copy full SHA for fb278ed - Browse repository at this point
Copy the full SHA fb278edView commit details -
Merge pull request #30 from todthomson/upgrades-npgsql-to-latest
upgrades "npgsql" to version 7.0.4
Tod Thomson authoredApr 26, 2023 Configuration menu - View commit details
-
Copy full SHA for cc99c17 - Browse repository at this point
Copy the full SHA cc99c17View commit details -
add useful
dotnet list package
stuff...- dotnet list package --vulnerable --include-transitive - reports on vulnerable packages including deps dependencies recursively - dotnet list package --deprecated --include-transitive - dotnet list package --outdated --include-transitive - adjust exit codes to make them sequential
Tod Thomson committedApr 26, 2023 Configuration menu - View commit details
-
Copy full SHA for 743f11f - Browse repository at this point
Copy the full SHA 743f11fView commit details
Commits on Apr 27, 2023
-
Merge pull request #31 from todthomson/add-dotnet-list-package--vulne…
…rable--include-transitive-etc-reporting-only Add useful `dotnet list package` calls to Build.ps1 to report on NuGet package issues...
Configuration menu - View commit details
-
Copy full SHA for f7a9920 - Browse repository at this point
Copy the full SHA f7a9920View commit details -
removes --include-transitive as it's noisy and...
- it's not something we can fix - as it's up to our upstream packages to fix these - and we can run this explicitly locally if we care to
Tod Thomson committedApr 27, 2023 Configuration menu - View commit details
-
Copy full SHA for 18a0699 - Browse repository at this point
Copy the full SHA 18a0699View commit details -
Merge pull request #32 from todthomson/remove-dotnet-list-package--in…
…clude-transitive removes --include-transitive as it's noisy and...
Tod Thomson authoredApr 27, 2023 Configuration menu - View commit details
-
Copy full SHA for dc81fb3 - Browse repository at this point
Copy the full SHA dc81fb3View commit details
Commits on May 9, 2024
-
Bump npgsql from 7.0.4 to 8.0.3 in /src/Datalust.Piggy
Bumps [npgsql](https://github.com/npgsql/npgsql) from 7.0.4 to 8.0.3. - [Release notes](https://github.com/npgsql/npgsql/releases) - [Commits](npgsql/npgsql@v7.0.4...v8.0.3) --- updated-dependencies: - dependency-name: npgsql dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for bd76f25 - Browse repository at this point
Copy the full SHA bd76f25View commit details
Commits on May 10, 2024
-
Merge pull request #33 from datalust/dependabot/nuget/src/Datalust.Pi…
…ggy/npgsql-8.0.3 Bump npgsql from 7.0.4 to 8.0.3 in /src/Datalust.Piggy
Configuration menu - View commit details
-
Copy full SHA for 6c04a1d - Browse repository at this point
Copy the full SHA 6c04a1dView commit details
Commits on May 14, 2024
-
Update to .NET 8 and new Npgsql version; drop trimming as inlining br…
…eaks package binary compatibility with varying Npgsql versions
Configuration menu - View commit details
-
Copy full SHA for 0f2774f - Browse repository at this point
Copy the full SHA 0f2774fView commit details -
Configuration menu - View commit details
-
Copy full SHA for ea61e6d - Browse repository at this point
Copy the full SHA ea61e6dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0430fd9 - Browse repository at this point
Copy the full SHA 0430fd9View commit details -
Merge pull request #34 from nblumhardt/net-8.0
Update to .NET 8 and new Npgsql version
Configuration menu - View commit details
-
Copy full SHA for 90f474e - Browse repository at this point
Copy the full SHA 90f474eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 44c3e7b - Browse repository at this point
Copy the full SHA 44c3e7bView commit details
Commits on May 21, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 0048e40 - Browse repository at this point
Copy the full SHA 0048e40View commit details -
Configuration menu - View commit details
-
Copy full SHA for b693e02 - Browse repository at this point
Copy the full SHA b693e02View commit details -
Attempt to grab first PropertyGroup from CSPROJ to retrieve version p…
…refix during build
Configuration menu - View commit details
-
Copy full SHA for ac3de62 - Browse repository at this point
Copy the full SHA ac3de62View commit details
Commits on May 22, 2024
-
Merge pull request #35 from nblumhardt/create-tool-package
Package and publish as a `dotnet tool` package
Configuration menu - View commit details
-
Copy full SHA for 50e7f50 - Browse repository at this point
Copy the full SHA 50e7f50View commit details -
Configuration menu - View commit details
-
Copy full SHA for e54317f - Browse repository at this point
Copy the full SHA e54317fView commit details -
Configuration menu - View commit details
-
Copy full SHA for e7a22c2 - Browse repository at this point
Copy the full SHA e7a22c2View commit details -
Merge pull request #37 from nblumhardt/tool-force-rebuild
Fix dotnet tool publishing
Configuration menu - View commit details
-
Copy full SHA for 6077136 - Browse repository at this point
Copy the full SHA 6077136View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4faf650 - Browse repository at this point
Copy the full SHA 4faf650View commit details -
Merge pull request #38 from nblumhardt/still-no-tool
Still no luck getting the tool package working; pulling out some more tricks
Configuration menu - View commit details
-
Copy full SHA for ac2e84e - Browse repository at this point
Copy the full SHA ac2e84eView commit details -
Configuration menu - View commit details
-
Copy full SHA for fb26207 - Browse repository at this point
Copy the full SHA fb26207View commit details