-
Notifications
You must be signed in to change notification settings - Fork 18
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
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: LEGO/AsyncAPI.NET
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.1.1
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: LEGO/AsyncAPI.NET
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.2.0
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 14 commits
- 156 files changed
- 5 contributors
Commits on Feb 16, 2024
-
Configuration menu - View commit details
-
Copy full SHA for b58f042 - Browse repository at this point
Copy the full SHA b58f042View commit details
Commits on Feb 27, 2024
-
feat: improve AsyncApiAny api surface.
## About the PR Fixes some issues with working with AsyncApiAny, figuring out the correct types etc. Added new GetValue type methods for extracting expected values. These use `system.text.json` to deserialize to `T` from the `JsonNode` type. Added a static FromExtension method, to remove redundant type casting. So instead of ```csharp if (TryGetValue(key, out IAsyncApiExtension extension)) { var myType = (extension as AsyncApiAny).GetValue<MyType>(); } ``` You do ```csharp if (TryGetValue(key, out IAsyncApiExtension extension)) { var myType = AsyncApiAny.FromExtensionOrDefault<MyType>(extension); } ``` Added new constructor allowing for much simpler `AsyncApiAny` initialization, utlizing `system.json.text` to figure out the JsonNode type. ### Changelog - Added: `GetValue<T>()` - Added: `GetValueOrDefault<T>()` - Added: `TryGetValue<T>()` - Added: static `FromExtensionOrDefault<T>(IAsyncApiExtension extension)` - Added: new constructor to allow for easier object creation. - Obsoleted: `AsyncApiArray` - Obsoleted: `AsyncApiObject`Configuration menu - View commit details
-
Copy full SHA for 9063f4e - Browse repository at this point
Copy the full SHA 9063f4eView commit details
Commits on Feb 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 72588e7 - Browse repository at this point
Copy the full SHA 72588e7View commit details
Commits on Mar 14, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 9291da6 - Browse repository at this point
Copy the full SHA 9291da6View commit details
Commits on Mar 25, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 8d128db - Browse repository at this point
Copy the full SHA 8d128dbView commit details
Commits on Mar 26, 2024
-
Configuration menu - View commit details
-
Copy full SHA for f5529e0 - Browse repository at this point
Copy the full SHA f5529e0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 581f680 - Browse repository at this point
Copy the full SHA 581f680View commit details -
Configuration menu - View commit details
-
Copy full SHA for ee91a56 - Browse repository at this point
Copy the full SHA ee91a56View commit details -
Configuration menu - View commit details
-
Copy full SHA for 18f2cb3 - Browse repository at this point
Copy the full SHA 18f2cb3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6169554 - Browse repository at this point
Copy the full SHA 6169554View commit details
Commits on Mar 30, 2024
-
Configuration menu - View commit details
-
Copy full SHA for efcf8f0 - Browse repository at this point
Copy the full SHA efcf8f0View commit details -
feat: add cultureinfo to reader/writer settings. (#152)
Co-authored-by: Alex Wichmann <VisualBean@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 0199420 - Browse repository at this point
Copy the full SHA 0199420View commit details -
Configuration menu - View commit details
-
Copy full SHA for f3bff4a - Browse repository at this point
Copy the full SHA f3bff4aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5cd3a6b - Browse repository at this point
Copy the full SHA 5cd3a6bView commit details
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v5.1.1...v5.2.0