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): bump the dependencies group across 1 directory with 7 updates #1191

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 16, 2025

Bumps the dependencies group with 7 updates in the / directory:

Package From To
github.com/expr-lang/expr 1.16.9 1.17.0
github.com/goccy/go-yaml 1.15.23 1.16.0
github.com/googleapis/go-sql-spanner 1.11.1 1.11.2
github.com/k1LoW/grpcstub 0.25.7 0.25.8
github.com/k1LoW/grpcurlreq 0.2.1 0.2.2
github.com/k1LoW/httpstub 0.19.1 0.20.0
modernc.org/sqlite 1.36.0 1.36.1

Updates github.com/expr-lang/expr from 1.16.9 to 1.17.0

Release notes

Sourced from github.com/expr-lang/expr's releases.

v1.17.0

Expr is a Go-centric expression language designed to deliver dynamic configurations with unparalleled accuracy, safety, and speed.

program, err := expr.Compile(`let foo = bar(); baz(foo, foo)`)

In this release:

This release added the biggest change to the Expr language: if-else expressions and sequential expressions. #736 e750878

if foo > 42 {
    assert(foo);
    calc(foo, foo / 2)
} else {
    calc(0, 0)
}

A sequence of expression may be separated by ; char. The last semicolon must be omitted. Expr returns the value of the last expression in the sequence.

If-else is also expressions. Each if must have an else part. Result of if-else can be used as an expression:

let foo = if bar > 0 {
    process(bar)
} else {
    fallback()
};
foo + 42

Added:

  • Added ast.Find helper for easy AST searching. 579de74
  • Added compile node budget and memory limits (#762)
  • Added uniq() builtin (#705)
  • Added flatten() builtin (#684)
  • Added types pkg (#665 #667 #668)

Improvements:

  • Allow tailing comma in arguments (#623)
  • Improved type checker for named types 6fa83ad
  • Now len() return runes count for string e8bd7f8

... (truncated)

Commits
  • 3be6386 Code style: remove repeated helper functions
  • 25690fe chore: Added SOLO to the companies list (#769)
  • a9cda30 Test for issue 756
  • 2bc0eed Remove duplicated dereferences
  • f4bbea5 Add support deref in all builtins
  • 7d564c0 Remove print
  • 80f0ea6 Correctly add OpDeref if needed
  • 2d9f616 Add more tailing comma tests
  • 8f83203 Allow tailing comma in arguments (#623)
  • 435b79d Make sure get() returns nil for map[string]string on missing keys
  • Additional commits viewable in compare view

Updates github.com/goccy/go-yaml from 1.15.23 to 1.16.0

Release notes

Sourced from github.com/goccy/go-yaml's releases.

1.16.0

What's Changed

New Contributors

Full Changelog: goccy/go-yaml@v1.15.23...v1.16.0

Commits
  • 100fa23 Fix tab character handling ( if ignore the tab character, do not increment th...
  • 9671363 encodeMap() error handling and TestEncoder_UnmarshallableTypes() (#674)
  • 944206a Add AutoInt option (#671)
  • abc7083 support smart anchor option (#662)
  • b46780d Keep reference of anchor's value (#660)
  • See full diff in compare view

Updates github.com/googleapis/go-sql-spanner from 1.11.1 to 1.11.2

Release notes

Sourced from github.com/googleapis/go-sql-spanner's releases.

v1.11.2

1.11.2 (2025-03-06)

Performance Improvements

  • Use last_statement optimization for auto-commit (#387) (21f4923)
Changelog

Sourced from github.com/googleapis/go-sql-spanner's changelog.

1.11.2 (2025-03-06)

Performance Improvements

  • Use last_statement optimization for auto-commit (#387) (21f4923)
Commits

Updates github.com/k1LoW/grpcstub from 0.25.7 to 0.25.8

Release notes

Sourced from github.com/k1LoW/grpcstub's releases.

v0.25.8

What's Changed

Other Changes

Full Changelog: k1LoW/grpcstub@v0.25.7...v0.25.8

Changelog

Sourced from github.com/k1LoW/grpcstub's changelog.

v0.25.8 - 2025-03-10

Other Changes

Commits
  • 7eed4d6 Merge pull request #151 from k1LoW/tagpr-from-v0.25.7
  • 89b9356 [tagpr] update CHANGELOG.md
  • 5d8665c [tagpr] prepare for the next release
  • 40ed477 Merge pull request #150 from k1LoW/dependabot/go_modules/dependencies-a192041753
  • 28d7535 chore(deps): bump the dependencies group across 1 directory with 4 updates
  • See full diff in compare view

Updates github.com/k1LoW/grpcurlreq from 0.2.1 to 0.2.2

Release notes

Sourced from github.com/k1LoW/grpcurlreq's releases.

v0.2.2

Full Changelog: k1LoW/grpcurlreq@v0.2.1...v0.2.2

Changelog

Sourced from github.com/k1LoW/grpcurlreq's changelog.

v0.2.2 - 2025-03-13

Commits
  • 990f827 Merge pull request #16 from k1LoW/tagpr-from-v0.2.1
  • 04665e1 [tagpr] update CHANGELOG.md
  • 5ab5fa7 [tagpr] prepare for the next release
  • ce01f45 chore(deps): update Go version and dependencies in go.mod
  • 283c386 chore: update go directive version
  • a75c1f6 chore: fix lint settings
  • e795f5d ci: update GitHub Actions versions and permissions
  • See full diff in compare view

Updates github.com/k1LoW/httpstub from 0.19.1 to 0.20.0

Release notes

Sourced from github.com/k1LoW/httpstub's releases.

v0.20.0

What's Changed

Other Changes

Full Changelog: k1LoW/httpstub@v0.19.2...v0.20.0

v0.19.2

What's Changed

Other Changes

Full Changelog: k1LoW/httpstub@v0.19.1...v0.19.2

Changelog

Sourced from github.com/k1LoW/httpstub's changelog.

v0.20.0 - 2025-03-13

Other Changes

v0.19.2 - 2025-03-10

Other Changes

Commits
  • a37230c Merge pull request #87 from k1LoW/tagpr-from-v0.19.2
  • 573e8b0 [tagpr] update CHANGELOG.md
  • ab028d5 [tagpr] prepare for the next release
  • 5e7e7e2 Merge pull request #88 from k1LoW/dependabot/go_modules/golang.org/x/net-0.36.0
  • 4b800c3 chore(deps): bump golang.org/x/net from 0.33.0 to 0.36.0
  • 55b0f9a ci: update GitHub Actions workflows
  • baf72e6 Merge pull request #86 from k1LoW/tagpr-from-v0.19.1
  • 854a05f [tagpr] update CHANGELOG.md
  • 3c11e4f [tagpr] prepare for the next release
  • c20611b Merge pull request #85 from k1LoW/dependabot/go_modules/dependencies-d647ab73ad
  • Additional commits viewable in compare view

Updates modernc.org/sqlite from 1.36.0 to 1.36.1

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

…dates

Bumps the dependencies group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/expr-lang/expr](https://github.com/expr-lang/expr) | `1.16.9` | `1.17.0` |
| [github.com/goccy/go-yaml](https://github.com/goccy/go-yaml) | `1.15.23` | `1.16.0` |
| [github.com/googleapis/go-sql-spanner](https://github.com/googleapis/go-sql-spanner) | `1.11.1` | `1.11.2` |
| [github.com/k1LoW/grpcstub](https://github.com/k1LoW/grpcstub) | `0.25.7` | `0.25.8` |
| [github.com/k1LoW/grpcurlreq](https://github.com/k1LoW/grpcurlreq) | `0.2.1` | `0.2.2` |
| [github.com/k1LoW/httpstub](https://github.com/k1LoW/httpstub) | `0.19.1` | `0.20.0` |
| [modernc.org/sqlite](https://gitlab.com/cznic/sqlite) | `1.36.0` | `1.36.1` |



Updates `github.com/expr-lang/expr` from 1.16.9 to 1.17.0
- [Release notes](https://github.com/expr-lang/expr/releases)
- [Commits](expr-lang/expr@v1.16.9...v1.17.0)

Updates `github.com/goccy/go-yaml` from 1.15.23 to 1.16.0
- [Release notes](https://github.com/goccy/go-yaml/releases)
- [Changelog](https://github.com/goccy/go-yaml/blob/master/CHANGELOG.md)
- [Commits](goccy/go-yaml@v1.15.23...v1.16.0)

Updates `github.com/googleapis/go-sql-spanner` from 1.11.1 to 1.11.2
- [Release notes](https://github.com/googleapis/go-sql-spanner/releases)
- [Changelog](https://github.com/googleapis/go-sql-spanner/blob/main/CHANGES.md)
- [Commits](googleapis/go-sql-spanner@v1.11.1...v1.11.2)

Updates `github.com/k1LoW/grpcstub` from 0.25.7 to 0.25.8
- [Release notes](https://github.com/k1LoW/grpcstub/releases)
- [Changelog](https://github.com/k1LoW/grpcstub/blob/main/CHANGELOG.md)
- [Commits](k1LoW/grpcstub@v0.25.7...v0.25.8)

Updates `github.com/k1LoW/grpcurlreq` from 0.2.1 to 0.2.2
- [Release notes](https://github.com/k1LoW/grpcurlreq/releases)
- [Changelog](https://github.com/k1LoW/grpcurlreq/blob/main/CHANGELOG.md)
- [Commits](k1LoW/grpcurlreq@v0.2.1...v0.2.2)

Updates `github.com/k1LoW/httpstub` from 0.19.1 to 0.20.0
- [Release notes](https://github.com/k1LoW/httpstub/releases)
- [Changelog](https://github.com/k1LoW/httpstub/blob/main/CHANGELOG.md)
- [Commits](k1LoW/httpstub@v0.19.1...v0.20.0)

Updates `modernc.org/sqlite` from 1.36.0 to 1.36.1
- [Commits](https://gitlab.com/cznic/sqlite/compare/v1.36.0...v1.36.1)

---
updated-dependencies:
- dependency-name: github.com/expr-lang/expr
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: github.com/goccy/go-yaml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: github.com/googleapis/go-sql-spanner
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: github.com/k1LoW/grpcstub
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: github.com/k1LoW/grpcurlreq
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: github.com/k1LoW/httpstub
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: modernc.org/sqlite
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code minor labels Mar 16, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 17, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Mar 17, 2025
@dependabot dependabot bot deleted the dependabot/go_modules/dependencies-a8b58f9c75 branch March 17, 2025 11:54
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 go Pull requests that update Go code minor
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant