Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
base: 9fef2ce7cfb1
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
compare: b23f2112f5a2
Choose a head ref
  • 14 commits
  • 8 files changed
  • 6 contributors

Commits on Feb 19, 2020

  1. nixos/release-combined: migrate constituents list to strings

    As of a few days ago hydra has a different GC configuration that leads
    to eval failures when the tested job has a direct dependency on all the
    tests. This is an attempt at migrating the old list of jobs to the new
    format while keeping the logic and the tests the same.
    andir committed Feb 19, 2020
    Copy the full SHA
    9947f99 View commit details
    Browse the repository at this point in the history
  2. nixos/release-small: migrate constituents list to strings

    As of a few days ago hydra has a different GC configuration that leads
    to eval failures when the tested job has a direct dependency on all the
    tests. This is an attempt at migrating the old list of jobs to the new
    format while keeping the logic and the tests the same.
    andir committed Feb 19, 2020
    Copy the full SHA
    9bf3de0 View commit details
    Browse the repository at this point in the history
  3. mariadb: fix darwin build

    We want to disable `PLUGIN_AUTH_PAM` when building:
    
    1. `mariadb` on macOS.
    2. `mariadb-client` on any platform
    
    Unfortunately, the interaction of these two commits
      6c97b04
      7e43b4d
    created a situation where we disable it *twice* when building on macOS.
    Once in a darwin-specific `prePatch` script, and again in the `patches`
    section for client builds.
    
    This removes the redundant `prePatch` script and conditionally applies
    the patch to `mariadb` server builds on darwin.
    
    Fixes #70835
    
    (cherry picked from commit b0b0bb7)
    callahad authored and veprbl committed Feb 19, 2020
    Copy the full SHA
    1ddda1c View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2020

  1. nixUnstable, nixFlakes: Update to latest

    Note that we need to build from a tarball now to get the vendored
    crates. A bit ugly to fetch tarballs from Hydra...
    
    (cherry picked from commit dd7f6b0)
    edolstra committed Feb 20, 2020
    Copy the full SHA
    883bd18 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #80454 from andir/19.09/tested

    [19.09] nixos/release-combined; migrate constituents list to strings
    edolstra committed Feb 20, 2020
    Copy the full SHA
    7d5d07f View commit details
    Browse the repository at this point in the history
  3. nixos/release-small.nix: Remove hydraJob

    hydra-eval-jobs's derivation-patching logic cannot handle hydraJob.
    edolstra committed Feb 20, 2020
    Copy the full SHA
    102471f View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    4fdaba1 View commit details
    Browse the repository at this point in the history
  5. linux: 5.4.20 -> 5.4.21

    NeQuissimus committed Feb 20, 2020
    Copy the full SHA
    0d2288f View commit details
    Browse the repository at this point in the history
  6. nixos/release.nix: Import './..' instead of nixpkgs

    'nixpkgs' is a result of a call to cleanSource, which is very
    expensive and fails in --dry-run mode.
    
    (cherry picked from commit 3182fbd)
    edolstra committed Feb 20, 2020
    Copy the full SHA
    9a0f407 View commit details
    Browse the repository at this point in the history
  7. Copy the full SHA
    271528b View commit details
    Browse the repository at this point in the history
  8. weechat: 2.6 -> 2.7

    Disables support for Javascript and PHP:
    - Javascript requires an old version of v8
    - PHP requires a larger number of dependencies in addition to php-embed
    
    Changelog [1]:
    
      New features
        - core: add option weechat.look.nick_color_hash_salt to shuffle nick colors (issue #635)
        - core: add different icons sizes (16x16 to 512x512) (issue #1347)
        - core: add file weechat.desktop
        - core: add reverse of string for screen in evaluation of expressions with "revscr:"
        - core: add length of string (number of chars and on screen) in evaluation of expressions with "length:xxx" and "lengthscr:xxx"
        - core: add calculation of expression in evaluation of expressions with "calc:xxx" (issue #997)
        - core: add optional default path (evaluated) in completion "filename"
        - core: add support of modifiers in evaluation of expressions with "modifier:name,data,string"
        - api: add modifier "color_encode_ansi" (issue #528)
        - api: add modifier "eval_path_home"
        - irc: add filters on raw buffer (issue #1000)
        - irc: add option irc.look.display_pv_warning_address to display a warning in private buffer if the remote nick address has changed (issue #892)
        - irc: add server option "ssl_password" (issue #115, issue #1416)
        - irc: add "user" in output of irc_message_parse (issue #136)
        - irc: add options irc.color.message_kick and irc.color.reason_kick (issue #683, issue #684)
        - logger: add option logger.file.color_lines (issue #528, issue #621)
        - script: add options "-ol" and "-il" in command "/script list" to send translated string with list of scripts loaded, display "No scripts loaded" if no scripts are loaded
        - xfer: add option xfer.file.download_temporary_suffix with default value ".part" (issue #1237)
    
      Bug fixes
        - core: set buffer name, short name and title only if the value has changed
        - core: fix scrolling up in bare mode when switched to bare mode at the top of the buffer (issue #899, issue #978)
        - core: optimize load of configuration files
        - core: fix window separators not respecting window splits (issue #630)
        - core: fix cursor mode info when prefix_align is none and with words split across lines (issue #610, issue #617, issue #619)
        - core: add support of reverse video in ANSI color codes
        - core: fixed segfault during excessive evaluation in function string_repeat (issue #1400)
        - buflist: fix extra spaces between buffers when conditions are used to hide buffers (regression introduced in version 2.6) (issue #1403)
        - irc: do not automatically open a channel with name "0" (issue #1429)
        - irc: remove option irc.network.channel_encode, add server option "charset_message" to control which part of the IRC message is decoded/encoded to the target charset (issue #832)
        - irc: use path from option xfer.file.upload_path to complete filename in command "/dcc send" (issue #60)
        - logger: fix write in log file if it has been deleted or renamed (issue #123)
        - python: send "bytes" instead of "str" to callbacks in Python 3 when the string is not UTF-8 valid (issue #1389)
        - relay: send message "_buffer_title_changed" to clients only when the title is changed
        - xfer: fix memory leak when a xfer is freed and when the plugin is unloaded
    
      Tests
        - unit: add tests on GUI color functions
    
      Build
        - core: fix build on Haiku (issue #1420)
        - core: fix build on Alpine
        - core: remove file FindTCL.cmake
        - core: display an error on missing dependency in CMake (issue #916, issue #956)
        - debian: disable Javascript plugin on Debian Sid and Ubuntu Eoan
        - debian: build with Guile 2.2
        - guile: add support of Guile 2.2, disable /guile eval (issue #1098)
        - python: add detection of Python 3.8
    
    [1] https://weechat.org/files/changelog/ChangeLog-2.7.html
    
    (cherry picked from commit d1cb8bf)
    mweinelt committed Feb 20, 2020
    Copy the full SHA
    4bbadcf View commit details
    Browse the repository at this point in the history
  9. weechat: 2.7 -> 2.7.1

    Release notes:
    
    irc: fix crash when receiving a malformed message 352 (who)
    irc: fix crash when a new message 005 is received with longer nick prefixes
    irc: fix crash when receiving a malformed message 324 (channel mode) (CVE-2020-8955)
    (cherry picked from commit 2d77fc3)
    mweinelt committed Feb 20, 2020
    Copy the full SHA
    10babe3 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #80571 from veprbl/pr/mariadb_darwin_fix_19.09

    [19.09] mariadb: fix darwin build
    veprbl committed Feb 20, 2020
    Copy the full SHA
    b6ef10f View commit details
    Browse the repository at this point in the history
  11. Merge pull request #80675 from mweinelt/pr/19.09/weechat/2.7.1

    [19.09] weechat: 2.6 -> 2.7.1
    andir committed Feb 20, 2020
    Copy the full SHA
    b23f211 View commit details
    Browse the repository at this point in the history