Moved ProviderCollectionTest.cs from System assembly to System.Configuration.
[mono.git] / mcs / class / System.Core / ChangeLog
1 2008-09-05  Marek Safar  <marek.safar@gmail.com>
2
3         * System.Core.dll.sources: Add System.Threading
4
5 2008-08-05  Sebastien Pouliot  <sebastien@ximian.com>
6
7         * System.Core.dll.sources: Add new files for crypto.
8         * System.Core_test.dll.sources: Add crypto unit tests.
9
10 2008-05-01  Jb Evain  <jbevain@novell.com>
11
12         * System.Core-2008.csproj, System.Core.dll.sources: add new files.
13
14 2008-03-27  Leonid Freydovich  <leonidf@mainsoft.com>
15
16         * Add some TARGET_JVM specific code
17
18 2008-01-09  Jb Evain  <jbevain@novell.com>
19
20         * Makefile: remove -langversion:linq which is
21         default now.
22
23 2007-12-04  Marek Safar  <marek.safar@gmail.com>
24
25         * System.Core.dll.sources: System.Linq.Expression refresh.
26
27 2007-08-20  Marek Safar  <marek.safar@gmail.com>
28
29         * Makefile: Hardcoded 3.5 define for now.
30
31 2007-08-13  Federico Di Gregorio <fog@initd.org>
32
33         * Added Test/ directory, modified Makefile to build and execute them.
34
35         * Changed a couple of Expression methods to raise exceptions identicals to
36         MS ones.
37
38         * Added tests for AddExpression and ConstantExpression.
39
40         * Implemented somme missing stuff in BinaryExpression.
41
42         * The stuff in ExpressionUtils is very generic and does quite some
43         redundant checks: I started splitting the stuff there into more
44         "specific" methods that should be both understandable and fast.
45
46         * Fixed the StringBuilder problem, added unique IDs to all tests,
47         used Assert.IsNull where appropriate and fixed one more Expression
48         method (AndAlso). Hope this is good enough for commit.
49
50 2007-07-12  Marek Safar  <marek.safar@gmail.com>
51
52         * System.Core.dll.sources: A few Beta 2 updates.
53
54 2007-07-11  Jb Evain  <jbevain@novell.com>
55
56         * Makefile: work on the 2.1 profile.
57
58 2007-05-11  Stephane Delcroix  <stephane@delcroix.org>
59
60         * System/DateTimeOffset.cs:
61         * System/InvalidTimeZoneException.cs:
62         * System/TimeZoneInfo.AdjustmentRules.cs:
63         * System/TimeZoneInfo.cs:
64         * System/TimeZoneInfo.TransitionTime.cs
65         * System/TimeZoneNotFoundException.cs: new TimeZoneInfo class
66
67         * System.Core.dll.sources: Added the above files
68
69         * Makefile: compile with -d:LIBC so TimeZoneInfo will look for libc
70         defined timezones
71
72 2007-03-29  Miguel de Icaza  <miguel@novell.com>
73
74         * Reapply the patch from Antonello, and rework the code to not use
75         extension methods on Enumerable.
76
77 2007-02-04  Marek Safar  <marek.safar@gmail.com>
78
79         * System.Core.dll.sources: Added common constants.
80
81         * Makefile: An assembly is 2.0 only.
82
83 2007-02-03  Atsushi Enomoto  <atsushi@ximian.com>
84
85         * System.Core.dll.sources : added LambdaExpression.cs.
86
87 2006-11-01  Alejandro Serrano "Serras"  <trupill@yahoo.es>
88
89     * Add IOrderedSequence, IQueryable
90     * Change Sequence.Join and Sequence.GroupJoin to use Lookup<K, T>
91       as stated on the Standard Query Operators paper
92
93 2006-06-05  Alejandro Serrano "Serras"  <trupill@yahoo.es>
94
95     * Updates as of LINQ May 2006 release
96
97 2006-01-31  Alejandro Serrano "Serras"  <trupill@yahoo.es>
98
99     * Fix bug in SkipWhile<T>, where the first element was never yielded
100
101 2006-01-30  Alejandro Serrano "Serras"  <trupill@yahoo.es>
102
103     * Initial commit