forked from NixOS/nix
-
Notifications
You must be signed in to change notification settings - Fork 8
Sync with upstream 2.33.3 #351
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
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
0142a88
Bump version
edolstra f28e495
Fix QueryPathInfo in daemon
pkpbynum 4aa2942
Merge pull request #15140 from NixOS/backport-15134-to-2.33-maintenance
internal-nix-ci[bot] 18f8b70
libutil: Add overflow check to alignUp
xokdvium 70e39c2
Merge pull request #15152 from NixOS/backport-15149-to-2.33-maintenance
internal-nix-ci[bot] 0c774b7
builtins.flakeRefToString: Evaluate attributes
edolstra e9d7785
Merge pull request #15166 from NixOS/backport-15160-to-2.33-maintenance
internal-nix-ci[bot] 5ac1022
fix(libstore/filetransfer): enable TCP keep-alive on curl handles
lovesegfault 6955018
feat(libstore/s3): use virtual-hosted-style URLs and add addressing-s…
lovesegfault 48bbd96
Merge pull request #15220 from NixOS/backport-15216-to-2.33-maintenance
internal-nix-ci[bot] 377fc95
release notes: 2.33.3
lovesegfault 1a84409
Merge tag '2.33.3' into sync-2.33.3
edolstra File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| 2.33.2 | ||
| 2.33.3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -279,3 +279,35 @@ This release was made possible by the following 33 contributors: | |
| - Henry [**(@cootshk)**](https://github.com/cootshk) | ||
| - Martin Joerg [**(@mjoerg)**](https://github.com/mjoerg) | ||
| - Farid Zakaria [**(@fzakaria)**](https://github.com/fzakaria) | ||
| # Release 2.33.3 (2026-02-13) | ||
|
|
||
| - S3 binary caches now use virtual-hosted-style addressing by default [#15208](https://github.com/NixOS/nix/issues/15208) | ||
|
|
||
| S3 binary caches now use virtual-hosted-style URLs | ||
| (`https://bucket.s3.region.amazonaws.com/key`) instead of path-style URLs | ||
| (`https://s3.region.amazonaws.com/bucket/key`) when connecting to standard AWS | ||
| S3 endpoints. This enables HTTP/2 multiplexing and fixes TCP connection | ||
| exhaustion (TIME_WAIT socket accumulation) under high-concurrency workloads. | ||
|
|
||
| A new `addressing-style` store option controls this behavior: | ||
|
|
||
| - `auto` (default): virtual-hosted-style for standard AWS endpoints, path-style | ||
| for custom endpoints. | ||
| - `path`: forces path-style addressing (deprecated by AWS). | ||
| - `virtual`: forces virtual-hosted-style addressing (bucket names must not | ||
| contain dots). | ||
|
|
||
| Bucket names containing dots (e.g., `my.bucket.name`) automatically fall back | ||
| to path-style addressing in `auto` mode, because dotted names create | ||
| multi-level subdomains that break TLS wildcard certificate validation. | ||
|
|
||
| Example using path-style for backwards compatibility: | ||
|
|
||
| ``` | ||
| s3://my-bucket/key?region=us-east-1&addressing-style=path | ||
| ``` | ||
|
Comment on lines
+304
to
+308
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add a language tag to the fenced code block. 📝 Suggested fix- ```
+ ```text
s3://my-bucket/key?region=us-east-1&addressing-style=path🧰 Tools🪛 markdownlint-cli2 (0.20.0)[warning] 306-306: Fenced code blocks should have a language specified (MD040, fenced-code-language) 🤖 Prompt for AI Agents |
||
|
|
||
| Additionally, TCP keep-alive is now enabled on all HTTP connections, preventing | ||
| idle connections from being silently dropped by intermediate network devices | ||
| (NATs, firewalls, load balancers). | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks odd... But if upstream has it then I guess let's keep it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's correct (though maybe the formatting won't look great).