Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@

All notable changes to this project will be documented in this file, in reverse chronological order by release.

## 0.5.1 - 2021-02-12


-----

### Release Notes for [0.5.1](https://github.com/open-code-modeling/json-schema-to-php-ast/milestone/11)

0.5.x bugfix release (patch)

### 0.5.1

- Total issues resolved: **1**
- Total pull requests resolved: **0**
- Total contributors: **1**

#### enhancement

- [22: Pump php-code-ast to 0.12.0](https://github.com/open-code-modeling/json-schema-to-php-ast/issues/22) thanks to @sandrokeil

## 0.5.0 - 2021-02-11


Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"require": {
"php": "^7.4 || ^8.0",
"open-code-modeling/json-schema-to-php": "^0.3.0 || 0.4.x-dev",
"open-code-modeling/php-code-ast": "^0.11.0 || 0.12.x-dev"
"open-code-modeling/php-code-ast": "^0.12.0 || 0.13.x-dev"
},
"require-dev": {
"laminas/laminas-filter": "^2.9",
Expand Down
12 changes: 6 additions & 6 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/PropertyFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public function nodeVisitorFromNative(string $name, string $type): array

public function propertyGenerator(string $name, string $type): PropertyGenerator
{
return new PropertyGenerator(($this->propertyNameFilter)($name), $type, null, $this->typed);
return new PropertyGenerator(($this->propertyNameFilter)($name), $type, $this->typed);
}

/**
Expand Down