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: jquery/jquery-ui
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6be875c
Choose a base ref
...
head repository: jquery/jquery-ui
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 47036d1
Choose a head ref
  • 9 commits
  • 75 files changed
  • 2 contributors

Commits on Mar 30, 2023

  1. Tests: Test only valid values for Datepicker defaultDate, min/maxDate

    The docs say that valid periods when using string value and
    period pairs as relative dates are "y", "m", "w", and "d"
    https://api.jqueryui.com/datepicker/
    
    Closes gh-2143
    kendebacker authored Mar 30, 2023
    Configuration menu
    Copy the full SHA
    f8990e6 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2023

  1. Demos:Tests: Avoid self-closing HTML tags

    Self-closing tags are reported by newer versions of the htmllint
    Grunt plugin. They also don't make sense in our HTML files
    since they are not XHTML-compliant and they run in HTML mode
    anyway.
    mgol committed May 9, 2023
    Configuration menu
    Copy the full SHA
    697db3b View commit details
    Browse the repository at this point in the history
  2. Tests: Fix tooltip tests by destroying tooltips

    Some tests were not properly destroying tooltips which made tests
    start to fail with the new QUnit.
    mgol committed May 9, 2023
    Configuration menu
    Copy the full SHA
    3cbc4c4 View commit details
    Browse the repository at this point in the history
  3. Tests: Switch from QUnit.jsDump to QUnit.dump

    `QUnit.jsDump` was renamed to `QUnit.dump` in QUnit 2.0.
    mgol committed May 9, 2023
    Configuration menu
    Copy the full SHA
    d001fcf View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ed86c7f View commit details
    Browse the repository at this point in the history
  5. Tests: Make Puppeter really fire Chrome on macOS

    Also, workaround issues with QUnit Chrome bridge: the Chrome bridge
    from `grunt-contrib-qunit` is now getting injected into every single
    iframe, including an empty one that has no intention of running QUnit
    tests. Since that bridge requires QUnit, it fails with an error
    in such cases. Workaround the issue by wrapping the bridge in
    another function that bails early if QUnit is not defined.
    mgol committed May 9, 2023
    Configuration menu
    Copy the full SHA
    65bf87b View commit details
    Browse the repository at this point in the history
  6. Build: Stop using ::set-output in GitHub Actions

    The `set-output` workflow is deprecated in favor of using environment
    variables, see:
    https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
    mgol committed May 9, 2023
    Configuration menu
    Copy the full SHA
    39a98d7 View commit details
    Browse the repository at this point in the history
  7. Build: Update dependencies, including QUnit 1 -> 2

    Also, fix htmllint lang exclusion patterns.
    mgol committed May 9, 2023
    Configuration menu
    Copy the full SHA
    57e2dfa View commit details
    Browse the repository at this point in the history
  8. Build: Fork vendors to remove QUnit deprecated API usage

    Changes:
    * add `tests/lib/vendor/**/*` to `.eslintignore`
    * move `qunit-composite` to `tests/lib` so that we can modify it
    * move `qunit-assert-classes` to `tests/lib` so that we can modify it
    * move `qunit-assert-close` to `tests/lib` so that we can modify it
    * replace `assert.push` with `assert.pushResult`
    * remove usage of `QUnit.extend`
    mgol committed May 9, 2023
    Configuration menu
    Copy the full SHA
    47036d1 View commit details
    Browse the repository at this point in the history
Loading