chiark / gitweb /
build-sys: prepare 193
authorLennart Poettering <lennart@poettering.net>
Thu, 27 Sep 2012 23:34:38 +0000 (01:34 +0200)
committerLennart Poettering <lennart@poettering.net>
Thu, 27 Sep 2012 23:34:38 +0000 (01:34 +0200)
Makefile.am
NEWS
configure.ac

index f7249987d1b8d864434f832041d98005a320aff2..1a52400cf1baaf57a8f722e15e1ff036319e1205 100644 (file)
@@ -27,7 +27,7 @@ SUBDIRS = . po
 .DELETE_ON_ERROR:
 
 LIBUDEV_CURRENT=2
-LIBUDEV_REVISION=3
+LIBUDEV_REVISION=4
 LIBUDEV_AGE=1
 
 LIBGUDEV_CURRENT=1
@@ -35,7 +35,7 @@ LIBGUDEV_REVISION=2
 LIBGUDEV_AGE=1
 
 LIBSYSTEMD_LOGIN_CURRENT=3
-LIBSYSTEMD_LOGIN_REVISION=6
+LIBSYSTEMD_LOGIN_REVISION=7
 LIBSYSTEMD_LOGIN_AGE=3
 
 LIBSYSTEMD_DAEMON_CURRENT=0
@@ -43,11 +43,11 @@ LIBSYSTEMD_DAEMON_REVISION=5
 LIBSYSTEMD_DAEMON_AGE=0
 
 LIBSYSTEMD_ID128_CURRENT=0
-LIBSYSTEMD_ID128_REVISION=12
+LIBSYSTEMD_ID128_REVISION=13
 LIBSYSTEMD_ID128_AGE=0
 
 LIBSYSTEMD_JOURNAL_CURRENT=5
-LIBSYSTEMD_JOURNAL_REVISION=2
+LIBSYSTEMD_JOURNAL_REVISION=3
 LIBSYSTEMD_JOURNAL_AGE=5
 
 # Dirs of external packages
diff --git a/NEWS b/NEWS
index 2b2a9a3bc1268da12e9a37072b6616c5638b2e9c..b1f4fb8803b23c6845754010e3d98ae12bb80500 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,41 @@
 systemd System and Service Manager
 
+CHANGES WITH 193:
+
+        * journalctl gained a new --cursor= switch to show entries
+          starting from the specified location in the journal.
+
+        * We now enforce a size limit on journal entry fields exported
+          with "-o json" in journalctl. Fields larger than 4K will be
+          assigned null. This can be turned off with --all.
+
+        * An (optional) journal gateway daemon is now available as
+          "systemd-journal-gatewayd.service". This service provides
+          access to the journal via HTTP and JSON. This functionality
+          will be used to implement live log synchronization in both
+          pull and push modes, but has various other users too, such
+          as easy log access for debugging of embedded devices. Right
+          now it is already useful to retrieve the journal via HTTP:
+
+          # systemctl start systemd-journal-gatewayd.service
+          # wget http://localhost:19531/entries
+
+          This will download the journal contents in a
+          /var/log/messages compatible format. The same as JSON:
+
+          # curl -H"Accept: application/json" http://localhost:19531/entries
+
+          This service is also accessible via a web browser where a
+          single static HTML5 app is served that uses the JSON logic
+          to enable the user to do some basic browsing of the
+          journal. This will be extended later on. Here's an example
+          screenshot of this app in its current state:
+
+          http://0pointer.de/public/journal-gatewayd
+
+        Contributions from: Kay Sievers, Lennart Poettering, Robert
+        Milasan, Tom Gundersen
+
 CHANGES WITH 192:
 
         * The bash completion logic is now available for journalctl
@@ -14,8 +50,8 @@ CHANGES WITH 192:
         * journalctl -f will now subscribe to terminal size changes,
           and line break accordingly.
 
-        Changes from: Dave Reisner, Kay Sievers, Lennart Poettering,
-        Lukas Nykrynm, Mirco Tischler, Václav Pavlín
+        Contributions from: Dave Reisner, Kay Sievers, Lennart
+        Poettering, Lukas Nykrynm, Mirco Tischler, Václav Pavlín
 
 CHANGES WITH 191:
 
@@ -49,8 +85,8 @@ CHANGES WITH 191:
           also means the inhibition lock for these keys has been split
           into two.
 
-        Changes from: Dave Airlie, Eelco Dolstra, Lennart Poettering,
-        Lukas Nykryn, Václav Pavlín
+        Contributions from: Dave Airlie, Eelco Dolstra, Lennart
+        Poettering, Lukas Nykryn, Václav Pavlín
 
 CHANGES WITH 190:
 
index 79ce5944f3079609587e020fb0b613a575c3a3d0..f0187b756c1249c8c425f6faff92fb93362cc3bd 100644 (file)
@@ -20,7 +20,7 @@
 AC_PREREQ([2.64])
 
 AC_INIT([systemd],
-        [192],
+        [193],
         [http://bugs.freedesktop.org/enter_bug.cgi?product=systemd],
         [systemd],
         [http://www.freedesktop.org/wiki/Software/systemd])