FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

Comparing a7a9017...39480f8 · angular/components · GitHub

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: angular/components
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a7a9017
Choose a base ref
Could not load branches
Nothing to show
{{ refName }}
...
head repository: angular/components
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 39480f8
Choose a head ref
Could not load branches
Nothing to show
{{ refName }}
  • 19 commits
  • 81 files changed
  • 8 contributors

Commits on Nov 3, 2021

  1. build: update linker integration test to work with APF v13 (#23883)

    Updates the linker integration test, which is an additional test we
    run for the linker, besides running our tests with the linker.
    
    The linker integration test ensures that the NPM package partial
    compilation output can be processed properly, and ensures that there
    are no unprocessable partial declarations.
    
    (cherry picked from commit 18d549e)
    devversion authored and jelbourn committed Nov 3, 2021
    Configuration menu
    Copy the full SHA
    9ff792c View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2021

  1. build: use issue forms for issue creation (#23812)

    (cherry picked from commit 7c1e975)
    lekhmanrus authored and amysorto committed Nov 4, 2021
    Configuration menu
    Copy the full SHA
    5585d4f View commit details
    Browse the repository at this point in the history
  2. build: do not accidentally cache undesired files in github action (#2…

    …3875)
    
    This commit fixes that the Github actions currently may cache undesired
    files. e.g. when Bazel runs the `dist/` folder is populated and
    symlinked with the execroot, where another clone of the `node_modules`
    would be cached accidentally then. We use an explicit path instead of a
    pattern as it has been recommended by the Github action documentation.
    
    Additionally, we fix that the dev-app building on RBE occurs with 2
    concurrent jobs due to the host containers only having 2 cores. We can
    run more jobs in the RBE containers.
    
    (cherry picked from commit acd5ee1)
    devversion authored and amysorto committed Nov 4, 2021
    Configuration menu
    Copy the full SHA
    a2dd724 View commit details
    Browse the repository at this point in the history
  3. build: update to stable v13.0.0 Angular packages (#23892)

    Updates framework packages to v13.0.0 and the CLI to v13.0.1. This
    ensures our integration tests run with a stable version.
    
    (cherry picked from commit 22d092e)
    devversion authored and amysorto committed Nov 4, 2021
    Configuration menu
    Copy the full SHA
    fefc6e9 View commit details
    Browse the repository at this point in the history
  4. docs: update readme for Q4 2021 (#23898)

    (cherry picked from commit df89f0d)
    jelbourn authored and amysorto committed Nov 4, 2021
    Configuration menu
    Copy the full SHA
    d6dfda2 View commit details
    Browse the repository at this point in the history
  5. refactor: fix examples not recognizing webcontainer stackblitz instan…

    …ces (#23901)
    
    Fixes that examples do not properly recognize webcontainer Stackblitz
    instances. This causes some sidenav examples to not even work within
    Stackblitz as a message `Please open on Stackblitz` is displayed.
    
    Fixes #23895.
    
    (cherry picked from commit e7a3f68)
    devversion authored and amysorto committed Nov 4, 2021
    Configuration menu
    Copy the full SHA
    ca1e29e View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2021

  1. docs: add detailed breaking change note for Sass tilde change (#23910)

    * docs: add detailed breaking change note for Sass tilde change
    
    Adds a detailed breaking change note for the Sass tilde change,
    and cleans up some other auto-generated notes.
    
    * fixup! docs: add detailed breaking change note for Sass tilde change
    
    use permalink
    
    (cherry picked from commit 3240a50)
    devversion authored and amysorto committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    3659b5e View commit details
    Browse the repository at this point in the history
  2. build: remove unused code from legacy tooling and remove view-engine …

    …leftovers (#23899)
    
    * build: remove unused code from legacy tooling and remove viewengine leftovers
    
    Removes unused code from legacy tooling and View Engine compilation
    within Bazel.
    
    Also the clang-format file is removed given that we run prettier
    in the whole repository now.
    
    * fixup! build: remove unused code from legacy tooling and remove viewengine leftovers
    
    ds
    
    (cherry picked from commit be9abca)
    devversion authored and amysorto committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    985ffce View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2021

  1. fix(material/core): test environment check not picking up jest (#23722)

    In #23636 the test environment check was changed so that it looks for the test objects either on `window` or `global`, however it looks like this isn't enough to pick up Jest which isn't published on either.
    
    These changes simplify the setup by looking up the value globally and disabling the type checkng error with `@ts-ignore`. We can't use `declare const` for it, because it causes issues in g3.
    
    I've also reverted some of the `any` types that had to be added in #23636.
    
    Fixes #23365.
    
    (cherry picked from commit ff7fd48)
    crisbeto authored and amysorto committed Nov 8, 2021
    Configuration menu
    Copy the full SHA
    2fc63ef View commit details
    Browse the repository at this point in the history
  2. fix(material/chips): Declare that MatChipInput.inputElement is always…

    … defined (#23868)
    
    It is initialized in the contructor, so there is no chance of it being
    undefined.
    
    (cherry picked from commit 72d2e5a)
    mmalerba authored and amysorto committed Nov 8, 2021
    Configuration menu
    Copy the full SHA
    e8a6eed View commit details
    Browse the repository at this point in the history
  3. fix(material/form-field): update outline gap when prefix changes (#23869

    )
    
    The position of the outline gap depends on the size of the prefix, but we weren't set up to update it when that happens.
    
    Fixes #23863.
    
    (cherry picked from commit a6d4141)
    crisbeto authored and amysorto committed Nov 8, 2021
    Configuration menu
    Copy the full SHA
    5d49df1 View commit details
    Browse the repository at this point in the history
  4. refactor(multiple): clean up host decorator workarounds (#23879)

    We had some workarounds with `HostListener` and `HostBinding` which go against our conventions. They were used to support ViewEngine, but they are no longer necessary.
    
    (cherry picked from commit 5fb821f)
    crisbeto authored and amysorto committed Nov 8, 2021
    Configuration menu
    Copy the full SHA
    e4dcb4f View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2021

  1. build: update karma to v6.3.8 which contains sourcemap generated-code…

    … fix (#23922)
    
    Updates to Karma v6.3.8 which contains a sourcemap fix we landed
    upstream. Previous versions of Karma printed/polluted the log output
    when an error is thrown due to generated-code being part of stack
    traces (due to ESBuild downleveling).
    
    More details here:
    https://gist.github.com/devversion/549d25915c2dc98a8896ba4408a1e27c.
    
    karma-runner/karma@4f23b14
    (cherry picked from commit f69cf6c)
    devversion authored and amysorto committed Nov 9, 2021
    Configuration menu
    Copy the full SHA
    415d841 View commit details
    Browse the repository at this point in the history
  2. fix(material/slide-toggle): remove tabindex from host node (#23891)

    The `tabindex="-1"` on the host node was causing VoicerOver to read out the slide toggle as a group and to read out the label twice. These changes remove the `tabindex` like we've done for `mat-radio` and `mat-checkbox` in the past.
    
    (cherry picked from commit b533e61)
    crisbeto authored and amysorto committed Nov 9, 2021
    Configuration menu
    Copy the full SHA
    2b99632 View commit details
    Browse the repository at this point in the history
  3. fix(material/chips): add selected indication in high contrast mode (#…

    …23828)
    
    Currently the single-selection chip shows that it's selected by changing its background color, but that doesn't work in high contrast mode. These changes add a thicker outline when the chip is selected.
    
    (cherry picked from commit 2c637d3)
    crisbeto authored and amysorto committed Nov 9, 2021
    Configuration menu
    Copy the full SHA
    15237f8 View commit details
    Browse the repository at this point in the history
  4. fix(cdk/overlay): remove Optional decorator in ConnectedOverlayPositi…

    …onChange constructor (#23735)
    
    (cherry picked from commit 1267263)
    Marco Marche authored and amysorto committed Nov 9, 2021
    Configuration menu
    Copy the full SHA
    36fa18b View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2021

  1. build: update to latest @angular/dev-infra-private to address issues …

    …related to verifying environment (#23944)
    
    Update to the latest package which properly checks if the running version of ng-dev is the version
    described in yarn lock.
    
    (cherry picked from commit ca18e2d)
    josephperrott authored and amysorto committed Nov 10, 2021
    Configuration menu
    Copy the full SHA
    3c926b5 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2021

  1. fix(multiple): update to angular v13.0.1 to emit proper partial compi…

    …lation output (#23951)
    
    Updates to Angular v13.0.1 which fixes the partial compilation output
    for `forwardRef` usages in queries. The fixed partial compilation output
    will ensure that Angular CDK/Material works with JIT linking at runtime,
    as done in e.g. Jest.
    
    Fix upstream: angular/angular#44113.
    
    We will add some testing for the JIT linker to the `angular/components`
    repository with: #23882. That
    should help ensuring JIT linking does not regress.
    
    Fixes #23907.
    
    (cherry picked from commit 8cb0f12)
    devversion authored and amysorto committed Nov 11, 2021
    Configuration menu
    Copy the full SHA
    9a3fc9a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    39480f8 View commit details
    Browse the repository at this point in the history
Loading

Back | FazBrowse Home | New Git URL