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 updates group with 5 updates #9

Merged
merged 1 commit into from
Apr 2, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 1, 2024

Bumps the updates group with 5 updates:

Package From To
github.com/evanw/esbuild 0.20.1 0.20.2
github.com/jackc/pgx/v5 5.5.4 5.5.5
github.com/labstack/echo-contrib 0.15.0 0.16.0
github.com/rosedblabs/rosedb/v2 2.3.4 2.3.5
google.golang.org/api 0.167.0 0.172.0

Updates github.com/evanw/esbuild from 0.20.1 to 0.20.2

Release notes

Sourced from github.com/evanw/esbuild's releases.

v0.20.2

  • Support TypeScript experimental decorators on abstract class fields (#3684)

    With this release, you can now use TypeScript experimental decorators on abstract class fields. This was silently compiled incorrectly in esbuild 0.19.7 and below, and was an error from esbuild 0.19.8 to esbuild 0.20.1. Code such as the following should now work correctly:

    // Original code
    const log = (x: any, y: string) => console.log(y)
    abstract class Foo { @log abstract foo: string }
    new class extends Foo { foo = '' }
    // Old output (with --loader=ts --tsconfig-raw={"compilerOptions":{"experimentalDecorators":true}})
    const log = (x, y) => console.log(y);
    class Foo {
    }
    new class extends Foo {
    foo = "";
    }();
    // New output (with --loader=ts --tsconfig-raw={"compilerOptions":{"experimentalDecorators":true}})
    const log = (x, y) => console.log(y);
    class Foo {
    }
    __decorateClass([
    log
    ], Foo.prototype, "foo", 2);
    new class extends Foo {
    foo = "";
    }();

  • JSON loader now preserves __proto__ properties (#3700)

    Copying JSON source code into a JavaScript file will change its meaning if a JSON object contains the __proto__ key. A literal __proto__ property in a JavaScript object literal sets the prototype of the object instead of adding a property named __proto__, while a literal __proto__ property in a JSON object literal just adds a property named __proto__. With this release, esbuild will now work around this problem by converting JSON to JavaScript with a computed property key in this case:

    // Original code
    import data from 'data:application/json,{"__proto__":{"fail":true}}'
    if (Object.getPrototypeOf(data)?.fail) throw 'fail'
    // Old output (with --bundle)
    (() => {
    // <data:application/json,{"proto":{"fail":true}}>
    var json_proto_fail_true_default = { proto: { fail: true } };
    // entry.js
    if (Object.getPrototypeOf(json_proto_fail_true_default)?.fail)
    throw "fail";
    })();

... (truncated)

Changelog

Sourced from github.com/evanw/esbuild's changelog.

0.20.2

  • Support TypeScript experimental decorators on abstract class fields (#3684)

    With this release, you can now use TypeScript experimental decorators on abstract class fields. This was silently compiled incorrectly in esbuild 0.19.7 and below, and was an error from esbuild 0.19.8 to esbuild 0.20.1. Code such as the following should now work correctly:

    // Original code
    const log = (x: any, y: string) => console.log(y)
    abstract class Foo { @log abstract foo: string }
    new class extends Foo { foo = '' }
    // Old output (with --loader=ts --tsconfig-raw={&quot;compilerOptions&quot;:{&quot;experimentalDecorators&quot;:true}})
    const log = (x, y) => console.log(y);
    class Foo {
    }
    new class extends Foo {
    foo = "";
    }();
    // New output (with --loader=ts --tsconfig-raw={&quot;compilerOptions&quot;:{&quot;experimentalDecorators&quot;:true}})
    const log = (x, y) => console.log(y);
    class Foo {
    }
    __decorateClass([
    log
    ], Foo.prototype, "foo", 2);
    new class extends Foo {
    foo = "";
    }();

  • JSON loader now preserves __proto__ properties (#3700)

    Copying JSON source code into a JavaScript file will change its meaning if a JSON object contains the __proto__ key. A literal __proto__ property in a JavaScript object literal sets the prototype of the object instead of adding a property named __proto__, while a literal __proto__ property in a JSON object literal just adds a property named __proto__. With this release, esbuild will now work around this problem by converting JSON to JavaScript with a computed property key in this case:

    // Original code
    import data from 'data:application/json,{"__proto__":{"fail":true}}'
    if (Object.getPrototypeOf(data)?.fail) throw 'fail'
    // Old output (with --bundle)
    (() => {
    // <data:application/json,{"proto":{"fail":true}}>
    var json_proto_fail_true_default = { proto: { fail: true } };
    // entry.js
    if (Object.getPrototypeOf(json_proto_fail_true_default)?.fail)
    throw "fail";
    })();

... (truncated)

Commits

Updates github.com/jackc/pgx/v5 from 5.5.4 to 5.5.5

Changelog

Sourced from github.com/jackc/pgx/v5's changelog.

5.5.5 (March 9, 2024)

Use spaces instead of parentheses for SQL sanitization.

This still solves the problem of negative numbers creating a line comment, but this avoids breaking edge cases such as set foo to $1 where the substitution is taking place in a location where an arbitrary expression is not allowed.

Commits
  • 78a0a2b Fix spelling in changelog
  • a17f064 Update changelog
  • 49b6aad Use spaces instead of parentheses for SQL sanitization
  • 0cc4c14 Add test to validate CollectRows for empty Rows
  • See full diff in compare view

Updates github.com/labstack/echo-contrib from 0.15.0 to 0.16.0

Release notes

Sourced from github.com/labstack/echo-contrib's releases.

v0.16.0 - small changes

Functionality:

  • Prometheus: disable echoprometheus compression by default #97
  • Prometheus: Conditionally set url label for 404 responses #111

Other:

  • Fix docs: Set correct go import path for echoprometheus package #96
  • Add SDPX licence identifier to source files #95
  • feat: improve test readability and include README.md #107
  • Upgrade dependencies #113

NB: this version needs Go 1.21+ if you want to use Prometheus mw

Commits

Updates github.com/rosedblabs/rosedb/v2 from 2.3.4 to 2.3.5

Release notes

Sourced from github.com/rosedblabs/rosedb/v2's releases.

Release v2.3.5

🐞 Bug Fixes

Changelog

Sourced from github.com/rosedblabs/rosedb/v2's changelog.

Release 2.3.5(2024-03-03)

🐞 Bug Fixes

  • Fix index Less function panic.
Commits

Updates google.golang.org/api from 0.167.0 to 0.172.0

Release notes

Sourced from google.golang.org/api's releases.

v0.172.0

0.172.0 (2024-03-26)

Features

v0.171.0

0.171.0 (2024-03-21)

Features

Bug Fixes

  • transport: Return GDU for all errors from MDS universe_domain (#2484) (63b7c0d), refs #2399

v0.170.0

0.170.0 (2024-03-14)

Features

v0.169.0

0.169.0 (2024-03-07)

Features

... (truncated)

Changelog

Sourced from google.golang.org/api's changelog.

0.172.0 (2024-03-26)

Features

0.171.0 (2024-03-21)

Features

Bug Fixes

  • transport: Return GDU for all errors from MDS universe_domain (#2484) (63b7c0d), refs #2399

0.170.0 (2024-03-14)

Features

0.169.0 (2024-03-07)

Features

... (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

Bumps the updates group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/evanw/esbuild](https://github.com/evanw/esbuild) | `0.20.1` | `0.20.2` |
| [github.com/jackc/pgx/v5](https://github.com/jackc/pgx) | `5.5.4` | `5.5.5` |
| [github.com/labstack/echo-contrib](https://github.com/labstack/echo-contrib) | `0.15.0` | `0.16.0` |
| [github.com/rosedblabs/rosedb/v2](https://github.com/rosedblabs/rosedb) | `2.3.4` | `2.3.5` |
| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.167.0` | `0.172.0` |


Updates `github.com/evanw/esbuild` from 0.20.1 to 0.20.2
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.20.1...v0.20.2)

Updates `github.com/jackc/pgx/v5` from 5.5.4 to 5.5.5
- [Changelog](https://github.com/jackc/pgx/blob/master/CHANGELOG.md)
- [Commits](jackc/pgx@v5.5.4...v5.5.5)

Updates `github.com/labstack/echo-contrib` from 0.15.0 to 0.16.0
- [Release notes](https://github.com/labstack/echo-contrib/releases)
- [Commits](labstack/echo-contrib@v0.15.0...v0.16.0)

Updates `github.com/rosedblabs/rosedb/v2` from 2.3.4 to 2.3.5
- [Release notes](https://github.com/rosedblabs/rosedb/releases)
- [Changelog](https://github.com/rosedblabs/rosedb/blob/main/CHANGELOG.md)
- [Commits](rosedblabs/rosedb@v2.3.4...v2.3.5)

Updates `google.golang.org/api` from 0.167.0 to 0.172.0
- [Release notes](https://github.com/googleapis/google-api-go-client/releases)
- [Changelog](https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md)
- [Commits](googleapis/google-api-go-client@v0.167.0...v0.172.0)

---
updated-dependencies:
- dependency-name: github.com/evanw/esbuild
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: github.com/jackc/pgx/v5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: github.com/labstack/echo-contrib
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: github.com/rosedblabs/rosedb/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: google.golang.org/api
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 1, 2024
@bengarrett bengarrett merged commit 48443aa into main Apr 2, 2024
1 of 2 checks passed
@bengarrett bengarrett deleted the dependabot/go_modules/updates-0b6eebfb1a branch April 2, 2024 09:12
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.

1 participant