Skip to content

Commit

Permalink
Merge pull request #2299 from microsoft/bugfix/broken-search
Browse files Browse the repository at this point in the history
- fixes a bug where search would fail because of a parsing issue
  • Loading branch information
baywet authored Feb 13, 2023
2 parents 690c022 + 7875a3b commit 38b6f43
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

### Changed

## [0.11.1] - 2023-02-13

### Added

- Added support for multi-valued headers in Python. [#2051](https://github.com/microsoft/kiota/issues/2051)
- Added `getResponseStatusCode` to PHP exceptions reserved names provider. [#2243](https://github.com/microsoft/kiota/issues/2243)

### Changed

- Fixed a bug where search would fail because of a parsing issue. [#2290](https://github.com/microsoft/kiota/issues/2290)
- Fixed a bug where Ruby namespaces would fail to load with Rails.
- Fixed a bug where errors/exceptions could override native exception type symbols in Python. [#2257](https://github.com/microsoft/kiota/issues/2257)
- Fixed a bug where descriptions with a path segment matching an HTTP verb would fail to generate. [#2231](https://github.com/microsoft/kiota/issues/2231)
Expand Down
2 changes: 1 addition & 1 deletion src/Kiota.Builder/Kiota.Builder.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<Title>Microsoft.OpenApi.Kiota.Builder</Title>
<PackageId>Microsoft.OpenApi.Kiota.Builder</PackageId>
<PackageOutputPath>./nupkg</PackageOutputPath>
<Version>0.11.0-preview</Version>
<Version>0.11.1-preview</Version>
<PackageReleaseNotes>
https://github.com/microsoft/kiota/releases
</PackageReleaseNotes>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ public string? ReleasesUrl
public string ReleasesUrl { get; set; }
#endif
/// <summary>The score property</summary>
public long? Score
public double? Score
{
get; set;
}
Expand Down Expand Up @@ -898,7 +898,7 @@ public IDictionary<string, Action<IParseNode>> GetFieldDeserializers()
{"pulls_url", n => { PullsUrl = n.GetStringValue(); } },
{"pushed_at", n => { PushedAt = n.GetDateTimeOffsetValue(); } },
{"releases_url", n => { ReleasesUrl = n.GetStringValue(); } },
{"score", n => { Score = n.GetLongValue(); } },
{"score", n => { Score = n.GetDoubleValue(); } },
{"size", n => { Size = n.GetIntValue(); } },
{"ssh_url", n => { SshUrl = n.GetStringValue(); } },
{"stargazers_count", n => { StargazersCount = n.GetIntValue(); } },
Expand Down Expand Up @@ -996,7 +996,7 @@ public void Serialize(ISerializationWriter writer)
writer.WriteStringValue("pulls_url", PullsUrl);
writer.WriteDateTimeOffsetValue("pushed_at", PushedAt);
writer.WriteStringValue("releases_url", ReleasesUrl);
writer.WriteLongValue("score", Score);
writer.WriteDoubleValue("score", Score);
writer.WriteIntValue("size", Size);
writer.WriteStringValue("ssh_url", SshUrl);
writer.WriteIntValue("stargazers_count", StargazersCount);
Expand Down
2 changes: 1 addition & 1 deletion src/kiota/kiota.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<Title>Microsoft.OpenApi.Kiota</Title>
<PackageId>Microsoft.OpenApi.Kiota</PackageId>
<PackageOutputPath>./nupkg</PackageOutputPath>
<Version>0.11.0-preview</Version>
<Version>0.11.1-preview</Version>
<PackageReleaseNotes>
https://github.com/microsoft/kiota/releases
</PackageReleaseNotes>
Expand Down

0 comments on commit 38b6f43

Please sign in to comment.