]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
Preparations for v0.7.1 release hostap_0_7_1
authorJouni Malinen <j@w1.fi>
Sat, 16 Jan 2010 17:04:38 +0000 (19:04 +0200)
committerJouni Malinen <j@w1.fi>
Sat, 16 Jan 2010 17:04:38 +0000 (19:04 +0200)
14 files changed:
build_release
hostapd/ChangeLog
hostapd/README
hostapd/hostapd_cli.c
hostapd/main.c
src/common/version.h
wpa_supplicant/ChangeLog
wpa_supplicant/README
wpa_supplicant/wpa_cli.c
wpa_supplicant/wpa_supplicant.c
www/hostapd/index.html
www/index.html
www/versions.dot
www/wpa_supplicant/index.html

index da94097d239edd721f749ae3457cd19ccfd870b1..fb46bc806d9875d11b18c1cf49dc856726123ec3 100755 (executable)
@@ -38,7 +38,7 @@ git archive --format=tar --prefix=hostapd-$VER/ HEAD \
        README COPYING patches src hostapd |
        gzip > $RELDIR/hostapd-$VER.tar.gz
 git archive --format=tar --prefix=wpa_supplicant-$VER/ HEAD \
-       README COPYING patches src wpa_supplicant hostapd/*.[ch] |
+       README COPYING patches src wpa_supplicant |
        tar --directory=$TMP -xf -
 
 cd $TMP
index 374bc09a70b7de8b2c4143486b8dec0a0c4b9f3c..ced77af5f22450b4caaf45048fc0dee1771443c4 100644 (file)
@@ -1,5 +1,32 @@
 ChangeLog for hostapd
 
+2010-01-16 - v0.7.1
+       * cleaned up driver wrapper API (struct wpa_driver_ops); the new API
+         is not fully backwards compatible, so out-of-tree driver wrappers
+         will need modifications
+       * cleaned up various module interfaces
+       * merge hostapd and wpa_supplicant developers' documentation into a
+         single document
+       * fixed HT Capabilities IE with nl80211 drivers
+       * moved generic AP functionality code into src/ap
+       * WPS: handle Selected Registrar as union of info from all Registrars
+       * remove obsolte Prism54.org driver wrapper
+       * added internal debugging mechanism with backtrace support and memory
+         allocation/freeing validation, etc. tests (CONFIG_WPA_TRACE=y)
+       * EAP-FAST server: piggyback Phase 2 start with the end of Phase 1
+       * WPS: add support for dynamically selecting whether to provision the
+         PSK as an ASCII passphrase or PSK
+       * added support for WDS (4-address frame) mode with per-station virtual
+         interfaces (wds_sta=1 in config file; only supported with
+         driver=nl80211 for now)
+       * fixed WPS Probe Request processing to handle missing required
+         attribute
+       * fixed PKCS#12 use with OpenSSL 1.0.0
+       * detect bridge interface automatically so that bridge parameter in
+         hostapd.conf becomes optional (though, it may now be used to
+         automatically add then WLAN interface into a bridge with
+         driver=nl80211)
+
 2009-11-21 - v0.7.0
        * increased hostapd_cli ping interval to 5 seconds and made this
          configurable with a new command line options (-G<seconds>)
index c65552f30d3495dd3151e29f9ae05ce3346cbadc..1af487d765937238dd243059daef219855d183a1 100644 (file)
@@ -2,7 +2,7 @@ hostapd - user space IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP
          Authenticator and RADIUS authentication server
 ================================================================
 
-Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi> and contributors
+Copyright (c) 2002-2010, Jouni Malinen <j@w1.fi> and contributors
 All Rights Reserved.
 
 This program is dual-licensed under both the GPL version 2 and BSD
index 964c64dd219922f0092fcb391ae62d0a6334ed05..2cfaf58d99b9b238efaaf98567861ba9f340ba1f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * hostapd - command line interface for hostapd daemon
- * Copyright (c) 2004-2009, Jouni Malinen <j@w1.fi>
+ * Copyright (c) 2004-2010, Jouni Malinen <j@w1.fi>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License version 2 as
@@ -22,7 +22,7 @@
 
 static const char *hostapd_cli_version =
 "hostapd_cli v" VERSION_STR "\n"
-"Copyright (c) 2004-2009, Jouni Malinen <j@w1.fi> and contributors";
+"Copyright (c) 2004-2010, Jouni Malinen <j@w1.fi> and contributors";
 
 
 static const char *hostapd_cli_license =
index 00ce22d104727c82962ac3610231f026d49d84ff..6d3c7a6e37e14d83002ff27142c1ed823ac8a224 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * hostapd / main()
- * Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi>
+ * Copyright (c) 2002-2010, Jouni Malinen <j@w1.fi>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License version 2 as
@@ -447,7 +447,7 @@ static void show_version(void)
                "hostapd v" VERSION_STR "\n"
                "User space daemon for IEEE 802.11 AP management,\n"
                "IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator\n"
-               "Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi> "
+               "Copyright (c) 2002-2010, Jouni Malinen <j@w1.fi> "
                "and contributors\n");
 }
 
index f8b1e68951ff274a2604a10d3c357c0b8adde1e5..9fa74f8cfdf5ca12a9fd193bc9cbecbb3c99454f 100644 (file)
@@ -1,6 +1,6 @@
 #ifndef VERSION_H
 #define VERSION_H
 
-#define VERSION_STR "0.7.0"
+#define VERSION_STR "0.7.1"
 
 #endif /* VERSION_H */
