Skip to content

Commit

Permalink
Add changelog for OData.NET 8.x, OData ModelBuilder 2.x and ASP.NET C…
Browse files Browse the repository at this point in the history
…ore OData 9.x (MicrosoftDocs#324)
  • Loading branch information
gathogojr authored Aug 20, 2024
1 parent 3096fc4 commit adc867e
Show file tree
Hide file tree
Showing 5 changed files with 84 additions and 2 deletions.
6 changes: 5 additions & 1 deletion Odata-docs/TOC.yml
Original file line number Diff line number Diff line change
Expand Up @@ -522,12 +522,16 @@
href: /odata/changelog/odatalib-8x
- name: OData lib (7.x) changes
href: /odata/changelog/odatalib-7x
- name: ASP.NET Core OData (9.x) changes
href: /odata/changelog/aspnetcoreodata-9x
- name: ASP.NET Core OData (8.x) changes
href: /odata/changelog/aspnetcoreodata-8x
- name: WebApi lib (7.x) changes
href: /odata/changelog/webapi-7x
- name: Edm ModelBuilder
- name: OData model builder (1.x) changes
href: /odata/changelog/modelbuilder
- name: OData model builder (2x) changes
href: /odata/changelog/modelbuilder-2x
- name: OData extensions changes
href: /odata/changelog/extensions-1x
- name: OData ConnectedService changes
Expand Down
34 changes: 34 additions & 0 deletions Odata-docs/changelog/aspnetcoreodata-9x.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
title: "ASP.NET Core OData changelog"
description: AspNetCoreOData 9.x changelog
author: gathogojr
ms.author: jogathog
ms.date: 08/20/2024
ms.topic: article
---

# ASP.NET Core OData 9.x changelog

ASP.NET Core OData 9.x is available on the [Nuget gallery](https://www.nuget.org/packages/Microsoft.AspNetCore.OData)

You can install or update the NuGet package for ASP.NET Core OData using the [Package Manager Console](https://docs.nuget.org/docs/start-here/using-the-package-manager-console).

---

## [9.0.0](https://www.nuget.org/packages/Microsoft.AspNetCore.OData/9.0.0)

See details at: https://github.com/OData/AspNetCoreOData/releases/tag/9.0.0

## [9.0.0-rc.1](https://github.com/OData/AspNetCoreOData/releases/tag/9.0.0-rc.1)

See details at: https://github.com/OData/AspNetCoreOData/releases/tag/9.0.0-rc.1

## [9.0.0-preview.2](https://github.com/OData/AspNetCoreOData/releases/tag/9.0.0-preview.2)

See details at: https://github.com/OData/AspNetCoreOData/releases/tag/9.0.0-preview.2

## [9.0.0-preview.1](https://github.com/OData/AspNetCoreOData/releases/tag/9.0.0-preview.1)

See details at: https://github.com/OData/AspNetCoreOData/releases/tag/9.0.0-preview.1

---
24 changes: 24 additions & 0 deletions Odata-docs/changelog/modelbuilder-2x.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: "OData ModelBuilder cangelog"
description: "OData ModelBuilder 2.x changelog"
author: gathogojr
ms.author: jogathog
ms.date: 08/20/2020
ms.topic: article
---

# OData ModelBuilder 2.x changelog

OData ModelBuilder available on the [Nuget gallery](https://www.nuget.org/packages/Microsoft.OData.ModelBuilder)

You can install or update the NuGet package for OData ModelBuilder using the [Package Manager Console](https://docs.nuget.org/docs/start-here/using-the-package-manager-console):

```PowerShell
PM> Install-Package Microsoft.OData.ModelBuilder
```

## OData ModelBuilder 2.0.0

* See https://github.com/OData/ModelBuilder/releases/tag/v2.0.0

---
2 changes: 1 addition & 1 deletion Odata-docs/changelog/modelbuilder.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ms.date: 09/09/2020
ms.topic: article
---

# OData ModelBuilder changelog
# OData ModelBuilder 1.x changelog

OData ModelBuilder available on the [Nuget gallery](https://www.nuget.org/packages/Microsoft.OData.ModelBuilder)

Expand Down
20 changes: 20 additions & 0 deletions Odata-docs/changelog/odatalib-8x.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,26 @@ OData lib is loosely used to refer to the following group of OData libraries ava

You can install or update any of the NuGet packages for OData lib using the [Package Manager Console](https://docs.nuget.org/docs/start-here/using-the-package-manager-console).

## [8.0.1](https://github.com/OData/odata.net/releases/tag/8.0.1)

### [Microsoft.OData.Core](https://www.nuget.org/packages/Microsoft.OData.Core/8.0.1)

- Fix error that occurs when you check whether a string or integer literal is in an enum collection in [#3039](https://github.com/OData/odata.net/pull/3039)
- Fix argument null exception during projection when expanded navigation property is null in [#3038](https://github.com/OData/odata.net/pull/3038)

## [8.0.0](https://github.com/OData/odata.net/releases/tag/8.0.0)

### [Microsoft.OData.Core](https://www.nuget.org/packages/Microsoft.OData.Core/8.0.0)

- Add Microsoft.Extensions.Http dependency in [#3035](https://github.com/OData/odata.net/pull/3035)
- Replace `IsType` using `IsOf` to align with the OData standard in [#3025](https://github.com/OData/odata.net/pull/3025)
- Remove obsolete ReadUntypedAsString and address string comparison warnings in [#3024](https://github.com/OData/odata.net/pull/3024)
- Support enum as integer value (enclosed and not enclosed with single quotes) in `$filter` in [#3018](https://github.com/OData/odata.net/pull/3018)
- Port E2E tests in [#3017](https://github.com/OData/odata.net/pull/3017), [#3028](https://github.com/OData/odata.net/pull/3028)
- Support enums as keys in OData client in [#3013](https://github.com/OData/odata.net/pull/3013)
- Provide async APIs for CsdlWriter and SchemaWriter in [#3006](https://github.com/OData/odata.net/pull/3006)
- Remove references to ATOM in [#2972](https://github.com/OData/odata.net/pull/2972)

## [8.0.0-rc.1](https://github.com/OData/odata.net/releases/tag/8.0.0-rc.1)

### [Microsoft.OData.Core](https://www.nuget.org/packages/Microsoft.OData.Core/8.0.0-rc.1)
Expand Down

0 comments on commit adc867e

Please sign in to comment.