Unverified Commit 2e91098d authored by Felix Bargfeldt's avatar Felix Bargfeldt Committed by GitHub
Browse files

glitchtip: 5.0.9 -> 5.1.0 (#430962)

parents 45efd33f 3a9fd05d
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -9,22 +9,20 @@

buildNpmPackage (finalAttrs: {
  pname = "glitchtip-frontend";
  version = "5.0.9";
  version = "5.1.0";

  src = fetchFromGitLab {
    owner = "glitchtip";
    repo = "glitchtip-frontend";
    tag = "v${finalAttrs.version}";
    hash = "sha256-iNTGs+rq2TVDIBcLV4wMmWxwBvwWqKXytowLD7SRFEw=";
    hash = "sha256-8l/V2u/j3nF6GqFlQwK33pQuRAPXmqitmrNq6Z8p7ZQ=";
  };

  npmDeps = fetchNpmDeps {
    inherit (finalAttrs) src patches;
    hash = "sha256-81Z1NijHuvG9I4pdsUQ1cS3OdfAtHoiSdmrpu1KUpWE=";
    inherit (finalAttrs) src;
    hash = "sha256-Lvhf80O/UTFABIGHjSVz4olBkEMUoE7XX66PD6P/FiA=";
  };

  patches = [ ./update_esbuild.patch ];

  postPatch = ''
    jq '.devDependencies |= del(.cypress, ."cypress-localstorage-commands")' package.json | sponge package.json
  '';
+2 −2
Original line number Diff line number Diff line
@@ -86,14 +86,14 @@ in

stdenv.mkDerivation (finalAttrs: {
  pname = "glitchtip";
  version = "5.0.9";
  version = "5.1.0";
  pyproject = true;

  src = fetchFromGitLab {
    owner = "glitchtip";
    repo = "glitchtip-backend";
    tag = "v${finalAttrs.version}";
    hash = "sha256-yRXrcwE5DDJpDiX4XB18ezrLn62AV4w/ASvrOoKD6p4=";
    hash = "sha256-okX/bWZNe5ypkfUYm7usNXa7HpBgZoj2vLEq+oGHKiM=";
  };

  propagatedBuildInputs = pythonPackages;
+0 −2737

File deleted.

Preview size limit exceeded, changes collapsed.

+0 −6764

File deleted.

Preview size limit exceeded, changes collapsed.

+6 −3
Original line number Diff line number Diff line
@@ -9,11 +9,12 @@
  milksnake,
  cffi,
  pytestCheckHook,
  nix-update-script,
}:

buildPythonPackage rec {
  pname = "symbolic";
  version = "12.15.5";
  version = "12.16.1";
  pyproject = true;

  src = fetchFromGitHub {
@@ -22,12 +23,12 @@ buildPythonPackage rec {
    tag = version;
    # the `py` directory is not included in the tarball, so we fetch the source via git instead
    forceFetchGit = true;
    hash = "sha256-hHAMWXY05chd3sJCMGixytabZ1G0uzZRLg0KmutRJEY=";
    hash = "sha256-Y24IreRP/YZEugvro8PxMh32qAdEbFWhMxQLfeR1clM=";
  };

  cargoDeps = rustPlatform.fetchCargoVendor {
    inherit pname version src;
    hash = "sha256-JGq3VYZwEsp4+MiQftf1k2T/48KSD7SqnbRcwgAcaDE=";
    hash = "sha256-IUh+6lKGsVqrmbYKEu0kahiQeMGJ3cN5lu1DIj9Hd48=";
  };

  nativeBuildInputs = [
@@ -54,6 +55,8 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "symbolic" ];

  passthru.updateScript = nix-update-script { };

  meta = {
    description = "Python library for dealing with symbol files and more";
    homepage = "https://github.com/getsentry/symbolic";