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/cakephp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4.3.9
Choose a base ref
...
head repository: cakephp/cakephp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4.3.10
Choose a head ref
  • 12 commits
  • 9 files changed
  • 6 contributors

Commits on May 18, 2022

  1. Fix crash when you have a field which has the same name as your table

    If you have a column that has the same name as your table, the original version of this code crashes because you're trying to use the "+" operator to perform a merge of a string to an array. 
    
    Example: 
    Table "AccountName"
    Fields: 
      - ID
      - AccountNumber
      - AccountName
    
    In this case, the "isset($data[$tableName])" check is true and the code then tries to use the "+" operator to merge a string to the data array. 
    
    This change fixes this since it will only perform the "+" based merge if "$data[$tableName]" is an array
    rgasch authored May 18, 2022
    Configuration menu
    Copy the full SHA
    c3fd0a5 View commit details
    Browse the repository at this point in the history

Commits on May 21, 2022

  1. Add test for changes in #16504

    markstory committed May 21, 2022
    Configuration menu
    Copy the full SHA
    f4665c2 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #16504 from rgasch/4.x

    Fix crash when you have a field which has the same name as your table
    markstory authored May 21, 2022
    Configuration menu
    Copy the full SHA
    86efaaf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a6d82df View commit details
    Browse the repository at this point in the history

Commits on May 27, 2022

  1. update phpstan and psalm

    LordSimal committed May 27, 2022
    Configuration menu
    Copy the full SHA
    8803af1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    eced792 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #16524 from cakephp/4.x-update-stan

    4.x - update phpstan and psalm
    othercorey authored May 27, 2022
    Configuration menu
    Copy the full SHA
    b244752 View commit details
    Browse the repository at this point in the history

Commits on May 30, 2022

  1. Configuration menu
    Copy the full SHA
    a043f52 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #16532 from sheldonreiff/prevent-debug-info-fatal-…

    …error
    
    Prevent exception in debugInfo from causing fatal error
    markstory authored May 30, 2022
    Configuration menu
    Copy the full SHA
    5a0f0f0 View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2022

  1. chore: Set permissions for GitHub actions

     Restrict the GitHub token permissions only to the required ones; this way, even if the attackers will succeed in compromising your workflow, they won’t be able to do much.
    
    - Included permissions for the action. https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions
    
    https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
    
    https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs
    
    [Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/)
    
    Signed-off-by: naveen <172697+naveensrinivasan@users.noreply.github.com>
    naveensrinivasan committed Jun 3, 2022
    Configuration menu
    Copy the full SHA
    c0afd47 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #16540 from turrisxyz/Pinned-Dependencies-GitHub

    chore: Set permissions for GitHub actions
    othercorey authored Jun 3, 2022
    Configuration menu
    Copy the full SHA
    e02296c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c73d442 View commit details
    Browse the repository at this point in the history
Loading