Apex.Serialization icon indicating copy to clipboard operation
Apex.Serialization copied to clipboard

Bump Hyperion from 0.9.16 to 0.10.1

Open dependabot-preview[bot] opened this issue 3 years ago • 0 comments

⚠️ Dependabot Preview has been deactivated ⚠️

This pull request was created by Dependabot Preview, and you've upgraded to Dependabot. This means it won't respond to dependabot commands nor will it be automatically closed if a new version is found.

If you close this pull request, Dependabot will re-create it the next time it checks for updates and everything will work as expected.


Bumps Hyperion from 0.9.16 to 0.10.1.

Release notes

Sourced from Hyperion's releases.

Hyperion v0.10.1

0.10.1 April 20 2021

Changes:

  • 615d9d11b4be2e3a87c0268ab142a02d5f06da2e Merge pull request #216 from akkadotnet/dev
  • fbe7eceda8a06262e2d7c9b5ebe21c624a7f365d Update RELEASE_NOTE.md for version 0.10.1 release (#215)
  • 8d6bffd8106a81a03ad8c38b00bbf2da26bf202b Fix settings constructor backward compatibility issue (#214)

This list of changes was auto generated.

Hyperion v0.10.0

0.10.0 April 13 2021

Cross platform serialization

You can now address any cross platform package serialization differences by providing a list of package name transformation lambda function into the SerializerOptions constructor. The package name will be passed into the lambda function before it is deserialized, and the result of the string transformation is used for deserialization instead of the original package name.

This short example shows how to address the change from System.Drawing in .NET Framework to System.Drawing.Primitives in .NET Core:

Serializer serializer;
#if NETFX
serializer = new Serializer(new SerializerOptions(
    packageNameOverrides: new List<Func<string, string>> {
        str => str.Contains("System.Drawing.Primitives") ? str.Replace(".Primitives", "") : str
    }));
#elif NETCOREAPP
serializer = new Serializer();
#endif

Note that only one package name transformation is allowed, any transform lambda function after the first applied transformation is ignored.

Changes:

  • 7b6f992b07d52c58bd5170eb494bc8b57e2f9581 Merge pull request #211 from akkadotnet/dev
  • e620a15b0ead9d3c85a778dceb9c8914d6e11fe0 Merge pull request #210 from Arkatufus/Update_RELEASE_NOTES.md_for_1.10.0_release
  • 8ec06db76a223074b8116cf45788ad6c1d407862 Merge branch 'Update_RELEASE_NOTES.md_for_1.10.0_release' of github.com:Arkatufus/Hyperion into Update_RELEASE_NOTES.md_for_1.10.0_release
  • 173dba8b6801bbdf69dbc9b969f02f0ac9aafb09 Fix markdown title problem with Fake version number helper
  • 4629324e6e6f76774892a6ba7dbb9e3dff853f17 Merge branch 'dev' into Update_RELEASE_NOTES.md_for_1.10.0_release
  • 32a8b0bfdad0db2388aed734b95b8322605483ee Update RELEASE_NOTES.md
  • 37209fe61be32a9664a42523fb1ec17b2ac44883 Bump Microsoft.NET.Test.Sdk from 16.9.1 to 16.9.4 (#209)
  • 477b5f3156725b103a1266db4b468dfaf031f5ad Fix cross framework incompatibility for System.Drawing.Color (#208) [ #206 ]
  • bd3a4320a232975577e837ab6603fd2526622a11 fix release Pipeline

This list of changes was auto generated.

... (truncated)

Changelog

Sourced from Hyperion's changelog.

0.10.1 April 20 2021

Commits
  • 615d9d1 Merge pull request #216 from akkadotnet/dev
  • fbe7ece Update RELEASE_NOTE.md for version 0.10.1 release (#215)
  • 8d6bffd Fix settings constructor backward compatibility issue (#214)
  • 7b6f992 Merge pull request #211 from akkadotnet/dev
  • e620a15 Merge pull request #210 from Arkatufus/Update_RELEASE_NOTES.md_for_1.10.0_rel...
  • 8ec06db Merge branch 'Update_RELEASE_NOTES.md_for_1.10.0_release' of github.com:Arkat...
  • 173dba8 Fix markdown title problem with Fake version number helper
  • 4629324 Merge branch 'dev' into Update_RELEASE_NOTES.md_for_1.10.0_release
  • 32a8b0b Update RELEASE_NOTES.md
  • 37209fe Bump Microsoft.NET.Test.Sdk from 16.9.1 to 16.9.4 (#209)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

dependabot-preview[bot] avatar Apr 20 '21 05:04 dependabot-preview[bot]