Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cakephp/phinx
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.16.2
Choose a base ref
...
head repository: cakephp/phinx
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.16.3
Choose a head ref
  • 12 commits
  • 17 files changed
  • 4 contributors

Commits on Jul 22, 2024

  1. Fix README badges

    Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
    MasterOdin authored Jul 22, 2024
    Configuration menu
    Copy the full SHA
    6e9ba25 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2296 from cakephp/MasterOdin-patch-1

    Fix README badges
    dereuromark authored Jul 22, 2024
    Configuration menu
    Copy the full SHA
    5f9ee84 View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2024

  1. Configuration menu
    Copy the full SHA
    1dbfdc1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    eae55bc View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2024

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

Commits on Aug 9, 2024

  1. Update migrations.rst

    Update documentation based on the latest code changes
    
    ```php
        /**
         * @inheritdoc
         */
        public function getQueryBuilder(string $type): Query
        {
            return match ($type) {
                Query::TYPE_SELECT => $this->getDecoratedConnection()->selectQuery(),
                Query::TYPE_INSERT => $this->getDecoratedConnection()->insertQuery(),
                Query::TYPE_UPDATE => $this->getDecoratedConnection()->updateQuery(),
                Query::TYPE_DELETE => $this->getDecoratedConnection()->deleteQuery(),
                default => throw new InvalidArgumentException(
                    'Query type must be one of: `select`, `insert`, `update`, `delete`.'
                )
            };
        }
    ```
    
    Ref 1: https://github.com/cakephp/phinx/blob/b0f4397dd57eb91bd5369c2770a4f2656a3f993c/src/Phinx/Db/Adapter/PdoAdapter.php#L239-L250
    MarwanSalim authored Aug 9, 2024
    Configuration menu
    Copy the full SHA
    61e88e8 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2303 from MarwanSalim/patch-1

    Update migrations.rst
    dereuromark authored Aug 9, 2024
    Configuration menu
    Copy the full SHA
    0480295 View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2024

  1. Configuration menu
    Copy the full SHA
    6e1de47 View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2024

  1. Configuration menu
    Copy the full SHA
    cbcd067 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a093a96 View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2024

  1. Configuration menu
    Copy the full SHA
    d55d705 View commit details
    Browse the repository at this point in the history
  2. Fix setting sqlsrv PK name with qualified table name (#2306)

    Co-authored-by: Matthew Peveler <matt.peveler@gmail.com>
    MichaelDesignamite and MasterOdin authored Sep 7, 2024
    Configuration menu
    Copy the full SHA
    b5dab99 View commit details
    Browse the repository at this point in the history
Loading