Skip to content

Commit a34cda3

Browse files
committed
Update changelog and fix documentation link in README
1 parent 32a3886 commit a34cda3

File tree

2 files changed

+58
-13
lines changed

2 files changed

+58
-13
lines changed

CHANGELOG.md

Lines changed: 57 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,30 +9,75 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12+
- Add custom region support to apigen schematic to preserve user code between regenerations
13+
14+
### Fixed
15+
16+
- Fix imports in apigen schematic
17+
18+
## [0.142.0] - 2025-12-23
19+
20+
### Fixed
21+
22+
- Fix remove collection model
23+
- Fix Imports
24+
1225
### Changed
1326

27+
- Update Angular 21
28+
- Tuning cache
29+
1430
### Removed
1531

16-
## [0.128.0] - 2024-06-03
32+
- remove jasmin
33+
34+
### Dependencies
35+
36+
- add jsdom
37+
38+
## [0.141.0] - 2025-10-29
1739

1840
### Added
1941

42+
- GeoProperties support
43+
- Collection and Model support in config
44+
- Models and Collections from api-config
45+
- Navigation Properties support
46+
- Models and Collections
47+
- getter, setters, fetch, resource
48+
2049
### Fixed
2150

51+
- Fix: Metadata parser bug (Constructor incorrectly checks version of a metadata, #98)
52+
2253
### Changed
2354

24-
### Removed
55+
- ODataResponseJson
56+
- ES2022 use declare (Model fields are 'declare', type-only field declarations)
57+
- Types
58+
59+
## [0.140.1] - 2025-09-18
60+
61+
### Fixed
62+
63+
- Fix builder test (Missing type in test)
64+
- Fix `ExpandOptions['select']`, `Transform['aggregate']`, `Transform['filter']` and some other TS type definitions
65+
- Fix order of transform operations
2566

26-
[unreleased]: https://github.com/diegomvh/angular-odata/compare/v0.128.0...main
27-
[0.128.0]: https://github.com/diegomvh/angular-odata/compare/v0.127.0...v0.128.0
28-
[0.127.0]: https://github.com/diegomvh/angular-odata/compare/v0.126.0...v0.127.0
29-
[0.126.0]: https://github.com/diegomvh/angular-odata/compare/v0.125.0...v0.126.0
30-
[0.125.0]: https://github.com/diegomvh/angular-odata/compare/v0.124.0...v0.125.0
31-
[0.124.0]: https://github.com/diegomvh/angular-odata/compare/v0.123.0...v0.124.0
32-
[0.123.0]: https://github.com/diegomvh/angular-odata/compare/v0.122.0...v0.123.0
33-
[0.122.0]: https://github.com/diegomvh/angular-odata/compare/v0.121.0...v0.122.0
34-
[0.121.0]: https://github.com/diegomvh/angular-odata/compare/v0.120.0...v0.121.0
67+
[unreleased]: https://github.com/diegomvh/angular-odata/compare/v0.142.0...main
68+
[0.142.0]: https://github.com/diegomvh/angular-odata/compare/v0.141.0...v0.142.0
69+
[0.141.0]: https://github.com/diegomvh/angular-odata/compare/v0.140.1...v0.141.0
70+
[0.140.1]: https://github.com/diegomvh/angular-odata/compare/v0.140.0...v0.140.1
71+
[0.140.0]: https://github.com/diegomvh/angular-odata/compare/v0.128.0...v0.140.0
72+
[0.128.0]: https://github.com/diegomvh/angular-odata/compare/v0.127.0...v0.128.0
73+
[0.127.0]: https://github.com/diegomvh/angular-odata/compare/v0.126.0...v0.127.0
74+
[0.126.0]: https://github.com/diegomvh/angular-odata/compare/v0.125.0...v0.126.0
75+
[0.125.0]: https://github.com/diegomvh/angular-odata/compare/v0.124.0...v0.125.0
76+
[0.124.0]: https://github.com/diegomvh/angular-odata/compare/v0.123.0...v0.124.0
77+
[0.123.0]: https://github.com/diegomvh/angular-odata/compare/v0.122.0...v0.123.0
78+
[0.122.0]: https://github.com/diegomvh/angular-odata/compare/v0.121.0...v0.122.0
79+
[0.121.0]: https://github.com/diegomvh/angular-odata/compare/v0.120.0...v0.121.0
3580
[0.120.0]: https://github.com/diegomvh/angular-odata/compare/v0.115.0...v0.120.0
3681
[0.115.0]: https://github.com/diegomvh/angular-odata/compare/v0.110.0...v0.115.0
3782
[0.110.0]: https://github.com/diegomvh/angular-odata/compare/v0.105.0...v0.110.0
38-
[0.105.0]: https://github.com/diegomvh/angular-odata/compare/v0.102.0...v0.105.0
83+
[0.105.0]: https://github.com/diegomvh/angular-odata/compare/v0.102.0...v0.105.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<p align="center">
99
<a href="CONTRIBUTING.md">Contributing</a>
1010
·
11-
<a href="./docs/README.md">Documentation</a>
11+
<a href="./docs/api/index.html">Documentation</a>
1212
·
1313
<a href="https://github.com/diegomvh/AngularODataEntity">Demo</a>
1414
<br>

0 commit comments

Comments
 (0)