fix(deps): update all dependencies #6
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v0.22.5
->v0.22.7
v1.1.5
->v2.0.6
v4.7.0
->v4.8.0
4d26883
->58d95d8
v0.6.0
->v0.7.0
abf3367
->db65457
v3.29.1
->v3.29.3
1.24.4
->1.24.5
Release Notes
aperturerobotics/common (github.com/aperturerobotics/common)
v0.22.7
Compare Source
v0.22.6
Compare Source
cockroachdb/pebble (github.com/cockroachdb/pebble)
v2.0.6
Compare Source
Pebble release used in production by CockroachDB 24.3.0, with v2 path, plus minor fixes, some updated deps, and go 1.24,1.25 support.
Caution! v2.x no longer supports the oldest on-disk formats; see README.
What's Changed
Full Changelog: cockroachdb/pebble@v2.0.5...v2.0.6
v2.0.5
Compare Source
What's Changed
Full Changelog: cockroachdb/pebble@v2.0.4...v2.0.5
v2.0.4
Compare Source
Pebble release used in production by CockroachDB 24.3.0, with v2 path, plus minor fixes, some updated deps, and go 1.24 support.
Caution! v2.x no longer supports the oldest on-disk formats; see README.
v2.0.3
Compare Source
Pebble release used in production by CockroachDB 24.3.0, with v2 path, plus minor fixes.
Caution! v2.x no longer supports the oldest on-disk formats; see README.
v2.0.2
Compare Source
Pebble release used in production by CockroachDB 24.3.0, with v2 path.
Caution! v2.x no longer supports the oldest on-disk formats; see README.
v2.0.1
Compare Source
v2.0.0
Compare Source
Pebble release used by used in production by CockroachDB 24.3.0.
Caution! v2.x no longer supports the oldest on-disk formats; see README.
dgraph-io/badger (github.com/dgraph-io/badger/v4)
v4.8.0
: Badger v4.8.0Compare Source
What's Changed
New Contributors
Full Changelog: hypermodeinc/badger@v4.7.0...v4.8.0
piprate/json-gold (github.com/piprate/json-gold)
v0.7.0
Compare Source
What's Changed
Full Changelog: piprate/json-gold@v0.6.0...v0.7.0
Backward Compatibility Impact
This release replaces map-based context and term definitions with strongly typed structs, which significantly improves performance and type safety but will break client code that relies on the previous map-based interfaces. All such code must be updated to use the new struct fields and method signatures. Utility functions have also been updated to use generics.
See the detailed overview of breaking changes below.
1. Context API: Major Changes
Term Definitions
Term definitions previously stored as
map[string]interface{}
are now represented by a dedicated*TermDefinition
struct.Context.termDefinitions
or related methods.GetTermDefinition
,GetTypeMapping
,GetLanguageMapping
,GetDirectionMapping
,GetContainer
, and others now return or expect a*TermDefinition
struct instead of a generic map.Context values
Context-wide values (like
@base
,@language
,@vocab
, etc.) are now stored in a*Values
struct, replacing the previous map-based approach (Context.values
).ctx.values["@​language"]
) will not work anymore; code must use the struct fields.Method Signatures and Return Types
Many methods that previously returned
map[string]interface{}
now return*TermDefinition
or typed values (likestring
).func (c *Context) GetTermDefinition(key string) map[string]interface{}
is now
func (c *Context) GetTermDefinition(key string) *TermDefinition
Removed/Changed Utility Functions
GetKeysString
removed; replaced by a genericGetKeys[T any](m map[string]T) []string
.GetKeysString
must switch to the new generic function.2. Struct Field Access
definition["@​type"]
) must now use struct fields (e.g.,definition.typ
).@reverse
,@container
,@type
,@language
,@direction
,@index
,@context
, etc.3. Method Changes
GetContainer
,HasContainerMapping
,GetTypeMapping
,GetLanguageMapping
,GetDirectionMapping
have type changes in their signatures and return values.GetContainer
now returns[]string
instead of[]interface{}
.4. Example of Breaking Change
Old (v0.6.0):
New (v0.7.0):
github/codeql-action (github/codeql-action)
v3.29.3
Compare Source
CodeQL Action Changelog
See the releases page for the relevant changes to the CodeQL CLI and language packs.
3.29.3 - 21 Jul 2025
No user facing changes.
See the full CHANGELOG.md for more information.
v3.29.2
Compare Source
CodeQL Action Changelog
See the releases page for the relevant changes to the CodeQL CLI and language packs.
3.29.2 - 30 Jun 2025
quality-queries
input for theinit
action is provided with an argument, separate.quality.sarif
files are produced and uploaded for each language with the results of the specified queries. Do not use this in production as it is part of an internal experiment and subject to change at any time. #2935See the full CHANGELOG.md for more information.
golang/go (go)
v1.24.5
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.
This PR was generated by Mend Renovate. View the repository job log.