Thanks to visit codestin.com
Credit goes to github.com

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: TYPO3/testing-framework
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9.0.1
Choose a base ref
...
head repository: TYPO3/testing-framework
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9.0.2
Choose a head ref
  • 10 commits
  • 14 files changed
  • 4 contributors

Commits on Oct 18, 2024

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

Commits on Oct 25, 2024

  1. [BUGFIX] Avoid TYPO3\CMS\Backend\FrontendBackendUserAuthentication (#636

    )
    
    Use TYPO3\CMS\Frontend\Authentication\FrontendBackendUserAuthentication
    instead, the class has been moved from ext:backend to ext:frontend in
    TYPO3 v13, the old name has been established as alias and is
    removed with TYPO3 v14.
    lolli42 authored Oct 25, 2024
    Configuration menu
    Copy the full SHA
    8650ddc View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2024

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

Commits on Nov 9, 2024

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

Commits on Nov 11, 2024

  1. Revert "[TASK] Increase git fetch depth for pull-requests"

    This reverts commit cd23e9f,
    which was a experimental try to mitigate an issue with scheduled
    execution breaking external fork pull-requests. It's not needed
    and removed again.
    sbuerk committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    c68c8eb View commit details
    Browse the repository at this point in the history
  2. [TASK] Use simplier and working checkout ref determination

    With the introduction of non-main branch scheduled workflow
    execution a adjusted checkout part in the `ci.yml` workflow
    file has been added to allow to define which branch should
    be checked out.
    
    That breaks pipeline execution for pull-requests opened from
    repository forks.
    
    This change replaces the old detection with a more simplified
    implementation, only setting the custom ref in case of github
    workflow_dispatch event execution using `''` as fallback which
    allows custom branch selection for workflow dispatching while
    keeping default repostiory and branch checkout intact.
    
    Releases: main, 8, 7
    sbuerk committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    302dd83 View commit details
    Browse the repository at this point in the history

Commits on Nov 26, 2024

  1. [TASK] Use friendsofphp/php-cs-fixer:^3.65.0 and fix cgl (#648)

    > composer req --dev friendsofphp/php-cs-fixer:^3.65.0
    
    Releases: main, 8, 7
    lolli42 authored Nov 26, 2024
    Configuration menu
    Copy the full SHA
    d288c86 View commit details
    Browse the repository at this point in the history
  2. [TASK] phpstan v2 (#652)

    > composer req --dev phpstan/phpstan:^2.0.2 phpstan/phpstan-phpunit:^2.0.1
    > Build/Scripts/runTests.sh -s phpstanGenerateBaseline -p 8.2
    
    Releases: main, 8
    lolli42 authored Nov 26, 2024
    Configuration menu
    Copy the full SHA
    ae48808 View commit details
    Browse the repository at this point in the history
  3. [TASK] Trigger assertion in assertCSVDataSet() on empty table (#653)

    When comparing with a csv fixture that contains a table
    with no rows, which is a legit case, no assertion is
    raised. This makes phpunit emit a risky test: "This test
    did not perform any assertions". The patch adds an
    assertion in this case as well.
    
    Note phpunit nowadays has attribute #[DoesNotPerformAssertions]
    to mark tests that do not assert anything. This can be used
    for tests that for instance just call a subject method to verify
    no exception is raised. It is good to follow this path, the
    patch removes "beStrictAboutTestsThatDoNotTestAnything=false"
    from the example phpunit xml files, which makes this setting
    implicitly true.
    
    Releases: main
    Resolves: #647
    lolli42 authored Nov 26, 2024
    Configuration menu
    Copy the full SHA
    f31a26f View commit details
    Browse the repository at this point in the history
Loading