Marco Pivetta
ad5de6f67a
Merge pull request #1362 from TomasVotruba/patch-2
...
Readme: badges for 2.5 added; 2.3- dropped
2015-04-03 13:49:55 +01:00
Tomáš Votruba
8a4d1e2cf6
Readme: badges for 2.5 added; 2.3- dropped
...
If I understand [2.5 release info](https://github.com/doctrine/doctrine2/releases/tag/v2.5.0 ) correctly, 2.4 will have last bugfix, then security fixes. I suppose then 2.3 and lower are in EOL, thus not needed to check badge for. Also they don't have any branch.
2015-04-03 14:16:48 +02:00
Marco Pivetta
1993aecd4c
Reverting BC break: PersistentConnection#__construct()
now accepts null|array|Collection
again
2015-04-02 23:45:46 +01:00
Marco Pivetta
6b5188fee8
FQCN reference (class was not imported correctly)
2015-04-02 23:45:12 +01:00
Marco Pivetta
670972d5c3
PersistentCollection
should still accept null
and array
as constructor argument, as it did before
2015-04-02 23:44:12 +01:00
Marco Pivetta
3bc3aeeb52
Minor docblock correction (discovered during testing)
2015-04-02 23:43:41 +01:00
Marco Pivetta
21b70577d3
Hydration of fetch-joined results fails when an entity has a default value of array
for the collection property
2015-04-02 23:43:16 +01:00
Marco Pivetta
6b94dc61c6
Merge branch 'hotfix/#1360-docs-fix-misleading-embeddable-documentation-prefix'
2015-04-02 23:25:02 +01:00
Stefan Blanke
293c6f6313
Fixed misleading typo in Embeddables tutorial
2015-04-02 23:19:26 +02:00
Marco Pivetta
f495dfcc9c
Merge branch 'docs/#1359-correcting-mapping-in-working-with-objects-reference'
2015-04-02 21:55:57 +01:00
Juti Noppornpitak
3b6616fe65
Fixed typo in the documentation
2015-04-02 16:46:25 -04:00
Marco Pivetta
f20de54281
Bumping version to 2.6.0-DEV
2015-04-02 21:42:47 +01:00
Marco Pivetta
aa80c7d2c5
Preparing for v2.5.0 release
2015-04-02 21:40:18 +01:00
Marco Pivetta
f8270d7bb2
Bumping branch alias for master
to 2.6.x-dev
2015-04-02 21:40:05 +01:00
Marco Pivetta
7ecadb4c61
Merge pull request #1358 from zerocrates/patch-1
...
Update docs for clear-cache commands
2015-04-02 20:33:51 +01:00
Marco Pivetta
014d554c28
Merge pull request #1355 from scaytrase/patch-1
...
[Docs] TablePrefix example - Check for being the owning side
2015-04-02 20:31:27 +01:00
Marco Pivetta
8d186528e6
Merge pull request #1357 from DavidPrevot/exec
...
Drop useless execution bit
2015-04-02 20:30:23 +01:00
John Flatness
5058312d6d
Update clear-cache command docs
2015-04-01 17:10:40 -04:00
David Prévot
b7cf41ca45
Drop useless execution bit
2015-04-01 16:01:22 -04:00
Pavel Batanov
ac70c18d50
Check for the being owning side
...
* Small fix do get rid of notice `undefined index 'joinTable'` as the inverse side does not declare `joinTable` at all.
* Shortened access to `$classMetadata->associationMappings[$fieldName]` for read accesses to increase readability
2015-04-01 14:55:52 +03:00
Marco Pivetta
61bcfda167
Bumping version to v2.5.0-DEV
2015-03-31 22:13:40 +01:00
Marco Pivetta
afd0f28c5f
Bumping version for v2.5.0-RC2 release
2015-03-31 22:12:50 +01:00
Marco Pivetta
13ef9fd179
Merge branch 'hotfix/#1350-default-property-value-for-sql-filter'
...
Close #1350
2015-03-31 22:03:20 +01:00
Marco Pivetta
9a2afd1a9a
#1350 - parameters
should be an array
by default
2015-03-31 22:02:48 +01:00
mmoreram
f6a1ea4859
Assigned default value to array
...
* For strict configurations of PHP, we were accessing to a non-array element
2015-03-31 22:02:05 +01:00
Marco Pivetta
82230cc427
Merge branch 'hotfix/#1353-#1347-#1351-fix-paginator-sorting-and-fetch-joining'
...
Close #1353
2015-03-31 21:55:27 +01:00
Marco Pivetta
ba00fc1e90
#1353 #1347 #1351 - s/inSubselect/inSubSelect (with docblock documentation)
2015-03-31 21:51:56 +01:00
Marco Pivetta
6c5dbd8d4c
#1353 #1347 #1351 - Removing double quotes (confusing)
2015-03-31 21:50:08 +01:00
Bill Schaller
5c93e61686
Fix issue in LimitSubqueryOutputWalker with entities having field names different from column names
2015-03-31 21:39:21 +01:00
Kristopher Wilson
9d7aa9ba39
Adding failing test case for PaginationTest
...
The failure comes into play when an entity has an attribute named
differently from its corresponding column name.
2015-03-31 21:39:21 +01:00
Bill Schaller
608dfa2f57
Add more detection in LimitSubqueryWalker for conditions that must be handled by LimitSubqueryOutputWalker
2015-03-31 21:39:20 +01:00
Bill Schaller
b76107e20f
resolve review comments from @stof
2015-03-31 21:39:20 +01:00
Bill Schaller
edcc0fc024
Fix paginator when ordering by while selecting entities using joined table inheritance
2015-03-31 21:39:20 +01:00
Bill Schaller
09d28819b5
Fix issue where paginating on a query with a subquery in the where clause crashed
2015-03-31 21:38:58 +01:00
Bill Schaller
af3f5c5c5a
Add test for paginating on a query with a subquery in the where clause
...
Conflicts:
tests/Doctrine/Tests/ORM/Tools/Pagination/LimitSubqueryOutputWalkerTest.php
2015-03-31 21:38:58 +01:00
Kristopher Wilson
a4aa18f796
test case for joined table inheritance pagination
2015-03-31 21:38:58 +01:00
Bill Schaller
010d52378c
Fix LimitSubqueryOutputWalkerTest
2015-03-31 21:36:33 +01:00
Bill Schaller
a8342a4be2
Cleanup
2015-03-31 21:36:33 +01:00
Alexander Orabey
f92307d06d
problem with LimitSubqueryOutputWalker when use InheritanceType
...
Conflicts:
tests/Doctrine/Tests/OrmFunctionalTestCase.php
2015-03-31 21:36:32 +01:00
Bill Schaller
ff75a3ad49
Fix paginator issues when ordering by a joined column from a to-many association.
...
Manual merge testcase from #1351
2015-03-31 21:36:32 +01:00
Bill Schaller
54d7efd92c
Fix LimitSubqueryOutputWalker when used on tables with joined table inheritance
2015-03-31 21:32:28 +01:00
Marco Pivetta
b923c937e2
Merge branch 'hotfix/#1352-entity-generator-new-class-metadata-hotfix'
...
Close #1352
2015-03-31 08:45:48 +01:00
Fedik
5cd8334897
fix EntityGenerator RegenerateEntityIfExists
2015-03-27 13:10:14 +02:00
Marco Pivetta
60bacda685
Bumping version to 2.5.0-DEV
2015-03-25 23:16:30 +00:00
Marco Pivetta
df902c9c6a
Preparing release v2.5.0-RC1
2015-03-25 23:14:52 +00:00
Marco Pivetta
cf1ecffb14
Merge pull request #1339 from BenMorel/dqlcustomtype
...
[DDC-2224] Honor convertToDatabaseValueSQL() in DQL query parameters
2015-03-25 01:27:05 +00:00
Benjamin Morel
9eb458caa6
Query::_getQueryCacheId() directly accesses $this->_parsedTypes
2015-03-24 17:14:45 +01:00
Marco Pivetta
dc99ed286a
Merge branch 'hotfix/#1342-paginator-functional-test-integration-take2'
...
Close #1342
Close #1337
Close #1325
2015-03-24 00:39:03 +00:00
Marco Pivetta
d97d3ec0e5
Minor CS fixes (braces)
2015-03-24 00:37:17 +00:00
Marco Pivetta
45d39dd50d
Making preserveSqlOrdering
API private
2015-03-24 00:36:13 +00:00