mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
release-chore: Update docs for a future 1.28 release.
This commit is contained in:
parent
ea7e2c1e30
commit
d2eca82730
6 changed files with 465 additions and 230 deletions
234
ANNOUNCE
234
ANNOUNCE
|
@ -1,7 +1,7 @@
|
|||
1 Announcement
|
||||
**************
|
||||
|
||||
The GNUstep Base Library, version 1.27.0, is now available.
|
||||
The GNUstep Base Library, version 1.28.0, is now available.
|
||||
|
||||
1.1 What is the GNUstep Base Library?
|
||||
=====================================
|
||||
|
@ -18,162 +18,110 @@ portion of the OpenStep standard (the Foundation library).
|
|||
There is more information available at the GNUstep homepage at
|
||||
'http://www.gnustep.org'.
|
||||
|
||||
1.2 Noteworthy changes in version '1.27.0'
|
||||
1.2 Noteworthy changes in version '1.28.0'
|
||||
==========================================
|
||||
|
||||
Aside from an assortment of bugfixes, this release includes a lot of
|
||||
improvements for Android support as well as numerous new classes and
|
||||
improvements for Windows support as well as numerous new classes and
|
||||
methods.
|
||||
|
||||
* Expose GNU TLS wrappers and add methods to get certificate expiry.
|
||||
* Improve thread safety when using zombies, particularly on
|
||||
statup/shutdown.
|
||||
* Improvements for Ukrainian localization.
|
||||
* Decreased ICU requirements to 49 to support Windows 2000.
|
||||
* Simplifications and fixes in GSPrivateSymbolPath().
|
||||
* GSMime improvements (word encoding specifier, utf-8 improvements
|
||||
encoding quoted words with multibyte characters)
|
||||
* NSJSONSerialization fixes for codepoints over 0x7f.
|
||||
* NSCharacterSet support for URL*AllowedCharacterSet and declarations
|
||||
for new character sets.
|
||||
* NSString implementations for new methods
|
||||
stringByRemovingPercentEncoding/
|
||||
stringByAddingPercentEncodingWithAllowedCharacterSet:.
|
||||
* Fixed a crash in gdomap when an invalid hostname is given for the
|
||||
-M option.
|
||||
* In NSString.m, removed functions urldecode() and ishex() which were
|
||||
mistakenly neither namespaced nor declared static and thus could
|
||||
have conflicted with non-library code.
|
||||
* Fixed libdispatch configuration switch so -enable-libdispatch works
|
||||
correctly; correctly checking for HAVE_LIBDISPATCH_RUNLOOP.
|
||||
* Updated libdispatch runloop integration so it is compatible with
|
||||
Swift's corelibs libdispatch release (from
|
||||
github.com/apple/swift-corelibs-libdispatch). The libdispatch must
|
||||
be compiled with INSTALL_PRIVATE_HEADERS=YES.
|
||||
* In NSThread, spinlocks implemented using builtins to be able to
|
||||
target platforms without pthread_spin_lock(), such as Android
|
||||
targeting API level < 24.
|
||||
* In NSLog on Android, send logs to syslog.
|
||||
* Implementation of NSOrderedSet.
|
||||
* When ./configuring, link against libandroid on Android.
|
||||
* In NSBundle, allow integrating with Android asset manager using
|
||||
+[NSBundle setJavaAssetManager:withJNIEnv:], enabling use of
|
||||
mainBundle's pathForResource:ofType:, -URLForResource:ofType: and
|
||||
similar; referencing Info.plist if it exists in Android assets; use
|
||||
of NSFileManager's fileExistsAtPath: et al and
|
||||
isReadableFileAtPath:; reading files using NSFileHandle APIs; use
|
||||
of NSDirectoryEnumerator to enumerate Android assets from the main
|
||||
bundle.
|
||||
* In NSBundle, localization support on Android.
|
||||
* In NSProcessInfo, automatic initialization on Android using a fake
|
||||
executable path (/data/data/<app identifier>/Resources).
|
||||
* In NSData, improvements in reading Android assets.
|
||||
* Various improvements in the mechanism to report memory usage of
|
||||
individual objects.
|
||||
* Skeletal implementation of NSUbiquitousKeyValueStore.
|
||||
* Implementation of NSByteCountFormatter.
|
||||
* Fixes to writing large HTTPS requests (GSSocketStream,
|
||||
NSURLProtocol).
|
||||
* In gdomap.c, fix detection of local networks.
|
||||
* In NSArray's -removeObjectsInArray:, prevent some crashes.
|
||||
* In GSTLS, avoid setting session priority twice.
|
||||
* In NSFileHandle, fix so that setting certificate information does
|
||||
not discard any other options already set.
|
||||
* In GSXML's -fatalErrorFunction, use the correct function to get the
|
||||
line number.
|
||||
* In NSOperation's _execute, ensure lock gets released on an error by
|
||||
surrounding with NS_DURING.
|
||||
* Generics support in NSHashTable.
|
||||
* Implementation of NSProgress.
|
||||
* Skeleton implementation of NSURLComponents.
|
||||
* In NSSortDescriptor, added
|
||||
-sortDescriptorWithKey:ascending:descending:.
|
||||
* In NSOperationQueue, added -addOperationWithBlock.
|
||||
* In NSFileManager, added
|
||||
-URLForDirectory:inDomain:appropriateForURL:create:error: and
|
||||
-enumeratorAtURL:includingPropertiesForKeys:options:errorHandler:.
|
||||
Also added NSItemReplacementDirectory constant, and updated stub
|
||||
implementation for -URLForDirectory:shouldCreate:error:. Added
|
||||
-initWithDirectoryPath:... with additional parameters skipHidden
|
||||
and errorHandler.
|
||||
* In NSDictionary, fixed keysSortedByValueUsingComparator:.
|
||||
* Moved NSFileWrapper from -gui to -base.
|
||||
* Added NSFilePresenter, NSFileVersion and NSFileCoordinator.
|
||||
* Added NSPersonComponents and NSPersonNameComponentsFormatter.
|
||||
* Added units of measurement classes such as NSUnit, NSMeasurement,
|
||||
NSMeasurementFormatter, NSEnergyFormatter, NSLengthFormatter,
|
||||
NSMassFormatter.
|
||||
* In NSUnit, support for NSUnitArea, NSUnitConcentrationMass,
|
||||
NSUnitDispersion, NSUnitElectricCharge, NSUnitIlluminance,
|
||||
NSUnitElectricCurrent, NSUnitElectricPotentionDifference,
|
||||
NSElectricResistance, NSUnitMass, NSUnitEnergy, NSUnitFrequency,
|
||||
NSUnitPower, NSUnitSpeed, NSUnitFuelEfficiency, NSUnitPressure,
|
||||
NSUnitVolume, NSUnitLength.
|
||||
* Support for data directory on Android introduces
|
||||
GSInitializeProcessAndroid and makes use of the path returned by
|
||||
Context.getFilesDir() as the basis for storing data (e.g.
|
||||
NSUserDefaults) and when querying for directory paths
|
||||
(NSLibraryDirectory, NSApplicationSupportDirectory, etc.).
|
||||
* Placeholder NSScript* classes. Added NSUserActivity,
|
||||
NSObjectScripting, NSHFSFileTypes, NSAppleEventManager and
|
||||
NSAppleEventDescriptor.
|
||||
* Added NSDateInterval intersectionWithDateInterval:.
|
||||
* Added NSBackgroundActivityScheduler.
|
||||
* Added NSISO8601DateFormatter and NSMetadataAttributes.
|
||||
* Added NSOrtogrpahy and NSLinguisticTagger.
|
||||
* Added NSExtensionItem, NSExtensionContext,
|
||||
NSExtensionRequestHandling, and NSItemProvider and
|
||||
NSItemProviderReadingWriting.
|
||||
* Updated timezone info for NSTimeZones.
|
||||
* On Android, support for NSTemporaryDirectory to use
|
||||
Context.getCacheDir(), and cleaning it up in
|
||||
GSInitializeProcessAndroid() given there is no support for temp
|
||||
directory before Android API 26. Also used with NSCachesDirectory
|
||||
+ NSUserDomainMask.
|
||||
* NSXPCConnection fixes.
|
||||
* NSException symbolication support using libunwind (used when
|
||||
backtrace() is unavailable).
|
||||
* Travis build improvements to use new runloop integration and
|
||||
gnustep-2.0 runtime.
|
||||
* In NSKeyValueObserving, implement two missing methods for NSArray:
|
||||
-addObserver:options:context: and
|
||||
-removeObserver:fromObjectsAtIndexes:forKeyPath:.
|
||||
* Updated NSUUID to use instancetype.
|
||||
* Added support for NSDate constants in NSPredicate.
|
||||
* Fixed a NSTimer bug with blocks.
|
||||
* In GSTLS, do not put password in the hash key of the credentials,
|
||||
and to avoid logging it when debugging is on.
|
||||
* Improvements in NSConcreteHashTable and NSConcreteMapTable.
|
||||
* In various places, switch away from deprecated
|
||||
CREATE_AUTORELEASE_POOL() to use the ARC-compatible ENTER_POOL and
|
||||
LEAVE_POOL macros.
|
||||
* When building the list of hosts to be probed to see if they have
|
||||
gdomap servers, fix code to include those explicitly defined in the
|
||||
config file. Add -S option to list the addresses of the known
|
||||
gdomap servers.
|
||||
* Backward compatibility fix for ICU 65.
|
||||
* Update GSPrivateSymbolPath() so that, on the path where
|
||||
LINKER_GETSYMBOL is not available, we attempt to lookup classes
|
||||
using the prefix ._OBJC_CLASS_ for the 2.0 ABI (earlier ABIs use a
|
||||
prefix of __objc_class_name_ for the class definition.
|
||||
* Fix parsing of NSURLResponse content type header.
|
||||
* Fix for class lookup when using the 2.0 ABI.
|
||||
* Fixed NSURLComponents setURL: throwing exceptions when URL didn't
|
||||
have all expected parts caused by rangeOfString: throwing for nil
|
||||
values.
|
||||
* Added NSURLQueryItem implementation.
|
||||
Not every bugfix, improvement or a new feature will be listed here.
|
||||
|
||||
* Reading and setting File Creation Date attribute on Windows.
|
||||
* Added new 'ASSIGNMUTABLECOPY()' macro for consistency with
|
||||
'ASSIGNCOPY()'.
|
||||
* Replaced character set data headers for URLs with loading these
|
||||
from a standard data source, and updated bitmap representation to
|
||||
use much less space for character sets residing wholly in the base
|
||||
plane, such as the URL charsets (given they are purely ASCII).
|
||||
* Updated character set data with newer Unicode data set.
|
||||
* '[NSURLProtocol -initWithRequest:cachedResponse:client:]' will now
|
||||
retain the client up until the last message is sent to it, which
|
||||
improves compatibility with OS X.
|
||||
* Percent-escaping code in 'NSURL' simplified.
|
||||
* Removed mixed ABI support.
|
||||
* Use of Apple runtime now assumes non-fragile ABI (which is true on
|
||||
modern systems).
|
||||
* Improve typing on method implementation pointers in some classes.
|
||||
* In 'NSHTTPCookie', rewritten code for extracting individual cookies
|
||||
from the HTTP header.
|
||||
* In 'NSKeyedArchiver', implement secure coding methods.
|
||||
* New methods in 'NSDateComponents'.
|
||||
* Improvements in 'NSCalendar' and 'NSLocale' for calendar locale and
|
||||
'NSDateComponents'.
|
||||
* In 'NSFileManager', use 'utimensat()' to set file modification
|
||||
date, if available.
|
||||
* Correctly stop parsing number being decoded in
|
||||
'NSJSONSerialization' when encountering a number with an invalid
|
||||
exponent.
|
||||
* Improve OS X compatibility for 'NSURLQueryItem' initializers.
|
||||
* For 'NSFileManager', in 'changeFileAttributes', implement setting
|
||||
creation date for Unix-like systems. Implement reading the
|
||||
creation date if a supported method was detected.
|
||||
* Support reading Android assets from the main bundle in
|
||||
'NSInputStream'.
|
||||
* Support Android assets directories in 'NSBundle' and
|
||||
'NSFileManager'.
|
||||
* Implement '-[NSXMLParser initWithStream:]'.
|
||||
* Allow clearer choice between 'sloppy' 'GSSloppyXMLParser' used in
|
||||
'NSXMLParser' and the libxml2-based 'GSStrictXMLParser'.
|
||||
* Fix building Win32 implementations for 'GSFileHandle' and
|
||||
'NSMessagePort' with nonfragile ABI.
|
||||
* Use 'NSNumber' and not 'NSString' in '-[NSUserDefaults
|
||||
setBool:forKey:]'.
|
||||
* Posting notification before 'NSThread' exit.
|
||||
* Actually declare optional 'NSFilePresenter' methods as optional.
|
||||
* In 'NSConcreteMapTable', fix replacing existing values in a weak
|
||||
objects map table.
|
||||
* Fix leaks in 'NSOperation'.
|
||||
* Various compat fixes for various MSYS systems, particularly around
|
||||
sockets code.
|
||||
* In 'NSData', 'NSFileManager' and more, various improvements when
|
||||
overwriting and creating files with respect to file attributes
|
||||
(owners, creation timestamp, etc).
|
||||
* Improve 'NSLog' output on Android.
|
||||
* Use 'instancetype' in 'NSURLRequest' header.
|
||||
* Define 'NSAttributedStringKey' and 'NSNotificationName'.
|
||||
* Add new 'NSURL' methods.
|
||||
* In 'GSMime', have '-contentFile' check the 'Content-Type' header
|
||||
before checking 'Content-Disposition'.
|
||||
* Fix a bug linking with WEAK symbols where binutils 2.3.5 would fail
|
||||
to link due to not all expected symbols being exported.
|
||||
* New 'plutil' utility.
|
||||
* Implementation of '[NSData rangeOfData:options:range:]' which finds
|
||||
the 'NSRange' in which the passed data occurs.
|
||||
* Change 'ENTER_POOL'/'LEAVE_POOL' so they no longer wrap the
|
||||
enclosed code in a loop, enabling use in some loops.
|
||||
* New 10.5 methods in 'NSRunLoop'/'NSURLConnection'.
|
||||
* Improve compatibility when building with ICU 68.
|
||||
* Fix compiling libdispatch integration of 'NSRunLoop' on Windows.
|
||||
* Add support for building on Windows with MSVC's Clang by passing
|
||||
the 'configure' flag '--host=x86_64-pc-windows'. Use of an MSYS2
|
||||
shell without '-devel' packages is recommended.
|
||||
* Implementation of 'NSURLSession' and related classes. This adds
|
||||
some dependencies on more recent versions of 'libcurl',
|
||||
'libdispatch' etc.
|
||||
* Fix initializing 'NSUUID' from a string.
|
||||
* Disable use of 'libcurl' if its headers are not found.
|
||||
* In 'NSURLProtocol', continue writing data if not all of it was
|
||||
written.
|
||||
* Fix use of GnuTLS under MinGW by using 'send/recv' rather than
|
||||
'read/write'.
|
||||
* Add support for libobjc2 runtime on Windows.
|
||||
* Fix BOM insertion when generating data from a string using one of
|
||||
the Unicode encodings.
|
||||
|
||||
1.3 Where can you get it? How can you compile it?
|
||||
=================================================
|
||||
|
||||
The gnustep-base-1.27.0.tar.gz distribution file has been placed at
|
||||
The gnustep-base-1.28.0.tar.gz distribution file has been placed at
|
||||
<ftp://ftp.gnustep.org/pub/gnustep/core>.
|
||||
|
||||
It is accompanied by gnustep-base-1.27.0.tar.gz.sig, a PGP signature
|
||||
It is accompanied by gnustep-base-1.28.0.tar.gz.sig, a PGP signature
|
||||
which you can validate by putting both files in the same directory and
|
||||
using:
|
||||
|
||||
gpg --verify gnustep-base-1.27.0.tar.gz.sig
|
||||
gpg --verify gnustep-base-1.28.0.tar.gz.sig
|
||||
|
||||
Signature has been created using the key with the following
|
||||
fingerprint:
|
||||
|
|
12
ChangeLog
12
ChangeLog
|
@ -1,3 +1,15 @@
|
|||
2021-04-22 Ivan Vucica <ivan@vucica.net>
|
||||
|
||||
* ChangeLog:
|
||||
Formatting and email address fixes.
|
||||
* ANNOUNCE:
|
||||
* NEWS:
|
||||
* Documentation/ReleaseNotes.gsdoc:
|
||||
* Documentation/news.texi:
|
||||
Update release notes for a future 1.28.0 release.
|
||||
* Version:
|
||||
Bump version to 1.28.0.
|
||||
|
||||
2021-04-14 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Headers/Foundation/NSString.h:
|
||||
|
|
|
@ -29,6 +29,98 @@ notice and this notice are preserved.
|
|||
migrate to using a newer version of the library.
|
||||
</p>
|
||||
|
||||
<section>
|
||||
<heading>Version 1.28.0</heading>
|
||||
<p>
|
||||
Aside from an assortment of bugfixes, this release includes a lot of
|
||||
improvements for Windows support as well as numerous new classes and methods.
|
||||
</p>
|
||||
<p>
|
||||
Not every bugfix, improvement or a new feature will be listed here.
|
||||
</p>
|
||||
|
||||
Reading and setting File Creation Date attribute on Windows.<br />
|
||||
Added new <code>ASSIGNMUTABLECOPY()</code> macro for consistency with
|
||||
<code>ASSIGNCOPY()</code>.<br />
|
||||
Replaced character set data headers for URLs with loading these from a
|
||||
standard data source, and updated bitmap representation to use much less space
|
||||
for character sets residing wholly in the base plane, such as the URL charsets
|
||||
(given they are purely ASCII).<br />
|
||||
Updated character set data with newer Unicode data set.<br />
|
||||
<code>[NSURLProtocol -initWithRequest:cachedResponse:client:]</code> will now
|
||||
retain the client up until the last message is sent to it, which improves
|
||||
compatibility with OS X.<br />
|
||||
Percent-escaping code in <code>NSURL</code> simplified.<br />
|
||||
Removed mixed ABI support.<br />
|
||||
Use of Apple runtime now assumes non-fragile ABI (which is true on modern
|
||||
systems).<br />
|
||||
Improve typing on method implementation pointers in some classes.<br />
|
||||
In <code>NSHTTPCookie</code>, rewritten code for extracting individual cookies
|
||||
from the HTTP header.<br />
|
||||
In <code>NSKeyedArchiver</code>, implement secure coding methods.<br />
|
||||
New methods in <code>NSDateComponents</code>.<br />
|
||||
Improvements in <code>NSCalendar</code> and <code>NSLocale</code> for calendar locale
|
||||
and <code>NSDateComponents</code>.<br />
|
||||
In <code>NSFileManager</code>, use <code>utimensat()</code> to set file modification
|
||||
date, if available.<br />
|
||||
Correctly stop parsing number being decoded in <code>NSJSONSerialization</code>
|
||||
when encountering a number with an invalid exponent.<br />
|
||||
Improve OS X compatibility for <code>NSURLQueryItem</code> initializers.<br />
|
||||
For <code>NSFileManager</code>, in <code>changeFileAttributes</code>, implement
|
||||
setting creation date for Unix-like systems. Implement reading the creation
|
||||
date if a supported method was detected.<br />
|
||||
Support reading Android assets from the main bundle in
|
||||
<code>NSInputStream</code>.<br />
|
||||
Support Android assets directories in <code>NSBundle</code> and <code>NSFileManager</code>.<br />
|
||||
Implement <code>-[NSXMLParser initWithStream:]</code>.<br />
|
||||
Allow clearer choice between 'sloppy' <code>GSSloppyXMLParser</code> used in
|
||||
<code>NSXMLParser</code> and the libxml2-based <code>GSStrictXMLParser</code>.<br />
|
||||
Fix building Win32 implementations for <code>GSFileHandle</code> and
|
||||
<code>NSMessagePort</code> with nonfragile ABI.<br />
|
||||
Use <code>NSNumber</code> and not <code>NSString</code> in
|
||||
<code>-[NSUserDefaults setBool:forKey:]</code>.<br />
|
||||
Posting notification before <code>NSThread</code> exit.<br />
|
||||
Actually declare optional <code>NSFilePresenter</code> methods as optional.<br />
|
||||
In <code>NSConcreteMapTable</code>, fix replacing existing values in a weak
|
||||
objects map table.<br />
|
||||
Fix leaks in <code>NSOperation</code>.<br />
|
||||
Various compat fixes for various MSYS systems, particularly around
|
||||
sockets code.<br />
|
||||
In <code>NSData</code>, <code>NSFileManager</code> and more, various improvements when
|
||||
overwriting and creating files with respect to file attributes (owners, creation
|
||||
timestamp, etc).<br />
|
||||
Improve <code>NSLog</code> output on Android.<br />
|
||||
Use <code>instancetype</code> in <code>NSURLRequest</code> header.<br />
|
||||
Define <code>NSAttributedStringKey</code> and <code>NSNotificationName</code>.<br />
|
||||
Add new <code>NSURL</code> methods.<br />
|
||||
In <code>GSMime</code>, have <code>-contentFile</code> check the <code>Content-Type</code>
|
||||
header before checking <code>Content-Disposition</code>.<br />
|
||||
Fix a bug linking with WEAK symbols where binutils 2.3.5 would fail to
|
||||
link due to not all expected symbols being exported.<br />
|
||||
New <code>plutil</code> utility.<br />
|
||||
Implementation of <code>[NSData rangeOfData:options:range:]</code> which finds
|
||||
the <code>NSRange</code> in which the passed data occurs.<br />
|
||||
Change <code>ENTER_POOL</code>/<code>LEAVE_POOL</code> so they no longer wrap the
|
||||
enclosed code in a loop, enabling use in some loops.<br />
|
||||
New 10.5 methods in <code>NSRunLoop</code>/<code>NSURLConnection</code>.<br />
|
||||
Improve compatibility when building with ICU 68.<br />
|
||||
Fix compiling libdispatch integration of <code>NSRunLoop</code> on Windows.<br />
|
||||
Add support for building on Windows with MSVC's Clang by passing the
|
||||
<code>configure</code> flag <code>--host=x86_64-pc-windows</code>. Use of an MSYS2 shell
|
||||
without <code>-devel</code> packages is recommended.<br />
|
||||
Implementation of <code>NSURLSession</code> and related classes. This adds some
|
||||
dependencies on more recent versions of <code>libcurl</code>, <code>libdispatch</code> etc.<br />
|
||||
Fix initializing <code>NSUUID</code> from a string.<br />
|
||||
Disable use of <code>libcurl</code> if its headers are not found.<br />
|
||||
In <code>NSURLProtocol</code>, continue writing data if not all of it was
|
||||
written.<br />
|
||||
Fix use of GnuTLS under MinGW by using <code>send/recv</code> rather than
|
||||
<code>read/write</code>.<br />
|
||||
Add support for libobjc2 runtime on Windows.<br />
|
||||
Fix BOM insertion when generating data from a string using one of the
|
||||
Unicode encodings.
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<heading>Version 1.27.0</heading>
|
||||
<p>
|
||||
|
|
|
@ -11,6 +11,97 @@ The currently released version of the library is
|
|||
See the @url{ReleaseNotes.html} document for more information.
|
||||
@end ifclear
|
||||
|
||||
@section Noteworthy changes in version @samp{1.28.0}
|
||||
|
||||
Aside from an assortment of bugfixes, this release includes a lot of
|
||||
improvements for Windows support as well as numerous new classes and methods.
|
||||
|
||||
Not every bugfix, improvement or a new feature will be listed here.
|
||||
|
||||
@itemize @bullet
|
||||
@item Reading and setting File Creation Date attribute on Windows.
|
||||
@item Added new @code{ASSIGNMUTABLECOPY()} macro for consistency with
|
||||
@code{ASSIGNCOPY()}.
|
||||
@item Replaced character set data headers for URLs with loading these from a
|
||||
standard data source, and updated bitmap representation to use much less space
|
||||
for character sets residing wholly in the base plane, such as the URL charsets
|
||||
(given they are purely ASCII).
|
||||
@item Updated character set data with newer Unicode data set.
|
||||
@item @code{[NSURLProtocol -initWithRequest:cachedResponse:client:]} will now
|
||||
retain the client up until the last message is sent to it, which improves
|
||||
compatibility with OS X.
|
||||
@item Percent-escaping code in @code{NSURL} simplified.
|
||||
@item Removed mixed ABI support.
|
||||
@item Use of Apple runtime now assumes non-fragile ABI (which is true on modern
|
||||
systems).
|
||||
@item Improve typing on method implementation pointers in some classes.
|
||||
@item In @code{NSHTTPCookie}, rewritten code for extracting individual cookies
|
||||
from the HTTP header.
|
||||
@item In @code{NSKeyedArchiver}, implement secure coding methods.
|
||||
@item New methods in @code{NSDateComponents}.
|
||||
@item Improvements in @code{NSCalendar} and @code{NSLocale} for calendar locale
|
||||
and @code{NSDateComponents}.
|
||||
@item In @code{NSFileManager}, use @code{utimensat()} to set file modification
|
||||
date, if available.
|
||||
@item Correctly stop parsing number being decoded in @code{NSJSONSerialization}
|
||||
when encountering a number with an invalid exponent.
|
||||
@item Improve OS X compatibility for @code{NSURLQueryItem} initializers.
|
||||
@item For @code{NSFileManager}, in @code{changeFileAttributes}, implement
|
||||
setting creation date for Unix-like systems. Implement reading the creation
|
||||
date if a supported method was detected.
|
||||
@item Support reading Android assets from the main bundle in
|
||||
@code{NSInputStream}.
|
||||
@item Support Android assets directories in @code{NSBundle} and @code{NSFileManager}.
|
||||
@item Implement @code{-[NSXMLParser initWithStream:]}.
|
||||
@item Allow clearer choice between 'sloppy' @code{GSSloppyXMLParser} used in
|
||||
@code{NSXMLParser} and the libxml2-based @code{GSStrictXMLParser}.
|
||||
@item Fix building Win32 implementations for @code{GSFileHandle} and
|
||||
@code{NSMessagePort} with nonfragile ABI.
|
||||
@item Use @code{NSNumber} and not @code{NSString} in
|
||||
@code{-[NSUserDefaults setBool:forKey:]}.
|
||||
@item Posting notification before @code{NSThread} exit.
|
||||
@item Actually declare optional @code{NSFilePresenter} methods as optional.
|
||||
@item In @code{NSConcreteMapTable}, fix replacing existing values in a weak
|
||||
objects map table.
|
||||
@item Fix leaks in @code{NSOperation}.
|
||||
@item Various compat fixes for various MSYS systems, particularly around
|
||||
sockets code.
|
||||
@item In @code{NSData}, @code{NSFileManager} and more, various improvements when
|
||||
overwriting and creating files with respect to file attributes (owners, creation
|
||||
timestamp, etc).
|
||||
@item Improve @code{NSLog} output on Android.
|
||||
@item Use @code{instancetype} in @code{NSURLRequest} header.
|
||||
@item Define @code{NSAttributedStringKey} and @code{NSNotificationName}.
|
||||
@item Add new @code{NSURL} methods.
|
||||
@item In @code{GSMime}, have @code{-contentFile} check the @code{Content-Type}
|
||||
header before checking @code{Content-Disposition}.
|
||||
@item Fix a bug linking with WEAK symbols where binutils 2.3.5 would fail to
|
||||
link due to not all expected symbols being exported.
|
||||
@item New @code{plutil} utility.
|
||||
@item Implementation of @code{[NSData rangeOfData:options:range:]} which finds
|
||||
the @code{NSRange} in which the passed data occurs.
|
||||
@item Change @code{ENTER_POOL}/@code{LEAVE_POOL} so they no longer wrap the
|
||||
enclosed code in a loop, enabling use in some loops.
|
||||
@item New 10.5 methods in @code{NSRunLoop}/@code{NSURLConnection}.
|
||||
@item Improve compatibility when building with ICU 68.
|
||||
@item Fix compiling libdispatch integration of @code{NSRunLoop} on Windows.
|
||||
@item Add support for building on Windows with MSVC's Clang by passing the
|
||||
@code{configure} flag @code{--host=x86_64-pc-windows}. Use of an MSYS2 shell
|
||||
without @code{-devel} packages is recommended.
|
||||
@item Implementation of @code{NSURLSession} and related classes. This adds some
|
||||
dependencies on more recent versions of @code{libcurl}, @code{libdispatch} etc.
|
||||
@item Fix initializing @code{NSUUID} from a string.
|
||||
@item Disable use of @code{libcurl} if its headers are not found.
|
||||
@item In @code{NSURLProtocol}, continue writing data if not all of it was
|
||||
written.
|
||||
@item Fix use of GnuTLS under MinGW by using @code{send/recv} rather than
|
||||
@code{read/write}.
|
||||
@item Add support for libobjc2 runtime on Windows.
|
||||
@item Fix BOM insertion when generating data from a string using one of the
|
||||
Unicode encodings.
|
||||
@end itemize
|
||||
|
||||
@ifclear ANNOUNCE-ONLY
|
||||
@section Noteworthy changes in version @samp{1.27.0}
|
||||
|
||||
Aside from an assortment of bugfixes, this release includes a lot of
|
||||
|
@ -141,7 +232,6 @@ all expected parts caused by rangeOfString: throwing for nil values.
|
|||
@item Added NSURLQueryItem implementation.
|
||||
@end itemize
|
||||
|
||||
@ifclear ANNOUNCE-ONLY
|
||||
@section Noteworthy changes in version @samp{1.26.0}
|
||||
@itemize @bullet
|
||||
@item Improve utf8 validity checks.
|
||||
|
|
261
NEWS
261
NEWS
|
@ -1,11 +1,104 @@
|
|||
1 News
|
||||
******
|
||||
|
||||
The currently released version of the library is '1.27.0'.
|
||||
The currently released version of the library is '1.28.0'.
|
||||
|
||||
See the <ReleaseNotes.html> document for more information.
|
||||
|
||||
1.1 Noteworthy changes in version '1.27.0'
|
||||
1.1 Noteworthy changes in version '1.28.0'
|
||||
==========================================
|
||||
|
||||
Aside from an assortment of bugfixes, this release includes a lot of
|
||||
improvements for Windows support as well as numerous new classes and
|
||||
methods.
|
||||
|
||||
Not every bugfix, improvement or a new feature will be listed here.
|
||||
|
||||
* Reading and setting File Creation Date attribute on Windows.
|
||||
* Added new 'ASSIGNMUTABLECOPY()' macro for consistency with
|
||||
'ASSIGNCOPY()'.
|
||||
* Replaced character set data headers for URLs with loading these
|
||||
from a standard data source, and updated bitmap representation to
|
||||
use much less space for character sets residing wholly in the base
|
||||
plane, such as the URL charsets (given they are purely ASCII).
|
||||
* Updated character set data with newer Unicode data set.
|
||||
* '[NSURLProtocol -initWithRequest:cachedResponse:client:]' will now
|
||||
retain the client up until the last message is sent to it, which
|
||||
improves compatibility with OS X.
|
||||
* Percent-escaping code in 'NSURL' simplified.
|
||||
* Removed mixed ABI support.
|
||||
* Use of Apple runtime now assumes non-fragile ABI (which is true on
|
||||
modern systems).
|
||||
* Improve typing on method implementation pointers in some classes.
|
||||
* In 'NSHTTPCookie', rewritten code for extracting individual cookies
|
||||
from the HTTP header.
|
||||
* In 'NSKeyedArchiver', implement secure coding methods.
|
||||
* New methods in 'NSDateComponents'.
|
||||
* Improvements in 'NSCalendar' and 'NSLocale' for calendar locale and
|
||||
'NSDateComponents'.
|
||||
* In 'NSFileManager', use 'utimensat()' to set file modification
|
||||
date, if available.
|
||||
* Correctly stop parsing number being decoded in
|
||||
'NSJSONSerialization' when encountering a number with an invalid
|
||||
exponent.
|
||||
* Improve OS X compatibility for 'NSURLQueryItem' initializers.
|
||||
* For 'NSFileManager', in 'changeFileAttributes', implement setting
|
||||
creation date for Unix-like systems. Implement reading the
|
||||
creation date if a supported method was detected.
|
||||
* Support reading Android assets from the main bundle in
|
||||
'NSInputStream'.
|
||||
* Support Android assets directories in 'NSBundle' and
|
||||
'NSFileManager'.
|
||||
* Implement '-[NSXMLParser initWithStream:]'.
|
||||
* Allow clearer choice between 'sloppy' 'GSSloppyXMLParser' used in
|
||||
'NSXMLParser' and the libxml2-based 'GSStrictXMLParser'.
|
||||
* Fix building Win32 implementations for 'GSFileHandle' and
|
||||
'NSMessagePort' with nonfragile ABI.
|
||||
* Use 'NSNumber' and not 'NSString' in '-[NSUserDefaults
|
||||
setBool:forKey:]'.
|
||||
* Posting notification before 'NSThread' exit.
|
||||
* Actually declare optional 'NSFilePresenter' methods as optional.
|
||||
* In 'NSConcreteMapTable', fix replacing existing values in a weak
|
||||
objects map table.
|
||||
* Fix leaks in 'NSOperation'.
|
||||
* Various compat fixes for various MSYS systems, particularly around
|
||||
sockets code.
|
||||
* In 'NSData', 'NSFileManager' and more, various improvements when
|
||||
overwriting and creating files with respect to file attributes
|
||||
(owners, creation timestamp, etc).
|
||||
* Improve 'NSLog' output on Android.
|
||||
* Use 'instancetype' in 'NSURLRequest' header.
|
||||
* Define 'NSAttributedStringKey' and 'NSNotificationName'.
|
||||
* Add new 'NSURL' methods.
|
||||
* In 'GSMime', have '-contentFile' check the 'Content-Type' header
|
||||
before checking 'Content-Disposition'.
|
||||
* Fix a bug linking with WEAK symbols where binutils 2.3.5 would fail
|
||||
to link due to not all expected symbols being exported.
|
||||
* New 'plutil' utility.
|
||||
* Implementation of '[NSData rangeOfData:options:range:]' which finds
|
||||
the 'NSRange' in which the passed data occurs.
|
||||
* Change 'ENTER_POOL'/'LEAVE_POOL' so they no longer wrap the
|
||||
enclosed code in a loop, enabling use in some loops.
|
||||
* New 10.5 methods in 'NSRunLoop'/'NSURLConnection'.
|
||||
* Improve compatibility when building with ICU 68.
|
||||
* Fix compiling libdispatch integration of 'NSRunLoop' on Windows.
|
||||
* Add support for building on Windows with MSVC's Clang by passing
|
||||
the 'configure' flag '--host=x86_64-pc-windows'. Use of an MSYS2
|
||||
shell without '-devel' packages is recommended.
|
||||
* Implementation of 'NSURLSession' and related classes. This adds
|
||||
some dependencies on more recent versions of 'libcurl',
|
||||
'libdispatch' etc.
|
||||
* Fix initializing 'NSUUID' from a string.
|
||||
* Disable use of 'libcurl' if its headers are not found.
|
||||
* In 'NSURLProtocol', continue writing data if not all of it was
|
||||
written.
|
||||
* Fix use of GnuTLS under MinGW by using 'send/recv' rather than
|
||||
'read/write'.
|
||||
* Add support for libobjc2 runtime on Windows.
|
||||
* Fix BOM insertion when generating data from a string using one of
|
||||
the Unicode encodings.
|
||||
|
||||
1.2 Noteworthy changes in version '1.27.0'
|
||||
==========================================
|
||||
|
||||
Aside from an assortment of bugfixes, this release includes a lot of
|
||||
|
@ -150,7 +243,7 @@ methods.
|
|||
values.
|
||||
* Added NSURLQueryItem implementation.
|
||||
|
||||
1.2 Noteworthy changes in version '1.26.0'
|
||||
1.3 Noteworthy changes in version '1.26.0'
|
||||
==========================================
|
||||
|
||||
* Improve utf8 validity checks.
|
||||
|
@ -185,7 +278,7 @@ methods.
|
|||
* As usual, this release also contains an update to include the most
|
||||
recent international timezone data.
|
||||
|
||||
1.3 Noteworthy changes in version '1.25.1'
|
||||
1.4 Noteworthy changes in version '1.25.1'
|
||||
==========================================
|
||||
|
||||
* Unicode fixes for characters outside the base plane
|
||||
|
@ -200,7 +293,7 @@ methods.
|
|||
* As usual, this release also contains an update to include the most
|
||||
recent international timezone data.
|
||||
|
||||
1.4 Noteworthy changes in version '1.25.0'
|
||||
1.5 Noteworthy changes in version '1.25.0'
|
||||
==========================================
|
||||
|
||||
* Garbage collection support removed (NSGarbageCollector stub
|
||||
|
@ -215,7 +308,7 @@ methods.
|
|||
* As usual, this release also contains an update to include the most
|
||||
recent international timezone data.
|
||||
|
||||
1.5 Noteworthy changes in version '1.24.9'
|
||||
1.6 Noteworthy changes in version '1.24.9'
|
||||
==========================================
|
||||
|
||||
* Niels added support for generics
|
||||
|
@ -225,7 +318,7 @@ methods.
|
|||
* As usual, this release also contains an update to include the most
|
||||
recent international timezone data.
|
||||
|
||||
1.6 Noteworthy changes in version '1.24.8'
|
||||
1.7 Noteworthy changes in version '1.24.8'
|
||||
==========================================
|
||||
|
||||
* Performance optimisations (particularly in the use of tiny string
|
||||
|
@ -239,7 +332,7 @@ methods.
|
|||
recent international timezone data.
|
||||
* Various other bugfixes.
|
||||
|
||||
1.7 Noteworthy changes in version '1.24.7'
|
||||
1.8 Noteworthy changes in version '1.24.7'
|
||||
==========================================
|
||||
|
||||
* TLS and other security improvements (note, SSLv3.0 is disabled by
|
||||
|
@ -247,7 +340,7 @@ methods.
|
|||
* Latest timezone data included.
|
||||
* Various other bugfixes.
|
||||
|
||||
1.8 Noteworthy changes in version '1.24.6'
|
||||
1.9 Noteworthy changes in version '1.24.6'
|
||||
==========================================
|
||||
|
||||
* NSUUID implemented
|
||||
|
@ -256,15 +349,15 @@ methods.
|
|||
* Various new methods for OSX compatibility
|
||||
* Various other bugfixes
|
||||
|
||||
1.9 Noteworthy changes in version '1.24.5'
|
||||
==========================================
|
||||
1.10 Noteworthy changes in version '1.24.5'
|
||||
===========================================
|
||||
|
||||
* NSInvocationOperation
|
||||
* OSX version compatibility macro improvements
|
||||
* Static analyzer fixes (mostly printf format string issues)
|
||||
* Various other bugfixes
|
||||
|
||||
1.10 Noteworthy changes in version '1.24.4'
|
||||
1.11 Noteworthy changes in version '1.24.4'
|
||||
===========================================
|
||||
|
||||
* Updated time zone data
|
||||
|
@ -272,7 +365,7 @@ methods.
|
|||
* Portability improvments and minor bugfixes
|
||||
* More testcases in the testsuite
|
||||
|
||||
1.11 Noteworthy changes in version '1.24.3'
|
||||
1.12 Noteworthy changes in version '1.24.3'
|
||||
===========================================
|
||||
|
||||
* Implementation of the NSXML DOM classes
|
||||
|
@ -280,7 +373,7 @@ methods.
|
|||
* Implementation of new/selectable sorting algorithms
|
||||
* More explicit dependencies on external libraries.
|
||||
|
||||
1.12 Noteworthy changes in version '1.24.0'
|
||||
1.13 Noteworthy changes in version '1.24.0'
|
||||
===========================================
|
||||
|
||||
* There is binary incompatibility on 64bit systems in that the value
|
||||
|
@ -291,7 +384,7 @@ methods.
|
|||
* IPV6 support for NSHost and networking operations
|
||||
* Support for UTF-8 string literals in source (compiler permitting)
|
||||
|
||||
1.13 Noteworthy changes in version '1.23.0'
|
||||
1.14 Noteworthy changes in version '1.23.0'
|
||||
===========================================
|
||||
|
||||
* Support for automatic reference counting (ARC) when using clasng
|
||||
|
@ -300,31 +393,31 @@ methods.
|
|||
NSPointerArray when using clang and the GNUstep Objective-C 2.0
|
||||
runtime 1.5 or later.
|
||||
|
||||
1.14 Noteworthy changes in version '1.22.0'
|
||||
1.15 Noteworthy changes in version '1.22.0'
|
||||
===========================================
|
||||
|
||||
* Many updates and new classes
|
||||
* There is now a regression test framework included with the package
|
||||
* New support for Objective-C 2.0
|
||||
|
||||
1.15 Noteworthy changes in version '1.21.1'
|
||||
1.16 Noteworthy changes in version '1.21.1'
|
||||
===========================================
|
||||
|
||||
This is an (unstable) copy of the 1.20.1 release
|
||||
|
||||
1.16 Noteworthy changes in version '1.20.1'
|
||||
1.17 Noteworthy changes in version '1.20.1'
|
||||
===========================================
|
||||
|
||||
This is a stable bugfix release. There are no major changes or binary
|
||||
incompatibilities, but this release does include an update of timezone
|
||||
handling to include the latest zone information.
|
||||
|
||||
1.17 Noteworthy changes in version '1.21.0'
|
||||
1.18 Noteworthy changes in version '1.21.0'
|
||||
===========================================
|
||||
|
||||
This is an (unstable) copy of the 1.20.0 release
|
||||
|
||||
1.18 Noteworthy changes in version '1.20.0'
|
||||
1.19 Noteworthy changes in version '1.20.0'
|
||||
===========================================
|
||||
|
||||
This is a stable release. There have been major changes and
|
||||
|
@ -333,19 +426,19 @@ from clang. These changes, although they break binary compatibility
|
|||
with previous releases, should allow all future releases to maintain
|
||||
compatibility.
|
||||
|
||||
1.19 Noteworthy changes in version '1.19.3'
|
||||
1.20 Noteworthy changes in version '1.19.3'
|
||||
===========================================
|
||||
|
||||
* Bugfix to work around OSX behavior of [NSURL-path]
|
||||
|
||||
1.20 Noteworthy changes in version '1.19.2'
|
||||
1.21 Noteworthy changes in version '1.19.2'
|
||||
===========================================
|
||||
|
||||
* Various OSX compatibility improvements.
|
||||
* String handling performance improvements.
|
||||
* Several minor bugfixes.
|
||||
|
||||
1.21 Noteworthy changes in version '1.19.1'
|
||||
1.22 Noteworthy changes in version '1.19.1'
|
||||
===========================================
|
||||
|
||||
* New Mac OS X methods for writing data in NSData
|
||||
|
@ -354,7 +447,7 @@ compatibility.
|
|||
* Method return types and arguments have been changed for Mac OS X
|
||||
10.5
|
||||
|
||||
1.22 Noteworthy changes in version '1.19.0'
|
||||
1.23 Noteworthy changes in version '1.19.0'
|
||||
===========================================
|
||||
|
||||
* Support for native objective-c exceptions
|
||||
|
@ -363,7 +456,7 @@ compatibility.
|
|||
* Changes to build on 64bit ms-windows
|
||||
* Support for @synchronize
|
||||
|
||||
1.23 Noteworthy changes in version '1.15.3'
|
||||
1.24 Noteworthy changes in version '1.15.3'
|
||||
===========================================
|
||||
|
||||
* Extended NSUserDefaults so it recognizes ../ as a relative path.
|
||||
|
@ -372,13 +465,13 @@ compatibility.
|
|||
and added basic support for digest authentication.
|
||||
* Fixed various problems with and added new options to KVO.
|
||||
|
||||
1.24 Noteworthy changes in version '1.15.2'
|
||||
1.25 Noteworthy changes in version '1.15.2'
|
||||
===========================================
|
||||
|
||||
Bug fixes include improved thread safety (and a change to the NSThread
|
||||
class structure) and Key-Value observing.
|
||||
|
||||
1.25 Noteworthy changes in version '1.15.1'
|
||||
1.26 Noteworthy changes in version '1.15.1'
|
||||
===========================================
|
||||
|
||||
This is an unstable release. There may be API and ABI changes from
|
||||
|
@ -386,14 +479,14 @@ previous releases. The licesne hase changed to GPLv3 and LGPLv3.
|
|||
Mostly bug fixes, but a few improvements in NSPredicates and Key-Value
|
||||
coding have been added.
|
||||
|
||||
1.26 Noteworthy changes in version '1.15.0'
|
||||
1.27 Noteworthy changes in version '1.15.0'
|
||||
===========================================
|
||||
|
||||
This is an unstable release from 1.14.0. It is otherwise identical to
|
||||
the 1.14.0 release. Releases in the 1.15 series may not be forward
|
||||
compatible with previous 1.15 releases.
|
||||
|
||||
1.27 Noteworthy changes in version '1.14.0'
|
||||
1.28 Noteworthy changes in version '1.14.0'
|
||||
===========================================
|
||||
|
||||
Many portability (particularly for ms-windows) and MacOS-X compatibility
|
||||
|
@ -401,7 +494,7 @@ fixes. New MacOS-X classes and incorporation of NSAffineTransform and
|
|||
NSSpellServer which were formerly in the gui library. Improved
|
||||
performance of amssively multithreaded programs.
|
||||
|
||||
1.28 Noteworthy changes in version '1.13.1'
|
||||
1.29 Noteworthy changes in version '1.13.1'
|
||||
===========================================
|
||||
|
||||
Various minor bugs and MacOS-X incompatibilities fixed. One important
|
||||
|
@ -410,13 +503,13 @@ objects from strings. One fix for a serious (crash) bug when
|
|||
initialising the bundles system in an application which has a lot of
|
||||
frameworks linked to it. See the release notes for more details.
|
||||
|
||||
1.29 Noteworthy changes in version '1.13.0'
|
||||
1.30 Noteworthy changes in version '1.13.0'
|
||||
===========================================
|
||||
|
||||
Several sets of classes have been added for dealing with urls and
|
||||
predicates. A few minor api changes have occured as well.
|
||||
|
||||
1.30 Noteworthy changes in version '1.12.0'
|
||||
1.31 Noteworthy changes in version '1.12.0'
|
||||
===========================================
|
||||
|
||||
There have been a number of API changes and several methods have been
|
||||
|
@ -432,7 +525,7 @@ be set to not write to an external file at all, for developers who wish
|
|||
to use the library as a stand-alone library or in other situations where
|
||||
using external resources is not desired.
|
||||
|
||||
1.31 Noteworthy changes in version '1.11.2'
|
||||
1.32 Noteworthy changes in version '1.11.2'
|
||||
===========================================
|
||||
|
||||
* Support for GNUstep.conf and relocation of the filesystem is much
|
||||
|
@ -445,7 +538,7 @@ using external resources is not desired.
|
|||
* Some support for keeping user defaults in the Windows registry
|
||||
implemented.
|
||||
|
||||
1.32 Noteworthy changes in version '1.11.1'
|
||||
1.33 Noteworthy changes in version '1.11.1'
|
||||
===========================================
|
||||
|
||||
* New Cocoa class NSSortDescriptor
|
||||
|
@ -455,7 +548,7 @@ using external resources is not desired.
|
|||
* More support for debugging on mingw, including writing logs to
|
||||
debugger and event viewer.
|
||||
|
||||
1.33 Noteworthy changes in version '1.11.0'
|
||||
1.34 Noteworthy changes in version '1.11.0'
|
||||
===========================================
|
||||
|
||||
This release is binary incompatible with previous releases. The
|
||||
|
@ -471,12 +564,12 @@ new version.
|
|||
* NSRunLoop and related classes use natvie win32 event handling on
|
||||
Windows machines.
|
||||
|
||||
1.34 Noteworthy changes in version '1.10.3'
|
||||
1.35 Noteworthy changes in version '1.10.3'
|
||||
===========================================
|
||||
|
||||
This version includes a few minor bug fixes.
|
||||
|
||||
1.35 Noteworthy changes in version '1.10.2'
|
||||
1.36 Noteworthy changes in version '1.10.2'
|
||||
===========================================
|
||||
|
||||
This version mostly includes minor fixes and updates.
|
||||
|
@ -488,7 +581,7 @@ This version mostly includes minor fixes and updates.
|
|||
Windows).
|
||||
* Use a proper one-to-one abbreviation dictionary for NSTimeZone.
|
||||
|
||||
1.36 Noteworthy changes in version '1.10.1'
|
||||
1.37 Noteworthy changes in version '1.10.1'
|
||||
===========================================
|
||||
|
||||
This version mostly includes minor fixes and updates.
|
||||
|
@ -500,7 +593,7 @@ This version mostly includes minor fixes and updates.
|
|||
* Designated initializers for NSArray, NSDictionary, NSSet, and
|
||||
NSString have been changed for MacOS X compatibility.
|
||||
|
||||
1.37 Noteworthy changes in version '1.10.0'
|
||||
1.38 Noteworthy changes in version '1.10.0'
|
||||
===========================================
|
||||
|
||||
Note the interface version of the library has changed so that apps,
|
||||
|
@ -512,7 +605,7 @@ use it.
|
|||
* URL classes support persistant connections
|
||||
* Mac OSX XML compatibility fixes.
|
||||
|
||||
1.38 Noteworthy changes in version '1.9.2'
|
||||
1.39 Noteworthy changes in version '1.9.2'
|
||||
==========================================
|
||||
|
||||
* GSMime parsing ignores extraneous data
|
||||
|
@ -524,7 +617,7 @@ use it.
|
|||
* Binary incompatibility: NSUnarchiver, GSIMapTable have new ivars
|
||||
added
|
||||
|
||||
1.39 Noteworthy changes in version '1.9.1'
|
||||
1.40 Noteworthy changes in version '1.9.1'
|
||||
==========================================
|
||||
|
||||
* Default string encoding taken from system nl_langinfo if not set
|
||||
|
@ -533,7 +626,7 @@ use it.
|
|||
* NSPropertyLists class added, also decodes Mac OS X binary propery
|
||||
lists.
|
||||
|
||||
1.40 Noteworthy changes in version '1.9.0'
|
||||
1.41 Noteworthy changes in version '1.9.0'
|
||||
==========================================
|
||||
|
||||
* Lazy locking implemented (see GSLock documentation)
|
||||
|
@ -545,7 +638,7 @@ use it.
|
|||
* NSString subclass heirarchy reorganized to fix problems with
|
||||
copying and ownership of data.
|
||||
|
||||
1.41 Noteworthy changes in version '1.8.0'
|
||||
1.42 Noteworthy changes in version '1.8.0'
|
||||
==========================================
|
||||
|
||||
Read the NEWS file for a complete list of changes since the last stable
|
||||
|
@ -555,13 +648,13 @@ changes in gnustep-make, several components of gnustep-base are located
|
|||
in different locations. Generally this should not affect the
|
||||
compilation or running of applications and tools.
|
||||
|
||||
1.42 Noteworthy changes in version '1.7.4'
|
||||
1.43 Noteworthy changes in version '1.7.4'
|
||||
==========================================
|
||||
|
||||
* Added Korean encoding
|
||||
* Updated use of ObjCRuntime functions.
|
||||
|
||||
1.43 Noteworthy changes in version '1.7.3'
|
||||
1.44 Noteworthy changes in version '1.7.3'
|
||||
==========================================
|
||||
|
||||
Note in this version there have been large changes to the location of
|
||||
|
@ -572,7 +665,7 @@ specific headers may not compile because of this.
|
|||
* A number of Protocol and DO fixes.
|
||||
* New TraditionalChinese language.
|
||||
|
||||
1.44 Noteworthy changes in version '1.7.2'
|
||||
1.45 Noteworthy changes in version '1.7.2'
|
||||
==========================================
|
||||
|
||||
* NSUndoManager improvements
|
||||
|
@ -580,12 +673,12 @@ specific headers may not compile because of this.
|
|||
* Private GSTcpPort becomre NSSocketPort.
|
||||
* Improvements to handle selectors better over remote connections.
|
||||
|
||||
1.45 Noteworthy changes in version '1.7.1'
|
||||
1.46 Noteworthy changes in version '1.7.1'
|
||||
==========================================
|
||||
|
||||
Bug fixes.
|
||||
|
||||
1.46 Noteworthy changes in version '1.7.0'
|
||||
1.47 Noteworthy changes in version '1.7.0'
|
||||
==========================================
|
||||
|
||||
See gnustep-make for comments on the filesystem change. Some components
|
||||
|
@ -601,7 +694,7 @@ changes:
|
|||
NSSearchPathForDirectoriesInDomains.
|
||||
* Added man page for gdomap
|
||||
|
||||
1.47 Noteworthy changes in version '1.6.0'
|
||||
1.48 Noteworthy changes in version '1.6.0'
|
||||
==========================================
|
||||
|
||||
* More MinGW support
|
||||
|
@ -611,7 +704,7 @@ changes:
|
|||
* Built-in garbage collecting classes.
|
||||
* Any many many bug fixes and minor improvements.
|
||||
|
||||
1.48 Noteworthy changes in version '1.5.1'
|
||||
1.49 Noteworthy changes in version '1.5.1'
|
||||
==========================================
|
||||
|
||||
* Port NSThread to MingW
|
||||
|
@ -623,19 +716,19 @@ changes:
|
|||
* Warning logs selectable at runtime.
|
||||
* NSTimeZone code rewritten for speed.
|
||||
|
||||
1.49 Noteworthy changes in version '1.5.0'
|
||||
1.50 Noteworthy changes in version '1.5.0'
|
||||
==========================================
|
||||
|
||||
* New MacOSX methods implemented (NSString, NSArray, NSObject)
|
||||
* Fixed bug that occationally deleted user defaults.
|
||||
* Tcp connections use runloop in NSConnectionReplyMode.
|
||||
|
||||
1.50 Noteworthy changes in version '1.4.0'
|
||||
1.51 Noteworthy changes in version '1.4.0'
|
||||
==========================================
|
||||
|
||||
* gdomap - security bug fixes.
|
||||
|
||||
1.51 Noteworthy changes in version '1.3.4'
|
||||
1.52 Noteworthy changes in version '1.3.4'
|
||||
==========================================
|
||||
|
||||
This is a first pre-release version for 1.4.
|
||||
|
@ -646,7 +739,7 @@ users are urged to upgrade to this version as soon as possible.
|
|||
* gdomap - don't write pidfile until after setuid away from root
|
||||
* New combined Unix/Windows version of NSFileHandle
|
||||
|
||||
1.52 Noteworthy changes in version '1.3.3'
|
||||
1.53 Noteworthy changes in version '1.3.3'
|
||||
==========================================
|
||||
|
||||
Note there are interface and binary changes in this release that require
|
||||
|
@ -660,7 +753,7 @@ you to recompile all applications and tools that use gnustep-base.
|
|||
* GC improvements
|
||||
* Support for system-wide .GNUsteprc
|
||||
|
||||
1.53 Noteworthy changes in version '1.3.2'
|
||||
1.54 Noteworthy changes in version '1.3.2'
|
||||
==========================================
|
||||
|
||||
* Corrections for handling Windows file paths, etc
|
||||
|
@ -672,7 +765,7 @@ you to recompile all applications and tools that use gnustep-base.
|
|||
(cvtenc).
|
||||
* Unicode and UTF8 handling improvements.
|
||||
|
||||
1.54 Noteworthy changes in version '1.3.0'
|
||||
1.55 Noteworthy changes in version '1.3.0'
|
||||
==========================================
|
||||
|
||||
* Moved additional classes into subprojects and/or bundles to make it
|
||||
|
@ -683,7 +776,7 @@ you to recompile all applications and tools that use gnustep-base.
|
|||
* Better KeyValueCoding support (for EOF).
|
||||
* New, partially finished Objective-C/Foundation programming manual.
|
||||
|
||||
1.55 Noteworthy changes in version '1.1.0'
|
||||
1.56 Noteworthy changes in version '1.1.0'
|
||||
==========================================
|
||||
|
||||
* Removed use of distributed lock to sync defaults file.
|
||||
|
@ -697,7 +790,7 @@ you to recompile all applications and tools that use gnustep-base.
|
|||
* New localization files.
|
||||
* XML property lists
|
||||
|
||||
1.56 Noteworthy changes in version '1.0.2'
|
||||
1.57 Noteworthy changes in version '1.0.2'
|
||||
==========================================
|
||||
|
||||
Mostly a bug fix release to work with the new gcc 3.0.
|
||||
|
@ -705,7 +798,7 @@ Mostly a bug fix release to work with the new gcc 3.0.
|
|||
* Added support for special gcc 3.0 options (constant string
|
||||
support).
|
||||
|
||||
1.57 Noteworthy changes in version '1.0.1'
|
||||
1.58 Noteworthy changes in version '1.0.1'
|
||||
==========================================
|
||||
|
||||
* Many fixes to work better with Darwin (still not there).
|
||||
|
@ -716,7 +809,7 @@ Mostly a bug fix release to work with the new gcc 3.0.
|
|||
* Works better with gcc 3.x, newer kernels.
|
||||
* More memory debugging support.
|
||||
|
||||
1.58 Noteworthy changes in version '1.0.0'
|
||||
1.59 Noteworthy changes in version '1.0.0'
|
||||
==========================================
|
||||
|
||||
* Fix parsing of arguments for new linux kernels.
|
||||
|
@ -724,7 +817,7 @@ Mostly a bug fix release to work with the new gcc 3.0.
|
|||
* Fix alignment issues on CPUs that require it.
|
||||
* Update unicode support and fixes
|
||||
|
||||
1.59 Noteworthy changes in version '0.9.1'
|
||||
1.60 Noteworthy changes in version '0.9.1'
|
||||
==========================================
|
||||
|
||||
* New MacOSX compatible files for NSCalendarDate, NSTimeZone
|
||||
|
@ -733,7 +826,7 @@ Mostly a bug fix release to work with the new gcc 3.0.
|
|||
* NSCharacterSets updated to v3.0.1 of Unicode data.
|
||||
* Added some gettext compatible localization macros.
|
||||
|
||||
1.60 Noteworthy changes in version '0.9.1'
|
||||
1.61 Noteworthy changes in version '0.9.1'
|
||||
==========================================
|
||||
|
||||
* Fixes for building on FreeBSD
|
||||
|
@ -741,7 +834,7 @@ Mostly a bug fix release to work with the new gcc 3.0.
|
|||
* NSDate pass dates over DO bycopy unless explicit byref.
|
||||
* Updated for Makefile package changes.
|
||||
|
||||
1.61 Noteworthy changes in version '0.9.0'
|
||||
1.62 Noteworthy changes in version '0.9.0'
|
||||
==========================================
|
||||
|
||||
* Workaround when no host IP set.
|
||||
|
@ -763,7 +856,7 @@ Mostly a bug fix release to work with the new gcc 3.0.
|
|||
* Port to MinGW/Windows
|
||||
* Removed obsolete classes.
|
||||
|
||||
1.62 Noteworthy changes in version '0.6.6'
|
||||
1.63 Noteworthy changes in version '0.6.6'
|
||||
==========================================
|
||||
|
||||
* Lots of new documentation.
|
||||
|
@ -775,7 +868,7 @@ Mostly a bug fix release to work with the new gcc 3.0.
|
|||
* New tools for handling property lists.
|
||||
* More optimization of classes.
|
||||
|
||||
1.63 Noteworthy changes in version '0.6.5'
|
||||
1.64 Noteworthy changes in version '0.6.5'
|
||||
==========================================
|
||||
|
||||
* Better debugging information.
|
||||
|
@ -785,7 +878,7 @@ Mostly a bug fix release to work with the new gcc 3.0.
|
|||
* Better garbage collection support.
|
||||
* Lots of optimizations and bug fixes.
|
||||
|
||||
1.64 Noteworthy changes in version '0.6.0'
|
||||
1.65 Noteworthy changes in version '0.6.0'
|
||||
==========================================
|
||||
|
||||
Most of the changes to the Base Library are bug fixes and updates to
|
||||
|
@ -800,7 +893,7 @@ and installations, and is considered to be fairly stable.
|
|||
|
||||
* Performance boosts in many classes.
|
||||
|
||||
1.65 Noteworthy changes in version '0.5.5'
|
||||
1.66 Noteworthy changes in version '0.5.5'
|
||||
==========================================
|
||||
|
||||
Too many changes to mention in detail, but here is a list of a few:
|
||||
|
@ -818,13 +911,13 @@ Too many changes to mention in detail, but here is a list of a few:
|
|||
* There are several new tools for handling services, defaults, and
|
||||
pasteboards.
|
||||
|
||||
1.66 Noteworthy changes in version '0.5.1'
|
||||
1.67 Noteworthy changes in version '0.5.1'
|
||||
==========================================
|
||||
|
||||
* Additional runtime functions for interaction with Guile and
|
||||
ObjC-Guile library.
|
||||
|
||||
1.67 Noteworthy changes in version '0.5.0'
|
||||
1.68 Noteworthy changes in version '0.5.0'
|
||||
==========================================
|
||||
|
||||
* Improvements to the NSInvocation class, from Masatake Yamato
|
||||
|
@ -837,7 +930,7 @@ Too many changes to mention in detail, but here is a list of a few:
|
|||
* gdomap now handles subnet addressing and machines with multiple IP
|
||||
addresses from Richard Frith-Macdonald <richard@brainstorm.co.uk>.
|
||||
|
||||
1.68 Noteworthy changes in version '0.4.0'
|
||||
1.69 Noteworthy changes in version '0.4.0'
|
||||
==========================================
|
||||
|
||||
* New tools for maintaining the defaults database.
|
||||
|
@ -871,7 +964,7 @@ Too many changes to mention in detail, but here is a list of a few:
|
|||
|
||||
* Many, many, many, many bug fixes and new classes.
|
||||
|
||||
1.69 Noteworthy changes since version '0.1.19'
|
||||
1.70 Noteworthy changes since version '0.1.19'
|
||||
==============================================
|
||||
|
||||
* The library has changed its name from 'libobjects' to
|
||||
|
@ -971,7 +1064,7 @@ Too many changes to mention in detail, but here is a list of a few:
|
|||
|
||||
* ...and many bug fixes.
|
||||
|
||||
1.70 Noteworthy changes since version '0.1.14'
|
||||
1.71 Noteworthy changes since version '0.1.14'
|
||||
==============================================
|
||||
|
||||
* Can be made as a shared library by passing '--enabled-shared' to
|
||||
|
@ -1005,7 +1098,7 @@ Too many changes to mention in detail, but here is a list of a few:
|
|||
* Bug fixes in NSString, NSDictionary, NSArray, NSGeometry and other
|
||||
places.
|
||||
|
||||
1.71 Noteworthy changes since version '0.1.13'
|
||||
1.72 Noteworthy changes since version '0.1.13'
|
||||
==============================================
|
||||
|
||||
* NSProcessInfo class, thanks to Georg Tuparev.
|
||||
|
@ -1019,7 +1112,7 @@ Too many changes to mention in detail, but here is a list of a few:
|
|||
|
||||
* Many bug fixes.
|
||||
|
||||
1.72 Noteworthy changes since version '0.1.12'
|
||||
1.73 Noteworthy changes since version '0.1.12'
|
||||
==============================================
|
||||
|
||||
* Bug fixes: installation; NSArray and NSDictionary copying; NSArray,
|
||||
|
@ -1027,7 +1120,7 @@ Too many changes to mention in detail, but here is a list of a few:
|
|||
configurability; NSString -getCharacter:range:. See the ChangeLog
|
||||
for more details.
|
||||
|
||||
1.73 Noteworthy changes since version '0.1.10'
|
||||
1.74 Noteworthy changes since version '0.1.10'
|
||||
==============================================
|
||||
|
||||
* Now using 'src', 'config' and 'doc' directories to un-clutter the
|
||||
|
@ -1044,7 +1137,7 @@ Too many changes to mention in detail, but here is a list of a few:
|
|||
|
||||
* And several bug fixes. See the ChangeLog for details.
|
||||
|
||||
1.74 Noteworthy changes since version '0.1.9'
|
||||
1.75 Noteworthy changes since version '0.1.9'
|
||||
=============================================
|
||||
|
||||
* Renamed "foundation" include file directory to "Foundation", in
|
||||
|
@ -1053,7 +1146,7 @@ Too many changes to mention in detail, but here is a list of a few:
|
|||
* Several bug fixes, including a problem with a missing file in
|
||||
0.1.9.
|
||||
|
||||
1.75 Noteworthy changes since version '0.1.8'
|
||||
1.76 Noteworthy changes since version '0.1.8'
|
||||
=============================================
|
||||
|
||||
* Many new GNUStep classes: NSEnumerator, NSArrayEnumerator, NSCoder,
|
||||
|
@ -1089,7 +1182,7 @@ Too many changes to mention in detail, but here is a list of a few:
|
|||
in Collection.m; typo in BinaryTree.m; put -write: and -read:
|
||||
implementations back in Collection.m.
|
||||
|
||||
1.76 Noteworthy changes since version '0.1.7'
|
||||
1.77 Noteworthy changes since version '0.1.7'
|
||||
=============================================
|
||||
|
||||
* Thanks to Adam Fedor <fedor@boulder.colorado.edu>, classes
|
||||
|
@ -1110,7 +1203,7 @@ Too many changes to mention in detail, but here is a list of a few:
|
|||
* Several bug fixes, including two serious ones in Collection
|
||||
deallocation and behavior adding. See the ChangeLog for details.
|
||||
|
||||
1.77 Noteworthy changes since version '0.1.5'
|
||||
1.78 Noteworthy changes since version '0.1.5'
|
||||
=============================================
|
||||
|
||||
* Better string handling. NSString is now fleshed out, and I've
|
||||
|
@ -1137,7 +1230,7 @@ Too many changes to mention in detail, but here is a list of a few:
|
|||
* Several bug fixes. Thanks to those who reported them. Credits are
|
||||
in the ChangeLog.
|
||||
|
||||
1.78 Noteworthy changes since version '0.1.3'
|
||||
1.79 Noteworthy changes since version '0.1.3'
|
||||
=============================================
|
||||
|
||||
This release not well tested at all. We desperately need someone to
|
||||
|
@ -1163,7 +1256,7 @@ made on GNUSTEP.
|
|||
* Entire library converted to use 'retain', 'release', 'autorelease',
|
||||
'dealloc' instead of 'free'.
|
||||
|
||||
1.79 Noteworthy changes since version '0.1.0'
|
||||
1.80 Noteworthy changes since version '0.1.0'
|
||||
=============================================
|
||||
|
||||
* New category: ObjectRetaining. New classes: AutoreleasePool,
|
||||
|
@ -1172,7 +1265,7 @@ made on GNUSTEP.
|
|||
* Bug fixes: Install next-includes properly. New instructions in
|
||||
README.ULTRIX. Time.m patched for Solaris 2.4. test12.m free fix.
|
||||
|
||||
1.80 Noteworthy changes in version '0.1.0'
|
||||
1.81 Noteworthy changes in version '0.1.0'
|
||||
==========================================
|
||||
|
||||
* Renamed the library from 'libcoll' to 'libgnustep-base'. (See the
|
||||
|
@ -1204,7 +1297,7 @@ made on GNUSTEP.
|
|||
in List and HashTable. New files zone.[hc] containing dummy stubs
|
||||
for NeXT-compatible zone functions.
|
||||
|
||||
1.81 Noteworthy changes in version '940524'
|
||||
1.82 Noteworthy changes in version '940524'
|
||||
===========================================
|
||||
|
||||
* A NeXT-compatible NXStringTable object, thanks to Adam Fedor
|
||||
|
@ -1230,7 +1323,7 @@ made on GNUSTEP.
|
|||
'-freeEnumState:'. Several bug fixes in List and Storage; changes
|
||||
for better NeXT-compability. And more.
|
||||
|
||||
1.82 Noteworthy changes in version '931026'
|
||||
1.83 Noteworthy changes in version '931026'
|
||||
===========================================
|
||||
|
||||
* Installation using './configure' and 'autoconf'
|
||||
|
|
4
Version
4
Version
|
@ -6,10 +6,10 @@ GCC_VERSION=4.0.0
|
|||
|
||||
# The version number of this release.
|
||||
MAJOR_VERSION=1
|
||||
MINOR_VERSION=27
|
||||
MINOR_VERSION=28
|
||||
SUBMINOR_VERSION=0
|
||||
# numeric value should match above
|
||||
VERSION_NUMBER=127.0
|
||||
VERSION_NUMBER=128.0
|
||||
GNUSTEP_BASE_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}
|
||||
VERSION=${GNUSTEP_BASE_VERSION}
|
||||
|
||||
|
|
Loading…
Reference in a new issue