Skip to content

Conversation

@dependabot-preview
Copy link
Contributor

Bumps Hyperion from 0.9.16 to 0.10.0.

Release notes

Sourced from Hyperion's releases.

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.

Hyperion v0.9.17

0.9.17 March 25 2021

... (truncated)

Changelog

Sourced from Hyperion's changelog.

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.

Commits
  • 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)
  • 477b5f3 Fix cross framework incompatibility for System.Drawing.Color (#208)
  • bd3a432 fix release Pipeline
  • 255948e Merge pull request #207 from akkadotnet/dev
  • 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 dependabot-preview bot added the dependencies Pull requests that update a dependency file label Apr 14, 2021
@dependabot-preview
Copy link
Contributor Author

Superseded by #127.

@dependabot-preview dependabot-preview bot deleted the dependabot/nuget/Hyperion-0.10.0 branch April 20, 2021 05:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants