Commit Graph

22 Commits

Author SHA1 Message Date
R. Ryantm
9a1610ac42 confluent-cli: 4.70.1 -> 4.71.0 2026-08-04 13:02:33 +00:00
R. Ryantm
e491773a45 confluent-cli: 4.70.0 -> 4.70.1 2026-07-26 09:32:55 +00:00
Emily
2a92b8f5eb confluent-cli: drop x86_64-darwin from update script 2026-07-15 03:58:17 +01:00
Emily
fdb820602b treewide: drop simple x86_64-darwin mentions
To reproduce:

    $ nix run nixpkgs/3b32825de172d0bc85664f495edb096b10862524#ast-grep \
        -- scan --update-all --inline-rules '
          id: nix-x86_64-darwin
          language: nix
          rule:
            any:
              - pattern: "\"x86_64-darwin\""
                kind: list_expression > string_expression
              - pattern:
                  context: "{ \"x86_64-darwin\" = $EXPR; }"
                  selector: binding
              - pattern:
                  context: "{ x86_64-darwin = $EXPR; }"
                  selector: binding
          fix:
            template: ""
        ' pkgs
    $ nix run nixpkgs/3b32825de172d0bc85664f495edb096b10862524#ast-grep \
        -- scan --update-all --inline-rules '
          id: json-first-x86_64-darwin
          language: json
          rule:
            kind: object > pair:nth-child(1)
            has:
              pattern: "\"x86_64-darwin\""
              field: key
          fix:
            template: ""
            expandEnd: { regex: "," }
        ' pkgs
    $ nix run nixpkgs/3b32825de172d0bc85664f495edb096b10862524#ast-grep \
        -- scan --update-all --inline-rules '
          id: json-x86_64-darwin
          language: json
          rule:
            kind: object > pair
            has:
              pattern: "\"x86_64-darwin\""
              field: key
          fix:
            template: ""
            expandStart: { regex: "," }
        ' pkgs
    $ git restore pkgs/by-name/om/omnix/package.nix
    $ git diff --name-only -z \
        | nix shell nixpkgs/3b32825de172d0bc85664f495edb096b10862524#gnused \
            -c xargs -0 sed -i '/^$/N; /^\n\? \+$/d'
    $ treefmt
2026-07-15 03:58:16 +01:00
R. Ryantm
07baf93622 confluent-cli: 4.68.0 -> 4.70.0 2026-07-08 06:26:52 +00:00
R. Ryantm
46a97714a3 confluent-cli: 4.50.0 -> 4.68.0 2026-06-29 08:01:47 +00:00
R. Ryantm
9e63366f9b confluent-cli: 4.41.0 -> 4.50.0 2026-01-17 19:40:21 +00:00
R. Ryantm
e8b1d6bdb2 confluent-cli: 4.39.1 -> 4.41.0 2025-10-16 18:04:49 +00:00
R. Ryantm
45e93702f9 confluent-cli: 4.38.0 -> 4.39.1 2025-10-02 08:23:56 +00:00
R. Ryantm
bd859f0d09 confluent-cli: 4.37.0 -> 4.38.0 2025-09-21 06:37:52 +00:00
R. Ryantm
3b2c56253c confluent-cli: 4.34.0 -> 4.37.0 2025-09-10 06:57:15 +00:00
R. Ryantm
f2ee8ab37c confluent-cli: 4.32.0 -> 4.34.0 2025-08-02 17:36:24 +00:00
R. Ryantm
bcd816561a confluent-cli: 4.29.0 -> 4.32.0 2025-07-25 01:32:52 +00:00
Philip Taron
df42f855db treewide: add --extra-experimental-features nix-command to nix hash invocations 2025-07-02 08:34:40 -07:00
R. Ryantm
c1810bbc42 confluent-cli: 4.28.0 -> 4.29.0 2025-06-18 21:17:31 +00:00
R. Ryantm
7fa0661505 confluent-cli: 4.26.1 -> 4.28.0 2025-06-08 20:55:39 +00:00
R. Ryantm
103a393619 confluent-cli: 4.25.0 -> 4.26.1 2025-05-07 18:58:09 +00:00
emaryn
6da4f43d99 confluent-cli: 4.16.0 -> 4.25.0 2025-04-20 07:12:41 +08:00
Alexander Nortung
6d5b9ed3f2 confluent-cli: change license to unfreeRedistributable 2025-03-25 01:24:43 +05:30
Mitchell Horning
b97bcb724f confluent-cli: 3.60.0 -> 4.16.0
https://docs.confluent.io/confluent-cli/current/release-notes.html
2025-01-25 15:31:41 -05:00
Silvan Mosberger
4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00
aleksana
571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00