Compare commits

...

9 Commits

Author SHA1 Message Date
Atif Ali 7d3f867203 Merge branch 'main' into kyle/go126 2026-03-28 20:57:29 +00:00
Atif Ali fb86e67f6c Merge branch 'main' into kyle/go126 2026-03-27 17:15:51 +00:00
blink-so[bot] afd83bbc9a chore: update Go from 1.26.0 to 1.26.1 2026-03-24 12:22:56 +00:00
Cian Johnston 1f7c76fac8 Merge branch 'main' into kyle/go126 2026-03-24 12:14:03 +00:00
Cian Johnston 8f6a1e53aa Revert "try disable green tea gc on windows runners"
This reverts commit 7b00db0932.
2026-02-25 17:29:31 +00:00
Cian Johnston 7b00db0932 try disable green tea gc on windows runners 2026-02-25 16:14:02 +00:00
blink-so[bot] 245aa8b484 fix: update flake.nix and flake.lock for Go 1.26 2026-02-23 15:33:24 +00:00
blink-so[bot] 0234a3aade fix: revert flake.nix changes and update generated api docs 2026-02-23 15:08:36 +00:00
blink-so[bot] 62288dc225 chore: update Go from 1.25.7 to 1.26.0 2026-02-23 15:02:02 +00:00
6 changed files with 36 additions and 31 deletions
+4 -1
View File
@@ -4,7 +4,10 @@ description: |
inputs:
version:
description: "The Go version to use."
default: "1.25.7"
default: "1.26.1"
use-preinstalled-go:
description: "Whether to use preinstalled Go."
default: "false"
use-cache:
description: "Whether to use the cache."
default: "true"
+7 -7
View File
@@ -24004,19 +24004,19 @@ const docTemplate = `{
"type": "object",
"properties": {
"forceQuery": {
"description": "append a query ('?') even if RawQuery is empty",
"description": "ForceQuery indicates whether the original URL contained a query ('?') character.\nWhen set, the String method will include a trailing '?', even when RawQuery is empty.",
"type": "boolean"
},
"fragment": {
"description": "fragment for references, without '#'",
"description": "fragment for references (without '#')",
"type": "string"
},
"host": {
"description": "host or host:port (see Hostname and Port methods)",
"description": "\"host\" or \"host:port\" (see Hostname and Port methods)",
"type": "string"
},
"omitHost": {
"description": "do not emit empty host (authority)",
"description": "OmitHost indicates the URL has an empty host (authority).\nWhen set, the String method will not include the host when it is empty.",
"type": "boolean"
},
"opaque": {
@@ -24028,15 +24028,15 @@ const docTemplate = `{
"type": "string"
},
"rawFragment": {
"description": "encoded fragment hint (see EscapedFragment method)",
"description": "RawFragment is an optional field containing an encoded fragment hint.\nSee the EscapedFragment method for more details.\n\nIn general, code should call EscapedFragment instead of reading RawFragment.",
"type": "string"
},
"rawPath": {
"description": "encoded path hint (see EscapedPath method)",
"description": "RawPath is an optional field containing an encoded path hint.\nSee the EscapedPath method for more details.\n\nIn general, code should call EscapedPath instead of reading RawPath.",
"type": "string"
},
"rawQuery": {
"description": "encoded query values, without '?'",
"description": "RawQuery contains the encoded query values, without the initial '?'.\nUse URL.Query to decode the query.",
"type": "string"
},
"scheme": {
+7 -7
View File
@@ -22122,19 +22122,19 @@
"type": "object",
"properties": {
"forceQuery": {
"description": "append a query ('?') even if RawQuery is empty",
"description": "ForceQuery indicates whether the original URL contained a query ('?') character.\nWhen set, the String method will include a trailing '?', even when RawQuery is empty.",
"type": "boolean"
},
"fragment": {
"description": "fragment for references, without '#'",
"description": "fragment for references (without '#')",
"type": "string"
},
"host": {
"description": "host or host:port (see Hostname and Port methods)",
"description": "\"host\" or \"host:port\" (see Hostname and Port methods)",
"type": "string"
},
"omitHost": {
"description": "do not emit empty host (authority)",
"description": "OmitHost indicates the URL has an empty host (authority).\nWhen set, the String method will not include the host when it is empty.",
"type": "boolean"
},
"opaque": {
@@ -22146,15 +22146,15 @@
"type": "string"
},
"rawFragment": {
"description": "encoded fragment hint (see EscapedFragment method)",
"description": "RawFragment is an optional field containing an encoded fragment hint.\nSee the EscapedFragment method for more details.\n\nIn general, code should call EscapedFragment instead of reading RawFragment.",
"type": "string"
},
"rawPath": {
"description": "encoded path hint (see EscapedPath method)",
"description": "RawPath is an optional field containing an encoded path hint.\nSee the EscapedPath method for more details.\n\nIn general, code should call EscapedPath instead of reading RawPath.",
"type": "string"
},
"rawQuery": {
"description": "encoded query values, without '?'",
"description": "RawQuery contains the encoded query values, without the initial '?'.\nUse URL.Query to decode the query.",
"type": "string"
},
"scheme": {
+15 -13
View File
@@ -15050,19 +15050,21 @@ None
### Properties
| Name | Type | Required | Restrictions | Description |
|---------------|------------------------------|----------|--------------|----------------------------------------------------|
| `forceQuery` | boolean | false | | append a query ('?') even if RawQuery is empty |
| `fragment` | string | false | | fragment for references, without '#' |
| `host` | string | false | | host or host:port (see Hostname and Port methods) |
| `omitHost` | boolean | false | | do not emit empty host (authority) |
| `opaque` | string | false | | encoded opaque data |
| `path` | string | false | | path (relative paths may omit leading slash) |
| `rawFragment` | string | false | | encoded fragment hint (see EscapedFragment method) |
| `rawPath` | string | false | | encoded path hint (see EscapedPath method) |
| `rawQuery` | string | false | | encoded query values, without '?' |
| `scheme` | string | false | | |
| `user` | [url.Userinfo](#urluserinfo) | false | | username and password information |
| Name | Type | Required | Restrictions | Description |
|--------------|---------|----------|--------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `forceQuery` | boolean | false | | Forcequery indicates whether the original URL contained a query ('?') character. When set, the String method will include a trailing '?', even when RawQuery is empty. |
| `fragment` | string | false | | fragment for references (without '#') |
| `host` | string | false | | "host" or "host:port" (see Hostname and Port methods) |
| `omitHost` | boolean | false | | Omithost indicates the URL has an empty host (authority). When set, the String method will not include the host when it is empty. |
| `opaque` | string | false | | encoded opaque data |
| `path` | string | false | | path (relative paths may omit leading slash) |
|`rawFragment`|string|false||Rawfragment is an optional field containing an encoded fragment hint. See the EscapedFragment method for more details.
In general, code should call EscapedFragment instead of reading RawFragment.|
|`rawPath`|string|false||Rawpath is an optional field containing an encoded path hint. See the EscapedPath method for more details.
In general, code should call EscapedPath instead of reading RawPath.|
|`rawQuery`|string|false||Rawquery contains the encoded query values, without the initial '?'. Use URL.Query to decode the query.|
|`scheme`|string|false|||
|`user`|[url.Userinfo](#urluserinfo)|false||username and password information|
## serpent.ValueSource
+2 -2
View File
@@ -11,8 +11,8 @@ RUN cargo install jj-cli typos-cli watchexec-cli
FROM ubuntu:jammy@sha256:ce4a593b4e323dcc3dd728e397e0a866a1bf516a1b7c31d6aa06991baec4f2e0 AS go
# Install Go manually, so that we can control the version
ARG GO_VERSION=1.25.7
ARG GO_CHECKSUM="12e6d6a191091ae27dc31f6efc630e3a3b8ba409baf3573d955b196fdf086005"
ARG GO_VERSION=1.26.1
ARG GO_CHECKSUM="031f088e5d955bab8657ede27ad4e3bc5b7c1ba281f05f245bcc304f327c987a"
# Boring Go is needed to build FIPS-compliant binaries.
RUN apt-get update && \
+1 -1
View File
@@ -1,6 +1,6 @@
module github.com/coder/coder/v2
go 1.25.7
go 1.26.1
// Required until a v3 of chroma is created to lazily initialize all XML files.
// None of our dependencies seem to use the registries anyways, so this