8000 Comparing v7.6.2...v7.6.3-nightly.20231221 · ionic-team/ionic-framework · GitHub
[go: up one dir, main page]

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: ionic-team/ionic-framework
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.6.2
Choose a base ref
...
head repository: ionic-team/ionic-framework
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.6.3-nightly.20231221
Choose a head ref
  • 10 commits
  • 45 files changed
  • 6 contributors

Commits on Dec 19, 2023

  1. Configuration menu
    Copy the full SHA
    bfd497f View commit details
    Browse the repository at this point in the history
  2. merge release-7.6.2

    Release 7.6.2
    liamdebeasi authored Dec 19, 2023
    Configuration menu
    Copy the full SHA
    16f39d9 View commit details
    Browse the repository at this point in the history
  3. chore(ci): package-lock is updated from separate job (#28697)

    After each release, we need to update the local `package-lock.json`
    dependencies. We do this via a `npm install --package-lock-only`
    command. However, this command can fail for reasons such as a connection
    timeout. When this happens, the package-lock files do not get updated.
    
    The problem is this action is also done in the same job as generating
    the changelog and creating the GitHub release. This operations cannot be
    re-done. As a result, we cannot simply re-run this job and try updating
    the package-lock files again.
    
    This PR changes the workflow to split the package-lock update out to its
    own job. In the event that this job fails, we can re-run only this job
    and leave the other jobs untouched.
    liamdebeasi authored Dec 19, 2023
    Configuration menu
    Copy the full SHA
    5d3bf98 View commit details
    Browse the repository at this point in the history
  4. docs: account for this context (#28720)

    Issue number: N/A
    
    ---------
    
    <!-- Please do not submit updates to dependencies unless it fixes an
    issue. -->
    
    <!-- Please try to limit your pull request to one type (bugfix, feature,
    etc). Submit multiple pull requests if needed. -->
    
    ## What is the current behavior?
    <!-- Please describe the current behavior that you are modifying. -->
    
    In #28694 there was
    some confusion around how to access `this` inside of a callback function
    passed to a property on Ionic components. The root issue was due to how
    the `this` context is determined with developers being responsible for
    setting the appropriate `this` context.
    
    ## What is the new behavior?
    <!-- Please describe the behavior or changes that are being added by
    this PR. -->
    
    - While this isn't an Ionic bug, I think it's worth calling out this
    behavior so developers are aware of how to account for it.
    
    ## Does this introduce a breaking change?
    
    - [ ] Yes
    - [x] No
    
    <!--
      If this introduces a breaking change:
    1. Describe the impact and migration path for existing applications
    below.
      2. Update the BREAKING.md file with the breaking change.
    3. Add "BREAKING CHANGE: [...]" to the commit description when merging.
    See
    https://github.com/ionic-team/ionic-framework/blob/main/.github/CONTRIBUTING.md#footer
    for more information.
    -->
    
    
    ## Other information
    
    <!-- Any other information that is important to this PR such as
    screenshots of how the component looks before and after the change. -->
    
    
    Note: The link in the docs will not work until
    ionic-team/ionic-docs#3333 is merged.
    
    ---------
    
    Co-authored-by: Amanda Johnston <90629384+amandaejohnston@users.noreply.github.com>
    liamdebeasi and averyjohnston authored Dec 19, 2023
    Configuration menu
    Copy the full SHA
    4cf948f View commit details
    Browse the repository at this point in the history

Commits on Dec 20, 2023

  1. fix(datetime): selected today button renders correctly on ios (#28740)

    Issue number: Internal
    
    ---------
    
    <!-- Please do not submit updates to dependencies unless it fixes an
    issue. -->
    
    <!-- Please try to limit your pull request to one type (bugfix, feature,
    etc). Submit multiple pull requests if needed. -->
    
    ## What is the current behavior?
    <!-- Please describe the current behavior that you are modifying. -->
    
    We removed the background color from today's calendar day button if
    selected when implementing the calendar-day button shadow part feature:
    79b005d#diff-8e2912d52559aa44c9c6dc062c8d683e7b51c92c7b7ba420ad6f7587f1e1a61aL139
    
    We did not catch this because we do not have test coverage for this use
    case. We typically avoid rendering datetime on today's date because
    "today" could be something totally different depending on the test
    machine's locale/configuration.
    
    ## What is the new behavior?
    <!-- Please describe the behavior or changes that are being added by
    this PR. -->
    
    - Adds the background rule that was removed
    - Added test coverage. I mocked today's date to be a fixed date so it
    never changes
    
    ## Does this introduce a breaking change?
    
    - [ ] Yes
    - [x] No
    
    <!--
      If this introduces a breaking change:
    1. Describe the impact and migration path for existing applications
    below.
      2. Update the BREAKING.md file with the breaking change.
    3. Add "BREAKING CHANGE: [...]" to the commit description when merging.
    See
    https://github.com/ionic-team/ionic-framework/blob/main/.github/CONTRIBUTING.md#footer
    for more information.
    -->
    
    
    ## Other information
    
    <!-- Any other information that is important to this PR such as
    screenshots of how the component looks before and after the change. -->
    
    ---------
    
    Co-authored-by: ionitron <hi@ionicframework.com>
    liamdebeasi and Ionitron authored Dec 20, 2023
    Configuration menu
    Copy the full SHA
    2f99aea View commit details
    Browse the repository at this point in the history
  2. fix(refresher): native ios refresher works on iPadOS (#28620)

    Issue number: resolves #28617
    
    ---------
    
    <!-- Please do not submit updates to dependencies unless it fixes an
    issue. -->
    
    <!-- Please try to limit your pull request to one type (bugfix, feature,
    etc). Submit multiple pull requests if needed. -->
    
    ## What is the current behavior?
    <!-- Please describe the current behavior that you are modifying. -->
    
    We currently check to see if `webkitOverflowScrolling` is supported on
    the refresher's style object in order to enable to native iOS refresher.
    This works well for iOS, but it does not work for iPadOS. This is
    because this property was removed in iPadOS 13:
    https://developer.apple.com/documentation/safari-release-notes/safari-13-release-notes
    
    > Disabled -webkit-overflow-scrolling: touch on iPad. All frames and
    scrollable overflow areas now use accelerated one-finger scrolling
    without changing stacking.
    
    As a result, the native iOS refresher does not activate on iPadOS.
    
    
    ## What is the new behavior?
    <!-- Please describe the behavior or changes that are being added by
    this PR. -->
    
    - I think it's safe to assume that `webkitOverflowScrolling` may be
    removed on iOS in the future too since it was already removed on iPadOS.
    As a result, I implemented a solution that avoids checking this.
    - The `CSS.supports` check is required because otherwise the native iOS
    refresher would be activated in an emulated environment such as Chrome
    dev tools because the user agent is spoofed. The `apple-pay-logo-black`
    named image is only supported on Apple devices.
    
    Risks:
    
    - Apple could remove the `apple-pay-logo-black` named image in the
    future. However, we currently use this check elsewhere in Ionic too and
    it has worked well:
    https://github.com/ionic-team/ionic-framework/blob/60303aad23f823488afc8f8824e9c72e3ab86acc/core/src/components/datetime/datetime.ios.scss#L177.
    - Apple could add touch emulation to desktop Safari which could cause
    the native refresher to activate when using responsive design mode for
    testing. However, this would only impact app developer and would not
    impact production use cases.
    
    ## Does this introduce a breaking change?
    
    - [ ] Yes
    - [x] No
    
    <!-- If this introduces a breaking change, please describe the impact
    and migration path for existing applications below. -->
    
    
    ## Other information
    
    <!-- Any other information that is important to this PR such as
    screenshots of how the component looks before and after the change. -->
    
    Dev build: `7.5.8-dev.11703088210.14a72b83`
    
    Co-authored-by: Sean Perkins <sean-perkins@users.noreply.github.com>
    
    ---------
    
    Co-authored-by: Sean Perkins <sean-perkins@user.noreply.github.com>
    liamdebeasi and Sean Perkins authored Dec 20, 2023
    Configuration menu
    Copy the full SHA
    e522601 View commit details
    Browse the repository at this point in the history
  3. chore(deps): Bump ionicons from 7.2.1 to 7.2.2 in /core (#28702)

    Bumps [ionicons](https://github.com/ionic-team/ionicons) from 7.2.1 to
    7.2.2.
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/ionic-team/ionicons/releases">ionicons's
    releases</a>.</em></p>
    <blockquote>
    <h2>v7.2.2</h2>
    <h2><a
    href="https://github.com/ionic-team/ionicons/compare/v7.2.1...v7.2.2">7.2.2</a>
    (2023-12-13)</h2>
    <h3>Bug Fixes</h3>
    <ul>
    <li><strong>icon:</strong> add better warning when loading icons (<a
    href="https://redirect.github.com/ionic-team/ionicons/issues/1297">#1297</a>)
    (<a
    href="https://github.com/ionic-team/ionicons/commit/d582e6208e626722e4350426a509a6870e90a0bc">d582e62</a>)</li>
    </ul>
    </blockquote>
    </details>
    <details>
    <summary>Changelog</summary>
    <p><em>Sourced from <a
    href="https://github.com/ionic-team/ionicons/blob/main/CHANGELOG.md">ionicons's
    changelog</a>.</em></p>
    <blockquote>
    <h2><a
    href="https://github.com/ionic-team/ionicons/compare/v7.2.1...v7.2.2">7.2.2</a>
    (2023-12-13)</h2>
    <h3>Bug Fixes</h3>
    <ul>
    <li><strong>icon:</strong> add better warning when loading icons (<a
    href="https://redirect.github.com/ionic-team/ionicons/issues/1297">#1297</a>)
    (<a
    href="https://github.com/ionic-team/ionicons/commit/d582e6208e626722e4350426a509a6870e90a0bc">d582e62</a>)</li>
    </ul>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/ionic-team/ionicons/commit/fccc2606274ac79c420a15df210e9649449a2acb"><code>fccc260</code></a>
    v7.2.2</li>
    <li><a
    href="https://github.com/ionic-team/ionicons/commit/d582e6208e626722e4350426a509a6870e90a0bc"><code>d582e62</code></a>
    fix(icon): add better warning when loading icons (<a
    href="https://redirect.github.com/ionic-team/ionicons/issues/1297">#1297</a>)</li>
    <li><a
    href="https://github.com/ionic-team/ionicons/commit/625d54fdada2947957d468a89c65a27bd79aa670"><code>625d54f</code></a>
    merge release-7.2.1</li>
    <li><a
    href="https://github.com/ionic-team/ionicons/commit/841fb965437fc6ca30d953179ff139621b8aafd6"><code>841fb96</code></a>
    remove duplicate entry</li>
    <li><a
    href="https://github.com/ionic-team/ionicons/commit/9dab13aef7402ccf4d9ea76ccf0175d0dd13a663"><code>9dab13a</code></a>
    chore(): update package lock files</li>
    <li>See full diff in <a
    href="https://github.com/ionic-team/ionicons/compare/v7.2.1...v7.2.2">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    
    [![Dependabot compatibility
    score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ionicons&package-manager=npm_and_yarn&previous-version=7.2.1&new-version=7.2.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
    
    Dependabot will resolve any conflicts with this PR as long as you don't
    alter it yourself. You can also trigger a rebase manually by commenting
    `@dependabot rebase`.
    
    [//]: # (dependabot-automerge-start)
    [//]: # (dependabot-automerge-end)
    
    ---
    
    <details>
    <summary>Dependabot commands and options</summary>
    <br />
    
    You can trigger Dependabot actions by commenting on this PR:
    - `@dependabot rebase` will rebase this PR
    - `@dependabot recreate` will recreate this PR, overwriting any edits
    that have been made to it
    - `@dependabot merge` will merge this PR after your CI passes on it
    - `@dependabot squash and merge` will squash and merge this PR after
    your CI passes on it
    - `@dependabot cancel merge` will cancel a previously requested merge
    and block automerging
    - `@dependabot reopen` will reopen this PR if it is closed
    - `@dependabot close` will close this PR and stop Dependabot recreating
    it. You can achieve the same result by closing it manually
    - `@dependabot show <dependency name> ignore conditions` will show all
    of the ignore conditions of the specified dependency
    - `@dependabot ignore this major version` will close this PR and stop
    Dependabot creating any more for this major version (unless you reopen
    the PR or upgrade to it yourself)
    - `@dependabot ignore this minor version` will close this PR and stop
    Dependabot creating any more for this minor version (unless you reopen
    the PR or upgrade to it yourself)
    - `@dependabot ignore this dependency` will close this PR and stop
    Dependabot creating any more for this dependency (unless you reopen the
    PR or upgrade to it yourself)
    
    
    </details>
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Dec 20, 2023
    Configuration menu
    Copy the full SHA
    dc1dd9c View commit details
    Browse the repository at this point in the history
  4. test(radio): re-enable keyboard navigation (#28747)

    Issue number: internal
    
    ---------
    
    <!-- Please do not submit updates to dependencies unless it fixes an
    issue. -->
    
    <!-- Please try to limit your pull request to one type (bugfix, feature,
    etc). Submit multiple pull requests if needed. -->
    
    ## What is the current behavior?
    <!-- Please describe the current behavior that you are modifying. -->
    
    The keyboard navigation tests for radio were disable due to flakiness
    with Safari when it came to the CI.
    
    ## What is the new behavior?
    <!-- Please describe the behavior or changes that are being added by
    this PR. -->
    
    - Re-enabled the tests.
    
    Debugging was done with a saved artifact.
    
    The artifact didn't provide a clear reason of why it flakes. But it did
    seem that the test was tabbing before the Safari page finished loading.
    I've added a `waitFor()` to verify that the radios have rendered. This
    was done for Safari only to prevent any additional wait time.
    
    ## Does this introduce a breaking change?
    
    - [ ] Yes
    - [x] No
    
    <!--
      If this introduces a breaking change:
    1. Describe the impact and migration path for existing applications
    below.
      2. Update the BREAKING.md file with the breaking change.
    3. Add "BREAKING CHANGE: [...]" to the commit description when merging.
    See
    https://github.com/ionic-team/ionic-framework/blob/main/.github/CONTRIBUTING.md#footer
    for more information.
    -->
    
    
    ## Other information
    
    <!-- Any other information that is important to this PR such as
    screenshots of how the component looks before and after the change. -->
    
    There is no great way to test this since it only flakes on GitHub.
    thetaPC authored Dec 20, 2023
    Configuration menu
    Copy the full SHA
    204a861 View commit details
    Browse the repository at this point in the history
  5. chore(deps-dev): Bump @stencil/sass from 3.0.7 to 3.0.8 in /core (#28731

    )
    
    Bumps [@stencil/sass](https://github.com/ionic-team/stencil-sass) from
    3.0.7 to 3.0.8.
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/ionic-team/stencil-sass/releases"><code>@​stencil/sass</code>'s
    releases</a>.</em></p>
    <blockquote>
    <h2>v3.0.8</h2>
    <h2>What's Changed</h2>
    <ul>
    <li>chore(deps): update actions/setup-node action to v3.8.2 by <a
    href="https://github.com/renovate"><code>@​renovate</code></a> in <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/423">ionic-team/stencil-sass#423</a></li>
    <li>chore(deps): update actions/setup-node action to v4 by <a
    href="https://github.com/renovate"><code>@​renovate</code></a> in <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/425">ionic-team/stencil-sass#425</a></li>
    <li>chore(deps): update dependency <code>@​stencil/core</code> to v4.6.0
    by <a href="https://github.com/renovate"><code>@​renovate</code></a> in
    <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/424">ionic-team/stencil-sass#424</a></li>
    <li>chore(deps): update node.js to v20.9.0 by <a
    href="https://github.com/renovate"><code>@​renovate</code></a> in <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/426">ionic-team/stencil-sass#426</a></li>
    <li>chore(deps): update dependency rollup to v4.1.5 by <a
    href="https://github.com/renovate"><code>@​renovate</code></a> in <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/427">ionic-team/stencil-sass#427</a></li>
    <li>chore(deps): update dependency rollup to v4.1.6 by <a
    href="https://github.com/renovate"><code>@​renovate</code></a> in <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/430">ionic-team/stencil-sass#430</a></li>
    <li>chore(deps): update dependency <code>@​stencil/core</code> to v4.7.0
    by <a href="https://github.com/renovate"><code>@​renovate</code></a> in
    <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/428">ionic-team/stencil-sass#428</a></li>
    <li>chore(deps): update dependency terser to v5.23.0 by <a
    href="https://github.com/renovate"><code>@​renovate</code></a> in <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/429">ionic-team/stencil-sass#429</a></li>
    <li>chore(deps): update dependency terser to v5.24.0 by <a
    href="https://github.com/renovate"><code>@​renovate</code></a> in <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/433">ionic-team/stencil-sass#433</a></li>
    <li>chore(deps): update dependency rollup to v4.2.0 by <a
    href="https://github.com/renovate"><code>@​renovate</code></a> in <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/432">ionic-team/stencil-sass#432</a></li>
    <li>chore(deps): update dependency npm to v10.2.3 by <a
    href="https://github.com/renovate"><code>@​renovate</code></a> in <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/431">ionic-team/stencil-sass#431</a></li>
    <li>chore(deps): update dependency rollup to v4.3.0 by <a
    href="https://github.com/renovate"><code>@​renovate</code></a> in <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/434">ionic-team/stencil-sass#434</a></li>
    <li>chore(deps): update dependency <code>@​stencil/core</code> to v4.7.1
    by <a href="https://github.com/renovate"><code>@​renovate</code></a> in
    <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/435">ionic-team/stencil-sass#435</a></li>
    <li>chore(deps): update dependency rollup to v4.3.1 by <a
    href="https://github.com/renovate"><code>@​renovate</code></a> in <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/436">ionic-team/stencil-sass#436</a></li>
    <li>chore(deps): update dependency rollup to v4.4.0 by <a
    href="https://github.com/renovate"><code>@​renovate</code></a> in <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/437">ionic-team/stencil-sass#437</a></li>
    <li>chore(deps): update dependency prettier to v3.1.0 by <a
    href="https://github.com/renovate"><code>@​renovate</code></a> in <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/438">ionic-team/stencil-sass#438</a></li>
    <li>chore(deps): update dependency <code>@​stencil/core</code> to v4.7.2
    by <a href="https://github.com/renovate"><code>@​renovate</code></a> in
    <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/439">ionic-team/stencil-sass#439</a></li>
    <li>chore(deps): update dependency rollup to v4.4.1 by <a
    href="https://github.com/renovate"><code>@​renovate</code></a> in <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/440">ionic-team/stencil-sass#440</a></li>
    <li>chore(deps): update dependency npm to v10.2.4 by <a
    href="https://github.com/renovate"><code>@​renovate</code></a> in <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/441">ionic-team/stencil-sass#441</a></li>
    <li>chore(deps): update dependency <code>@​stencil/core</code> to v4.8.0
    by <a href="https://github.com/renovate"><code>@​renovate</code></a> in
    <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/444">ionic-team/stencil-sass#444</a></li>
    <li>chore(deps): update dependency np to v9 by <a
    href="https://github.com/renovate"><code>@​renovate</code></a> in <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/445">ionic-team/stencil-sass#445</a></li>
    <li>chore(deps): update dependency <code>@​stencil/core</code> to v4.8.1
    by <a href="https://github.com/renovate"><code>@​renovate</code></a> in
    <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/446">ionic-team/stencil-sass#446</a></li>
    <li>chore(deps): update dependency terser to v5.25.0 by <a
    href="https://github.com/renovate"><code>@​renovate</code></a> in <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/447">ionic-team/stencil-sass#447</a></li>
    <li>chore(deps): update dependency np to v9.1.0 by <a
    href="https://github.com/renovate"><code>@​renovate</code></a> in <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/449">ionic-team/stencil-sass#449</a></li>
    <li>chore(deps): update dependency npm to v10.2.5 by <a
    href="https://github.com/renovate"><code>@​renovate</code></a> in <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/448">ionic-team/stencil-sass#448</a></li>
    <li>chore(deps): update dependency terser to v5.26.0 by <a
    href="https://github.com/renovate"><code>@​renovate</code></a> in <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/450">ionic-team/stencil-sass#450</a></li>
    <li>chore(deps): update dependency <code>@​stencil/core</code> to v4.8.2
    by <a href="https://github.com/renovate"><code>@​renovate</code></a> in
    <a
    href="https://redirect.github.com/ionic-team/stencil-sass/pull/453">ionic-team/stencil-sass#453</a></li>
    </ul>
    <p><strong>Full Changelog</strong>: <a
    href="https://github.com/ionic-team/stencil-sass/compare/v3.0.7...v3.0.8">https://github.com/ionic-team/stencil-sass/compare/v3.0.7...v3.0.8</a></p>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/ionic-team/stencil-sass/commit/5132964c48fa825bcc5e9e29502fbf034cb7ec9d"><code>5132964</code></a>
    3.0.8</li>
    <li><a
    href="https://github.com/ionic-team/stencil-sass/commit/9709fe24358967aee291cbc51a73c76e964f4717"><code>9709fe2</code></a>
    chore(deps): update dependency <code>@​stencil/core</code> to v4.8.2 (<a
    href="https://redirect.github.com/ionic-team/stencil-sass/issues/453">#453</a>)</li>
    <li><a
    href="https://github.com/ionic-team/stencil-sass/commit/59591b16a3b68927e76faa5165d973a0192a47ea"><code>59591b1</code></a>
    chore(deps): update dependency terser to v5.26.0 (<a
    href="https://redirect.github.com/ionic-team/stencil-sass/issues/450">#450</a>)</li>
    <li><a
    href="https://github.com/ionic-team/stencil-sass/commit/cc7d97f7d9db4825d076bbb0a8c04fe93b362352"><code>cc7d97f</code></a>
    chore(deps): update dependency npm to v10.2.5 (<a
    href="https://redirect.github.com/ionic-team/stencil-sass/issues/448">#448</a>)</li>
    <li><a
    href="https://github.com/ionic-team/stencil-sass/commit/838cd61da74b372e67351e2725b43186a79f2428"><code>838cd61</code></a>
    chore(deps): update dependency np to v9.1.0 (<a
    href="https://redirect.github.com/ionic-team/stencil-sass/issues/449">#449</a>)</li>
    <li><a
    href="https://github.com/ionic-team/stencil-sass/commit/e53802422ed0f56c89b860672f1ac297291b83be"><code>e538024</code></a>
    chore(deps): update dependency terser to v5.25.0 (<a
    href="https://redirect.github.com/ionic-team/stencil-sass/issues/447">#447</a>)</li>
    <li><a
    href="https://github.com/ionic-team/stencil-sass/commit/4d7ff18177b2b5fdef34df42c9c9233570934d4c"><code>4d7ff18</code></a>
    chore(deps): update dependency <code>@​stencil/core</code> to v4.8.1 (<a
    href="https://redirect.github.com/ionic-team/stencil-sass/issues/446">#446</a>)</li>
    <li><a
    href="https://github.com/ionic-team/stencil-sass/commit/f9b99826dbe80524f08092f52f878a390b1af5d9"><code>f9b9982</code></a>
    chore(deps): update dependency np to v9 (<a
    href="https://redirect.github.com/ionic-team/stencil-sass/issues/445">#445</a>)</li>
    <li><a
    href="https://github.com/ionic-team/stencil-sass/commit/b4d8158a986a11ea38d757f498c243a3c489cfff"><code>b4d8158</code></a>
    chore(deps): update dependency <code>@​stencil/core</code> to v4.8.0 (<a
    href="https://redirect.github.com/ionic-team/stencil-sass/issues/444">#444</a>)</li>
    <li><a
    href="https://github.com/ionic-team/stencil-sass/commit/d2864095215f2f26232307f41850f5919b5e9aaa"><code>d286409</code></a>
    chore(deps): update dependency npm to v10.2.4 (<a
    href="https://redirect.github.com/ionic-team/stencil-sass/issues/441">#441</a>)</li>
    <li>Additional commits viewable in <a
    href="https://github.com/ionic-team/stencil-sass/compare/v3.0.7...v3.0.8">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    
    [![Dependabot compatibility
    score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@stencil/sass&package-manager=npm_and_yarn&previous-version=3.0.7&new-version=3.0.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
    
    Dependabot will resolve any conflicts with this PR as long as you don't
    alter it yourself. You can also trigger a rebase manually by commenting
    `@dependabot rebase`.
    
    [//]: # (dependabot-automerge-start)
    [//]: # (dependabot-automerge-end)
    
    ---
    
    <details>
    <summary>Dependabot commands and options</summary>
    <br />
    
    You can trigger Dependabot actions by commenting on this PR:
    - `@dependabot rebase` will rebase this PR
    - `@dependabot recreate` will recreate this PR, overwriting any edits
    that have been made to it
    - `@dependabot merge` will merge this PR after your CI passes on it
    - `@dependabot squash and merge` will squash and merge this PR after
    your CI passes on it
    - `@dependabot cancel merge` will cancel a previously requested merge
    and block automerging
    - `@dependabot reopen` will reopen this PR if it is closed
    - `@dependabot close` will close this PR and stop Dependabot recreating
    it. You can achieve the same result by closing it manually
    - `@dependabot show <dependency name> ignore conditions` will show all
    of the ignore conditions of the specified dependency
    - `@dependabot ignore this major version` will close this PR and stop
    Dependabot creating any more for this major version (unless you reopen
    the PR or upgrade to it yourself)
    - `@dependabot ignore this minor version` will close this PR and stop
    Dependabot creating any more for this minor version (unless you reopen
    the PR or upgrade to it yourself)
    - `@dependabot ignore this dependency` will close this PR and stop
    Dependabot creating any more for this dependency (unless you reopen the
    PR or upgrade to it yourself)
    
    
    </details>
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Dec 20, 2023
    Configuration menu
    Copy the full SHA
    c794583 View commit details
    Browse the repository at this point in the history

Commits on Dec 21, 2023

  1. v7.6.3-nightly.20231221

    Ionitron committed Dec 21, 2023
    Configuration menu
    Copy the full SHA
    01f55a6 View commit details
    Browse the repository at this point in the history
3581
Loading
0