Releases: microsoft/semantic-kernel
Releases · microsoft/semantic-kernel
python-0.9.2b1
Notable Changes
- We've introduced the Function Calling Stepwise Planner in Python. We've created a kernel example showing how it works.
What's Changed
- Python: Use the correct exception key for handling streaming exceptions in the kernel by @moonbox3 in #5417
- Python: add missing init from prompt_template folder by @eavanvalkenburg in #5413
- Python: update usearch to 2.9 by @eavanvalkenburg in #5420
- Python: add py3.12 to unit tests by @eavanvalkenburg in #5191
- Python: Add extras and minor package updates by @eavanvalkenburg in #5440
- Python: Introduce the function calling stepwise planner by @moonbox3 in #5350
- Python: Add missing argument by @sunyiming in #5439
- Python: remove other py versions from test coverage matrix by @eavanvalkenburg in #5453
- Python: Fixed unnecessary slashes in URLs by @ymuichiro in #5237
- Python: Remove py test coverage by @moonbox3 in #5456
- Python: replace py test coverage yml. remove unneeded requirements.txt file from sample plugin by @moonbox3 in #5459
- Python: Pass kernel args to tool calls by @moonbox3 in #5455
- Python: Bump python version to 0.9.2b1 for release. by @moonbox3 in #5462
New Contributors
- @sunyiming made their first contribution in #5439
Full Changelog: python-0.9.1b1...python-0.9.2b1
dotnet-1.6.1
What's Changed
- .Net: Updated package validation baseline version by @dmytrostruk in #5215
- .Net: Python: remove _async from methods by @david-polo in #5160
- .Net - Fix Agent HTTP Request Header by @crickman in #5246
- .Net: Added ConfigureAwait(false) to asyncReference in InvokeStreamingCoreAsync by @xbotter in #5282
- .Net: Update classes so namespaces are consistent and match project location by @markwallace-microsoft in #5275
- .Net: [Agent] Fixed an issue with retrieving an existing OpenAI assistant given its ID, leading to creation of a duplicate assistant. by @shreyas-pandey in #5294
- .Net: Bump Microsoft.Net.Compilers.Toolset from 4.9.0-3.final to 4.9.2 in /dotnet by @dependabot in #5297
- .Net: Bump Microsoft.OpenApi from 1.6.12 to 1.6.13 in /dotnet by @dependabot in #5299
- .Net: Marked Experimental.Orchestration.Flow package as alpha by @dmytrostruk in #5239
- .Net: Removing dependency on BinaryData class from content classes by @SergeyMenshykh in #5229
- .Net: minor change so that inputs are not skipped in Planner example by @nkelly75 in #5266
- .Net: Fix serialization of OpenAIChatMessageContent type by @SergeyMenshykh in #5301
- .Net: Add home automation example to demonstrate how to use DI in a real app by @glahaye in #4940
in #5328 - .Net: Bump xunit from 2.6.6 to 2.7.0 in /dotnet by @dependabot in #5305
- .Net: Add File Id Reference Handling to Experimental Agent Package so that User Messages can be related to file Ids in OpenAI Storage by @Ryan-Britton in #5110
- .Net: Fix samples numbering by @Krzysztof318 in #5351
- .Net: Update Azure.AI.OpenAI to 1.0.0-beta.14 by @stephentoub in #5377
- .Net: Respect Kernel plugin changes made during function auto-invocation by @stephentoub in #5376
- .Net: ADR for supporting more type info in FunctionView by @alliscode in #3430
- .Net: Update Example72_AgentCollaboration.cs by @StuartMorrisHitachi in #5369
- .Net: Fix for DALL-E endpoint name in examples by @SergeyMenshykh in #5388
- .Net: Reduce number of experimental flags used by @markwallace-microsoft in #5347
- .Net: Fix OpenAI connector compatibility by @JadynWong in #5338
- .NET: ADR describing the Semantic Kernel versioning approach by @markwallace-microsoft in #5197
- .Net: Bump Microsoft.OpenApi.Readers and Microsoft.OpenApi in /dotnet by @dependabot in #5429
- .Net: Bump YamlDotNet from 13.7.1 to 15.1.2 in /dotnet by @dependabot in #5298
- .Net: Bump JsonSchema.Net.Generation from 3.5.1 to 4.1.1 in /dotnet by @dependabot in #5302
- .Net: Bump Grpc.Net.Client from 2.60.0 to 2.61.0 in /dotnet by @dependabot in #5428
- .Net: Bump Microsoft.Extensions.Http.Resilience from 8.1.0 to 8.2.0 in /dotnet by @dependabot in #5426
- .Net: Update to version 1.6.0 by @markwallace-microsoft in #5450
- .Net: Version 1.6.1 by @markwallace-microsoft in #5458
New Contributors
- @shreyas-pandey made their first contribution in #5294
- @nkelly75 made their first contribution in #5266
- @Ryan-Britton made their first contribution in #5110
- @ytoml made their first contribution in #5090
- @sunyiming made their first contribution in #5439
Full Changelog: dotnet-1.5.0...dotnet-1.6.1
python-0.9.1b1
Notable Changes
- We've introduced auto tool calling for AzureOpenAI/OpenAI models. You can view the configuration and play around with this in the following kernel example. Note that auto tool calling is disabled by default, and it requires the following PromptExecutionSettings:
auto_invoke_kernel_functions=True
andmax_auto_invoke_attempts=<max_attempts_int>
. - We've made various small fixes and updates to address bugs/issues after the beta release.
- We've added unit test code coverage badges to the PRs. This now shows you the coverage percentage of the Python code base, and which files and lines are missing test coverage.
What's Changed
- Python: Fix broken link by @markwallace-microsoft in #5308
- Python: updated telemetry key names by @eavanvalkenburg in #5287
- Python: Support Auto tool calling for OpenAI models by @moonbox3 in #5267
- Python: Remove the service_id arg from the import plugin from prompt directory. Fix other notebooks. Formatting fixes. by @moonbox3 in #5328
- Python: remove weird line from coveragerc by @eavanvalkenburg in #5333
- Python: Add function name and plugin name to invoke prompt. Add unit tests. by @moonbox3 in #5318
- Python: Fix create func from prompt missing args by @moonbox3 in #5339
- Python: Fix action planner by @eavanvalkenburg in #5312
- Python: Improve web search by @eavanvalkenburg in #5317
- Python: combined stream and non-stream HF tests by @eavanvalkenburg in #5336
- Python: Update kernel tests by @eavanvalkenburg in #5341
- Python: update test coverage workflow by @eavanvalkenburg in #5357
- Python: add needs between unit tests and coverage by @eavanvalkenburg in #5358
- Python: updated unit tests and coverage by @eavanvalkenburg in #5359
- Python: change wait check to head_ref by @eavanvalkenburg in #5360
- Python: using sha by @eavanvalkenburg in #5361
- Python: updated ref by @eavanvalkenburg in #5362
- Python: change to regex by @eavanvalkenburg in #5363
- Python: use other download by @eavanvalkenburg in #5364
- Python: token param different by @eavanvalkenburg in #5365
- Python: use artifact search by @eavanvalkenburg in #5366
- Python: updated workflow name by @eavanvalkenburg in #5367
- Python: add py version to message by @eavanvalkenburg in #5368
- Python: fix: qdrant upsert on same id by @ytoml in #5090
- Python: improved chat history parsing from xml by @eavanvalkenburg in #5315
- Python: Bump py version to 0.9.1b1 for release. by @moonbox3 in #5378
- Python: Properly handle exceptions in the kernel using the exception metadata by @moonbox3 in #5391
- Python: fix for streaming openai responses, and first parts of fixes for Chat With Your Data by @eavanvalkenburg in #5387
New Contributors
Full Changelog: python-0.9.0.beta1...python-0.9.1b1
python-0.9.0b1
Notable Changes
- We've published the first SK Python Beta package, 0.9.0b1. The details of the beta release can be found here.
What's Changed
- Python: check if timestamp exists by @john0isaac in #4977
- Python: Support for cases where "logprobs" does not exist(OpenAITextCompletionBase) by @ymuichiro in #5071
- Python: Update 09-groundedness-checking.ipynb - Tiny Typo by @mindlessroman in #3425
- Python: Bump google-generativeai from 0.2.2 to 0.3.2 in /python by @dependabot in #4386
- Python: Bump pydantic from 2.5.2 to 2.6.1 in /python by @dependabot in #4986
- Python: Bump psycopg from 3.1.15 to 3.1.18 in /python by @dependabot in #4988
- Python: Bump weaviate-client from 3.25.3 to 4.4.4 in /python by @dependabot in #5095
- Python: Bump cryptography from 42.0.0 to 42.0.4 in /python by @dependabot in #5111
- Python: Fixing python document pipeline by @aayush3011 in #3744
- Python: major features for the Kernel Arguments, Function Result and new Prompt Templating by @eavanvalkenburg in #5077
- Python: Remove the memory tied to the kernel. Update kernel examples and notebooks. by @moonbox3 in #5143
- Python: split kernelfunction into fromprompt and frommethod classes by @eavanvalkenburg in #5159
- Python: Bump regex from 2023.10.3 to 2023.12.25 in /python by @dependabot in #5179
- Python: update ruff to 0.2.2 by @eavanvalkenburg in #5192
- Python: test added for multiple settings in one prompt function by @eavanvalkenburg in #5194
- Python: Bump azure-core from 1.29.6 to 1.30.0 in /python by @dependabot in #5181
- Python: Bump python-dotenv from 1.0.0 to 1.0.1 in /python by @dependabot in #5177
- Python: remove _async from methods by @david-polo in #5160
- Python: updated relevant parts from xml to defusedxml by @eavanvalkenburg in #5195
- Python: rebuilt exceptions structure; pythonic version by @eavanvalkenburg in #5231
- Python: Added metadata specifying connection stems from MSK code by @Jibola in #5232
- Python: bugfix: min relevance score calculation filtering on mongodbatlas semantic search by @Jibola in #5224
- Python: updated python tests with cache and added coverage by @eavanvalkenburg in #5251
- Python: update test coverage workflow by @eavanvalkenburg in #5259
- Python: Migrate and update docs samples by @moonbox3 in #5235
- Python: Complex Type support for Method functions by @eavanvalkenburg in #5260
- Python: Enhance py test coverage message by @eavanvalkenburg in #5284
- Python: small update to python test coverage workflow by @eavanvalkenburg in #5285
- Python: remove final step of test coverage, causes errors by @eavanvalkenburg in #5286
- Python: small fix in create_function_from_prompt to match KernelFunctionFromPrompt by @eavanvalkenburg in #5288
- Python: Remove MotorCommandCursor in import typing by @Jibola in #5222
- Python: Bump pyproject.toml to 0.9.0.beta1 for beta release. Match notebooks. by @moonbox3 in #5291
New Contributors
- @ymuichiro made their first contribution in #5071
- @mindlessroman made their first contribution in #3425
Full Changelog: python-0.5.1.dev...python-0.9.0.beta1
dotnet-1.5.0
Changes:
- 54a7f2f .Net: Version 1.5.0 (#5198)
- 2138724 .Net: Bump MongoDB.Driver from 2.23.1 to 2.24.0 in /dotnet (#5176) [ #1271, #1268, #1269, #1264, #1266 ]
- 629c7c8 .Net: Bump Microsoft.Data.Sqlite from 8.0.0 to 8.0.2 in /dotnet (#5174) [ #32838, #32841, #32840 ]
- b1d3de2 .Net: Bump System.Text.Json from 8.0.1 to 8.0.2 in /dotnet (#5180) [ #97110, #97065, #96838, #96566 ]
- 0e10dd5 .Net ImageToText Abstraction + HuggingFace Connector ImageToText support. (#5150) [ #4947 ]
- 0f97fdc .Net: Bump Microsoft.Extensions.TimeProvider.Testing from 8.0.0 to 8.2.0 in /dotnet (#5182)
- 90de4f8 .Net: Adding #each block details + jsonSerializer fix to handle named FP literals (#5183) [ #4838 ]
- 36ce92f .Net Single source of truth for chat message content (#5088)
See More
- 9a7dc1a .Net: Tuning HB Planner - CreatePlan prompt, template extraction, and type handling (#5137) [ #4751, #4250, #4721 ]
- 5288bcb .Net The 'Source' property added to the ChatMessageContent class (#5091)
- f40ea59 .Net: First step to make ChatMessageContent more serialization-friendly (#5131)
- 6f46b04 .Net Add image support for Agent responses (#5113)
- e4d2975 .Net: Updated audio abstractions to return multiple values (#5149)
- 8858733 Adding HandlebarsPlanCreationException (#4973)
- d38b45d .Net: [HB Planner] Content type fix (#5133) [ #5127 ]
- 316ff5d .Net Hugging Face HttpClient Connector Update (#5075) [ #4947 ]
- f9771c6 .Net: Add model documentation (#4392)
- fe29d1a .Net: Unit test showing some strategies to unit test kernel functions (#5068)
- cd463b8 .Net AudioContent class moved to the Microsoft.SemanticKernel namespace (#5112)
- 38349e9 .Net: More API Manifest plugin examples from Microsoft Graph (#5098) [ #4991 ]
- f8e563a .Net: Add early return if Freeze method is called on a frozen object (#5057)
- 1f731ca .Net - Updated Open AI Assistant Model Serialization (#5102)
- 6954e97 .Net: Added example of Azure AI Search as Plugin with custom schema and configurable search fields (#5093)
- 08569f5 .Net: Added support for BinaryData for ImageContent. (#5008) [ #4781 ]
- abc8e5d .Net: Bump Microsoft.Extensions.Configuration.Binder from 8.0.0 to 8.0.1 in /dotnet (#5082) [ #95439, #95148, #95082, #94882, #95119 ]
- 9cf319e .Net: Bump Microsoft.NET.Test.Sdk from 17.8.0 to 17.9.0 in /dotnet (#5081)
- 6ccf426 .Net: Bump Roslynator.Formatting.Analyzers from 4.10.0 to 4.11.0 in /dotnet (#5080) [ #1391, #1407, #1404, #1401, #1403, #1402, #1, #1390, #1389, #1386 ]
- cf3e9dd .Net: Bump Roslynator.Analyzers from 4.10.0 to 4.11.0 in /dotnet (#5079) [ #1391, #1407, #1404, #1401, #1403, #1402, #1, #1390, #1389, #1386 ]
- 6b3e2eb .Net: Bump xunit.analyzers from 1.10.0 to 1.11.0 in /dotnet (#5078) [ xunit/xunit#2870, #180, xunit/xunit#2873, #179 ]
- 9a8c0be .Net: Add new Semantic-Kernel-Version header to all HTTP requests (#5048) [ #5037 ]
- 052c381 .Net: Update the integration tests readme to include instructions for audio tests (#5051)
- a9c4535 .Net. ContentFilterResults added to text/message content metadata (#5020)
- 4e7009a .Net: Baseline version 1.4.0 (#5017)
- 7a9a8e3 .Net: OpenAI is throttling requests. Temporarily disable these tests pending switch to using Azure OpenAI. (#5073)
- 1dfb45f .Net: Removing Insufficient functions error (#4983) [ #4442 ]
- 27d5ffe .Net: Create Plan Prompt Override (#5005)
- 0a60d9c .Net: Fix kernel syntax sample numbering (#5031)
- e4f9c75 .Net: API Manifest Plugins (#4961) [ #4662 ]
- 1ba6236 .Net: Improved Audio API by adding default setting values (#5026)
- 6feffd3 .Net Add Audio examples (#5019)
This list of changes was auto generated.
dotnet-1.4.0
Changes:
- 6fb8a46 .Net: Bump to version 1.4.0 (#5015)
- 4671853 .Net: Allow access KernelFunction.ExecutionSettings from IAIServiceSelector (#4860) [ #4487 ]
- 1490eb6 .Net: Audio-to-Text abstraction and OpenAI implementation (#4932)
- b9abe0a .Net: Text-to-Audio abstraction and OpenAI implementation (#4933)
- 6652ce6 .Net: Configurable Handlebars Planner prompt (#4918) [ #4067 ]
- 8675603 .Net - Open AI File Service Support (#4868)
- 182917f .Net: Fixed Azure AI Search asynchronous operation execution (#4992)
- 70c3403 .Net - OpenAI File Service ADR (#4803)
- 48b6bb2 .Net: Fixed usage of chat system prompt (#4994)
See More
- 715d0d7 .Net: Bump Roslynator.Formatting.Analyzers from 4.3.0 to 4.10.0 in /dotnet (#4981) [ #1371, #1376, #1377, #1366, #1373, #1374, #1370, #1360, #1369, #1368 ]
- 0ce7a59 .Net: Sets serialization depth to 128 (#4993) [ #4991 ]
- af83e71 .Net: Bump Microsoft.ML.Tokenizers from 0.21.0 to 0.21.1 in /dotnet (#4985)
- 3c8e5c9 .Net: Bump Microsoft.VisualStudio.Threading.Analyzers from 17.8.14 to 17.9.28 in /dotnet (#4984)
- 504d987 .Net: Bump xunit from 2.6.4 to 2.6.6 in /dotnet (#4982) [ #2863, #2334, #2854 ]
- 5f06807 .Net: Bump SharpToken from 1.2.14 to 1.2.15 in /dotnet (#4980) [ #28 ]
- da3f082 .Net - Add support for Azure Open AI Assistants API (#4958)
This list of changes was auto generated.
dotnet-1.3.1
Changes:
- b43694d .Net: Bump to version 1.3.1 (#4967)
- e20dfc4 .Net: Chat completion agent (#4911)
- 12e4358 .Net: Added fix for null completion usage details (#4956)
- dc5a0e3 .Net: Support work and school accounts for Microsoft Graph Connector (#4963) [ #4962 ]
- 2a83e5b .Net: reintroduce publish config and set IsPackable to false for Functions.OpenApi.Extensions project (#4954) [ #4867 ]
- 08e2ed3 .Net: ADR for RAG pattern in SK (#4771)
- fc5d2b3 .Net: Bump NRedisStack from 0.9.0 to 0.11.0 in /dotnet (#4524)
See More
- 8d54174 .Net: added Functions.OpenApi.Extensions project (#4867) [ #4851, #4662 ]
- a12262f Revert "Failed links are temporarily excluded from the link-checking action" (#4939)
- 98e4dc3 .Net - Update "InternalUtilities" solution folder to include current code files. (#4916)
- 70ac836 Failed links are temporarily excluded from the link-checking action. (#4931)
- fcea354 Python: Support for cases where "logprobs" does not exist (#4924)
- 0cfbc87 Fix broken links (#4930)
- dcd7e14 .Net: Fix PlannerInstrumentation log message typo (#4904)
- 7e43195 .Net - Format agent output for AskAsync (agent as a plug-in) (#4907)
- 3a7d3bd .Net: Planner options improvements (#4793) [ #4727, #4728, #4729, #4731, #4775 ]
- 71666b9 .Net - Fix Agent Message Ordering for Multimessage Runs (#4883)
- 4b0172d .Net: Implicit JSON to target type conversion (#4757)
- 59508ca .Net: Update azure.ai.openai to beta 13 (#4861)
- bf2932c .Net Small fixes in samples Step1-8 (#4805)
- ff256e3 .Net Add remarks to OpenAIPromptExecutionSettings.ResponseFormat (#4842)
- 04c18c0 .Net: Bump Microsoft.DeepDev.TokenizerLib from 1.3.2 to 1.3.3 in /dotnet (#4885) [ #27, #26, #23, #22, #21, #19 ]
- 95a4f1b .Net: Bump xunit.analyzers from 1.8.0 to 1.10.0 in /dotnet (#4886) [ xunit/xunit#2120, xunit/xunit#2680, #178, xunit/xunit#2859 ]
- c5d33ad .Net: Bump Azure.Monitor.OpenTelemetry.Exporter from 1.1.0 to 1.2.0 in /dotnet (#4887) [ #41537, #41206, #41496, #41209, #41205, #41204, #41181, #41178, #41177, #41176 ]
- 0f2ed1f .Net: Bump Roslynator.CodeAnalysis.Analyzers from 4.3.0 to 4.10.0 in /dotnet (#4888) [ #1371, #1376, #1377, #1366, #1373, #1374, #1370, #1360, #1369, #1368 ]
- 4dd21de .Net: Adding EnumType PodType.Nano to Pinecone Connector (#4852) [ #4702 ]
- 8931ab6 .Net: SK Agents (#4740)
- cd852e0 .Net: Fix bug to allow activation of JSON mode through execution_settings (#4774) [ #4719 ]
- eed5193 .Net: Add a Unit Test to ensure the Service Attributes defined previously in the service are available in the ServiceSelector to be used as a filter. (#4854) [ #3465 ]
- 52e317a Fixing logic in custom
or
HB helper (#4804) - 22bfdf8 .Net: Move documentation examples from documentation repo into SK repo (#4704)
- 33c2eb5 .Net: OpenAI embeddings refactor (#4600) [ #3295, #3294 ]
- 0f060f8 .Net: Update the baseline to 1.3.0 (#4801)
This list of changes was auto generated.
python-0.5.1.dev
What's Changed
- Python: Make the Kernel class Pydantic. by @moonbox3 in #4850
- Python: Pydantic-ify the KernelFunction class. Fix code paths related to tool_calls. by @moonbox3 in #4863
- Python: Bump fastapi from 0.105.0 to 0.109.1 in /python by @dependabot in #4874
- Python: Set the default plugins on the semantic function. Add a unit test. by @moonbox3 in #4897
- Python: Bump cryptography from 41.0.7 to 42.0.0 in /python by @dependabot in #4890
- Python: Bump torch from 2.0.0 to 2.2.0 in /python by @dependabot in #4901
- Python: Bump pillow from 10.1.0 to 10.2.0 in /python by @dependabot in #4701
- Python: Bump aiohttp from 3.9.1 to 3.9.3 in /python by @dependabot in #4882
- Python: Bump pycryptodome from 3.19.0 to 3.19.1 in /python by @dependabot in #4494
- Fix broken links by @moonbox3 in #4930
- Python: Remove cross lingual sample for AOAI OYD by @sarah-widder in #4915
- Python: streaming fix for Python: SK 0.5.0 breaks streaming #4925 by @eavanvalkenburg in #4928
- Python: Support for cases where "logprobs" does not exist by @yuichiromukaiyama in #4924
- Python: .Net: Remove legacy samples/skills as plugins are now only used. by @moonbox3 in #4880
- Python: Fix 06 memory notebook missing plugin name. by @moonbox3 in #4906
- Revert "Failed links are temporarily excluded from the link-checking action" by @SergeyMenshykh in #4939
- Python: fixes for hugging face and working integration tests by @eavanvalkenburg in #4927
- Python: Add CMK support to create Index by @charotAmine in #4949
- Python: Bump python project version for release. Update notebooks. by @moonbox3 in #4951
New Contributors
- @yuichiromukaiyama made their first contribution in #4924
- @charotAmine made their first contribution in #4949
Full Changelog: python-0.5.0.dev...python-0.5.1.dev
dotnet-1.3.0
Changes:
- d34bef7 .Net: Bump to version 1.3.0 (#4798)
- a535568 .Net: Bump Roslynator.Analyzers from 4.3.0 to 4.10.0 in /dotnet (#4779)
- ce32378 .Net: Bump Microsoft.Extensions.Http.Resilience, Microsoft.Bcl.TimeProvider and System.Text.Json in /dotnet (#4778)
- 6f5741a .Net: Articles grammar correction (#4749)
- 216d6c9 Update COMMUNITY.md (#4738)
- 4317f27 .Net: update link to .NET8.0 download (#4756)
- ea4ec54 .Net: Reverted example with filters (#4737)
- 91297d9 ADR Connector Community Support (#4619)
- a3954e2 .Net: Pass user field in SK C# (#4736)
- f959256 .Net: Upgraded baseline version for package compatibility (#4726)
This list of changes was auto generated.
python-0.5.0.dev
Notable Changes
We're progressing towards the v1.0 release of our SDK, featuring significant enhancements and modifications:
- Unified response objects for Chat, Text, and Embedding completions under the
KernelContent
class. This change offers multiple advantages, including consistency with our dotnet implementation and a more streamlined handling of responses. TheKernelContent
base class provides an efficient way to access response metadata and inner content. - Updated the terminology from
AIRequestSettings
toPromptExecutionSettings
, to better align with dotnet terminology. - Overhauled the plugin and function architecture to utilize the
KernelPluginCollection
class. This update involves removing outdated code and base classes associated with PluginCollection and ReadOnlyPluginCollection. - Discontinued support for synchronous function execution, which previously relied on asyncio and led to complications.
What's Changed
- Python: implement KernelContent and all related classes by @eavanvalkenburg in #4491
- Python: Add astra memory by @david-polo in #4374
- Python: Renames request settings to prompt execution settings by @juliomenendez in #4782
- Python: Remove sync function invoke. Update other code to use async invoke. by @moonbox3 in #4796
- Python: Add kernel plugin collection and remove old plugin collection classes by @moonbox3 in #4764
- Python: Bump python version to 0.5.0 for release. Update notebooks. by @moonbox3 in #4849
New Contributors
- @david-polo made their first contribution in #4374
Full Changelog: python-0.4.7.dev...python-0.5.0.dev