Skip to content

Commit

Permalink
docs: Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicLuidold committed Jan 28, 2025
1 parent 35b3d92 commit 4e597f1
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# CHANGELOG

## 4.37.0
* Added a `#[Ignore]` attribute that allows a property to be excluded from the generated schema.

```php
<?php

use Nelmio\ApiDocBundle\Attribute\Ignore;

class Foo
{
#[Ignore]
private string $ignoredProperty;
}
```

## 4.36.1
- Passing an array key `value` with a list of strings to the `Areas` annotation/attribute is deprecated. Pass the list of strings directly.
```diff
Expand Down

0 comments on commit 4e597f1

Please sign in to comment.