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: laravel/dusk
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.22.1
Choose a base ref
...
head repository: laravel/dusk
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.22.2
Choose a head ref
  • 5 commits
  • 4 files changed
  • 3 contributors

Commits on Feb 15, 2022

  1. Update CHANGELOG.md

    driesvints authored and actions-user committed Feb 15, 2022
    Configuration menu
    Copy the full SHA
    fcbb4b8 View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2022

  1. Update .styleci.yml

    driesvints authored Mar 17, 2022
    Configuration menu
    Copy the full SHA
    3f52d86 View commit details
    Browse the repository at this point in the history
  2. Update .styleci.yml

    driesvints authored Mar 17, 2022
    Configuration menu
    Copy the full SHA
    0b37da1 View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2022

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

Commits on Mar 24, 2022

  1. assertVue*() methods support Vue 3 composition API (#969)

    If Vue's composition API used, reactive data and computed props cannot
    be inspected through these methods.
    
    When fetching a component prop, attempt these paths:
    
    1. el.__vue__.key
       * Vue 2
    2. el.__vueParentComponent.ctx.key
       * Vue 3 options API
       * Vue 3 composition API for definedProps()
    3. el.__vueParentComponent.setupState.key
       * Vue 3 composition API reactive(), computed(), or any other
         <script setup> variables.
    
    If the ctx key is undefined, the setupState fallback is attempted.
    Wrap in a try/catch for attempts to access undefined nested props which
    could throw an error.
    derekmd authored Mar 24, 2022
    Configuration menu
    Copy the full SHA
    f62afe1 View commit details
    Browse the repository at this point in the history
Loading