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

Bump the ts-proto group in /impl/ts-proto with 4 updates #162

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 1, 2023

Bumps the ts-proto group in /impl/ts-proto with 4 updates: ts-proto, @bufbuild/buf, @types/node and esbuild.

Updates ts-proto from 1.161.0 to 1.162.2

Release notes

Sourced from ts-proto's releases.

v1.162.2

1.162.2 (2023-10-26)

Bug Fixes

  • return types and optional chaining in field masks when useOptionals=all (#957) (a3d7bd4)

v1.162.1

1.162.1 (2023-10-13)

Bug Fixes

v1.162.0

1.162.0 (2023-10-13)

Features

  • support json_name defined in a proto file (#943) (de989af)

v1.161.1

1.161.1 (2023-10-10)

Bug Fixes

  • use optional chaining when both forceLong=long and useOptionals=all options are set in the generated fromTimestamp function (#949) (b00db6f)
Changelog

Sourced from ts-proto's changelog.

1.162.2 (2023-10-26)

Bug Fixes

  • return types and optional chaining in field masks when useOptionals=all (#957) (a3d7bd4)

1.162.1 (2023-10-13)

Bug Fixes

1.162.0 (2023-10-13)

Features

  • support json_name defined in a proto file (#943) (de989af)

1.161.1 (2023-10-10)

Bug Fixes

  • use optional chaining when both forceLong=long and useOptionals=all options are set in the generated fromTimestamp function (#949) (b00db6f)
Commits
  • 77b0555 chore(release): 1.162.2 [skip ci]
  • a3d7bd4 fix: return types and optional chaining in field masks when `useOptionals=all...
  • d30ffa2 Wrapping / Unwrapping Value well-known type in request/response serializers (...
  • 3137b46 chore(release): 1.162.1 [skip ci]
  • 5e0e6ca fix: Simplify safe key handling. (#950)
  • ed9ceb9 chore(release): 1.162.0 [skip ci]
  • de989af feat: support json_name defined in a proto file (#943)
  • 3e6d123 chore(release): 1.161.1 [skip ci]
  • b00db6f fix: use optional chaining when both forceLong=long and useOptionals=all ...
  • See full diff in compare view

Updates @bufbuild/buf from 1.27.0 to 1.27.2

Release notes

Sourced from @​bufbuild/buf's releases.

v1.27.2

  • Fix issue where buf build and other commands may fail when handling certain archives created on macOS that contain files with extended attributes.

v1.27.1

  • Fix issue in v1.27.0 where --path did not work with workspaces under certain scenarios.
Changelog

Sourced from @​bufbuild/buf's changelog.

[v1.27.2] - 2023-10-27

  • Fix issue where buf build and other commands may fail when handling certain archives created on macOS that contain files with extended attributes.

[v1.27.1] - 2023-10-16

  • Fix issue in v1.27.0 where --path did not work with workspaces under certain scenarios.
Commits

Updates @types/node from 20.8.4 to 20.8.10

Commits

Updates esbuild from 0.19.4 to 0.19.5

Release notes

Sourced from esbuild's releases.

v0.19.5

  • Fix a regression in 0.19.0 regarding paths in tsconfig.json (#3354)

    The fix in esbuild version 0.19.0 to process tsconfig.json aliases before the --packages=external setting unintentionally broke an edge case in esbuild's handling of certain tsconfig.json aliases where there are multiple files with the same name in different directories. This release adjusts esbuild's behavior for this edge case so that it passes while still processing aliases before --packages=external. Please read the linked issue for more details.

  • Fix a CSS font property minification bug (#3452)

    This release fixes a bug where esbuild's CSS minifier didn't insert a space between the font size and the font family in the font CSS shorthand property in the edge case where the original source code didn't already have a space and the leading string token was shortened to an identifier:

    /* Original code */
    .foo { font: 16px"Menlo"; }
    /* Old output (with --minify) */
    .foo{font:16pxMenlo}
    /* New output (with --minify) */
    .foo{font:16px Menlo}

  • Fix bundling CSS with asset names containing spaces (#3410)

    Assets referenced via CSS url() tokens may cause esbuild to generate invalid output when bundling if the file name contains spaces (e.g. url(image 2.png)). With this release, esbuild will now quote all bundled asset references in url() tokens to avoid this problem. This only affects assets loaded using the file and copy loaders.

  • Fix invalid CSS url() tokens in @import rules (#3426)

    In the future, CSS url() tokens may contain additional stuff after the URL. This is irrelevant today as no CSS specification does this. But esbuild previously had a bug where using these tokens in an @import rule resulted in malformed output. This bug has been fixed.

  • Fix browser + false + type: module in package.json (#3367)

    The browser field in package.json allows you to map a file to false to have it be treated as an empty file when bundling for the browser. However, if package.json contains "type": "module" then all .js files will be considered ESM, not CommonJS. Importing a named import from an empty CommonJS file gives you undefined, but importing a named export from an empty ESM file is a build error. This release changes esbuild's interpretation of these files mapped to false in this situation from ESM to CommonJS to avoid generating build errors for named imports.

  • Fix a bug in top-level await error reporting (#3400)

    Using require() on a file that contains top-level await is not allowed because require() must return synchronously and top-level await makes that impossible. You will get a build error if you try to bundle code that does this with esbuild. This release fixes a bug in esbuild's error reporting code for complex cases of this situation involving multiple levels of imports to get to the module containing the top-level await.

  • Update to Unicode 15.1.0

    The character tables that determine which characters form valid JavaScript identifiers have been updated from Unicode version 15.0.0 to the newly-released Unicode version 15.1.0. I'm not putting an example in the release notes because all of the new characters will likely just show up as little squares since fonts haven't been updated yet. But you can read https://www.unicode.org/versions/Unicode15.1.0/#Summary for more information about the changes.

    This upgrade was contributed by @​JLHwung.

Changelog

Sourced from esbuild's changelog.

0.19.5

  • Fix a regression in 0.19.0 regarding paths in tsconfig.json (#3354)

    The fix in esbuild version 0.19.0 to process tsconfig.json aliases before the --packages=external setting unintentionally broke an edge case in esbuild's handling of certain tsconfig.json aliases where there are multiple files with the same name in different directories. This release adjusts esbuild's behavior for this edge case so that it passes while still processing aliases before --packages=external. Please read the linked issue for more details.

  • Fix a CSS font property minification bug (#3452)

    This release fixes a bug where esbuild's CSS minifier didn't insert a space between the font size and the font family in the font CSS shorthand property in the edge case where the original source code didn't already have a space and the leading string token was shortened to an identifier:

    /* Original code */
    .foo { font: 16px"Menlo"; }
    /* Old output (with --minify) */
    .foo{font:16pxMenlo}
    /* New output (with --minify) */
    .foo{font:16px Menlo}

  • Fix bundling CSS with asset names containing spaces (#3410)

    Assets referenced via CSS url() tokens may cause esbuild to generate invalid output when bundling if the file name contains spaces (e.g. url(image 2.png)). With this release, esbuild will now quote all bundled asset references in url() tokens to avoid this problem. This only affects assets loaded using the file and copy loaders.

  • Fix invalid CSS url() tokens in @import rules (#3426)

    In the future, CSS url() tokens may contain additional stuff after the URL. This is irrelevant today as no CSS specification does this. But esbuild previously had a bug where using these tokens in an @import rule resulted in malformed output. This bug has been fixed.

  • Fix browser + false + type: module in package.json (#3367)

    The browser field in package.json allows you to map a file to false to have it be treated as an empty file when bundling for the browser. However, if package.json contains "type": "module" then all .js files will be considered ESM, not CommonJS. Importing a named import from an empty CommonJS file gives you undefined, but importing a named export from an empty ESM file is a build error. This release changes esbuild's interpretation of these files mapped to false in this situation from ESM to CommonJS to avoid generating build errors for named imports.

  • Fix a bug in top-level await error reporting (#3400)

    Using require() on a file that contains top-level await is not allowed because require() must return synchronously and top-level await makes that impossible. You will get a build error if you try to bundle code that does this with esbuild. This release fixes a bug in esbuild's error reporting code for complex cases of this situation involving multiple levels of imports to get to the module containing the top-level await.

  • Update to Unicode 15.1.0

    The character tables that determine which characters form valid JavaScript identifiers have been updated from Unicode version 15.0.0 to the newly-released Unicode version 15.1.0. I'm not putting an example in the release notes because all of the new characters will likely just show up as little squares since fonts haven't been updated yet. But you can read https://www.unicode.org/versions/Unicode15.1.0/#Summary for more information about the changes.

    This upgrade was contributed by @​JLHwung.

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

Bumps the ts-proto group in /impl/ts-proto with 4 updates: [ts-proto](https://github.com/stephenh/ts-proto), [@bufbuild/buf](https://github.com/bufbuild/buf), [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) and [esbuild](https://github.com/evanw/esbuild).


Updates `ts-proto` from 1.161.0 to 1.162.2
- [Release notes](https://github.com/stephenh/ts-proto/releases)
- [Changelog](https://github.com/stephenh/ts-proto/blob/main/CHANGELOG.md)
- [Commits](stephenh/ts-proto@v1.161.0...v1.162.2)

Updates `@bufbuild/buf` from 1.27.0 to 1.27.2
- [Release notes](https://github.com/bufbuild/buf/releases)
- [Changelog](https://github.com/bufbuild/buf/blob/main/CHANGELOG.md)
- [Commits](bufbuild/buf@v1.27.0...v1.27.2)

Updates `@types/node` from 20.8.4 to 20.8.10
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `esbuild` from 0.19.4 to 0.19.5
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.19.4...v0.19.5)

---
updated-dependencies:
- dependency-name: ts-proto
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ts-proto
- dependency-name: "@bufbuild/buf"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: ts-proto
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: ts-proto
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: ts-proto
...

Signed-off-by: dependabot[bot] <[email protected]>
@smaye81 smaye81 merged commit c4b26c8 into main Nov 1, 2023
5 checks passed
@smaye81 smaye81 deleted the dependabot/npm_and_yarn/impl/ts-proto/ts-proto-09d4222ff4 branch November 1, 2023 16:04
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 javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant