8000 Comparing v7.6.2...v7.6.3 · 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
Choose a head ref
  • 14 commits
  • 52 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 8000
  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 <
    10000
    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. chore(deps-dev): Bump @capacitor/core from 5.5.1 to 5.6.0 in /core (#…

    …28706)
    
    Bumps [@capacitor/core](https://github.com/ionic-team/capacitor) from
    5.5.1 to 5.6.0.
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/ionic-team/capacitor/releases"><code>@​capacitor/core</code>'s
    releases</a>.</em></p>
    <blockquote>
    <h2>5.6.0</h2>
    <h1><a
    href="https://github.com/ionic-team/capacitor/compare/5.5.1...5.6.0">5.6.0</a>
    (2023-12-14)</h1>
    <h3>Bug Fixes</h3>
    <ul>
    <li><strong>cli:</strong> Use latest native-run (<a
    href="https://redirect.github.com/ionic-team/capacitor/issues/7030">#7030</a>)
    (<a
    href="https://github.com/ionic-team/capacitor/commit/1d948d4df6b6b6f8cfdc02e72d84ae8be963f4a0">1d948d4</a>)</li>
    <li><strong>http:</strong> properly write form-urlencoded data on
    android request body (<a
    href="https://redirect.github.com/ionic-team/capacitor/issues/7130">#7130</a>)
    (<a
    href="https://github.com/ionic-team/capacitor/commit/a745a89e18a5082ae4e737d78aa20929f6952382">a745a89</a>)</li>
    <li><strong>http:</strong> set formdata boundary and body when
    content-type not explicitly set (<a
    href="https://redirect.github.com/ionic-team/capacitor/issues/7133">#7133</a>)
    (<a
    href="https://github.com/ionic-team/capacitor/commit/3862d6e6721793d78add9acf5b14fd9a8f7a5b60">3862d6e</a>)</li>
    <li><strong>ios:</strong> add some new cordova-ios classes used by
    Cordova plugins (<a
    href="https://redirect.github.com/ionic-team/capacitor/issues/7115">#7115</a>)
    (<a
    href="https://github.com/ionic-team/capacitor/commit/5fb902b232d9afded2edc865c8d3c0c0e7efe5e7">5fb902b</a>)</li>
    </ul>
    <h3>Features</h3>
    <ul>
    <li>support for Amazon Fire WebView (<a
    href="https://redirect.github.com/ionic-team/capacitor/issues/6603">#6603</a>)
    (<a
    href="https://redirect.github.com/ionic-team/capacitor/issues/7129">#7129</a>)
    (<a
    href="https://github.com/ionic-team/capacitor/commit/421d2c02e4d1954d16d573facae9c235fee60f02">421d2c0</a>)</li>
    </ul>
    </blockquote>
    </details>
    <details>
    <summary>Changelog</summary>
    <p><em>Sourced from <a
    href="https://github.com/ionic-team/capacitor/blob/5.6.0/CHANGELOG.md"><code>@​capacitor/core</code>'s
    changelog</a>.</em></p>
    <blockquote>
    <h1><a
    href="https://github.com/ionic-team/capacitor/compare/5.5.1...5.6.0">5.6.0</a>
    (2023-12-14)</h1>
    <h3>Bug Fixes</h3>
    <ul>
    <li><strong>cli:</strong> Use latest native-run (<a
    href="https://redirect.github.com/ionic-team/capacitor/issues/7030">#7030</a>)
    (<a
    href="https://github.com/ionic-team/capacitor/commit/1d948d4df6b6b6f8cfdc02e72d84ae8be963f4a0">1d948d4</a>)</li>
    <li><strong>http:</strong> properly write form-urlencoded data on
    android request body (<a
    href="https://redirect.github.com/ionic-team/capacitor/issues/7130">#7130</a>)
    (<a
    href="https://github.com/ionic-team/capacitor/commit/a745a89e18a5082ae4e737d78aa20929f6952382">a745a89</a>)</li>
    <li><strong>http:</strong> set formdata boundary and body when
    content-type not explicitly set (<a
    href="https://redirect.github.com/ionic-team/capacitor/issues/7133">#7133</a>)
    (<a
    href="https://github.com/ionic-team/capacitor/commit/3862d6e6721793d78add9acf5b14fd9a8f7a5b60">3862d6e</a>)</li>
    <li><strong>ios:</strong> add some new cordova-ios classes used by
    Cordova plugins (<a
    href="https://redirect.github.com/ionic-team/capacitor/issues/7115">#7115</a>)
    (<a
    href="https://github.com/ionic-team/capacitor/commit/5fb902b232d9afded2edc865c8d3c0c0e7efe5e7">5fb902b</a>)</li>
    </ul>
    <h3>Features</h3>
    <ul>
    <li>support for Amazon Fire WebView (<a
    href="https://redirect.github.com/ionic-team/capacitor/issues/6603">#6603</a>)
    (<a
    href="https://redirect.github.com/ionic-team/capacitor/issues/7129">#7129</a>)
    (<a
    href="https://github.com/ionic-team/capacitor/commit/421d2c02e4d1954d16d573facae9c235fee60f02">421d2c0</a>)</li>
    </ul>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/ionic-team/capacitor/commit/12cdab84fcc28a28bc0ca493298fd8e13a53ea4e"><code>12cdab8</code></a>
    Release 5.6.0</li>
    <li><a
    href="https://github.com/ionic-team/capacitor/commit/421d2c02e4d1954d16d573facae9c235fee60f02"><code>421d2c0</code></a>
    feat: support for Amazon Fire WebView (<a
    href="https://redirect.github.com/ionic-team/capacitor/issues/6603">#6603</a>)
    (<a
    href="https://redirect.github.com/ionic-team/capacitor/issues/7129">#7129</a>)</li>
    <li><a
    href="https://github.com/ionic-team/capacitor/commit/a745a89e18a5082ae4e737d78aa20929f6952382"><code>a745a89</code></a>
    fix(http): properly write form-urlencoded data on android request body
    (<a
    href="https://redirect.github.com/ionic-team/capacitor/issues/7130">#7130</a>)</li>
    <li><a
    href="https://github.com/ionic-team/capacitor/commit/dfc97ee2d87e70fb94f3e92bb30d0ae8f9a9eafa"><code>dfc97ee</code></a>
    docs(http): FormData and other complex types do not work on
    CapacitorHttp plu...</li>
    <li><a
    href="https://github.com/ionic-team/capacitor/commit/3862d6e6721793d78add9acf5b14fd9a8f7a5b60"><code>3862d6e</code></a>
    fix(http): set formdata boundary and body when content-type not
    explicitly se...</li>
    <li><a
    href="https://github.com/ionic-team/capacitor/commit/5fb902b232d9afded2edc865c8d3c0c0e7efe5e7"><code>5fb902b</code></a>
    fix(ios): add some new cordova-ios classes used by Cordova plugins (<a
    href="https://redirect.github.com/ionic-team/capacitor/issues/7115">#7115</a>)</li>
    <li><a
    href="https://github.com/ionic-team/capacitor/commit/7977a6da4876b1a9ee1b1a532f84789ec37c3c74"><code>7977a6d</code></a>
    chore(android): Update json test dependency (<a
    href="https://redirect.github.com/ionic-team/capacitor/issues/7102">#7102</a>)</li>
    <li><a
    href="https://github.com/ionic-team/capacitor/commit/13935f0c3bf87d5220bcdb5759c109edb841d9b5"><code>13935f0</code></a>
    docs: add warning around androidScheme with Android webview 117 (<a
    href="https://redirect.github.com/ionic-team/capacitor/issues/7098">#7098</a>)</li>
    <li><a
    href="https://github.com/ionic-team/capacitor/commit/8d97b800ca2d3b5f4e3485cbbbcd747b94c8bf0b"><code>8d97b80</code></a>
    chore(android): Mock Log class for tests (<a
    href="https://redirect.github.com/ionic-team/capacitor/issues/7099">#7099</a>)</li>
    <li><a
    href="https://github.com/ionic-team/capacitor/commit/1d948d4df6b6b6f8cfdc02e72d84ae8be963f4a0"><code>1d948d4</code></a>
    fix(cli): Use latest native-run (<a
    href="https://redirect.github.com/ionic-team/capacitor/issues/7030">#7030</a>)</li>
    <li>Additional commits viewable in <a
    href="https://github.com/ionic-team/capacitor/compare/5.5.1...5.6.0">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    
    [![Dependabot compatibility
    score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@capacitor/core&package-manager=npm_and_yarn&previous-version=5.5.1&new-version=5.6.0)](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 21, 2023
    Configuration menu
    Copy the full SHA
    e96a145 View commit details
    Browse the repository at this point in the history
  2. fix(nav, router-outlet): ios page transition does not cover menu on l…

    …arger screens (#28745)
    
    Issue number: resolves #28737
    
    ---------
    
    <!-- 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 #28246 we removed
    the overflow on Nav and Router Outlet to allow content to flow outside
    of these containers. This allows the translucent tab effect to work
    (otherwise content would be clipped and there would be no translucency).
    However, this had the unintended side effect of causing page transitions
    to flow outside of these components. This is most noticeable on larger
    displays when using SplitPane because the page can cover the menu
    mid-transition.
    
    ## What is the new behavior?
    <!-- Please describe the behavior or changes that are being added by
    this PR. -->
    
    - Overflow is no longer allowed on the main content. I originally set
    the overflow on the router outlet/nav itself, but that caused the
    translucent tab bar behavior to regress. Since this issue only happens
    with split pane, I decided to apply the fix there.
    
    ## 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. -->
    
    ### Dev build
    `7.6.3-dev.11703103144.148eb1f6`
    
    ⚠️ Please test in a physical app too
    
    ### Before/After Demo
    
    | `main` | branch |
    | - | - |
    | <video
    src="https://github.com/ionic-team/ionic-framework/assets/2721089/2f3f0d74-9a7e-4ebe-b58a-6e1a6ea3636e"></video>
    | <video
    src="https://github.com/ionic-team/ionic-framework/assets/2721089/cdbf8fb5-e217-48cf-8c1e-4bdecee4de4c"></video>
    |
    
    ### Screenshot Diffs
    
    The `menu-custom` screenshot diffs
    ([Example](https://github.com/ionic-team/ionic-framework/pull/28745/files))
    are correct. By adding `overflow: hidden`, the box shadow from the
    "Content" header no longer flows outside of the container.
    
    The menu [border on MD has an opacity of
    0.18](https://github.com/ionic-team/ionic-framework/blob/e5226016a0f0b066a7bd7fc9997f905d3b87fbc4/core/src/components/menu/menu.md.vars.scss#L7),
    so the border color was mixing with the color of the box shadow from the
    header.
    
    Since the shadow no longer flows outside of the container, the border
    color does not mix with the box shadow color.
    
    ### Does this break translucent tabs when the split pane is inside of a
    tab?
    
    No. The [split pane has `contain: strict`
    set](https://github.com/ionic-team/ionic-framework/blob/e5226016a0f0b066a7bd7fc9997f905d3b87fbc4/core/src/components/split-pane/split-pane.scss#L24)
    which prevents content from flowing under the tab bar, so the
    translucent tab bar never worked with this layout.
    
    ---------
    
    Co-authored-by: ionitron <hi@ionicframework.com>
    liamdebeasi and Ionitron authored Dec 21, 2023
    Configuration menu
    Copy the full SHA
    878eec6 View commit details
    Browse the repository at this point in the history
  3. chore: start holiday triage 2023 (#28757)

    This PR begins holiday triage mode for the Ionic Framework repo.
    liamdebeasi authored Dec 21, 2023
    Configuration menu
    Copy the full SHA
    da820b8 View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2023

  1. fix(radio-group): radio disabled prop can be undefined (#28712)

    Issue number: resolves #28677
    
    ---------
    
    <!-- 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. -->
    
    Defining disabled a `@Prop() disabled = false` causes Stencil to mark
    this property as optional. This behavior is not desired on our end, but
    making the property required would be a breaking change. Additionally,
    the root issue is due to how Stencil resolves types.
    
    For example, `disabled` is [optional in the LocalJSX
    namespace](https://github.com/ionic-team/ionic-framework/blob/e96a1457a32646fa23c8218cb3cca4a8215ad115/core/src/components.d.ts#L6921)
    but [required in the Components
    namespace](https://github.com/ionic-team/ionic-framework/blob/e96a1457a32646fa23c8218cb3cca4a8215ad115/core/src/components.d.ts#L2239).
    Addressing this inside of Stencil is significant breaking change. As a
    result, the team has decided to compromise and support the falsy
    `disabled` state for radio for now. Other Ionic components that support
    the `disabled` prop also check for falsy values.
    
    Stencil plans to de-risk this in
    https://ionic-cloud.atlassian.net/browse/STENCIL-917.
    
    ## What is the new behavior?
    <!-- Please describe the behavior or changes that are being added by
    this PR. -->
    
    - Radio Group now looks at falsy values instead of strictly checking
    `false`.
    
    ## 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. -->
    
    
    Dev build: `7.6.2-dev.11703182244.1165aeec`
    liamdebeasi authored Dec 28, 2023
    Configuration menu
    Copy the full SHA
    75ffeee View commit details
    Browse the repository at this point in the history

Commits on Jan 3, 2024

  1. v7.6.3

    Ionitron committed Jan 3, 2024
    Configuration menu
    Copy the full SHA
    ebb9ae9 View commit details
    Browse the repository at this point in the history
Loading
0