-
Notifications
You must be signed in to change notification settings - Fork 92
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
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: v10.11.1
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: testing-library/angular-testing-library
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v11.0.0
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 9 commits
- 57 files changed
- 4 contributors
Commits on Nov 23, 2021
-
Configuration menu - View commit details
-
Copy full SHA for bdd1bc4 - Browse repository at this point
Copy the full SHA bdd1bc4View commit details
Commits on Nov 26, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 58d832b - Browse repository at this point
Copy the full SHA 58d832bView commit details
Commits on Dec 3, 2021
-
chore: update nx and angular 13 (#260)
BREAKING CHANGE: This version requires the following versions: - Angular v13
Configuration menu - View commit details
-
Copy full SHA for eddd686 - Browse repository at this point
Copy the full SHA eddd686View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2338f85 - Browse repository at this point
Copy the full SHA 2338f85View commit details -
feat: add rerender method (#257)
BREAKING CHANGE: `rerender` has been renamed to `change`. The `change` method keeps the current fixture intact and invokes `ngOnChanges`. The new `rerender` method destroys the current component and creates a new instance with the updated properties. BEFORE: ```ts const { rerender } = render(...) rerender({...}) ``` AFTER: ```ts const { change } = render(...) change({...}) ```
Configuration menu - View commit details
-
Copy full SHA for cd17373 - Browse repository at this point
Copy the full SHA cd17373View commit details -
Configuration menu - View commit details
-
Copy full SHA for eb06c83 - Browse repository at this point
Copy the full SHA eb06c83View commit details -
feat: remove RenderDirectiveOptions (#265)
BREAKING CHANGE: The template property is removed from the render options. Instead, you can pass it as the first argument of `render. BEFORE: ```ts await render(InputOutputComponent, { // 👇 this is deprecated template: '<app-fixture [value]="47" (sendValue)="sendValue($event)" (clicked)="clicked()"></app-fixture>', componentProperties: { sendValue: sendSpy, }, }); ``` AFTER: ```ts // 👇 Move the template in the first argument await render('<app-fixture [value]="47" (sendValue)="sendValue($event)" (clicked)="clicked()"></app-fixture>', { // 👇 Add the component to declarations declarations: [InputOutputComponent], componentProperties: { sendValue: sendSpy, }, }); ```
Configuration menu - View commit details
-
Copy full SHA for 3076885 - Browse repository at this point
Copy the full SHA 3076885View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 82e037e - Browse repository at this point
Copy the full SHA 82e037eView commit details -
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 {} ```
Configuration menu - View commit details
-
Copy full SHA for 6ea2e7f - Browse repository at this point
Copy the full SHA 6ea2e7fView commit details
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v10.11.1...v11.0.0