Permalink
base repository: doctrine/orm
Failed to load repositories. Confirm that selected base ref is valid, then try again.
base: 3.1.1
Choose a base ref
...
head repository: doctrine/orm
Failed to load repositories. Confirm that selected head ref is valid, then try again.
compare: 3.1.2
Choose a head ref
  • 18 commits
  • 23 files changed
  • 7 contributors

Commits on Mar 17, 2024

  1. [Documentation] Query Result Formats

    Page: https://www.doctrine-project.org/projects/doctrine-orm/en/2.19/reference/dql-doctrine-query-language.html#query-result-formats
    
    Follow-up of #11359
    
    The table I suggested is probably not working, since the text for each method is too long. And what I really wanted is to make it more *scanable*. So I tried boldfacing - if this doesn't work, I'll try something else.
    
    Questions:
    
    1. This section here is basically the same as https://www.doctrine-project.org/projects/doctrine-orm/en/2.10/reference/dql-doctrine-query-language.html#hydration-modes ! So I'll try to merge them (in another PR), OK? I think the list is a better format (more scanable) - since those methods all work the same, there's no need for a full-blown code sample for each, IMO.
    
    2. `getSingleColumnResult()` is missing.
    @ThomasLandauer
    ThomasLandauer authoredMar 17, 2024
    Configuration menu
    Copy the full SHA
    ae84225View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4b4b9b7View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2024

  1. Configuration menu
    Copy the full SHA
    46d0865View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2024

  1. Fix psalm errors: remove override of template type

    See doctrine/collections#368 for the same
    issue in doctrine/collections which has been fixed there.
    
    The issue happens when using ->contains(). Running psalm emits
    
      > InvalidArgument - Argument 1 of Doctrine\ORM\PersistentCollection::contains
      > expects
      > TMaybeContained:fn-doctrine\common\collections\readablecollection::contains
      > as mixed, but … provided.
    
    Solution: we should either not define @template TMaybeContained or
    re-define the complete psalm docblock from ReadableCollection.
    
    Repairing the docblock necessitates an update to the psalm baseline:
    one "known issue" is no longer an issue and thus removed.
    @tantegerda1
    tantegerda1 committedMar 22, 2024
    Configuration menu
    Copy the full SHA
    c54c557View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2024

  1. Merge pull request #11372 from ThomasLandauer/-12

    [Documentation] Query Result Formats
    @greg0ire
    greg0ire authoredMar 23, 2024
    Configuration menu
    Copy the full SHA
    e4a6c04View commit details
    Browse the repository at this point in the history
  2. Merge pull request #11389 from tantegerda1/2.19.x

    Fix psalm errors: remove override of template type
    @greg0ire
    greg0ire authoredMar 23, 2024
    Configuration menu
    Copy the full SHA
    6090141View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    753bc16View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2024

  1. [Documentation] Merging "Query Result Formats" with "Hydration Modes"

    Page: https://www.doctrine-project.org/projects/doctrine-orm/en/2.19/reference/dql-doctrine-query-language.html#query-result-formats
    
    As announced in #11372 (comment), I merged the (mostly) identical sections.
    
    * I changed the `const`s from `Query` to `AbstractQuery`
    * I deleted this - mainly cause I didn't find a nice place for it:
        > In parentheses are the constants of the ``Query`` class which you can use with the
    general-purpose method ``Query::execute(array $params = [], $hydrationMode = Query::HYDRATE_OBJECT)``.
    @ThomasLandauer
    ThomasLandauer committedMar 27, 2024
    Configuration menu
    Copy the full SHA
    5f3c1dbView commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2024

  1. Merge pull request #11403 from ThomasLandauer/-10

    [Documentation] Merging "Query Result Formats" with "Hydration Modes"
    @greg0ire
    greg0ire authoredMar 28, 2024
    Configuration menu
    Copy the full SHA
    e9e60f2View commit details
    Browse the repository at this point in the history
  2. Merge pull request #11399 from ThomasLandauer/issue-11377

    SchemaValidator: Changing mapping of BIGINT to string|int
    @greg0ire
    greg0ire authoredMar 28, 2024
    Configuration menu
    Copy the full SHA
    cbb6c89View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2024

  1. Fix templated phpdoc return type (#11407)

    * Improve getClassMetadata phpdoc
    
    * Update baseline
    @VincentLanglet
    VincentLanglet authoredApr 1, 2024
    Configuration menu
    Copy the full SHA
    8709fb3View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2024

  1. Configuration menu
    Copy the full SHA
    1464827View commit details
    Browse the repository at this point in the history
  2. Merge pull request #11408 from VincentLanglet/fix/fromMappingArray

    Fix fromMappingArray definition
    @greg0ire
    greg0ire authoredApr 3, 2024
    Configuration menu
    Copy the full SHA
    93eb8a1View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2024

  1. Configuration menu
    Copy the full SHA
    010b1e0View commit details
    Browse the repository at this point in the history
  2. Merge pull request #11413 from Nayte91/doc/php-version

    docs: update PHP version in doc
    @greg0ire
    greg0ire authoredApr 15, 2024
    Configuration menu
    Copy the full SHA
    e0e55dcView commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b274893View commit details
    Browse the repository at this point in the history
  4. Revert "Merge pull request #11399 from ThomasLandauer/issue-11377" (#…

    …11415)
    
    This reverts commit cbb6c89, reversing
    changes made to 9c56071.
    @derrabus
    derrabus authoredApr 15, 2024
    Configuration menu
    Copy the full SHA
    9c22814View commit details
    Browse the repository at this point in the history
  5. Merge branch '2.19.x' into 3.1.x

    * 2.19.x:
      Fix BIGINT validation (#11414)
      Fix templated phpdoc return type (#11407)
      [Documentation] Merging "Query Result Formats" with "Hydration Modes"
      Fix psalm errors: remove override of template type
      Update dql-doctrine-query-language.rst
      Adding `NonUniqueResultException`
      [Documentation] Query Result Formats
    @derrabus
    derrabus committedApr 15, 2024
    Configuration menu
    Copy the full SHA
    f79d166View commit details
    Browse the repository at this point in the history
Loading