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 6 updates #5

Merged
merged 1 commit into from
Feb 27, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 27, 2024

Bumps the updates group with 6 updates:

Package From To
github.com/evanw/esbuild 0.20.0 0.20.1
github.com/google/uuid 1.5.0 1.6.0
github.com/jackc/pgx/v5 5.5.2 5.5.3
github.com/volatiletech/sqlboiler/v4 4.16.1 4.16.2
go.uber.org/zap 1.26.0 1.27.0
google.golang.org/api 0.161.0 0.167.0

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

Release notes

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

v0.20.1

  • Fix a bug with the CSS nesting transform (#3648)

    This release fixes a bug with the CSS nesting transform for older browsers where the generated CSS could be incorrect if a selector list contained a pseudo element followed by another selector. The bug was caused by incorrectly mutating the parent rule's selector list when filtering out pseudo elements for the child rules:

    /* Original code */
    .foo {
      &:after,
      & .bar {
        color: red;
      }
    }
    /* Old output (with --supported:nesting=false) */
    .foo .bar,
    .foo .bar {
    color: red;
    }
    /* New output (with --supported:nesting=false) */
    .foo:after,
    .foo .bar {
    color: red;
    }

  • Constant folding for JavaScript inequality operators (#3645)

    This release introduces constant folding for the < > <= >= operators. The minifier will now replace these operators with true or false when both sides are compile-time numeric or string constants:

    // Original code
    console.log(1 < 2, '🍕' > '🧀')
    // Old output (with --minify)
    console.log(1<2,"🍕">"🧀");
    // New output (with --minify)
    console.log(!0,!1);

  • Better handling of __proto__ edge cases (#3651)

    JavaScript object literal syntax contains a special case where a non-computed property with a key of __proto__ sets the prototype of the object. This does not apply to computed properties or to properties that use the shorthand property syntax introduced in ES6. Previously esbuild didn't correctly preserve the "sets the prototype" status of properties inside an object literal, meaning a property that sets the prototype could accidentally be transformed into one that doesn't and vice versa. This has now been fixed:

    // Original code
    function foo(__proto__) {
      return { __proto__: __proto__ } // Note: sets the prototype

... (truncated)

Changelog

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

0.20.1

  • Fix a bug with the CSS nesting transform (#3648)

    This release fixes a bug with the CSS nesting transform for older browsers where the generated CSS could be incorrect if a selector list contained a pseudo element followed by another selector. The bug was caused by incorrectly mutating the parent rule's selector list when filtering out pseudo elements for the child rules:

    /* Original code */
    .foo {
      &:after,
      & .bar {
        color: red;
      }
    }
    /* Old output (with --supported:nesting=false) */
    .foo .bar,
    .foo .bar {
    color: red;
    }
    /* New output (with --supported:nesting=false) */
    .foo:after,
    .foo .bar {
    color: red;
    }

  • Constant folding for JavaScript inequality operators (#3645)

    This release introduces constant folding for the < > <= >= operators. The minifier will now replace these operators with true or false when both sides are compile-time numeric or string constants:

    // Original code
    console.log(1 < 2, '🍕' > '🧀')
    // Old output (with --minify)
    console.log(1<2,"🍕">"🧀");
    // New output (with --minify)
    console.log(!0,!1);

  • Better handling of __proto__ edge cases (#3651)

    JavaScript object literal syntax contains a special case where a non-computed property with a key of __proto__ sets the prototype of the object. This does not apply to computed properties or to properties that use the shorthand property syntax introduced in ES6. Previously esbuild didn't correctly preserve the "sets the prototype" status of properties inside an object literal, meaning a property that sets the prototype could accidentally be transformed into one that doesn't and vice versa. This has now been fixed:

    // Original code
    function foo(__proto__) {

... (truncated)

Commits

Updates github.com/google/uuid from 1.5.0 to 1.6.0

Release notes

Sourced from github.com/google/uuid's releases.

v1.6.0

1.6.0 (2024-01-16)

Features

Bug Fixes

Changelog

Sourced from github.com/google/uuid's changelog.

1.6.0 (2024-01-16)

Features

Bug Fixes

Commits

Updates github.com/jackc/pgx/v5 from 5.5.2 to 5.5.3

Changelog

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

5.5.3 (February 3, 2024)

  • Fix: prepared statement already exists
  • Improve CopyFrom auto-conversion of text-ish values
  • Add ltree type support (Florent Viel)
  • Make some properties of Batch and QueuedQuery public (Pavlo Golub)
  • Add AppendRows function (Edoardo Spadolini)
  • Optimize convert UUID [16]byte to string (Kirill Malikov)
  • Fix: LargeObject Read and Write of more than ~1GB at a time (Mitar)
Commits
  • 6f8f6ed Update changelog for v5.5.3
  • 576b6c8 Bump actions/setup-go version
  • 7caa448 Skip test on CockroachDB
  • 832b4f9 Fix: prepared statement already exists
  • fd44114 Improve Conn.LoadType documentation
  • 34da2fe Improve CopyFrom auto-conversion of text-ish values
  • 7b5fcac Add timetz and []timetz OID constants
  • 0819a17 Remove openssl from TLS test setup
  • bf1c1d7 create ltree extension in pg setup for tests
  • 0fa5333 add ltree pgtype support
  • Additional commits viewable in compare view

Updates github.com/volatiletech/sqlboiler/v4 from 4.16.1 to 4.16.2

Release notes

Sourced from github.com/volatiletech/sqlboiler/v4's releases.

v4.16.2

Fixed

  • Replace rand.seed method to support golang 1.20 (thanks @​pbr0ck3r)
  • Fix issue with invalid template generation on ignored struct tags (thanks @​090809)

New Contributors

Full Changelog: volatiletech/sqlboiler@v4.16.1...v4.16.2

Changelog

Sourced from github.com/volatiletech/sqlboiler/v4's changelog.

[4.16.2] - 2024-02-12

Fixed

  • Replace rand.seed method to support golang 1.20 (thanks @​pbr0ck3r)
  • Fix issue with invalid template generation on ignored struct tags (thanks @​090809)
Commits
  • 42be9e1 Update Changelog and Bump version
  • 1a6aefb Merge pull request #1350 from 0daryo/add-tinyint-as-int-option-to-readme
  • 352b4f8 Added tinyint_as_int option to mysql example
  • 35bb36b Merge pull request #1344 from 090809/patch-1
  • 15d15d1 hot-fix(templates/structure): fix to angry line eating for fields with ignore...
  • 0ccf00c Merge pull request #1343 from pbr0ck3r/pbr0cker/fix/refactor-rand-seed
  • e35e297 fix: update rand.seed method to support with golang 1.20
  • See full diff in compare view

Updates go.uber.org/zap from 1.26.0 to 1.27.0

Release notes

Sourced from go.uber.org/zap's releases.

v1.27.0

Enhancements:

  • #1378[]: Add WithLazy method for SugaredLogger.
  • #1399[]: zaptest: Add NewTestingWriter for customizing TestingWriter with more flexibility than NewLogger.
  • #1406[]: Add Log, Logw, Logln methods for SugaredLogger.
  • #1416[]: Add WithPanicHook option for testing panic logs.

Thanks to @​defval, @​dimmo, @​arxeiss, and @​MKrupauskas for their contributions to this release.

#1378: uber-go/zap#1378 #1399: uber-go/zap#1399 #1406: uber-go/zap#1406 #1416: uber-go/zap#1416

Changelog

Sourced from go.uber.org/zap's changelog.

1.27.0 (20 Feb 2024)

Enhancements:

  • #1378[]: Add WithLazy method for SugaredLogger.
  • #1399[]: zaptest: Add NewTestingWriter for customizing TestingWriter with more flexibility than NewLogger.
  • #1406[]: Add Log, Logw, Logln methods for SugaredLogger.
  • #1416[]: Add WithPanicHook option for testing panic logs.

Thanks to @​defval, @​dimmo, @​arxeiss, and @​MKrupauskas for their contributions to this release.

#1378: uber-go/zap#1378 #1399: uber-go/zap#1399 #1406: uber-go/zap#1406 #1416: uber-go/zap#1416

Commits

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

Release notes

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

v0.167.0

0.167.0 (2024-02-23)

Features

v0.166.0

0.166.0 (2024-02-21)

Features

v0.165.0

0.165.0 (2024-02-14)

Features

v0.164.0

0.164.0 (2024-02-12)

Features

Bug Fixes

  • transport: Disable universe domain check if token source (#2413) (edbe996)

v0.163.0

0.163.0 (2024-02-08)

... (truncated)

Changelog

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

0.167.0 (2024-02-23)

Features

0.166.0 (2024-02-21)

Features

0.165.0 (2024-02-14)

Features

0.164.0 (2024-02-12)

Features

Bug Fixes

  • transport: Disable universe domain check if token source (#2413) (edbe996)

0.163.0 (2024-02-08)

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 6 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/evanw/esbuild](https://github.com/evanw/esbuild) | `0.20.0` | `0.20.1` |
| [github.com/google/uuid](https://github.com/google/uuid) | `1.5.0` | `1.6.0` |
| [github.com/jackc/pgx/v5](https://github.com/jackc/pgx) | `5.5.2` | `5.5.3` |
| [github.com/volatiletech/sqlboiler/v4](https://github.com/volatiletech/sqlboiler) | `4.16.1` | `4.16.2` |
| [go.uber.org/zap](https://github.com/uber-go/zap) | `1.26.0` | `1.27.0` |
| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.161.0` | `0.167.0` |


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

Updates `github.com/google/uuid` from 1.5.0 to 1.6.0
- [Release notes](https://github.com/google/uuid/releases)
- [Changelog](https://github.com/google/uuid/blob/master/CHANGELOG.md)
- [Commits](google/uuid@v1.5.0...v1.6.0)

Updates `github.com/jackc/pgx/v5` from 5.5.2 to 5.5.3
- [Changelog](https://github.com/jackc/pgx/blob/master/CHANGELOG.md)
- [Commits](jackc/pgx@v5.5.2...v5.5.3)

Updates `github.com/volatiletech/sqlboiler/v4` from 4.16.1 to 4.16.2
- [Release notes](https://github.com/volatiletech/sqlboiler/releases)
- [Changelog](https://github.com/volatiletech/sqlboiler/blob/master/CHANGELOG.md)
- [Commits](volatiletech/sqlboiler@v4.16.1...v4.16.2)

Updates `go.uber.org/zap` from 1.26.0 to 1.27.0
- [Release notes](https://github.com/uber-go/zap/releases)
- [Changelog](https://github.com/uber-go/zap/blob/master/CHANGELOG.md)
- [Commits](uber-go/zap@v1.26.0...v1.27.0)

Updates `google.golang.org/api` from 0.161.0 to 0.167.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.161.0...v0.167.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/google/uuid
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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/volatiletech/sqlboiler/v4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: go.uber.org/zap
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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 Feb 27, 2024
@bengarrett bengarrett merged commit 845ccb2 into main Feb 27, 2024
1 of 2 checks passed
@bengarrett bengarrett deleted the dependabot/go_modules/updates-cc0bfbcc49 branch February 27, 2024 05:13
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