Thanks to visit codestin.com
Credit goes to github.com

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.0.5
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.1.0
Choose a head ref
  • 20 commits
  • 31 files changed
  • 4 contributors

Commits on Aug 16, 2023

  1. chore(compiler): jsdoc dependency generation (#4674)

    * chore(compiler): jsdoc dependency generation
    
    this commit adds documentation by the way of jsdoc to the type
    declarations and functions for generating a list of direct/indirect
    dependencies a component has, as well as a list of components that are
    direct/indirect dependent on a component
    
    * review(ap): add note on entries being populated
    rwaskiewicz authored Aug 16, 2023
    Configuration menu
    Copy the full SHA
    91bb7bc View commit details
    Browse the repository at this point in the history
  2. fix(runtime): adds a testing check to the forceUpdate method (#4682)

    This commit adds a check for `isTesting` in addition to `isBrowser` so that the forceUpdate logic can run in test environments without needing to change the testing build conditional values. These changes were causing tests to fail in Framework.
    tanner-reits authored Aug 16, 2023
    Configuration menu
    Copy the full SHA
    7e9544d View commit details
    Browse the repository at this point in the history
  3. fix(typings): add crossorigin html attr to img (#4686)

    this commit adds the `crossorigin` html attribute for image tages
    (`img`) to stencil's public runtime typings. upon applying this commit,
    projects using stencil should be able to type the following in their
    `render` function and not receive a typing error:
    ```tsx
    render() {
      return <img crossorigin="anonymous"></img>
    }
    ```
    
    Fixes: #4685
    rwaskiewicz authored Aug 16, 2023
    Configuration menu
    Copy the full SHA
    65d60fb View commit details
    Browse the repository at this point in the history
  4. feat(compiler): include getAssetPath in generated export statement (#…

    …4683)
    
    * feat(compiler): include `getAssetPath` in generated export statement
    
    * add typedef for `getAssetPath`
    
    * update typedef signature & add typedef to tests
    tanner-reits authored Aug 16, 2023
    Configuration menu
    Copy the full SHA
    821da79 View commit details
    Browse the repository at this point in the history
  5. docs(release): notify CS of enterprise fixes (#4648)

    * chore(docs): move release readme to RELEASE.md
    
    * docs(release): add a note to ensure the merge queue has been drained
    
    * add note about pinging issues
    
    * add code freeze call-out
    
    * docs(release): add step to notify CS about customer fixes
    
    * update comment for notifying CS
    
    Co-authored-by: Ryan Waskiewicz <[email protected]>
    
    ---------
    
    Co-authored-by: Alice Pote <[email protected]>
    Co-authored-by: Ryan Waskiewicz <[email protected]>
    3 people authored Aug 16, 2023
    Configuration menu
    Copy the full SHA
    838c0b5 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2023

  1. chore(deps): update dependency @rollup/pluginutils to v5.0.3 (#4687)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 17, 2023
    Configuration menu
    Copy the full SHA
    1eaaa98 View commit details
    Browse the repository at this point in the history
  2. chore(deps): update dependency @types/node to v20.5.0 (#4691)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 17, 2023
    Configuration menu
    Copy the full SHA
    b99c3f0 View commit details
    Browse the repository at this point in the history
  3. chore(deps): update actions/setup-node action to v3.8.0 (#4690)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 17, 2023
    Configuration menu
    Copy the full SHA
    0d0bc4b View commit details
    Browse the repository at this point in the history
  4. chore(deps): update dependency autoprefixer to v10.4.15 (#4688)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 17, 2023
    Configuration menu
    Copy the full SHA
    d090943 View commit details
    Browse the repository at this point in the history
  5. chore(deps): update dependency ubuntu to v22 (#4671)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 17, 2023
    Configuration menu
    Copy the full SHA
    5a2ec80 View commit details
    Browse the repository at this point in the history
  6. chore(deps): update dependency eslint to v8.47.0 (#4692)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 17, 2023
    Configuration menu
    Copy the full SHA
    2b7ea71 View commit details
    Browse the repository at this point in the history
  7. chore(deps): update dependency puppeteer to v21.0.3 (#4689)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 17, 2023
    Configuration menu
    Copy the full SHA
    2629fab View commit details
    Browse the repository at this point in the history
  8. chore(repo): stub pull request action (#4675)

    this commit creates a new action that will (eventually) go on to create
    pull requests for the stencil team when it is time to release a new
    version of the library. the (eventual) intent is for stencil engineers
    to run this workflow, which will generate a pull request that includes:
    - version bumps in package.json & package-lock.json
    - changelog, notice, and license generation
    
    this commit currently only creates a new branch and commit. the branch
    includes the version string, as well as the run/attempt in github
    actions to tie us back to the run that created it.
    
    at this point, the creation of the pull request is not included. the
    intended library to use
    (https://github.com/peter-evans/create-pull-request) does not work on
    push/pull_request events in GHA without additional permissions. by
    adding this action, we can test it without generating a new token.
    rwaskiewicz authored Aug 17, 2023
    Configuration menu
    Copy the full SHA
    0e94772 View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2023

  1. feat(config): add experimentalSlotFixes config value (#4652)

    This adds a new configuration option inside of the `extras` object
    called `experimentalSlotFixes`. If this is set to `true` then all slot
    fix configuration options will be automatically set to `true` as well.
    
    Furthermore, when new slot fixes are added in the future they'll be
    automatically enabled if you have this flag enabled.
    alicewriteswrongs authored Aug 18, 2023
    Configuration menu
    Copy the full SHA
    392af26 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2023

  1. chore(deps): update dependency prettier to v3.0.2 (#4705)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 21, 2023
    Configuration menu
    Copy the full SHA
    bb2b651 View commit details
    Browse the repository at this point in the history
  2. chore(deps): update actions/setup-node action to v3.8.1 (#4703)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 21, 2023
    Configuration menu
    Copy the full SHA
    3427c80 View commit details
    Browse the repository at this point in the history
  3. chore(deps): update dependency puppeteer to v21.1.0 (#4707)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 21, 2023
    Configuration menu
    Copy the full SHA
    412915b View commit details
    Browse the repository at this point in the history
  4. chore(deps): update dependency postcss to v8.4.28 (#4704)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 21, 2023
    Configuration menu
    Copy the full SHA
    5b8cb70 View commit details
    Browse the repository at this point in the history
  5. chore(deps): update typescript-eslint to v6.4.0 (#4706)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 21, 2023
    Configuration menu
    Copy the full SHA
    b75bfaa View commit details
    Browse the repository at this point in the history
  6. 🐟 v4.1.0

    rwaskiewicz committed Aug 21, 2023
    Configuration menu
    Copy the full SHA
    d44d97e View commit details
    Browse the repository at this point in the history
Loading