Skip to content

Commit

Permalink
chore: bump nhost (#21)
Browse files Browse the repository at this point in the history
### **PR Type**
Enhancement


___

### **Description**
- Upgraded nhost CLI from version v1.23.0 to v1.24.1
- Updated SHA256 hashes for all supported platforms:
  - aarch64-darwin
  - x86_64-darwin
  - aarch64-linux
  - x86_64-linux
- This update ensures the latest version of nhost CLI is available for
all supported architectures


___



### **Changes walkthrough** 📝
<table><thead><tr><th></th><th align="left">Relevant
files</th></tr></thead><tbody><tr><td><strong>Dependencies</strong></td><td><table>
<tr>
  <td>
    <details>
<summary><strong>nhost-cli.nix</strong><dd><code>Update nhost CLI to
version v1.24.1</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary>
<hr>

overlays/nhost-cli.nix

<li>Updated nhost CLI version from v1.23.0 to v1.24.1<br> <li> Updated
SHA256 hashes for all supported platforms (aarch64-darwin,
<br>x86_64-darwin, aarch64-linux, x86_64-linux)<br>


</details>


  </td>
<td><a
href="https://github.com/nhost/nixops/pull/21/files#diff-30af032272047cf9f8b0556d4e2b31c5a883c5dc27839f3fae1f4e358da760b2">+5/-5</a>&nbsp;
&nbsp; &nbsp; </td>

</tr>                    
</table></td></tr></tr></tbody></table>

___

> 💡 **PR-Agent usage**:
>Comment `/help` on the PR to get a list of all available PR-Agent tools
and their descriptions
  • Loading branch information
dbarrosop authored Sep 9, 2024
1 parent 7cafee7 commit e2ceb0b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions overlays/nhost-cli.nix
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{ final }:
let
version = "v1.23.0";
version = "v1.24.1";
dist = {
aarch64-darwin = rec {
url = "https://github.com/nhost/cli/releases/download/${version}/cli-${version}-darwin-arm64.tar.gz";
sha256 = "0hfml4xx6n3ddx6kgcj6zv0ip72hjrq2xqnjn3v7lm2byxmqr4zm";
sha256 = "0j3kjz4hhxihg3w99qay74k8aslxnlgwvzvj8p3dindrd98h7pvn";
};
x86_64-darwin = rec {
url = "https://github.com/nhost/cli/releases/download/${version}/cli-${version}-darwin-amd64.tar.gz";
sha256 = "0l0041clqi0f8vb2xsgy3yq6808pz2zksggw9gndk986jfwx4cqc";
sha256 = "118czg3pnj6j617dxvn5skl7012zadgq6ybkbhgcllwjk3glxavv";
};
aarch64-linux = rec {
url = "https://github.com/nhost/cli/releases/download/${version}/cli-${version}-linux-arm64.tar.gz";
sha256 = "1smrayidfmg0jpn0yx4mqmypdxlnvmx0ks2gzh8g9zpzy9ad4nlz";
sha256 = "1yj5zajaf2dfvflxkzfhnym2f2vpssmvd2d1kyb97ml8wqgw3mk9";
};
x86_64-linux = rec {
url = "https://github.com/nhost/cli/releases/download/${version}/cli-${version}-linux-amd64.tar.gz";
sha256 = "07ja9xpll9sqxivaj73dz6airmn9kc40i47551qk54b6myayv49n";
sha256 = "0m7h63clp0p4fycvyxad2mpwa6gfvr9s196j4lijbc1nfwqd4bp6";
};
};

Expand Down

0 comments on commit e2ceb0b

Please sign in to comment.