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

chore(deps): update all dependencies #37

Merged
merged 1 commit into from Apr 5, 2023
Merged

chore(deps): update all dependencies #37

merged 1 commit into from Apr 5, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 23, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
actions/checkout action minor v3.4.0 -> v3.5.0
github.com/aperturerobotics/starpc require minor v0.18.3 -> v0.19.0
github.com/evanw/esbuild require patch v0.17.12 -> v0.17.15
github.com/golangci/golangci-lint require patch v1.52.1 -> v1.52.2
github.com/urfave/cli require major v1.22.12 -> v2.25.1
github.com/urfave/cli/v2 require patch v2.25.0 -> v2.25.1
github/codeql-action action patch v2.2.8 -> v2.2.10
step-security/harden-runner action minor v2.2.1 -> v2.3.0

⚠ Dependency Lookup Warnings ⚠

Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.


Release Notes

actions/checkout

v3.5.0

Compare Source

What's Changed

New Contributors

Full Changelog: actions/checkout@v3.4.0...v3.5.0

aperturerobotics/starpc

v0.19.0

Compare Source

evanw/esbuild

v0.17.15

Compare Source

  • Allow keywords as type parameter names in mapped types (#​3033)

    TypeScript allows type keywords to be used as parameter names in mapped types. Previously esbuild incorrectly treated this as an error. Code that does this is now supported:

    type Foo = 'a' | 'b' | 'c'
    type A = { [keyof in Foo]: number }
    type B = { [infer in Foo]: number }
    type C = { [readonly in Foo]: number }
  • Add annotations for re-exported modules in node (#​2486, #​3029)

    Node lets you import named imports from a CommonJS module using ESM import syntax. However, the allowed names aren't derived from the properties of the CommonJS module. Instead they are derived from an arbitrary syntax-only analysis of the CommonJS module's JavaScript AST.

    To accommodate node doing this, esbuild's ESM-to-CommonJS conversion adds a special non-executable "annotation" for node that describes the exports that node should expose in this scenario. It takes the form 0 && (module.exports = { ... }) and comes at the end of the file (0 && expr means expr is never evaluated).

    Previously esbuild didn't do this for modules re-exported using the export * from syntax. Annotations for these re-exports will now be added starting with this release:

    // Original input
    export { foo } from './foo'
    export * from './bar'
    
    // Old output (with --format=cjs --platform=node)
    ...
    0 && (module.exports = {
      foo
    });
    
    // New output (with --format=cjs --platform=node)
    ...
    0 && (module.exports = {
      foo,
      ...require("./bar")
    });

    Note that you need to specify both --format=cjs and --platform=node to get these node-specific annotations.

  • Avoid printing an unnecessary space in between a number and a . (#​3026)

    JavaScript typically requires a space in between a number token and a . token to avoid the . being interpreted as a decimal point instead of a member expression. However, this space is not required if the number token itself contains a decimal point, an exponent, or uses a base other than 10. This release of esbuild now avoids printing the unnecessary space in these cases:

    // Original input
    foo(1000 .x, 0 .x, 0.1 .x, 0.0001 .x, 0xFFFF_0000_FFFF_0000 .x)
    
    // Old output (with --minify)
    foo(1e3 .x,0 .x,.1 .x,1e-4 .x,0xffff0000ffff0000 .x);
    
    // New output (with --minify)
    foo(1e3.x,0 .x,.1.x,1e-4.x,0xffff0000ffff0000.x);
  • Fix server-sent events with live reload when writing to the file system root (#​3027)

    This release fixes a bug where esbuild previously failed to emit server-sent events for live reload when outdir was the file system root, such as /. This happened because / is the only path on Unix that cannot have a trailing slash trimmed from it, which was fixed by improved path handling.

v0.17.14

Compare Source

  • Allow the TypeScript 5.0 const modifier in object type declarations (#​3021)

    The new TypeScript 5.0 const modifier was added to esbuild in version 0.17.5, and works with classes, functions, and arrow expressions. However, support for it wasn't added to object type declarations (e.g. interfaces) due to an oversight. This release adds support for these cases, so the following TypeScript 5.0 code can now be built with esbuild:

    interface Foo { <const T>(): T }
    type Bar = { new <const T>(): T }
  • Implement preliminary lowering for CSS nesting (#​1945)

    Chrome has implemented the new CSS nesting specification in version 112, which is currently in beta but will become stable very soon. So CSS nesting is now a part of the web platform!

    This release of esbuild can now transform nested CSS syntax into non-nested CSS syntax for older browsers. The transformation relies on the :is() pseudo-class in many cases, so the transformation is only guaranteed to work when targeting browsers that support :is() (e.g. Chrome 88+). You'll need to set esbuild's target to the browsers you intend to support to tell esbuild to do this transformation. You will get a warning if you use CSS nesting syntax with a target which includes older browsers that don't support :is().

    The lowering transformation looks like this:

    /* Original input */
    a.btn {
      color: #&#8203;333;
      &:hover { color: #&#8203;444 }
      &:active { color: #&#8203;555 }
    }
    
    /* New output (with --target=chrome88) */
    a.btn {
      color: #&#8203;333;
    }
    a.btn:hover {
      color: #&#8203;444;
    }
    a.btn:active {
      color: #&#8203;555;
    }

    More complex cases may generate the :is() pseudo-class:

    /* Original input */
    div, p {
      .warning, .error {
        padding: 20px;
      }
    }
    
    /* New output (with --target=chrome88) */
    :is(div, p) :is(.warning, .error) {
      padding: 20px;
    }

    In addition, esbuild now has a special warning message for nested style rules that start with an identifier. This isn't allowed in CSS because the syntax would be ambiguous with the existing declaration syntax. The new warning message looks like this:

    ▲ [WARNING] A nested style rule cannot start with "p" because it looks like the start of a declaration [css-syntax-error]
    
        <stdin>:1:7:
          1 │ main { p { margin: auto } }
            │        ^
            ╵        :is(p)
    
      To start a nested style rule with an identifier, you need to wrap the identifier in ":is(...)" to
      prevent the rule from being parsed as a declaration.
    

    Keep in mind that the transformation in this release is a preliminary implementation. CSS has many features that interact in complex ways, and there may be some edge cases that don't work correctly yet.

  • Minification now removes unnecessary & CSS nesting selectors

    This release introduces the following CSS minification optimizations:

    /* Original input */
    a {
      font-weight: bold;
      & {
        color: blue;
      }
      & :hover {
        text-decoration: underline;
      }
    }
    
    /* Old output (with --minify) */
    a{font-weight:700;&{color:#&#8203;00f}& :hover{text-decoration:underline}}
    
    /* New output (with --minify) */
    a{font-weight:700;:hover{text-decoration:underline}color:#&#8203;00f}
  • Minification now removes duplicates from CSS selector lists

    This release introduces the following CSS minification optimization:

    /* Original input */
    div, div { color: red }
    
    /* Old output (with --minify) */
    div,div{color:red}
    
    /* New output (with --minify) */
    div{color:red}

v0.17.13

Compare Source

  • Work around an issue with NODE_PATH and Go's WebAssembly internals (#​3001)

    Go's WebAssembly implementation returns EINVAL instead of ENOTDIR when using the readdir syscall on a file. This messes up esbuild's implementation of node's module resolution algorithm since encountering ENOTDIR causes esbuild to continue its search (since it's a normal condition) while other encountering other errors causes esbuild to fail with an I/O error (since it's an unexpected condition). You can encounter this issue in practice if you use node's legacy NODE_PATH feature to tell esbuild to resolve node modules in a custom directory that was not installed by npm. This release works around this problem by converting EINVAL into ENOTDIR for the readdir syscall.

  • Fix a minification bug with CSS @layer rules that have parsing errors (#​3016)

    CSS at-rules require either a {} block or a semicolon at the end. Omitting both of these causes esbuild to treat the rule as an unknown at-rule. Previous releases of esbuild had a bug that incorrectly removed unknown at-rules without any children during minification if the at-rule token matched an at-rule that esbuild can handle. Specifically cssnano can generate @layer rules with parsing errors, and empty @layer rules cannot be removed because they have side effects (@layer didn't exist when esbuild's CSS support was added, so esbuild wasn't written to handle this). This release changes esbuild to no longer discard @layer rules with parsing errors when minifying (the rule @layer c has a parsing error):

    /* Original input */
    @&#8203;layer a {
      @&#8203;layer b {
        @&#8203;layer c
      }
    }
    
    /* Old output (with --minify) */
    @&#8203;layer a.b;
    
    /* New output (with --minify) */
    @&#8203;layer a.b.c;
  • Unterminated strings in CSS are no longer an error

    The CSS specification provides rules for handling parsing errors. One of those rules is that user agents must close strings upon reaching the end of a line (i.e., before an unescaped line feed, carriage return or form feed character), but then drop the construct (declaration or rule) in which the string was found. For example:

    p {
      color: green;
      font-family: 'Courier New Times
      color: red;
      color: green;
    }

    ...would be treated the same as:

    p { color: green; color: green; }

    ...because the second declaration (from font-family to the semicolon after color: red) is invalid and is dropped.

    Previously using this CSS with esbuild failed to build due to a syntax error, even though the code can be interpreted by a browser. With this release, the code now produces a warning instead of an error, and esbuild prints the invalid CSS such that it stays invalid in the output:

    /* esbuild's new non-minified output: */
    p {
      color: green;
      font-family: 'Courier New Times
      color: red;
      color: green;
    }
    /* esbuild's new minified output: */
    p{font-family:'Courier New Times
    color: red;color:green}
golangci/golangci-lint

v1.52.2

Compare Source

  1. updated linters
    • tparallel: from 0.3.0 to 0.3.1
  2. misc.
    • fix: pre-commit require_serial and pass_filenames
urfave/cli

v2.25.1

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.25.0...v2.25.1

v2.25.0

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.24.4...v2.25.0

v2.24.4

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.24.3...v2.24.4

v2.24.3

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.24.2...v2.24.3

v2.24.2

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.24.1...v2.24.2

v2.24.1

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.24.0...v2.24.1

v2.24.0

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.23.10...v2.24.0

v2.23.10

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.23.9...v2.23.10

v2.23.9

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.23.8...v2.23.9

v2.23.8

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.23.7...v2.23.8

v2.23.7

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.23.6...v2.23.7

v2.23.6

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.23.5...v2.23.6

v2.23.5

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.23.4...v2.23.5

v2.23.4

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.23.3...v2.23.4

v2.23.3

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.23.2...v2.23.3

Note. This is considered a minor release even though it has a new "feature" i.e support for int64slice for alstrc flags. The int64slice is verbatim copy of existing code and doesnt include any new behaviour compared to other altsrc flags.

v2.23.2

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.23.1...v2.23.2

v2.23.1

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.23.0...v2.23.1

v2.23.0

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.22.0...v2.23.0

v2.22.0

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.21.0...v2.22.0

v2.21.0

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.20.5...v2.21.0

v2.20.5

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.20.4...v2.20.5

v2.20.4

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.20.3...v2.20.4

v2.20.3

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.20.2...v2.20.3

v2.20.2

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.20.1...v2.20.2

v2.20.1

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.20.0...v2.20.1

v2.20.0

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.19.3...v2.20.0

v2.19.3

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.19.2...v2.19.3

v2.19.2

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.19.1...v2.19.2

v2.19.1

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.19.0...v2.19.1

v2.19.0

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.18.2...v2.19.0

v2.18.2

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.18.1...v2.18.2

v2.18.1

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.18.0...v2.18.1

v2.18.0

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.17.2...v2.18.0

v2.17.2

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.17.1...v2.17.2

v2.17.1

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.17.0...v2.17.1

v2.17.0

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.16.6...v2.17.0

v2.16.6

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.16.5...v2.16.6

v2.16.5

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.16.4...v2.16.5

v2.16.4

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.16.3...v2.16.4

v2.16.3

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.16.2...v2.16.3

v2.16.2

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.16.1...v2.16.2

v2.16.1

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.16.0...v2.16.1

v2.16.0

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.15.0...v2.16.0

v2.15.0

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.14.2...v2.15.0

v2.14.2

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.14.1...v2.14.2

v2.14.1

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.14.0...v2.14.1

v2.14.0

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.13.0...v2.14.0

v2.13.0

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.12.3...v2.13.0

v2.12.3

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.12.1...v2.12.3

v2.12.2

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.12.1...v2.12.2

v2.12.1

Compare Source

Full Changelog: urfave/cli@v2.11.5...v2.12.1

v2.12.0

Compare Source

Full Changelog: urfave/cli@v2.11.2...v2.12.0

v2.11.5

Compare Source

Full Changelog: urfave/cli@v2.11.2...v2.11.5

v2.11.4

Compare Source

Full Changelog: urfave/cli@v2.11.2...v2.11.4

v2.11.3

Compare Source

Full Changelog: urfave/cli@v2.11.2...v2.11.3

v2.11.2

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.11.1...v2.11.2

v2.11.1

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.11.0...v2.11.1

v2.11.0

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.10.3...v2.11.0

v2.10.3

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.10.2...v2.10.3

v2.10.2

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.10.1...v2.10.2

v2.10.1

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.10.0...v2.10.1

v2.10.0

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.9.0...v2.10.0

v2.9.0

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.8.1...v2.9.0

v2.8.1

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.8.0...v2.8.1

v2.8.0

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.7.2...v2.8.0

v2.7.2

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.7.1...v2.7.2

v2.7.1

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.7.0...v2.7.1

v2.7.0

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.6.0...v2.7.0

v2.6.0

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.5.1...v2.6.0

v2.5.1

Compare Source

What's Changed


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot changed the title fix(deps): update module github.com/urfave/cli to v2 chore(deps): update all dependencies Mar 24, 2023
@renovate renovate bot force-pushed the renovate/all branch 8 times, most recently from 7fd2b72 to b87488a Compare March 27, 2023 15:46
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 223d94e to fbe6c19 Compare April 5, 2023 17:06
Signed-off-by: Christian Stewart <christian@paral.in>
@paralin paralin merged commit 3b35bf3 into master Apr 5, 2023
3 of 4 checks passed
@paralin paralin deleted the renovate/all branch April 5, 2023 22:47
paralin pushed a commit that referenced this pull request Jan 19, 2024
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant