Unverified Commit 1d9a3bcf authored by Leona Maroni's avatar Leona Maroni
Browse files

discourse: 2025.12.2 -> 2026.1.1

parent 151ac5e7
Loading
Loading
Loading
Loading
+10 −7
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@
  buildRubyGem,
  rustc,
  cargo,
  pnpm_9,
  pnpm,
  fetchPnpmDeps,
  pnpmConfigHook,
  svgo,
@@ -53,13 +53,13 @@
}:

let
  version = "2025.12.2";
  version = "2026.1.1";

  src = fetchFromGitHub {
    owner = "discourse";
    repo = "discourse";
    rev = "v${version}";
    sha256 = "sha256-lovpaG5K+avTC9W2rFN21JZQXCT8b0HBXLMgWEIz9fs=";
    sha256 = "sha256-sZky/gCCfaEw75NWsUatcxN3gjeKD8jzqzGXkDbcsfU=";
  };

  ruby = ruby_3_3;
@@ -304,9 +304,9 @@ let
    pnpmDeps = fetchPnpmDeps {
      pname = "discourse-assets";
      inherit version src;
      pnpm = pnpm_9;
      pnpm = pnpm;
      fetcherVersion = 1;
      hash = "sha256-/GJQqbmBXn5SSdxQ3TBQEUGe6Qm7aJ1ogoYqOFD5Pm0=";
      hash = "sha256-/vPNHEB/ZuHWnSLqfz2NM/scSRH9wzotzjunDAw5Imc=";
    };

    nativeBuildInputs = runtimeDeps ++ [
@@ -320,7 +320,7 @@ let
      moreutils
      nodejs-slim_22
      pnpmConfigHook
      pnpm_9
      pnpm
    ];

    outputs = [
@@ -534,7 +534,10 @@ let
    meta = {
      homepage = "https://www.discourse.org/";
      platforms = lib.platforms.linux;
      maintainers = with lib.maintainers; [ talyz ];
      maintainers = with lib.maintainers; [
        leona
        talyz
      ];
      license = lib.licenses.gpl2Plus;
      description = "Open source discussion platform";
    };
+2 −2
Original line number Diff line number Diff line
@@ -9,8 +9,8 @@ mkDiscoursePlugin {
  src = fetchFromGitHub {
    owner = "discourse";
    repo = "discourse-bbcode-color";
    rev = "2e32fe4573912612ab61cf9c1962f3ae85fd732a";
    sha256 = "sha256-7M2K3yx1CwzrLgS83e/3YKGyGJA4S7wT2QG7m9yZNnI=";
    rev = "8c621d07a7a60b94d717fd435b0f137e89db99cd";
    sha256 = "sha256-+LqlJpg9s2GbZE136FUDIRn9C10a7IYPPu1crkMqMSA=";
  };
  meta = {
    homepage = "https://github.com/discourse/discourse-bbcode-color";
+2 −2
Original line number Diff line number Diff line
@@ -9,8 +9,8 @@ mkDiscoursePlugin {
  src = fetchFromGitHub {
    owner = "discourse";
    repo = "discourse-docs";
    rev = "f755032b6988c217da30025d7e281d07361bbc47";
    sha256 = "sha256-GOwLPbRLZ8F+hY4n+TAbN+DruaQgTzoM7KhVU9hfisM=";
    rev = "742515b059c27803a7b813ae420b65ceba1e8798";
    sha256 = "sha256-AG4WYskmEdW68n2XX4t139I3rlc0PNAL8cTehVvEgAs=";
  };
  meta = {
    homepage = "https://github.com/discourse/discourse-docs";
+5 −1
Original line number Diff line number Diff line
@@ -3,8 +3,12 @@
source "https://rubygems.org"

# gem "rails"
gem "discourse_subscription_client", "0.1.11"
gem "iso-639", "0.3.5"
gem "ice_cube", "0.16.4"
gem "icalendar", "2.8.0"
gem "icalendar-recurrence", "1.1.3"
gem "omnievent", "0.1.0.pre11"
gem "omnievent-api", "0.1.0.pre5"
gem "omnievent-icalendar", "0.1.0.pre9"
gem "omnievent-google", "0.1.0.pre8"
gem "omnievent-outlook", "0.1.0.pre11"
+17 −3
Original line number Diff line number Diff line
GEM
  remote: https://rubygems.org/
  specs:
    discourse_subscription_client (0.1.11)
    icalendar (2.8.0)
      ice_cube (~> 0.16)
    icalendar-recurrence (1.1.3)
@@ -9,16 +8,31 @@ GEM
      ice_cube (~> 0.16)
    ice_cube (0.16.4)
    iso-639 (0.3.5)
    omnievent (0.1.0.pre11)
    omnievent-api (0.1.0.pre5)
      omnievent
    omnievent-google (0.1.0.pre8)
      omnievent
      omnievent-api
    omnievent-icalendar (0.1.0.pre9)
      omnievent
    omnievent-outlook (0.1.0.pre11)
      omnievent
      omnievent-api

PLATFORMS
  ruby

DEPENDENCIES
  discourse_subscription_client (= 0.1.11)
  icalendar (= 2.8.0)
  icalendar-recurrence (= 1.1.3)
  ice_cube (= 0.16.4)
  iso-639 (= 0.3.5)
  omnievent (= 0.1.0.pre11)
  omnievent-api (= 0.1.0.pre5)
  omnievent-google (= 0.1.0.pre8)
  omnievent-icalendar (= 0.1.0.pre9)
  omnievent-outlook (= 0.1.0.pre11)

BUNDLED WITH
   2.5.22
   2.7.2
Loading