Skip to content

Commit c7c48b5

Browse files
committed
Merge branch 'release/1.1.0'
2 parents bdda365 + e0e3ed3 commit c7c48b5

25 files changed

+998
-156
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ See [keep a changelog] for information about writing changes to this log.
88

99
## [Unreleased]
1010

11+
## [1.1.0] - 2025-03-20
12+
13+
### Added
14+
15+
- Implemented and switched to date range filter, compatible with deprecated date filter
16+
17+
### Changed
18+
19+
- Deprecate date filter
20+
1121
## [1.0.1] - 2025-03-12
1222

1323
### Added
@@ -40,6 +50,7 @@ See [keep a changelog] for information about writing changes to this log.
4050
- Added multi-value filtering for Lactions and Organizations
4151

4252
[keep a changelog]: https://keepachangelog.com/en/1.1.0/
43-
[unreleased]: https://github.com/itk-dev/event-database-api/compare/1.0.1...HEAD
53+
[unreleased]: https://github.com/itk-dev/event-database-api/compare/1.1.0...HEAD
54+
[1.1.0]: https://github.com/itk-dev/event-database-api/releases/tag/1.1.0
4455
[1.0.1]: https://github.com/itk-dev/event-database-api/releases/tag/1.0.1
4556
[1.0.0]: https://github.com/itk-dev/event-database-api/releases/tag/1.0.0

