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: stenciljs/core
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.28.2
Choose a base ref
...
head repository: stenciljs/core
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.30.0
Choose a head ref
  • 14 commits
  • 57 files changed
  • 6 contributors

Commits on Apr 2, 2025

  1. feat(jsx): add support for aria-* attributes in JSX typings (#6221)

    Add typings for ARIA attributes like `aria-labelledby`, `aria-hidden`, etc.,
    to the DOMAttributes interface. This allows better accessibility support and
    developer experience via type safety and IntelliSense.
    
    fixes: #6182
    AlirezaEbrahimkhani authored Apr 2, 2025
    Configuration menu
    Copy the full SHA
    6e748ec View commit details
    Browse the repository at this point in the history
  2. test(core): add type tests for JSX (#6222)

    * test(core): add type tests for JSX
    
    * prettier
    
    * build wdio project
    
    * don't validate git status
    
    * require project to be build first
    
    * install
    christian-bromann authored Apr 2, 2025
    Configuration menu
    Copy the full SHA
    5cca9ce View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2025

  1. feat(hydrate): support object serialization for hydrated components (#…

    …6208)
    
    * feat(hydrate): support object serialization for hydrated components
    
    * prettier
    
    * serialize parameters into string
    
    * don't serialize primitives
    
    * implement hydration part
    
    * prettier
    
    * add more unit tests
    
    * prettier
    
    * revert some unneeded changes
    
    * better identify if value is serializable
    
    * properly case unknown attributes
    
    * fix tests
    
    * reorganisation
    
    * fix unit tests
    
    * fix analysis tests
    
    * e2e fixes
    
    * prettier
    
    * progress
    
    * skip some tests
    
    * prettier
    
    * reorg
    
    * fix test
    
    * fix tests
    
    * only deserialize if hydrateClientSide is set
    
    * improve comment
    
    * more test improvements
    
    * prettier
    
    * revert some tests that cause test errors
    
    * Revert "revert some tests that cause test errors"
    
    This reverts commit 7b108e2.
    
    * chore: fix tests
    
    * chore: lint
    
    * chore: fix e2e tests
    
    ---------
    
    Co-authored-by: John Jenkins <john.jenkins@nanoporetech.com>
    christian-bromann and John Jenkins authored Apr 3, 2025
    Configuration menu
    Copy the full SHA
    523461e View commit details
    Browse the repository at this point in the history
  2. v4.29.0 (#6223)

    Co-authored-by: christian-bromann <731337+christian-bromann@users.noreply.github.com>
    github-actions[bot] and christian-bromann authored Apr 3, 2025
    Configuration menu
    Copy the full SHA
    a38a37b View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2025

  1. fix(runtime): properly set scope classes (#6224)

    * fix(runtime): properly set scope classes
    
    * prettier
    
    * update tests
    
    * prettier
    christian-bromann authored Apr 5, 2025
    Configuration menu
    Copy the full SHA
    5982264 View commit details
    Browse the repository at this point in the history
  2. Release v4.29.1 (#6225)

    * v4.29.1
    
    * update changelog
    
    ---------
    
    Co-authored-by: christian-bromann <731337+christian-bromann@users.noreply.github.com>
    Co-authored-by: Christian Bromann <git@bromann.dev>
    3 people authored Apr 5, 2025
    Configuration menu
    Copy the full SHA
    ecf1b97 View commit details
    Browse the repository at this point in the history

Commits on Apr 7, 2025

  1. fix(utils): don't create sourcemap file if disabled (#6229)

    * fix(utils): don't create sourcemap file if disabled
    
    * fix writeLazyChunk
    christian-bromann authored Apr 7, 2025
    Configuration menu
    Copy the full SHA
    31a97d2 View commit details
    Browse the repository at this point in the history
  2. v4.29.2 (#6230)

    Co-authored-by: christian-bromann <731337+christian-bromann@users.noreply.github.com>
    github-actions[bot] and christian-bromann authored Apr 7, 2025
    Configuration menu
    Copy the full SHA
    9aaccc5 View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2025

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

Commits on Apr 11, 2025

  1. fix(utils): remove lookbehind regexp for better performance (#6236)

    * fix(utils): remove lookbehind regexp for better performance
    
    * prettier
    
    * add performance test
    
    * CI is slower
    
    * prettier
    
    * more
    
    * don't fail me on that
    christian-bromann authored Apr 11, 2025
    Configuration menu
    Copy the full SHA
    2f712bc View commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2025

  1. fix(ssr): add scoped classes during SSR (#6238)

    * fix(ssr): add scoped classes to `scoped` ssr components
    
    * chore: add test
    
    * chore: lint
    
    * chore: only on server
    
    ---------
    
    Co-authored-by: John Jenkins <john.jenkins@nanoporetech.com>
    johnjenkins and John Jenkins authored Apr 14, 2025
    Configuration menu
    Copy the full SHA
    3363017 View commit details
    Browse the repository at this point in the history
  2. Release v4.29.3 (#6239)

    * v4.29.3
    
    * update
    
    ---------
    
    Co-authored-by: christian-bromann <731337+christian-bromann@users.noreply.github.com>
    Co-authored-by: Christian Bromann <git@bromann.dev>
    3 people authored Apr 14, 2025
    Configuration menu
    Copy the full SHA
    6e58761 View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2025

  1. feat(runtime): export a render method from the runtime (#6245)

    * feat(runtime): export a render method
    
    * fix unit tests
    
    * add missing export
    christian-bromann authored Apr 24, 2025
    Configuration menu
    Copy the full SHA
    e6c0593 View commit details
    Browse the repository at this point in the history
  2. v4.30.0 (#6246)

    Co-authored-by: christian-bromann <731337+christian-bromann@users.noreply.github.com>
    github-actions[bot] and christian-bromann authored Apr 24, 2025
    Configuration menu
    Copy the full SHA
    8df2970 View commit details
    Browse the repository at this point in the history
Loading