Permalink
base repository: doctrine/dbal
Failed to load repositories. Confirm that selected base ref is valid, then try again.
base: 4.0.1
Choose a base ref
...
head repository: doctrine/dbal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
compare: 4.0.2
Choose a head ref
  • 20 commits
  • 13 files changed
  • 10 contributors

Commits on Mar 5, 2024

  1. Fix double quote used wrongly for literal value in SqliteSchemaManager (

    #6325)
    
    |      Q       |   A
    |------------- | -----------
    | Type         | bug
    | Fixed issues | 
    
    #### Summary
    
    It seems PHP SQLite drivers allows `"` to be used to escape literal
    values, but natively such syntax produces an sqlite parse error [1].
    
    I have discovered this when analysing SQLite log, it is otherwise
    tested.
    
    I checked all other `"` in SQLite platform and manager and all of them
    seems correct otherwise.
    
    [1] https://dbfiddle.uk/KQAGp9Ea (notice the 2nd query is the same, but
    uses `"` instead of `'`)
    @mvorisek
    mvorisek authoredMar 5, 2024
    Configuration menu
    Copy the full SHA
    View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2024

  1. Spell which properly

    @greg0ire
    greg0ire committedMar 12, 2024
    Configuration menu
    Copy the full SHA
    View commit details
    Browse the repository at this point in the history
  2. Update UPGRADE.md

    The list of reserved characters for cache key names was missing ':'
    @kalifg
    kalifg authoredMar 12, 2024
    Configuration menu
    Copy the full SHA
    eef300fView commit details
    Browse the repository at this point in the history
  3. Merge pull request #6332 from greg0ire/witch-hunt

    Spell which properly
    @SenseException
    SenseException authoredMar 12, 2024
    Configuration menu
    Copy the full SHA
    87785d8View commit details
    Browse the repository at this point in the history
  4. Merge pull request #6333 from kalifg/-1

    Update UPGRADE.md
    @greg0ire
    greg0ire authoredMar 12, 2024
    Configuration menu
    Copy the full SHA
    cbc2e57View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2024

  1. [Documentation] Adding "versionadded" (#6336)

    |      Q       |   A
    |------------- | -----------
    | Type         | improvement
    | Fixed issues | none
    
    #### Summary
    
    Page:
    https://www.doctrine-project.org/projects/doctrine-dbal/en/4.0/reference/types.html#bigint
    
    The `int`-mapping needs to be added at
    https://www.doctrine-project.org/projects/doctrine-orm/en/3.1/reference/basic-mapping.html#doctrine-mapping-types
    too!
    
    What is the right version information? Is it only working if you have
    DBAL 4 **and** ORM 3?
    @ThomasLandauer
    ThomasLandauer authoredMar 19, 2024
    Configuration menu
    Copy the full SHA
    bd7e79fView commit details
    Browse the repository at this point in the history
  2. Remove older versions from the docs

    To reduce Algolia operations and indexes older versions get removed
    @SenseException
    SenseException committedMar 19, 2024
    Configuration menu
    Copy the full SHA
    aec34a9View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2024

  1. Configuration menu
    Copy the full SHA
    e0219f8View commit details
    Browse the repository at this point in the history
  2. Merge pull request #6339 from SenseException/remove-docs

    Remove older versions from the docs
    @SenseException
    SenseException authoredMar 20, 2024
    Configuration menu
    Copy the full SHA
    d9109cdView commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2024

  1. Configuration menu
    Copy the full SHA
    e5db00eView commit details
    Browse the repository at this point in the history
  2. Merge branch '3.8.x' into 4.0.x

    * 3.8.x:
      Add MariaDB 11.3 to the test matrix (#6342)
      Spell which properly
      Fix double quote used wrongly for literal value in SqliteSchemaManager (#6325)
    @derrabus
    derrabus committedMar 21, 2024
    Configuration menu
    Copy the full SHA
    c70bae9View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2024

  1. Remove unused script

    I forgot to remove it in e7aef4e.
    @greg0ire
    greg0ire committedApr 10, 2024
    Configuration menu
    Copy the full SHA
    a527330View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2024

  1. Document how to run integration tests locally

    I am also replacing the commented out connection parameters in
    phpunit.xml.dist with a link to this paragraph because they have
    diverged from the one we use in the CI since f88dc28.
    @greg0ire
    greg0ire committedApr 11, 2024
    Configuration menu
    Copy the full SHA
    d5d4ed5View commit details
    Browse the repository at this point in the history
  2. Merge pull request #6355 from greg0ire/doc-local-tests

    Document how to run integration tests locally
    @greg0ire
    greg0ire authoredApr 11, 2024
    Configuration menu
    Copy the full SHA
    16cfdc8View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2024

  1. Ensure correct json default value normalization (#6358)

    <!-- Fill in the relevant information below to help triage your pull
    request. -->
    
    |      Q       |   A
    |------------- | -----------
    | Type         | bug
    | Fixed issues | #6357
    
    #### Summary
    
    `PostgreSQLSchemaManager::_getPortableTableColumnDefinition()` is
    modified to call the private method `parseDefaultExpression()` on
    default values for `JSON` field to correctly normalize doubled
    single-quotes in json string value.
    
    A test to cover this case is added.
    @sbuerk
    sbuerk authoredApr 16, 2024
    Configuration menu
    Copy the full SHA
    e2a6621View commit details
    Browse the repository at this point in the history
  2. Avoid calling deprecated Type::getName() (#6359)

    Follow-up to #6358 (@sbuerk): `getName()` is gone on 4.0.x. This change
    will make merging this test up easier for us.
    @derrabus
    derrabus authoredApr 16, 2024
    Configuration menu
    Copy the full SHA
    edbf307View commit details
    Browse the repository at this point in the history
  3. Merge branch '3.8.x' into 4.0.x

    * 3.8.x:
      Avoid calling deprecated Type::getName() (#6359)
      Ensure correct json default value normalization (#6358)
      Document how to run integration tests locally
      Remove unused script
    @derrabus
    derrabus committedApr 16, 2024
    Configuration menu
    Copy the full SHA
    7fb00fdView commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2024

  1. Configuration menu
    Copy the full SHA
    View commit details
    Browse the repository at this point in the history
  2. Connection::setNestTransactionsWithSavepoints() should not break lazy…

    … connection (#6362)
    
    |      Q       |   A
    |------------- | -----------
    | Type         | bug
    | Fixed issues | N/A
    
    #### Summary
    
    When calling `Connection::setNestTransactionsWithSavepoints()`, the
    platform is fetched to check if savepoints are actually supported. This
    is a problem because it might cause the connection to be opened.
    
    I've removed the check which will postpone the exception to the first
    time we attempt to create a savepoint.
    @derrabus
    derrabus authoredApr 25, 2024
    Configuration menu
    Copy the full SHA
    b05e48aView commit details
    Browse the repository at this point in the history
  3. Merge branch '3.8.x' into 4.0.x

    * 3.8.x:
      Connection::setNestTransactionsWithSavepoints() should not break lazy connection (#6362)
      [Docs] Update docs regarding "datetimetz" type (#6014)
    @derrabus
    derrabus committedApr 25, 2024
    Configuration menu
    Copy the full SHA
    61d79c6View commit details
    Browse the repository at this point in the history
Loading