Skip to content

Commit a9300fb

Browse files
Merge branch 'main' into overlaps
2 parents ffbd224 + 8b0fab4 commit a9300fb

File tree

6 files changed

+30
-6
lines changed

6 files changed

+30
-6
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "3.4.1"
2+
".": "3.5.0"
33
}

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
4141

4242
- name: Set up PHP
43-
uses: shivammathur/setup-php@20529878ed81ef8e78ddf08b480401e6101a850f # v2
43+
uses: shivammathur/setup-php@ec406be512d7077f68eed36e63f4d91bc006edc4 # v2
4444
with:
4545
php-version: '8.4'
4646
extensions: ctype, json, mbstring

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
7070

7171
- name: Set up PHP
72-
uses: shivammathur/setup-php@20529878ed81ef8e78ddf08b480401e6101a850f # v2
72+
uses: shivammathur/setup-php@ec406be512d7077f68eed36e63f4d91bc006edc4 # v2
7373
with:
7474
php-version: ${{ matrix.php }}
7575
coverage: xdebug

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
6161

6262
- name: Set up PHP with PECL extension
63-
uses: shivammathur/setup-php@20529878ed81ef8e78ddf08b480401e6101a850f # v2
63+
uses: shivammathur/setup-php@ec406be512d7077f68eed36e63f4d91bc006edc4 # v2
6464
with:
6565
php-version: ${{ matrix.php }}
6666
coverage: xdebug

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# Changelog
22

3+
## [3.5.0](https://github.com/martin-georgiev/postgresql-for-doctrine/compare/v3.4.1...v3.5.0) (2025-09-06)
4+
5+
6+
### Features
7+
8+
* **#305, #432:** Add support for PostGIS functions for topological and distance relationships ([#434](https://github.com/martin-georgiev/postgresql-for-doctrine/issues/434)) ([2922b63](https://github.com/martin-georgiev/postgresql-for-doctrine/commit/2922b63012b77a76002436985fd1808541801b43))
9+
* **#305:** Add support for PostGIS measurement, overlay and geometry processing functions ([#435](https://github.com/martin-georgiev/postgresql-for-doctrine/issues/435)) ([9724452](https://github.com/martin-georgiev/postgresql-for-doctrine/commit/97244528f815f521d32e2c808f241245df67e139))
10+
* **#305:** Add support for PostGIS operators ([#430](https://github.com/martin-georgiev/postgresql-for-doctrine/issues/430)) ([5b5583b](https://github.com/martin-georgiev/postgresql-for-doctrine/commit/5b5583b9db30b0ba55c6047539242359a432a56e))
11+
* **#305:** Add support for PostGIS's types of `GEOGRAPHY`, `GEOMETRY` and their array variations ([#421](https://github.com/martin-georgiev/postgresql-for-doctrine/issues/421)) ([d97caae](https://github.com/martin-georgiev/postgresql-for-doctrine/commit/d97caae042ecbdd1e958b512e38ca4d56fd3d711))
12+
* **#410:**  add support for `LTREE` type ([#411](https://github.com/martin-georgiev/postgresql-for-doctrine/issues/411)) ([5a6563d](https://github.com/martin-georgiev/postgresql-for-doctrine/commit/5a6563d3431d7ea670407363527a645b3d25db32))
13+
* **#440:** Add support for functions to use with the `LTREE` data type ([#440](https://github.com/martin-georgiev/postgresql-for-doctrine/issues/440)) ([745b269](https://github.com/martin-georgiev/postgresql-for-doctrine/commit/745b2695d334e8f352a6e24469ba2f39e175d1cb))
14+
* Add support for `websearch_to_tsquery` ([#437](https://github.com/martin-georgiev/postgresql-for-doctrine/issues/437)) ([be90545](https://github.com/martin-georgiev/postgresql-for-doctrine/commit/be9054563fbdfda912256d4ff24d8d971eddc7ec))
15+
16+
17+
### Bug Fixes
18+
19+
* **#424:** Address unintentional loss of string data type when retrieving PHP array item values from a stored `TextArray` value ([#443](https://github.com/martin-georgiev/postgresql-for-doctrine/issues/443)) ([bdb8df2](https://github.com/martin-georgiev/postgresql-for-doctrine/commit/bdb8df28f173d0e5b8510fa33c529af42fc01660))
20+
* Address broken escaping of array items for `JsonbArray` and preserve integer values as strings if they are outside PHP integer range ([#442](https://github.com/martin-georgiev/postgresql-for-doctrine/issues/442)) ([d213967](https://github.com/martin-georgiev/postgresql-for-doctrine/commit/d2139679a6b193df3e45ce04c8e56ebbc9dcf6f2))
21+
22+
23+
### Code Refactoring
24+
25+
* **#305:** Move PostGIS operators in a dedicated namespace ([#433](https://github.com/martin-georgiev/postgresql-for-doctrine/issues/433)) ([522e653](https://github.com/martin-georgiev/postgresql-for-doctrine/commit/522e653f4e1bff8de7b99c9171e5ae573e5dee1a))
26+
327
## [3.4.1](https://github.com/martin-georgiev/postgresql-for-doctrine/compare/v3.4.0...v3.4.1) (2025-08-03)
428

529

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@
4747
"deptrac/deptrac": "^4.0",
4848
"doctrine/orm": "~2.14||~3.0",
4949
"ekino/phpstan-banned-code": "^3.0",
50-
"friendsofphp/php-cs-fixer": "^3.86.0",
50+
"friendsofphp/php-cs-fixer": "^3.87.1",
5151
"phpstan/phpstan": "^2.1.22",
5252
"phpstan/phpstan-deprecation-rules": "^2.0.3",
5353
"phpstan/phpstan-doctrine": "^2.0.4",
5454
"phpstan/phpstan-phpunit": "^2.0.7",
5555
"phpunit/phpunit": "^10.5.53",
56-
"rector/rector": "^2.1.4",
56+
"rector/rector": "^2.1.5",
5757
"symfony/cache": "^6.4||^7.0"
5858
},
5959
"suggest": {

0 commit comments

Comments
 (0)