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.
Created by
brew bump
Created by
brew bump-formula-pr
.release notes
Bumps golang.org/x/net from 0.36.0 to 0.38.0.
updated-dependencies:
SET DEFAULT
FK referential actionMySQL parses the
ON UPDATE/DELETE SET DEFAULT
syntax, but does not actually support executing it. These minor changes allow theSET DEFAULT
referential action to be used from Doltgres, but do not enable it for Dolt, to preserve MySQL compatibility.Depends on: Add support for the
SET DEFAULT
foreign key referential action dolthub/go-mysql-server#2944Bumps golang.org/x/net from 0.36.0 to 0.38.0.
Commits
e1fcd82
html: properly handle trailing solidus in unquoted attribute value in foreign...ebed060
internal/http3: fix build of tests with GOEXPERIMENT=nosynctest1f1fa29
publicsuffix: regenerate table1215081
http2: improve error when server sends HTTP/1312450e
html: ensure <search> tag closes <p> and update tests09731f9
http2: improve handling of lost PING in Server55989e2
http2/h2c: use ResponseController for hijacking connections2914f46
websocket: re-recommend gorilla/websocket99b3ae0
go.mod: update golang.org/x dependencies[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) ---
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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/dolthub/dolt/network/alerts).
Enable the GC operation to output archive format storage files. This is exposed as the
--archive-level
argument in both the server config and as adolt_gc()
option.go-mysql-server
fixes: Update MySQL version to 8.0.31 so that Django recognizes support for INTERSECT and EXCEPT? dolthub/go-mysql-server#2950
This implements the necessary changes to allow for interpreted functions to properly interact with DML. This was made in response to the issues further detailed here:
json_extract
panicfixes: Panic on JSON_Extract when second argument is NULL dolthub/dolt#9134
coalesce
withJSON
typesThis PR removes the call to strings.Unquote when converting from
JSON
toStringType
.Additionally, this fixes a test where we were incorrectly expecting an unquoted string from the
JsonUnquote
function.fixes:
coalesce()
unescaping json with new lines dolthub/dolt#9133SET DEFAULT
foreign key referential actionThis is not supported by MySQL, but needed for Postgres support in Doltgres.
A new analyzer validation rule continues to disallow usage of
SET DEFAULT
for Dolt/GMS, but Doltgres can disable that validation rule to allow processing ofSET DEFAULT
.Closed Issues
coalesce()
unescaping json with new lines