index 593826dfeab58be23c470dcef1485111656b29b8..566177522bd8b0e4ebe8e8bcc9bce1bd6e07c330 100644 (file)
@@ -1,5 +1,31 @@
 ChangeLog for wpa_supplicant
 
+2010-01-16 - v0.7.1
+       * cleaned up driver wrapper API (struct wpa_driver_ops); the new API
+         is not fully backwards compatible, so out-of-tree driver wrappers
+         will need modifications
+       * cleaned up various module interfaces
+       * merge hostapd and wpa_supplicant developers' documentation into a
+         single document
+       * nl80211: use explicit deauthentication to clear cfg80211 state to
+         avoid issues when roaming between APs
+       * dbus: major design changes in the new D-Bus API
+         (fi.w1.wpa_supplicant1)
+       * nl80211: added support for IBSS networks
+       * added internal debugging mechanism with backtrace support and memory
+         allocation/freeing validation, etc. tests (CONFIG_WPA_TRACE=y)
+       * added WPS ER unsubscription command to more cleanly unregister from
+         receiving UPnP events when ER is terminated
+       * cleaned up AP mode operations to avoid need for virtual driver_ops
+         wrapper
+       * added BSS table to maintain more complete scan result information
+         over multiple scans (that may include only partial results)
+       * wpa_gui-qt4: update Peers dialog information more dynamically while
+         the dialog is kept open
+       * fixed PKCS#12 use with OpenSSL 1.0.0
+       * driver_wext: Added cfg80211-specific optimization to avoid some
+         unnecessary scans and to speed up association
+
 2009-11-21 - v0.7.0
        * increased wpa_cli ping interval to 5 seconds and made this
          configurable with a new command line options (-G<seconds>)
index 4aa652fbad0f4b4fca84c25ead1e997cfeb10e8f..45c8bae150b3a429a17e40a5ed5aca411e68a9d8 100644 (file)
@@ -1,7 +1,7 @@
 WPA Supplicant
 ==============
 
-Copyright (c) 2003-2009, Jouni Malinen <j@w1.fi> and contributors
+Copyright (c) 2003-2010, Jouni Malinen <j@w1.fi> and contributors
 All Rights Reserved.
 
 This program is dual-licensed under both the GPL version 2 and BSD
index 1933140c35ced6a9952ba971e562929996d9810d..7c6abcb781af2dea5b982c2f466d802f606ad347 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * WPA Supplicant - command line interface for wpa_supplicant daemon
- * Copyright (c) 2004-2009, Jouni Malinen <j@w1.fi>
+ * Copyright (c) 2004-2010, Jouni Malinen <j@w1.fi>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License version 2 as
@@ -31,7 +31,7 @@
 
 static const char *wpa_cli_version =
 "wpa_cli v" VERSION_STR "\n"
-"Copyright (c) 2004-2009, Jouni Malinen <j@w1.fi> and contributors";
+"Copyright (c) 2004-2010, Jouni Malinen <j@w1.fi> and contributors";
 
 
 static const char *wpa_cli_license =
index ee7acdd4bcbabe93ed71c80e9c26dcb5f7f932b8..d62937b514fed7216d56eb15125a466bb035e9f5 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * WPA Supplicant
- * Copyright (c) 2003-2009, Jouni Malinen <j@w1.fi>
+ * Copyright (c) 2003-2010, Jouni Malinen <j@w1.fi>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License version 2 as
@@ -49,7 +49,7 @@
 
 const char *wpa_supplicant_version =
 "wpa_supplicant v" VERSION_STR "\n"
-"Copyright (c) 2003-2009, Jouni Malinen <j@w1.fi> and contributors";
+"Copyright (c) 2003-2010, Jouni Malinen <j@w1.fi> and contributors";
 
 const char *wpa_supplicant_license =
 "This program is free software. You can distribute it and/or modify it\n"
index 908abf966e12186b7494b9f2c32cf32ee518656e..881c506b7c371531e3ef703f7fc2b5b5c10298de 100644 (file)
@@ -122,7 +122,7 @@ for the current documentation.</b></p>
 </ul>
 <li>Latest development release:
 <ul>
-<li><a href="../releases/hostapd-0.7.0.tar.gz">hostapd-0.7.0.tar.gz</a></li>
+<li><a href="../releases/hostapd-0.7.1.tar.gz">hostapd-0.7.1.tar.gz</a></li>
 </ul>
 <li>ChangeLog:
 <ul>
@@ -251,7 +251,7 @@ bug/feature request</a>.
     <address><a href="mailto:j@w1.fi">Jouni Malinen</a></address>
 <!-- Created: Sun Jan  2 17:20:17 PST 2005 -->
 <!-- hhmts start -->
-Last modified: Tue Jan 12 18:29:09 EET 2010
+Last modified: Sat Jan 16 18:18:10 EET 2010
 <!-- hhmts end -->
     </div>
   </body>
index c65cd5e47b12299a19b7c840203b81c040326cbc..645ac3b8dc4cf5b2190ede375dcfa45389f94133 100644 (file)
@@ -191,10 +191,10 @@ main kernel tree.
 </ul>
 <li>Latest development release:
 <ul>
-<li><a href="releases/hostapd-0.7.0.tar.gz">hostapd-0.7.0.tar.gz</a>
-<li><a href="releases/wpa_supplicant-0.7.0.tar.gz">wpa_supplicant-0.7.0.tar.gz</a> (source code for all versions)</li>
-<li><a href="releases/wpa_supplicant-0.7.0.exe">wpa_supplicant-0.7.0.exe</a> (binary installer for Windows)</li>
-<li><a href="releases/wpa_supplicant-windows-bin-0.7.0.zip">wpa_supplicant-windows-bin-0.7.0.zip</a> (binaries for Windows)</li>
+<li><a href="releases/hostapd-0.7.1.tar.gz">hostapd-0.7.1.tar.gz</a>
+<li><a href="releases/wpa_supplicant-0.7.1.tar.gz">wpa_supplicant-0.7.1.tar.gz</a> (source code for all versions)</li>
+<li><a href="releases/wpa_supplicant-0.7.1.exe">wpa_supplicant-0.7.1.exe</a> (binary installer for Windows)</li>
+<li><a href="releases/wpa_supplicant-windows-bin-0.7.1.zip">wpa_supplicant-windows-bin-0.7.1.zip</a> (binaries for Windows)</li>
 </ul>
 <li>ChangeLog:
 <ul>
