Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: bump the dependency-updates group across 1 directory with 3 updates #860

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 29, 2024

Bumps the dependency-updates group with 3 updates in the / directory: datatables.net, datatables.net-bs4 and esbuild.

Updates datatables.net from 2.0.7 to 2.0.8

Commits
  • fd6230a Sync tag release - 2.0.8
  • 1e90363 6abcccb9c0eae8042ed0ee1a7d199b8d1f81f417 Release 2.0.8
  • 1aa43d2 81ad6956b1f59cd1fec4ec9310f5e9f635b0c93c Dev: Support for loading plugins in ...
  • 5955366 5409cb063df85deaaf952d962333cef6e061f4d3 Fix: :visible on its own as a colu...
  • d980044 51b19797b71eb355e827d02e3be041ed9ec999b7 Fix: Selector row indexes from the A...
  • 2880044 7060769a9e52d1c4766a799e5e20e43a3bb77e85 Fix: Error when checking isShown()...
  • See full diff in compare view

Updates datatables.net-bs4 from 2.0.7 to 2.0.8

Commits
  • 8d1134c Sync tag release - 2.0.8
  • e61335c 6abcccb9c0eae8042ed0ee1a7d199b8d1f81f417 Release 2.0.8
  • 734a220 81ad6956b1f59cd1fec4ec9310f5e9f635b0c93c Dev: Support for loading plugins in ...
  • f76c17b 5409cb063df85deaaf952d962333cef6e061f4d3 Fix: :visible on its own as a colu...
  • fc4b8bd 51b19797b71eb355e827d02e3be041ed9ec999b7 Fix: Selector row indexes from the A...
  • ac9e391 7060769a9e52d1c4766a799e5e20e43a3bb77e85 Fix: Error when checking isShown()...
  • See full diff in compare view

Updates esbuild from 0.21.3 to 0.21.4

Release notes

Sourced from esbuild's releases.

v0.21.4

  • Update support for import assertions and import attributes in node (#3778)

    Import assertions (the assert keyword) have been removed from node starting in v22.0.0. So esbuild will now strip them and generate a warning with --target=node22 or above:

    ▲ [WARNING] The "assert" keyword is not supported in the configured target environment ("node22") [assert-to-with]
    
    example.mjs:1:40:
      1 │ import json from "esbuild/package.json" assert { type: "json" }
        │                                         ~~~~~~
        ╵                                         with
    

    Did you mean to use "with" instead of "assert"?

    Import attributes (the with keyword) have been backported to node 18 starting in v18.20.0. So esbuild will no longer strip them with --target=node18.N if N is 20 or greater.

  • Fix for await transform when a label is present

    This release fixes a bug where the for await transform, which wraps the loop in a try statement, previously failed to also move the loop's label into the try statement. This bug only affects code that uses both of these features in combination. Here's an example of some affected code:

    // Original code
    async function test() {
      outer: for await (const x of [Promise.resolve([0, 1])]) {
        for (const y of x) if (y) break outer
        throw 'fail'
      }
    }
    // Old output (with --target=es6)
    function test() {
    return __async(this, null, function* () {
    outer: try {
    for (var iter = __forAwait([Promise.resolve([0, 1])]), more, temp, error; more = !(temp = yield iter.next()).done; more = false) {
    const x = temp.value;
    for (const y of x) if (y) break outer;
    throw "fail";
    }
    } catch (temp) {
    error = [temp];
    } finally {
    try {
    more && (temp = iter.return) && (yield temp.call(iter));
    } finally {
    if (error)
    throw error[0];
    }
    }

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.21.4

  • Update support for import assertions and import attributes in node (#3778)

    Import assertions (the assert keyword) have been removed from node starting in v22.0.0. So esbuild will now strip them and generate a warning with --target=node22 or above:

    ▲ [WARNING] The "assert" keyword is not supported in the configured target environment ("node22") [assert-to-with]
    
    example.mjs:1:40:
      1 │ import json from "esbuild/package.json" assert { type: "json" }
        │                                         ~~~~~~
        ╵                                         with
    

    Did you mean to use "with" instead of "assert"?

    Import attributes (the with keyword) have been backported to node 18 starting in v18.20.0. So esbuild will no longer strip them with --target=node18.N if N is 20 or greater.

  • Fix for await transform when a label is present

    This release fixes a bug where the for await transform, which wraps the loop in a try statement, previously failed to also move the loop's label into the try statement. This bug only affects code that uses both of these features in combination. Here's an example of some affected code:

    // Original code
    async function test() {
      outer: for await (const x of [Promise.resolve([0, 1])]) {
        for (const y of x) if (y) break outer
        throw 'fail'
      }
    }
    // Old output (with --target=es6)
    function test() {
    return __async(this, null, function* () {
    outer: try {
    for (var iter = __forAwait([Promise.resolve([0, 1])]), more, temp, error; more = !(temp = yield iter.next()).done; more = false) {
    const x = temp.value;
    for (const y of x) if (y) break outer;
    throw "fail";
    }
    } catch (temp) {
    error = [temp];
    } finally {
    try {
    more && (temp = iter.return) && (yield temp.call(iter));
    } finally {
    if (error)
    throw error[0];
    }

... (truncated)

Commits

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 commands and options

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot requested a review from a team as a code owner May 29, 2024 09:16
@dependabot dependabot bot added the Dependencies Pull requests that update a dependency file label May 29, 2024
…ates

Bumps the dependency-updates group with 3 updates in the / directory: [datatables.net](https://github.com/DataTables/Dist-DataTables), [datatables.net-bs4](https://github.com/DataTables/Dist-DataTables-Bootstrap4) and [esbuild](https://github.com/evanw/esbuild).


Updates `datatables.net` from 2.0.7 to 2.0.8
- [Release notes](https://github.com/DataTables/Dist-DataTables/releases)
- [Commits](DataTables/Dist-DataTables@2.0.7...2.0.8)

Updates `datatables.net-bs4` from 2.0.7 to 2.0.8
- [Release notes](https://github.com/DataTables/Dist-DataTables-Bootstrap4/releases)
- [Commits](DataTables/Dist-DataTables-Bootstrap4@2.0.7...2.0.8)

Updates `esbuild` from 0.21.3 to 0.21.4
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.21.3...v0.21.4)

---
updated-dependencies:
- dependency-name: datatables.net
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependency-updates
- dependency-name: datatables.net-bs4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependency-updates
- dependency-name: esbuild
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependency-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/main/dependency-updates-1aed1703ea branch from 09cb7ef to a0a8863 Compare May 30, 2024 09:14
@wraithgar wraithgar merged commit 8d6c376 into main May 30, 2024
7 checks passed
@wraithgar wraithgar deleted the dependabot/npm_and_yarn/main/dependency-updates-1aed1703ea branch May 30, 2024 13:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant