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: testing-library/angular-testing-library
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4c81ed9
Choose a base ref
...
head repository: testing-library/angular-testing-library
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1cd6fa1
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Nov 27, 2021

  1. fix: query params with same keys are added to the collection

    BREAKING CHANGE:
    
    Query params on a router link with the same key are no longer overwriting the last value.
    Instead they are added to an array.
    timdeschryver committed Nov 27, 2021
    Configuration menu
    Copy the full SHA
    110e135 View commit details
    Browse the repository at this point in the history
  2. fix: wrapper component selector is appended with atl-

    BEFORE:
    
    Wrapper component had `wrapper-component` as selector
    
    ```ts
    @component({ selector: 'wrapper-component', template: '' })
    class WrapperComponent {}
    ```
    
    AFTER:
    
    Wrapper component has `atl-wrapper-component` as selector
    
    ```ts
    @component({ selector: 'atl-wrapper-component', template: '' })
    class WrapperComponent {}
    ```
    timdeschryver committed Nov 27, 2021
    Configuration menu
    Copy the full SHA
    1cd6fa1 View commit details
    Browse the repository at this point in the history
Loading