Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-06-04 | Use `readString` rather than `>> temporary` | John Ericson | |
Fixed the rest of these before, but this one slipped through. | |||
2020-06-04 | Merge branch 'master' of github.com:NixOS/nix into ↵ | John Ericson | |
validPathInfo-ca-proper-datatype | |||
2020-06-04 | Flip boolean | John Ericson | |
Thanks Matt! | |||
2020-06-04 | Use some `std::optional::has_value` for clarity | John Ericson | |
2020-06-04 | Make sure info.ca tag bit is set in `nix add-to-store` | John Ericson | |
2020-06-04 | Make 'nix dev-shell' a deprecated alias for 'nix develop' | Eelco Dolstra | |
2020-06-04 | Rename 'nix dev-shell' to 'nix develop' | Eelco Dolstra | |
Fixes #3648. | |||
2020-06-03 | No C++ designated initializers yet with Clang 7 | John Ericson | |
2020-06-03 | Missing `#include <cassert>` in `lru-cache.hh` (#3654) | John Ericson | |
This was a latent bug that just appeared because of the tests that were added. Remember to wait for CI! :) | |||
2020-06-03 | Merge remote-tracking branch 'obsidian/no-hash-type-unknown' into ↵ | John Ericson | |
validPathInfo-ca-proper-datatype | |||
2020-06-02 | Merge remote-tracking branch 'obsidian/missing-include-0' into ↵ | John Ericson | |
validPathInfo-ca-proper-datatype | |||
2020-06-02 | Missing `#include <cassert>` in `lru-cache.hh` | John Ericson | |
This was a latent bug that just appeared because of the tests that were added. Remember to wait for CI! :) | |||
2020-06-02 | `outputHashAlgo` can be blank so parse accordingly | John Ericson | |
It is blank for SRI hashes. | |||
2020-06-02 | Fix hashes | John Ericson | |
2020-06-02 | Typo | Carlo Nucera | |
2020-06-02 | Validate text version instead, throw Errors | Carlo Nucera | |
2020-06-02 | Add assertions for SHA256 in fixed case | Carlo Nucera | |
2020-06-02 | Move file-hash to content-address | Carlo Nucera | |
2020-06-02 | WIP Completed implementation | Carlo Nucera | |
2020-06-02 | Fix to-base --type handler to correctly set std::optional flag | John Ericson | |
Now that we have a separate flag function, also describe why it is optional. | |||
2020-06-02 | WIP | Carlo Nucera | |
2020-06-02 | to-base supports parsing SRI hashes, so make type flag optional | John Ericson | |
2020-06-02 | Clean up `ValidPathInfo::isContentAddressed` with `std::visit` | John Ericson | |
2020-06-02 | Apply suggestions from code review | John Ericson | |
Co-authored-by: Matthew Bauer <mjbauer95@gmail.com> | |||
2020-06-02 | Remove `hashingWithUnknownAlgoExits` | John Ericson | |
A valid hash type must be provided now. The hash itself can still be invalid, but that doesn't cause an `abort()`. | |||
2020-06-02 | Merge remote-tracking branch 'upstream/master' into no-hash-type-unknown | John Ericson | |
2020-06-02 | Remove `HashType::Unknown` | John Ericson | |
Instead, `Hash` uses `std::optional<HashType>`. In the future, we may also make `Hash` itself require a known hash type, encoraging people to use `std::optional<Hash>` instead. | |||
2020-06-02 | Change parseCa(Opt) to parseContentAddress(Opt) | Carlo Nucera | |
2020-06-02 | Merge remote-tracking branch 'upstream/master' into ↵ | John Ericson | |
validPathInfo-ca-proper-datatype | |||
2020-06-02 | Merge pull request #3639 from obsidiansystems/do-fixme-store-removes | Eelco Dolstra | |
Remove `addToStore` variant as requested by `FIXME` | |||
2020-06-02 | Merge branch 'lru-tests' of https://github.com/gilligan/nix | Eelco Dolstra | |
2020-06-02 | src/libutil/tests/lru-cache.cc: Check erase() | Eelco Dolstra | |
Co-authored-by: James Lee <jbit@jbit.net> | |||
2020-06-02 | Merge pull request #3642 from knl/improve-ref-validity-checking-in-fetchgit | Eelco Dolstra | |
Improve ref validity checking in fetchgit | |||
2020-06-02 | WIP | John Ericson | |
2020-06-01 | WIP more progress | John Ericson | |
2020-06-01 | WIP | Carlo Nucera | |
2020-06-01 | Create new file-hash files | Carlo Nucera | |
2020-06-01 | Merge branch 'derivation-header-include-order' of github.com:Ericson2314/nix ↵ | Carlo Nucera | |
into validPathInfo-ca-proper-datatype | |||
2020-06-01 | Merge branch 'no-stringly-typed-derivation-output' of ↵ | Carlo Nucera | |
github.com:Ericson2314/nix into validPathInfo-ca-proper-datatype | |||
2020-05-31 | Add tests for lru-cache.hh | Tobias Pflug | |
2020-05-30 | Ensure we restrict refspec interpretation while fetching | Nikola Knezevic | |
As `git fetch` may chose to interpret refspec to it's liking, ensure that we only pass refs that begin with `refs/` as is, otherwise, prepend them with `refs/heads`. Otherwise, branches named `heads/foo` (I know it's bad, but it's allowed), would be fetched as `foo`, instead of `heads/foo`. | |||
2020-05-30 | Improve ref validity checking in fetchGit | Nikola Knezevic | |
The previous regex was too strict and did not match what git was allowing. It could lead to `fetchGit` not accepting valid branch names, even though they exist in a repository (for example, branch names containing `/`, which are pretty standard, like `release/1.0` branches). The new regex defines what a branch name should **NOT** contain. It takes the definitions from `refs.c` in https://github.com/git/git and `git help check-ref-format` pages. This change also introduces a test for ref name validity checking, which compares the result from Nix with the result of `git check-ref-format --branch`. | |||
2020-05-29 | Remove addToStore variant as requested by `FIXME` | John Ericson | |
The idea is it's always more flexible to consumer a `Source` than a plain string, and it might even reduce memory consumption. I also looked at `addToStoreFromDump` with its `// FIXME: remove?`, but the worked needed for that is far more up for interpretation, so I punted for now. | |||
2020-05-28 | Fixing the result of merge | Carlo Nucera | |
2020-05-28 | Merge branch 'master' of github.com:NixOS/nix into enum-class | Carlo Nucera | |
2020-05-28 | Merge remote-tracking branch 'me/more-rust-ffi' into ↵ | John Ericson | |
no-stringly-typed-derivation-output | |||
2020-05-28 | Merge remote-tracking branch 'upstream/master' into more-rust-ffi | John Ericson | |
2020-05-28 | Merge pull request #3631 from andir/libutil-config-tests | Eelco Dolstra | |
Add unit tests for config.cc | |||
2020-05-28 | Merge pull request #3455 from Ericson2314/enum-FileIngestionMethod | Eelco Dolstra | |
Replace some `bool recursive` with a new `FileIngestionMethod` enum | |||
2020-05-28 | Merge pull request #3632 from LnL7/darwin-xz | Eelco Dolstra | |
installer: don't require xz on darwin |