Skip to content

Commit

Permalink
Updated version of NewPlatform.Flexberry.ORM.ODataService up to 7.2.0…
Browse files Browse the repository at this point in the history
…-alpha01
  • Loading branch information
Anisimova2020 committed Jun 6, 2023
1 parent b2a4b10 commit 2fcfef0
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 12 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,16 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]

### Added
1. Helper class `DataObjectEdmModelDependencies` (it helps send named settings of Unity to class `DataObjectEdmModel`).

### Changed
1. Updated `NewPlatform.Flexberry.ORM` up to `7.1.1-beta01`.
1. Updated `NewPlatform.Flexberry.ORM` up to `7.2.0-alpha02`.
2. Constructor of class `DataObjectEdmModel` (it now needs extra DI initialization).
3. Constructor of class `DefaultDataObjectEdmModelBuilder` (it is factory for class `DataObjectEdmModel`).
4. Constructor of class `DefaultOfflineManager`.
5. Constructor of class `OfflineAuditService`.

### Fixed
1. Fixed problem with metadata when inheritance and PublishName is used.

## [7.1.0] - 2023.04.12

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2017 Flexberry PLATFORM
Copyright (c) 2023 Flexberry PLATFORM

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
17 changes: 9 additions & 8 deletions NewPlatform.Flexberry.ORM.ODataService.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>NewPlatform.Flexberry.ORM.ODataService</id>
<version>7.1.1-beta03</version>
<version>7.2.0-alpha01</version>
<title>Flexberry ORM ODataService</title>
<authors>New Platform Ltd.</authors>
<owners>New Platform Ltd.</owners>
Expand All @@ -12,14 +12,15 @@
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>Flexberry ORM OData Service Package.</description>
<releaseNotes>
Changed
1. Updated `NewPlatform.Flexberry.ORM` up to `7.1.1-beta01`.
2. Get properties from objects for send it to frontend always rethrow exception now.
Added
1. Helper class `DataObjectEdmModelDependencies` (it helps send named settings of Unity to class `DataObjectEdmModel`).

Fixed
1. Fixed problem with metadata when inheritance and PublishName is used.
2. Safe load details with complex type usage hierarchy.

Changed
1. Updated `NewPlatform.Flexberry.ORM` up to `7.2.0-alpha02`.
2. Constructor of class `DataObjectEdmModel` (it now needs extra DI initialization).
3. Constructor of class `DefaultDataObjectEdmModelBuilder` (it is factory for class `DataObjectEdmModel`).
4. Constructor of class `DefaultOfflineManager`.
5. Constructor of class `OfflineAuditService`.
</releaseNotes>
<copyright>Copyright New Platform Ltd 2023</copyright>
<tags>Flexberry ORM OData ODataService</tags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public DataObjectEdmModel Build()

var typeFilter = TypeFilter ?? (t => true);

foreach (Assembly assembly in _searchAssemblies.Where(x => !x.FullName.Contains("UserSettingsService")))
foreach (Assembly assembly in _searchAssemblies)
{
IEnumerable<Type> dataObjectTypes = assembly
.GetTypes()
Expand Down

0 comments on commit 2fcfef0

Please sign in to comment.