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: main
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: beta
Choose a head ref
  • 5 commits
  • 11 files changed
  • 3 contributors

Commits on Jun 7, 2025

  1. feat: update to Angular 20 (#530)

    BREAKING CHANGE:
    
    The angular minimum version has changed.
    
    BEFORE:
    
    Angular 17,18,19 were supported.
    
    AFTER:
    
    Angular 20 is supported:
      - TestBed.get is removed
    timdeschryver authored Jun 7, 2025
    Configuration menu
    Copy the full SHA
    6a64bbe View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2025

  1. feat: remove animations dependency (#531)

    BREAKING CHANGE:
    
    Angular recommends using CSS animations, https://angular.dev/guide/animations/migration
    
    Because of the removal of the animations dependency, the `NoopAnimationsModule` is no longer automatically imported in the render function.
    
    BEFORE:
    
    The `NoopAnimationsModule` is always imported to the render the component.
    
    AFTER:
    
    Import the `NoopAnimationsModule` in your render configuration where needed:
    
    ```ts
     await render(SutComponent, {
        imports: [NoopAnimationsModule],
    });
    ```
    timdeschryver authored Jun 8, 2025
    Configuration menu
    Copy the full SHA
    59f73ae View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2025

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

Commits on Jun 28, 2025

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

Commits on Jul 14, 2025

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