Commit d3c7bb65 authored by 06kellyjac's avatar 06kellyjac
Browse files

deno: 1.28.1 -> 1.28.2

parent c09a8a97
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -17,15 +17,15 @@

rustPlatform.buildRustPackage rec {
  pname = "deno";
  version = "1.28.1";
  version = "1.28.2";

  src = fetchFromGitHub {
    owner = "denoland";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-pphXLH81xous4C/mTkay9mfk3PgIT7HcY+br9uckJlQ=";
    sha256 = "sha256-gmDR8KNpx+M66Rv8fooTQOY42ekYl+KwIQ/5jDvYQho=";
  };
  cargoSha256 = "sha256-DEWLIGskfvuEZhLvtdPprlmncZRcJBBBjYRuk4oFVkk=";
  cargoSha256 = "sha256-emf6Q3WQM8W0yPvuNXPeuRC7FOt8QJ/+b5kMzyd3ZCU=";

  postPatch = ''
    # upstream uses lld on aarch64-darwin for faster builds
+2 −4
Original line number Diff line number Diff line
import * as toml from "https://deno.land/std@0.148.0/encoding/toml.ts";
import {
  genValueRegExp,
  getExistingVersion,
  logger,
  run,
  versionRegExp,
  write,
} from "./common.ts";

@@ -25,9 +23,9 @@ const getLibrustyV8Version = async (
  repo: string,
  version: string,
) =>
  fetch(`https://github.com/${owner}/${repo}/raw/${version}/core/Cargo.toml`)
  fetch(`https://github.com/${owner}/${repo}/raw/${version}/Cargo.toml`)
    .then((res) => res.text())
    .then((txt) => toml.parse(txt).dependencies.v8.version);
    .then((txt) => toml.parse(txt).workspace.dependencies.v8.version);

const fetchArchShaTasks = (version: string, arches: Architecture[]) =>
  arches.map(