@@ -266,7 +266,7 @@ get lost, please report it through the bug tracking system as
     <address><a href="mailto:j@w1.fi">Jouni Malinen</a></address>
 <!-- Created: Mon May 27 20:08:41 EEST 2002 -->
 <!-- hhmts start -->
-Last modified: Tue Jan 12 18:29:24 EET 2010
+Last modified: Sat Jan 16 18:17:50 EET 2010
 <!-- hhmts end -->
     </div>
   </body>
index 6a9f4789fe5269d8ec0850aa8b63ec2c76694ae3..c90f2b3e779ff5f13a3693e509d80ff237dfddd6 100644 (file)
@@ -46,6 +46,7 @@ digraph versions {
        v067 [label="0.6.7  hw\n2009-01-06"]
 
        v070 [label="0.7.0  hw\n2009-11-21"]
+       v071 [label="0.7.1  hw\n2010-01-16"]
 
 # stable releases
 
@@ -82,14 +83,14 @@ digraph versions {
        v037 -> v040 -> v041 -> v042 -> v043 -> v044 -> v045 -> v046 -> v047
        v047 -> v050 -> v051 -> v052 -> v053 -> v054 -> v055 -> v056 -> v057
        v057 -> v060 -> v061 -> v062 -> v063 -> v064 -> v065 -> v066 -> v067 -> v068
-       v068 -> v070
+       v068 -> v070 -> v071
 
        {rank=same; v001 v024}
        {rank=same; v030 v037}
        {rank=same; v040 v047}
        {rank=same; v050 v057}
        {rank=same; v060 v068}
-       {rank=same; v070 v070}
+       {rank=same; v070 v071}
 
 # stable releases
 
index e00d4f62d75519f6687f44e245169d1e9f3cc771..02d68c8891ded64cb87d99ef5edd25f83b9cc280 100644 (file)
@@ -177,9 +177,9 @@ has some more information about the Windows port of wpa_supplicant.</p>
 </ul>
 <li>Latest development release:
 <ul>
-<li><a href="../releases/wpa_supplicant-0.7.0.tar.gz">wpa_supplicant-0.7.0.tar.gz</a> (source code for all versions)</li>
-<li><a href="../releases/wpa_supplicant-0.7.0.exe">wpa_supplicant-0.7.0.exe</a> (binary installer for Windows)</li>
-<li><a href="../releases/wpa_supplicant-windows-bin-0.7.0.zip">wpa_supplicant-windows-bin-0.7.0.zip</a> (binaries for Windows)</li>
+<li><a href="../releases/wpa_supplicant-0.7.1.tar.gz">wpa_supplicant-0.7.1.tar.gz</a> (source code for all versions)</li>
+<li><a href="../releases/wpa_supplicant-0.7.1.exe">wpa_supplicant-0.7.1.exe</a> (binary installer for Windows)</li>
+<li><a href="../releases/wpa_supplicant-windows-bin-0.7.1.zip">wpa_supplicant-windows-bin-0.7.1.zip</a> (binaries for Windows)</li>
 </ul>
 <li>ChangeLog:
 <ul>
@@ -341,7 +341,7 @@ bug/feature request</a>.
     <address><a href="mailto:j@w1.fi">Jouni Malinen</a></address>
 <!-- Created: Sat May 22 21:41:58 PDT 2004 -->
 <!-- hhmts start -->
-Last modified: Tue Jan 12 18:29:16 EET 2010
+Last modified: Sat Jan 16 18:18:01 EET 2010
 <!-- hhmts end -->
     </div>
   </body>