psalm-baseline.xml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,78 +1,78 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<files psalm-version="5.16.0@2897ba636551a8cb61601cc26f6ccfbba6c36591">
2+
<files psalm-version="5.26.1@d747f6500b38ac4f7dfc5edbcae6e4b637d7add0">
33
<file src="src/Api/State/AbstractProvider.php">
44
<InternalMethod>
5-
<code>getFilters</code>
5+
<code><![CDATA[getFilters]]></code>
66
</InternalMethod>
77
</file>
88
<file src="src/Api/State/DailyOccurrenceRepresentationProvider.php">
99
<InvalidReturnStatement>
10-
<code><![CDATA[[$this->index->get(IndexNames::DailyOccurrences->value, $uriVariables['id'])['_source']]]]></code>
10+
<code><![CDATA[[$this->index->get(IndexName::DailyOccurrences->value, $uriVariables['id'])['_source']]]]></code>
1111
</InvalidReturnStatement>
1212
<MissingTemplateParam>
13-
<code>ProviderInterface</code>
13+
<code><![CDATA[ProviderInterface]]></code>
1414
</MissingTemplateParam>
1515
<PossiblyNullArrayAccess>
16-
<code><![CDATA[$this->index->get(IndexNames::DailyOccurrences->value, $uriVariables['id'])['_source']]]></code>
16+
<code><![CDATA[$this->index->get(IndexName::DailyOccurrences->value, $uriVariables['id'])['_source']]]></code>
1717
</PossiblyNullArrayAccess>
1818
</file>
1919
<file src="src/Api/State/EventRepresentationProvider.php">
2020
<InvalidReturnStatement>
21-
<code><![CDATA[[$this->index->get(IndexNames::Events->value, $uriVariables['id'])['_source']]]]></code>
21+
<code><![CDATA[[$this->index->get(IndexName::Events->value, $uriVariables['id'])['_source']]]]></code>
2222
</InvalidReturnStatement>
2323
<MissingTemplateParam>
24-
<code>ProviderInterface</code>
24+
<code><![CDATA[ProviderInterface]]></code>
2525
</MissingTemplateParam>
2626
<PossiblyNullArrayAccess>
27-
<code><![CDATA[$this->index->get(IndexNames::Events->value, $uriVariables['id'])['_source']]]></code>
27+
<code><![CDATA[$this->index->get(IndexName::Events->value, $uriVariables['id'])['_source']]]></code>
2828
</PossiblyNullArrayAccess>
2929
</file>
3030
<file src="src/Api/State/LocationRepresentationProvider.php">
3131
<InvalidReturnStatement>
32-
<code><![CDATA[[$this->index->get(IndexNames::Locations->value, $uriVariables['id'])['_source']]]]></code>
32+
<code><![CDATA[[$this->index->get(IndexName::Locations->value, $uriVariables['id'])['_source']]]]></code>
3333
</InvalidReturnStatement>
3434
<MissingTemplateParam>
35-
<code>ProviderInterface</code>
35+
<code><![CDATA[ProviderInterface]]></code>
3636
</MissingTemplateParam>
3737
<PossiblyNullArrayAccess>
38-
<code><![CDATA[$this->index->get(IndexNames::Locations->value, $uriVariables['id'])['_source']]]></code>
38+
<code><![CDATA[$this->index->get(IndexName::Locations->value, $uriVariables['id'])['_source']]]></code>
3939
</PossiblyNullArrayAccess>
4040
</file>
4141
<file src="src/Api/State/OccurrenceRepresentationProvider.php">
4242
<InvalidReturnStatement>
43-
<code><![CDATA[[$this->index->get(IndexNames::Occurrences->value, $uriVariables['id'])['_source']]]]></code>
43+
<code><![CDATA[[$this->index->get(IndexName::Occurrences->value, $uriVariables['id'])['_source']]]]></code>
4444
</InvalidReturnStatement>
4545
<MissingTemplateParam>
46-
<code>ProviderInterface</code>
46+
<code><![CDATA[ProviderInterface]]></code>
4747
</MissingTemplateParam>
4848
<PossiblyNullArrayAccess>
49-
<code><![CDATA[$this->index->get(IndexNames::Occurrences->value, $uriVariables['id'])['_source']]]></code>
49+
<code><![CDATA[$this->index->get(IndexName::Occurrences->value, $uriVariables['id'])['_source']]]></code>
5050
</PossiblyNullArrayAccess>
5151
</file>
5252
<file src="src/Api/State/OrganizationRepresentationProvider.php">
5353
<InvalidReturnStatement>
54-
<code><![CDATA[[$this->index->get(IndexNames::Organizations->value, $uriVariables['id'])['_source']]]]></code>
54+
<code><![CDATA[[$this->index->get(IndexName::Organizations->value, $uriVariables['id'])['_source']]]]></code>
5555
</InvalidReturnStatement>
5656
<MissingTemplateParam>
57-
<code>ProviderInterface</code>
57+
<code><![CDATA[ProviderInterface]]></code>
5858
</MissingTemplateParam>
5959
<PossiblyNullArrayAccess>
60-
<code><![CDATA[$this->index->get(IndexNames::Organizations->value, $uriVariables['id'])['_source']]]></code>
60+
<code><![CDATA[$this->index->get(IndexName::Organizations->value, $uriVariables['id'])['_source']]]></code>
6161
</PossiblyNullArrayAccess>
6262
</file>
6363
<file src="src/Api/State/TagRepresentationProvider.php">
6464
<MissingTemplateParam>
65-
<code>ProviderInterface</code>
65+
<code><![CDATA[ProviderInterface]]></code>
6666
</MissingTemplateParam>
6767
</file>
6868
<file src="src/Api/State/VocabularyRepresentationProvider.php">
6969
<MissingTemplateParam>
70-
<code>ProviderInterface</code>
70+
<code><![CDATA[ProviderInterface]]></code>
7171
</MissingTemplateParam>
7272
</file>
7373
<file src="src/Command/FixturesLoadCommand.php">
7474
<UndefinedDocblockClass>
75-
<code>\HttpException</code>
75+
<code><![CDATA[\HttpException]]></code>
7676
</UndefinedDocblockClass>
7777
</file>
7878
<file src="src/Fixtures/FixtureLoader.php">
@@ -88,30 +88,30 @@
8888
]]]></code>
8989
</InvalidArgument>
9090
<PossiblyUndefinedMethod>
91-
<code>getStatusCode</code>
92-
<code>getStatusCode</code>
91+
<code><![CDATA[getStatusCode]]></code>
92+
<code><![CDATA[getStatusCode]]></code>
9393
</PossiblyUndefinedMethod>
9494
<UndefinedClass>
95-
<code>\HttpException</code>
95+
<code><![CDATA[\HttpException]]></code>
9696
</UndefinedClass>
9797
<UndefinedDocblockClass>
98-
<code>\HttpException</code>
99-
<code>\HttpException</code>
98+
<code><![CDATA[\HttpException]]></code>
99+
<code><![CDATA[\HttpException]]></code>
100100
</UndefinedDocblockClass>
101101
</file>
102102
<file src="src/Service/ElasticSearch/ElasticSearchIndex.php">
103103
<ArgumentTypeCoercion>
104-
<code>$params</code>
104+
<code><![CDATA[$params]]></code>
105105
</ArgumentTypeCoercion>
106106
<InvalidArgument>
107-
<code>$params</code>
107+
<code><![CDATA[$params]]></code>
108108
<code><![CDATA[['name' => $indexName]]]></code>
109109
</InvalidArgument>
110110
</file>
111111
<file src="src/Service/ElasticSearch/ElasticSearchPaginator.php">
112112
<MissingTemplateParam>
113-
<code>PaginatorInterface</code>
114-
<code>\IteratorAggregate</code>
113+
<code><![CDATA[PaginatorInterface]]></code>
114+
<code><![CDATA[\IteratorAggregate]]></code>
115115
</MissingTemplateParam>
116116
</file>
117117
</files>

0 commit comments

Comments
 (0)