forked from spring-projects/spring-net
-
Notifications
You must be signed in to change notification settings - Fork 1
/
changelog.txt
1613 lines (1404 loc) · 112 KB
/
changelog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
SPRING.NET FRAMEWORK CHANGELOG
==============================
http://www.springframework.net
*****************************************************************************************
Release Version 2.0.1 April 10, 2015
Release Notes - Spring.NET - Version 2.0.1
Bug
Erroneous linking of Spring.Data.NHibernate4 against NHibernate 3.3 assembly corrected to properly link to NHibernate 4.0.3
*****************************************************************************************
Release Version 2.0.0 March 27, 2015
Release Notes - Spring.NET - Version 2.0.0
New Feature Highlights
* Spring CodeConfig integrated to core
* .NET 3.5 and later supported
* Generic types taken into use
* ASP.NET MVC 5 / WebAPI 2.2 support
* NHibernate 4 Support
API and Behavioural Changes
* Protected fields were changed to private. Access is now allowed via public/protected property member.
* Most of members marked as Obsolete before 2.0 release were removed.
* DbProvider automatically sets BindByName to true for Oracle's ODP.NET OracleCommand instances when created
Project Structure and Packaging changes
* Spring.Data.NHibernate.3x projects were merged to single Spring.Data.NHibernate3 project (you need to uninstall old NuGet packages and install the new Spring.DataNHibernate3 package)
* Spring.Scheduling.Quartz has been replaced with Spring.Scheduling.Quartz2
Bug
[SPRNET-21] - Event Wiring Prototype Source to Singleton Sink Does Nothing
[SPRNET-1386] - WebServiceExporter results in case-sensitive .asmx URLs
[SPRNET-1409] - Bug in MethodParametersCriteria.IsSatisfied() Method
[SPRNET-1427] - Prevent ObjectFactory from doing work when in the process of being disposed to prevent object resolution when container is in an inconsistent state
[SPRNET-1433] - AopUtils.IsAopProxy and IsAopProxyType fails to consider InheritanceAopProxy instances and types
[SPRNET-1458] - Nuget package Spring.Testing.NUnit can not find nunit.framework
[SPRNET-1461] - Transaction Timeout value not adhered while using TransactionAttribute
[SPRNET-1464] - WCF Service Exporter does not support contract interfaces that inherit from other interfaces
[SPRNET-1468] - Variables not working in BaseBindingContainer
[SPRNET-1470] - Setting property of type IList using without the @element-type specified fails.
[SPRNET-1473] - A call to SpringMvcDependencyResolver GetServices fails with a cast exception (DictionaryEntry -> Implementation)
[SPRNET-1474] - SimpleDelegatingSessionFactory.cs Connection Leak
[SPRNET-1481] - SpringControllerFactory does not properly delegate to underlying base class if Controller not registered with the ApplicationContext (MVC2)
[SPRNET-1482] - SpringControllerFactory returns null instance by default
[SPRNET-1485] - CachedSession CreateProducer destination null
[SPRNET-1490] - NumberUtils.IsZero: invalid cast for Byte and SByte
[SPRNET-1499] - WebService Exported produces "Duplicate type name within an assembly" exception
[SPRNET-1505] - Support using Proxyied Objects as Factory Objects
[SPRNET-1462] - Spring DB Provider initialization issue with Oracle 11 g 64 bit - Errors attached.
[SPRNET-1518] - IDestructionAwareObjectPostProcessor defined PostProcessors do not receive PostProcessBeforeDestruction method calls
[SPRNET-1519] - [Controller] attribute stereotype does not exists
[SPRNET-1520] - Autowired into Spring.Collections.Generic.ISet does not work, Exceptions shows that abstract class Set can't be intantiated
[SPRNET-1524] - IndexOutOfRangeException when matching ambiguous method using params parameters
[SPRNET-1527] - GetObject(string nameValue) does not resolve objects correctly
[SPRNET-1529] - ExpressionEvaluation cannot process Byte values
[SPRNET-1516] - Spring.Reflection.Dynamic.SafeMethod ctor not thread safe
[SPRNET-1535] - XmlMessageConverter always appends UTF8 preamble (BOM)
[SPRNET-1543] - DefaultListableObjectFactory.GetObjectDefinitionNames is getting them from all ancestors, but VariablePlaceholderConfigurer is trying to get the ObjectDefinition just from the current context and not the parent, potential NPE exception.
[SPRNET-1544] - CodeConfig ComponentScan does not setup ObjectScope.Session and ObjectScope.Request not automatically with LazyInit
[SPRNET-1545] - Web scoped objects with IDisposable failing when object created twice
[SPRNET-1547] - ScannedGenericObjectDefinition doesn't apply default autowire mode
[SPRNET-1549] - 2.0.0 M2 Release with MVC4 fails on second request for controller object with duplicate key error
[SPRNET-1558] - Spring.Aop.Framework.HashtableCachingAdvisorChainFactory not thread safe
[SPRNET-1563] - Make code as ClsCompliant as possible
[SPRNET-1566] - Spring.Data.Support.FallbackExceptionTranslator.Translate() should return an exception, not throw one
[SPRNET-1567] - HibernateTransactionManager assign incorrect connection timeout
[SPRNET-1318] - Dramatically inefficent ObjectFactory disposing
[SPRNET-1513] - HibernateTransactionManager DoBegin fails with Oracle 8i
[SPRNET-1435] - Unhandled exception from TypeConversionUtils.cs at line 147.
[SPRNET-1494] - Class Spring.Aop.Framework.DynamicProxy.CachedAopProxyFactory logs message on INFO level
[SPRNET-1445] - Can not autowire IDictionary
[SPRNET-1498] - Prevent SimpleDelegatingSessionFactory second level cache key conflict
Improvement
[SPRNET-1247] - Update to use Common.Logging 2.0
[SPRNET-1385] - update README for first time checkout and build
[SPRNET-1471] - Set IDictionary property using non-generic element.
[SPRNET-1489] - Support invalidating cache at the entire method level
[SPRNET-751] - Add generic method "T GetObject(string name)" to interface IObjectFactory
[SPRNET-881] - Add autowire-candidate and primary as metadata options for defining object definitions.
[SPRNET-1522] - Eliminate cache key conflicts when using SimpleDelegatingSessionFactory and second-level caching with multiple databases
[SPRNET-1534] - Object Definitions with identical values for id="..." and name="..." are excluded from GetObjectsByType(...) and GetObjects() calls
[SPRNET-1509] - Upgrade to NUnit 2.6
[SPRNET-1525] - OracleODP-11-2.0
[SPRNET-1540] - Update NHibernate to 3.3.3
[SPRNET-1542] - Automatically register context namespace parser
[SPRNET-1559] - Update to use Apache NMS 1.6
[SPRNET-1571] - DbProvider should set BindByName for OracleCommand to true
[SPRNET-1415] - Generic IAdoOperations missing CreateDbParameters()
New Feature
[SPRNET-1478] - Use lazy properties of NHibernate in Spring.NET
[SPRNET-1497] - Add Support for ASP.NET MVC4 and HTTP WebAPI
[SPRNET-1501] - Add Support for SQLite 1.0.80
[SPRNET-1504] - Support NHibernate 3.3.0 GA
[SPRNET-1514] - Add IFactoryObject implementation to support arbitrary delegate invocation for object creation
[SPRNET-1521] - Add AutowireAttributePostProcessor
[SPRNET-1387] - ASP.NET PageHandlerFactory cannot inject dependencies in the presence of the WebForms 4.0 routing infrastructure
[SPRNET-1507] - Add support for dynamic type ExpandoObject in spring.net expressions
[SPRNET-1536] - Merge SPRNET-CODECONFIG project into SPRNET
[SPRNET-1539] - Quartz.NET 2.3 support
[SPRNET-1561] - ASP.NET MVC 5 support
[SPRNET-1572] - Support Oracle ODP.NET Managed provider v. 121.1
Task
[SPRNET-1383] - test ConfigSectionVariableSourceTests.TestVariableResolutionFromApplicationSettingsSchema fails under .NET 3.5
[SPRNET-1459] - Remove VS2003, VS2005 projects and solutions
[SPRNET-1460] - Drop Framework 1.x Support
[SPRNET-1503] - Update Messaging.Nms to Apache.NMS.ActiveMQ 1.5.4
[SPRNET-1508] - Publish pre-release versions to NuGet
[SPRNET-1512] - Spring.Context.Support.AbstractApplicationContext.GetObjectNamesForType(..) fails to account for parent ApplicationContext/ObjectFactory object definitions
[SPRNET-1560] - Remove VS2008 project and solution files
[SPRNET-1564] - Remove code marked as obsolete
*****************************************************************************************
Release Version 1.3.2 August 1, 2011
Release Notes - Spring.NET - Version 1.3.2
Bug
[SPRNET-951] - AmbiguousMatchException when use overriden 'New' properties on a subclass ( like
[SPRNET-1331] - WebApplicationContext sometimes tries to duplicate application context within same appdomain
[SPRNET-1339] - GetMethodBaseByArgumentValues can't resolve an overloaded method when a null value is passed to a Nullable type parameter
[SPRNET-1391] - ExceptionTranslation doesnt work for SQLite
[SPRNET-1410] - HibernateTxScopeTransactionManager throws "could not rollback hibernate transaction" if it dioes not check for zombied transaction
[SPRNET-1416] - Fixed Spring.ServiceModel.ServiceExporter
[SPRNET-1417] - NHibernate 3.1 NH-2455 breakes Spring 1.3.1 NH support
[SPRNET-1424] - Interfaces attributes should not be 'proxied' when targeting a transparent proxy
[SPRNET-1429] - InheritanceAopProxyTypeBuilder does not support generic parameters
[SPRNET-1430] - ASP.NET MVC 3 throws an InvalidOperationException when trying to create controller that is not configured via Spring
[SPRNET-1432] - Spring.Testing.Microsoft not available in nightly snapshots
[SPRNET-1438] - Extraneous NHibernate Session created and used for transactions that begin in the scope of TransactionPropagation.Supports with OpenSessionInViewModule or SessionScope
[SPRNET-1440] - ValidationErrors ReadXml serialization bug
[SPRNET-1446] - WebContextHandler returns "Request is not available in this context" under IIS7 + Integrated Pipeline mode
[SPRNET-1448] - WebServiceExporter invokes service constructor twice when configured as non singleton
[SPRNET-1450] - Web object scopes not working in MvcApplicationContext
Defect
[SPRNET-1334] - if new disposable inner object(s) is created during the container disposal, a cryptic exception "Collection was modified; enumeration operation may not execute." is thrown.
Improvement
[SPRNET-791] - Logging of parameter values in AdoTemplate, in particular on exception.
[SPRNET-1180] - Document use of HttpApplicationConfigurer.ApplicationTemplate for configuring HttpApplication instances
[SPRNET-1242] - Support for collection merging with generic collections
[SPRNET-1351] - Add support for Informix dbprovider
[SPRNET-1352] - Typing mistakes
[SPRNET-1385] - update README for first time checkout and build
[SPRNET-1408] - Add data providers in System.Data.dll to be accessed via Spring's IDbProvider interface.
[SPRNET-1411] - Support NMS 1.5/1.5.1
[SPRNET-1422] - HibernateTemplate should support Merge
[SPRNET-1426] - Create ConfigurableVariableSource to allow inline variables definitions with VariablePlaceholderConfigurer
[SPRNET-1454] - Add Support for NHibernate 3.2
New Feature
[SPRNET-1421] - NHibernate 3.1 support
[SPRNET-1437] - Automate NuGet Packaing into Build/Release Script Process
[SPRNET-1443] - Support for ASP.NET MVC3
Task
[SPRNET-1397] - update version references for VS2008 templates in dev-support\vs.net-2008\templates\
[SPRNET-1400] - Update installer for 1.3.2 release
[SPRNET-1402] - Add documentation for LocalDelegatingSessionFactoryObject for NH
[SPRNET-1412] - Please include Spring.Messaging.Ems in 1.3.1 (or future) release
[SPRNET-1414] - Modify DAILY build script to upload NIGHTLY build to new hosted site server
[SPRNET-1419] - Spring.Data.NHibernate shows wrong description
[SPRNET-1425] - Update Version info to reflect 1.3.2
[SPRNET-1447] - Add Caching quick start
[SPRNET-1451] - Create Ref Docs for MVC3 Support
[SPRNET-1455] - Update NuGet dependency versions to reflect 1.3.2 versions of dependent SPRNET libs
*****************************************************************************************
Release Version 1.3.1 December 10, 2010
Release Notes - Spring.NET - Version 1.3.1
Bug
[SPRNET-576] - Allow formatting null values for .NET 2.0 Nullable Types
[SPRNET-694] - Error creating hierarchical IAppliationContext when using default names.
[SPRNET-951] - AmbiguousMatchException when use overriden 'New' properties on a subclass ( like
[SPRNET-962] - Request is not available in this context exception with IIS7 in integrated mode
[SPRNET-984] - Cannot specify full URL on a different domain for Page class ImagesRoot, CssRoot, and/or ScriptsRoot
[SPRNET-998] - Exception is thrown when creating object instance for class with custom attribute on method.
[SPRNET-1075] - AdoTemplate DataSetCreateWithParams not working as expected
[SPRNET-1105] - Lifecycle methods should only be called once
[SPRNET-1107] - Improve DynamicReflectionManager.ConvertValueTypeArgumentIfNecessary handling of implicit conversion operators
[SPRNET-1122] - RegularExpressionValidator fails if full string is not matched
[SPRNET-1123] - AbstractXmlApplicationContext.CustomizeObjectFactory never called after CreateObjectFactory() called.
[SPRNET-1124] - No ability to load pure IResource objects for application contexts as in java version
[SPRNET-1129] - Dependant singleton object isn't constructed when it doesn't define its type
[SPRNET-1138] - Cache Aspect on Generic Method goes on StackOverFlowException
[SPRNET-1156] - Method AbstractXmlApplicationContext.CustomizeObjectFactory(DefaultListableObjectFactory objectFactory) not used in code
[SPRNET-1157] - EntryPointNotFoundException for DI using VB and Windows 2000
[SPRNET-1161] - Only render datepicker Button if the Calendar control is enabled
[SPRNET-1166] - API documentation generator generates wrong property definitions
[SPRNET-1184] - Fix TypeNameAutoProxyCreator to use <list/> element for the TypeNames property
[SPRNET-1187] - inconsistent behaviour getting/setting database parameters
[SPRNET-1188] - Calendar control's javascript reference is not correct
[SPRNET-1189] - Calendar control generates duplicate id attribute
[SPRNET-1200] - Default names for DataTables not generated correctly when filling DataSet from query that returns multiple result sets.
[SPRNET-1202] - spring fails to concurrently create XmlApplicationContexts with ObjectDefinitionStoreException
[SPRNET-1205] - ExecuteFind trys to throw ConvertADOAccessException but throws NullReferenceException
[SPRNET-1212] - NamespaceParserRegistry: System.UriFormatException: Invalid
[SPRNET-1214] - Constructor arguments not merged correctly from the parent object
[SPRNET-1226] - BaseCacheAttribute does not allow null key
[SPRNET-1227] - TypeLoadException when using methods with type parameters
[SPRNET-1248] - Request is not available in this context
[SPRNET-1249] - HibernateTemplate 1.3rc + NH21 AST parser -- type guessing on params not working
[SPRNET-1256] - DefaultAdvisorAutoProxyCreator should cache FindCandidateAdvisors() list on a per-type basis
[SPRNET-1258] - ResourceConverterTests fail if a user has a file called foo.txt in their home folder
[SPRNET-1262] - Should create right CustomAttributeBuilder for proxies
[SPRNET-1264] - Exception EnterpriseServiceExporter
[SPRNET-1271] - Spring.Web.Support.HandlerMap
[SPRNET-1277] - Wellknown Namespacesparsers don't get loaded automatically without prior explicit registration
[SPRNET-1284] - IL code generation can result in System.BadImageFormatException in Windows 2008
[SPRNET-1289] - A target retrieved from a dynamic target source, is not entirely thread safe, e.g.ThreadLocalTargetSource
[SPRNET-1306] - Exception parsing concurrency attribute in ems listener-container config
[SPRNET-1307] - TransactionPropagation.NotSupported should run with new TransactionScopeOption.Suppress
[SPRNET-1308] - Received error: ObjectCurrentlyInCreationException ("FactoryObject which is currently in creation returned null from GetObject.")
[SPRNET-1309] - Cannot load saoFactory using the new synthax
[SPRNET-1312] - DbProvider configuration references renamed property
[SPRNET-1314] - AttributeMatchMethodPointcut should support explicitly implemented interfaces
[SPRNET-1315] - make dependant objects dispose in a certain order
[SPRNET-1317] - CLONE -Should create right CustomAttributeBuilder for proxies
[SPRNET-1322] - Support proxying internal interfaces with InternalsVisibleTo attribute and Strong-Named assemblies
[SPRNET-1323] - Fix WebServiceExporter to allow type-based auto-wiring and auto-proxying
[SPRNET-1325] - Regular expression method pointcut does not support generics
[SPRNET-1329] - NullReferenceException using Spring.Web.Services.WebServiceExporter with Mono
[SPRNET-1330] - AbstractObjectFactory: nestingCount causes exceptions in a multithreaded environment
[SPRNET-1332] - StackOverFlow when processing messages that take a long time to complete in MSMQ integration
[SPRNET-1335] - MultiDelegatingDbProvider CreateCommandBuilder returns IDbDataAdapter instead of DbCommandBuilder
[SPRNET-1337] - Locking up object method under multi-threaded
[SPRNET-1346] - Collection merging fails when doing DI on HTTP modules
[SPRNET-1355] - TypeAlias usage with other IObjectFactoryPostProcessor object definitions not working.
[SPRNET-1356] - Introduce IPriorityOrdered interface to ensure correct ordering among IObjectFactoryPostProcessors
[SPRNET-1357] - TransientDataAccessResourceCodes node cannot be resolved for the specified context [Spring.Data.Common.ErrorCodes]
[SPRNET-1361] - documentation refers to nonexistent methods
[SPRNET-1368] - CacheResultAdvice may return incompatible objects
[SPRNET-1369] - NmsTemplate was not attempting to start the connection when calling RecieveAndConvert
[SPRNET-1371] - CachedAopProxyFactory doesn't take into account the ProxyTargetAttributes property for cache key generation
[SPRNET-1377] - Attribute 'expression' for 'regex' element in the validation schema is not parsed correctly
[SPRNET-1379] - Enterprise Services Exporter sample application no longer runs
[SPRNET-1380] - NHibernate 2.1.2 leaks connections on TX ROLLBACK if (System.Transactions)TransactionScope is used
[SPRNET-1381] - short-circuit evaluation of logic operators in SpEL
[SPRNET-1398] - Command timeout can't be set to infinite value
Improvement
[SPRNET-577] - Allow for registration of custom parsers in COM+ components
[SPRNET-579] - Add NHibernate DAO implementation to SpringAir example application
[SPRNET-791] - Logging of parameter values in AdoTemplate, in particular on exception.
[SPRNET-987] - entry key should work with property configurer
[SPRNET-1042] - Specify location of additional DbProvider definitions in Spring XML database namespace
[SPRNET-1101] - Exception translation for NHibernate ADOException can be improved.
[SPRNET-1119] - Support type alias resolution in <value/> element
[SPRNET-1180] - Document use of HttpApplicationConfigurer.ApplicationTemplate for configuring HttpApplication instances
[SPRNET-1232] - Document how to support for using Fluent NHibernate in LocalSessionFactoryObject
[SPRNET-1268] - Exceptions in Spring should pass tests to ensure compliance with .NET framework guidelines.
[SPRNET-1297] - DictionaryVariableSource cannot be initialized from an IDictionary
[SPRNET-1304] - Lack of error code information in translated exceptions
[SPRNET-1310] - Update to use Apache NMS 1.3
[SPRNET-1320] - Add partial (InProc SxS) support for .NET 4.0 Framework
[SPRNET-1340] - MethodInvokingJobDetailFactoryObject does not set the result in JobContext
[SPRNET-1341] - CronTriggerObject start delay support
[SPRNET-1342] - Quartz scheduler should not start until context is refreshed
[SPRNET-1358] - Allow for ignoring of resources not found in PropertyFileVariableSource
[SPRNET-1360] - DynamicProxyManager Attempted Construction of Multiple instances of types with same names results in unhelpful exception
[SPRNET-1362] - Spring.EmsQuickStart contain generate-classes.bat puts in namespace for Spring.NmsQuickStart
[SPRNET-1364] - DEBUG_DYNAMICX instead of DEBUG_DYNAMIC in debug VS2008 configuration of Spring.Core.2008
[SPRNET-1366] - Allow for configuration of UTF8 preamble generation and the check for invalid bytes in XmlMessageConverter.
[SPRNET-1367] - Remove dependency of unit tests on DotNetMock framework
[SPRNET-1370] - Add 'when' condition to the Reference Validator
[SPRNET-1375] - Update to ActiveMQ NMS 1.4.1
[SPRNET-1390] - Allow for dependency injection on object returned from TIBCO EMS's JndiLookupFactoryObject
[SPRNET-1392] - Introduce Changes to support Code-Based Configuration in the Core container infrastructure
[SPRNET-1394] - Update Spring.Data.NHibernate to support NH3.0 GA
New Feature
[SPRNET-1301] - Provide support for switching among multiple databases at runtime when using NHibernate
[SPRNET-1324] - Add namespace parser for WCF integration
[SPRNET-1343] - Provide initial ASPNET MVC Integration for core DI capabilites
[SPRNET-1354] - Add support for DI using WCF's WebServiceHostFacotory
[SPRNET-1359] - Upgrade Quartz.NET to version 1.0.3
[SPRNET-1372] - Provide Native .NET 4 compilation assemblies
[SPRNET-1389] - Update to Apache.NMS.ActiveMQ 1.4.1
[SPRNET-1393] - NHibernate 3.0 support
Task
[SPRNET-754] - Investigate calling of oracle functions with StoredProcedure class
[SPRNET-1096] - Show example configuraiton using TxScopeTransactionMansager with NHibernate
[SPRNET-1199] - Documentation error about AdoQuery
[SPRNET-1250] - Document use of 'DelegatingLocalSessionFactoryObject' and 'UserCredentialsDbProvider'
[SPRNET-1269] - Time based test in NHibernate.Test failed on bamboo CI machine
[SPRNET-1311] - Update 'intro-modules' section to refer to all current modules.
[SPRNET-1313] - MessageQueueGatewaySupport.cs is not included in the project, but present in directory.
[SPRNET-1316] - Correct typo in Spring.Data documentation
[SPRNET-1319] - Add VS2008 solutions/projects for all examples
[SPRNET-1321] - Add MySql 6.2.2 ado.net provider
[SPRNET-1327] - Fix build configuration to link .NET 3.5 build with Quartz.NET 3.5 libraries
[SPRNET-1336] - Update documentation for MultiDelegatingDbProvider to show preferred way to set DbProvider name and notes for (not) using with NHibernate.
[SPRNET-1353] - Support System.Transactions with NHibernate Session Management
[SPRNET-1365] - Update to ActiveMQ NMS 1.4
[SPRNET-1378] - SQLite requires different assembly to support x64 platforms
[SPRNET-1382] - Document HibernateTxScopeTransactionManager
[SPRNET-1384] - Add .NET 3.5 and .NET 4.0 builds to build script
[SPRNET-1395] - Verify VS2003 SLN file compiles
[SPRNET-1396] - Add Spring.Web.Mvc to build output targets
[SPRNET-1397] - update version references for VS2008 templates in dev-support\vs.net-2008\templates\
[SPRNET-1399] - Add missing LICENSE header to several new files
[SPRNET-1401] - Add documentation for Spring.Web.Mvc
[SPRNET-1402] - Add documentation for LocalDelegatingSessionFactoryObject for NH
[SPRNET-1403] - Fix build configuration to link .NET 3.5 build with System.Web.Extensions 3.5 libraries
[SPRNET-1404] - Add custom ActionInvoker to SpringControllerFactory impl
*****************************************************************************************
Release Version 1.3.0 December 17, 2009
Release Notes - Spring.NET - Version 1.3.0
Bug
[SPRNET-1155] - Error when evaluating expression with #date variable
[SPRNET-1198] - Dynamic Assemblies are not Strong Named
[SPRNET-1228] - NmsTemplate: wrong timeout units in receive method (ticks instead of milliseconds)
[SPRNET-1266] - Context creation can throw ObjectCurrentlyInCreatation exception thrown when using <tx:attribute-driven/> with NHibernateTransactionManager
[SPRNET-1270] - Selection of DefaultProvider in MultiDelegatingDbProvider can be null
[SPRNET-1272] - Recreating application context can result in calls to create same type twice leading to System.ArgumentException: Duplicate type name within an assembly.
[SPRNET-1273] - Remove unnecessary cast to (int) in Spring.Data.Core.AdoTemplate ExecuteScalar with ICommandSetter method argument
[SPRNET-1285] - MultiDelegatingDbProvider in wrong namespace
[SPRNET-1288] - auto-start not parsed correctly in TIBCO EMS/ActiveMQ message listener container schema.
[SPRNET-1290] - Project templates .csprog files references have 'SpecificVersion' set to true, set to false.
[SPRNET-1296] - IConfigurableFactoryObject should not use ConfigureObject method to configure the product's factory
Improvement
[SPRNET-825] - Rename HtmlHelp-formatted reference docs to spring-net-reference.chm
[SPRNET-959] - Use 'invocation.Method' as variable for cache attributes key expression resolution
[SPRNET-989] - Avoid throwing exception in Spring's custom timespan converter when delegating to default .NET BCL implementation.
[SPRNET-1097] - Provide VS.NET 2008 integrated API help
[SPRNET-1194] - Make public and protected method in AdoTemplate (both core and generic) virtual to better support testing
[SPRNET-1257] - Improve performance in ExpressionParser by DynamicInvoke with SafeMethod.Invoke
[SPRNET-1259] - Cache retrieval of CachingAspect custom attributes to improve performance
[SPRNET-1260] - DefensiveEventRaiser must not swallow exceptions without notice - provide means to get exception information
[SPRNET-1267] - Add optimize compiler flag for release build
[SPRNET-1286] - Provide implementation of Apache.NMS.ITrace to merge NMS logging stream with Common.Logging stream.
[SPRNET-1294] - Change use of NotImplementedExceptions to NotSupportedExceptions
[SPRNET-1300] - NMS custom schema is missing a way to set the Exception Listener when creating message listener containers
[SPRNET-1302] - Add IErrorHandler interface to be called when exception thrown by message processing is not of vendor specific messaging exception type.
New Feature
[SPRNET-1041] - Add new DbProvider for Oracle 11g
[SPRNET-1136] - Add firebird db provider
[SPRNET-1278] - Add integration with JNDI for TIBCO EMS
Refactoring
[SPRNET-1251] - Investigate regression bug in ProxyFactoryObject due to sync with Spring Java
[SPRNET-1293] - Remove extraneous methods in implementations of NMS caching classes that use RequestTimeOut as a method parameter
Task
[SPRNET-850] - Upgrade to NUnit 2.5.2
[SPRNET-1076] - API doc links from reference doc are broken
[SPRNET-1148] - Provide quick start documentation for Spring NHibernate integration.
[SPRNET-1229] - Documentation for TIBCO EMS integration
[SPRNET-1239] - Check for package cycles with NDepend
[SPRNET-1250] - Document use of 'DelegatingLocalSessionFactoryObject' and 'UserCredentialsDbProvider'
[SPRNET-1265] - Upgrade to NHibernate 2.1.2
[SPRNET-1279] - Create integration test project for NMS
[SPRNET-1280] - Create integration test project for TIBCO EMS
[SPRNET-1281] - Error when calling pre-build task to antlr in Spring.Core.2008 project
[SPRNET-1291] - Upgrade to Quartz.NET 1.0.2
[SPRNET-1295] - Add MySql 6.1.3 ado.net provider
[SPRNET-1298] - Copy edit the Spring reference documentation chapter on the web framework
[SPRNET-1299] - Move older ways of configuring transaction management, using HibernateTemplate, to a 'Classic Spring Usage' section
*****************************************************************************************
Release Version 1.3.0 RC1 August 3, 2009
Release Notes - Spring.NET - Version 1.3.0 RC1
Bug
[SPRNET-444] - An ID in Spring.Expressions can't contain '.' char
[SPRNET-471] - TypeResolver does not support type array resolution
[SPRNET-1073] - interface method IValidationErrors.MergeErrors(..) references concrete type "ValidationErrors"
[SPRNET-1077] - PropertyPlaceholderConfigurer can't read from config sectiongroups
[SPRNET-1106] - Invalid Injection
[SPRNET-1111] - Bug in DynamicReflectionManager.ConvertValueTypeArgumentIfNecessary, the call Convert.ChangeType fails on converting DateTime to Nullable<DateTime>.
[SPRNET-1115] - LocalSessionObjectFactory not detected as a IPersistenceExceptionTranslator in an application context
[SPRNET-1117] - WebSupportModule fails to initialize on pre NET 2.0 SP2 platforms due to missing field HttpContext.HideRequestResponse
[SPRNET-1121] - XmlMessageConverter error (stream closing order)
[SPRNET-1128] - ApplicationContext instance is not removed from ContextRegistry when disposed
[SPRNET-1130] - Wrong MessageQueueException handling in DistributedTxMessageListenerContainer and TransactionalMessageListenerContainer
[SPRNET-1131] - Exception when using Nullable parameters in proxied service
[SPRNET-1134] - Spring.Proxy classes does not generate correctly multiple parameters attributes (method's parameter attributes and method's return type attributes
[SPRNET-1135] - Auto Injection for Unit Tests Failing when object has Parent
[SPRNET-1142] - Adding parameters does not working for SQLlte text comand
[SPRNET-1146] - Validation Controls cause NullReferenceException in webforms designer
[SPRNET-1151] - Spring.Web.UI.Page.Validate() method hides framework's System.Web.UI.Page.Validate()
[SPRNET-1153] - Deadlock when shutting down AbstractPeekingMessageListenerContainer
[SPRNET-1160] - Synchronizations with the same (or no) Order are NOT applied in registration order
[SPRNET-1162] - IConfigurableListableObjectFactory misses method RegisterObjectDefinition to be in sync w/ IObjectDefinitionRegistry
[SPRNET-1168] - InheritanceBasedAopConfigurer prone to ambiguous matches while proxying methods
[SPRNET-1171] - InteritanceAopConfigurer does not proxy protected virtual methods
[SPRNET-1174] - Proxies dont implement methods of base interfaces of interfaces
[SPRNET-1176] - Spring AOP proxies can't be serialized/deserialized in process
[SPRNET-1179] - ServiceExporter cannot export types implementing multiple interfaces
[SPRNET-1186] - DbParameters.GetValue returning DbParameter object instead of value
[SPRNET-1201] - Error importing XML object definition file - IOUtils::CopyStream() does not handle buffer under fills.
[SPRNET-1204] - Unable to export an AOP-proxied instance by using Enterprice Service Exporter
[SPRNET-1211] - the same .aspx page cannot be registered under different id's or aliases
[SPRNET-1219] - NonTransactionalMessageListenerContainer may require setting of message formatter before calling receive
[SPRNET-1221] - Both <tx:attribute-driven> and an extra DefaultAdvisorAutoProxyCreator cause advices to be invoked multiple times
[SPRNET-1222] - MessageQueueFactoryObject.GetObject() sets global MessageQueue.EnableConnectionCache property
[SPRNET-1225] - Dependencies of Advisors should not be eligible for auto-proxying
[SPRNET-1231] - objects defined using factory-object and factory-method get already instantiated during ObjectFactory postprocessing phase
[SPRNET-1233] - Can not send to remote private MSMQ queue
Improvement
[SPRNET-467] - add support for bitwise operations to Spring.Expressions
[SPRNET-504] - Allow circular references on prototypes
[SPRNET-620] - Support for Collection Merging in Parent/Child Object Definitions
[SPRNET-691] - Add ExecuteSqlScript utility method to AbstractTransactionalDbProviderSpringContextTests
[SPRNET-698] - Make Advisor/Advice binary serializable
[SPRNET-904] - RollbackRuleAttribute throws AopConfiguration exception instead of ArgumentException
[SPRNET-929] - Improve namespace parsing infrastructure
[SPRNET-1018] - DoRedirect in ResultMode uses Response.Redirect that throws ThreadAbortException
[SPRNET-1081] - Add an ExceptionThrowingAction to Spring.Validation framework
[SPRNET-1095] - mprove example application showing use of ServicedComponent exporter (COM+/EnterpriseServices)
[SPRNET-1102] - Improve Northwind NHibernate example
[SPRNET-1108] - Add support for InterSystems.Data.CacheClient provider
[SPRNET-1110] - Add "contextswitch" to validation framework
[SPRNET-1112] - Provide AbstractSimpleObjectDefinitionParser
[SPRNET-1114] - Performance problems with Spring.Testing.NUnit in 1.2.0 release
[SPRNET-1125] - Ordering of object names in ObjectFactory.GetObjectDefinitionNames() and GetObjectNamesForType() is not predictable
[SPRNET-1126] - XmlMessageConverter/TypeMapper usage should be able to embed fully qualified type name to enable type sharing between producer and subscriber
[SPRNET-1127] - NmsTemplate could support both topics/queues in a threadsafe manner.
[SPRNET-1140] - Allow for both, CLR and Spring syntax for generic type definitions in XML and SpEL
[SPRNET-1149] - MessageQueue not resolved from MessageQueueObjectName before container starts to consume messages
[SPRNET-1150] - Provide warning if MSMQ IMessageConverter object is not specified with scope = prototype.
[SPRNET-1154] - Update Apache.NMS library version
[SPRNET-1158] - Provide means to check for an active AOP invocation context
[SPRNET-1163] - AbstractSpringContextTests.SetDirty should take System.Object argument
[SPRNET-1167] - It is impossible to configure Null values using VariablePlaceholderConfigurer
[SPRNET-1177] - PropertyComparator doesn't perform stable sorting
[SPRNET-1181] - Improve support for NHibernate 3
[SPRNET-1182] - defer target==null checking until actual joinpoint invocation in aop proxy method implementations
[SPRNET-1190] - Add error code for duplicateKeyCodes to DbProvider metadata for Oracle
[SPRNET-1191] - Add additional convenience constructors to ProxyFactory
[SPRNET-1192] - VS Intellisense doesn't show annotation comments from Spring Schemas
[SPRNET-1206] - Upgrade to NUnit 2.5 or make it version independent
[SPRNET-1208] - support IObjectFactoryAware on manual AddObjectPostProcessor registration
[SPRNET-1215] - Add DuplicateKeyException to DAO exception hierachy
[SPRNET-1224] - FactoryObject products from singleton factories don't get cached
[SPRNET-1235] - Switch to internal AutoProxyCreator for <tx:attribute-driven /> (sync with Spring/J)
[SPRNET-1238] - Repackage antlr 2.7.6 inside Spring.Core
[SPRNET-1240] - Add Non/TransientDataAccessException to DAO exception hierarchy
New Feature
[SPRNET-843] - VS.NET 2008 project and solutions templates
[SPRNET-1104] - NHibernate 2.1 Support
[SPRNET-1109] - Support DI in EnterpriseServices / ServicedComponent
[SPRNET-1178] - add utility methods for stable sorting of arbitrary collections
[SPRNET-1196] - Add support for Microsoft's Test Framework in AbstractDependencyInjectionSpringContextTests and related subclasses
[SPRNET-1197] - Add support for TIBCO EMS
[SPRNET-1230] - Include NH 2.1 Proxy Generator Provider in distribution
[SPRNET-1236] - NVelocity integration
[SPRNET-1237] - Implement parsing of property element in NVelocity custom namespace
[SPRNET-1243] - Add DictionaryVariableSource
Refactoring
[SPRNET-1089] - Change DoStop() in AbstractListenerContainer to protected
[SPRNET-1090] - Make AbstractSendToQueueExceptionHandler abstract
[SPRNET-1091] - Add ORIGINAL_DEFAULT_HANDLER_METHOD to MSMQ MessageListenerAdapter
[SPRNET-1234] - Change validator type hierarchy to cleanly separated simple vs. group validator types
Task
[SPRNET-627] - Add example and reference documentation to show NmsTemplate usage with MSMQ binding.
[SPRNET-1005] - Investigate AbstractObjectFactory method ContainsObject for behavior when searching parent object factory.
[SPRNET-1072] - Extend validation schema for new "FastValidate" property on ValidatorGroup
[SPRNET-1113] - Investigate propagation supports with readonly=true for NH
[SPRNET-1118] - Investigate rendering of validation errors in nested controls
[SPRNET-1137] - check possible bug w/ transactions and nhibernate integration
[SPRNET-1143] - update renamed IApplicationListener -> IApplicationEventListener interface in reference docs
[SPRNET-1165] - Compile against antlr 2.7.7.3
[SPRNET-1218] - Update to use Apache NMS 1.1
[SPRNET-1239] - Check for package cycles with NDepend
*****************************************************************************************
Release Version 1.2.0, November 10, 2008
Release Notes - Spring.NET - Version 1.2.0
Bug
[SPRNET-533] - xml <import> "directive" doesn't correctly resolve relative paths
[SPRNET-863] - Passing name of inner object to IApplicationContext.IsSingleton() throws NullReferenceException
[SPRNET-944] - Throws exception when evaluating literal 'date' in expression
[SPRNET-957] - TypeAssemblyHolder doesn't work correctly for a generic full type name
[SPRNET-966] - XML object definition parser strips whitespaces from values
[SPRNET-971] - MessageSource resource lookup throws MissingManifestResourceException
[SPRNET-988] - Add support for XmlArrayAttribute & XmlArrayItemAttribute to WebServiceProxyFactory
[SPRNET-992] - ReflectionUtils.GetConstructorByArgumentValues throws System.IndexOutOfRangeException: Index was outside the bounds of the array.
[SPRNET-996] - DataBinding null values to nullable type fails
[SPRNET-997] - IIS7 integrated pipeline "The HttpRuntime.ProcessRequest method is not supported by IIS integrated pipeline mode"
[SPRNET-1022] - MissingManifestResourceException when resolving resources in web apps
[SPRNET-1035] - VariablePlaceholderConfigurer placeholder prefix is not configurable
[SPRNET-1044] - Sync behavior of AbstractObjectFactory.GetObject( string name, object[] arguments) and .GetObject( string name, Type requiredType, object[] arguments)
[SPRNET-1060] - Issue hooking up Spring.Web.Providers.xAdapter in test unit environment
[SPRNET-1065] - Extraneous connection open in DataSet operations on AdoTemplate
[SPRNET-1066] - Wrong assembly version number used to specify CommandBuilder Type and Exception Type for SQL CE 3.5 provider
[SPRNET-1070] - SimpleMessageListenerContainer to check for null sessions and consumers when shutting down.
[SPRNET-1074] - Remove required constraint on method attribute in listener element
[SPRNET-1079] - custom namespace schema has problem with <import namespace=".." > element
[SPRNET-1084] - Telerik RadGrid Control is broken with Spring RC1
[SPRNET-1085] - Spring.Web.UI.Page throws exception when a custom ResourceProviderFactory is configured
[SPRNET-1086] - Parent/Child ObjectDefinitions are merged incorrectly
[SPRNET-1088] - SpEL doesn't allow to concat string null
Improvement
[SPRNET-605] - Improve DynamicMethodInvocation by reusing SafeMethod instance
[SPRNET-672] - Provide strategy interface to make Model persistence customizable in Spring.Web.UI.Page
[SPRNET-701] - Self-registering namespace parsers
[SPRNET-912] - Ensure line number to top level error message when there are XML parsing errors.
[SPRNET-969] - Improve dynamic reflection library for constructor and method invocations
[SPRNET-1030] - CacheResultItem should work on IEnumerable
[SPRNET-1033] - Enable short-circuit validation for validationgroup
[SPRNET-1059] - WebServiceExporter generated proxy should not access ContextRegistry.GetContext or WebApplicationContext.Current
[SPRNET-1062] - MessageHandlerAdapter for MSMQ should use Expression.Parse when dispatching handler method to avoid throwing first chance exception
[SPRNET-1068] - Improve exception handling during object definition loading
[SPRNET-1083] - Change logging level when overriding NHibernate ConnectionProvider in LocalSessionFactoryObject with Spring's IDbProvider to INFO from WARN
New Feature
[SPRNET-924] - Provide an AutoProxyCreator implementations based on object type names, class attributes, and type names
Refactoring
[SPRNET-1061] - Eliminate cyclic dependency in Spring.Web assembly Spring.Util.*/Spring.Web.Support.* namespace
Task
[SPRNET-828] - Add section on wiring .NET event to the reference documentation
[SPRNET-1007] - Remove extraneous 'bean' references in reference documentation
[SPRNET-1051] - Update to use postgresql driver 2.0.0.0
[SPRNET-1053] - Investigate NET 3.5 Service Pack 1 issues w.r.t. Spring.NET
[SPRNET-1067] - Add MySql 5.2.3 ado.net provider
[SPRNET-1082] - Bad packaging in 3.5 lib directory
*****************************************************************************************
Release Version 1.2.0 RC1, October 16, 2008
Bug
[SPRNET-899] - HttpContext.CurrenHandler returns Spring's internal PageHandler instead of real Page
[SPRNET-923] - Spring.Services generated proxies should not use explicitly ContextRegistry.GetContext or WebApplicationContext.Current direclty
[SPRNET-967] - SaoFactoryObject should cast TransparentProxies to the interface it implements before to return
[SPRNET-1008] - Add check for [Serializable] in SimpleMessageConverter
[SPRNET-1017] - Apache.NMS.ActiveMQ.ConnectionClosedException when using CachingConnectionFactory
[SPRNET-1020] - Consumer caching was not taking place for queues.
[SPRNET-1023] - Problems performing DI with Telerik RAD controls
[SPRNET-1027] - Spring Page Handler Factory does not respect EnableSessionState="ReadOnly", page setting cached until app pool reload
[SPRNET-1028] - DefaultListableObjectFactory.IsAutowireCandidate(string , DependencyDescriptor) does not search parent container
[SPRNET-1032] - <name-values> elements to not append values for same key value
[SPRNET-1047] - ObjectPostProcessors order isn't respected when mixing <object order="x"> and ObjectFactory.AddObjectPostProcessor() registrations
Improvement
[SPRNET-547] - Add Unsubscribe functionality to IEventRegistry
[SPRNET-567] - Allow parameters to be passed to Spring.Web.UI.Page.SetResult()
[SPRNET-784] - WebServiceProxyFactory support for SoapHeaderAttribute with Direction=SoapHeaderDirection.In
[SPRNET-795] - Change TransactionStatus Rollback setter property to Rollback() method so the contract of setting it to true is more explicit
[SPRNET-840] - Reduce PageHandlerFactory complexity
[SPRNET-958] - Result mapping doesn't support expressions for TargetPage
[SPRNET-960] - Allow for selection of logging level when using exception handling advice for logging
[SPRNET-995] - IsValid state of AbstractBinding should not be stored in LogicalThreadContext
[SPRNET-1016] - Apply local transaction to DataSet operations in AdoTemplate.
[SPRNET-1019] - Messaging namespace parser should support use of PropertyPlaceholderConfigurer
[SPRNET-1021] - Avoid antlr exception thrown for internal flow control when selecting handler method in MessageListenerAdapter
[SPRNET-1024] - Add AutoStartup as an attribute of the <listener-container> element
[SPRNET-1025] - Make GetObject virtual in MethodInvokingJobDetailFactoryObject and provide protected access to JobDetail object.
[SPRNET-1038] - Eliminate storing binding state to TLS in Spring.DataBinding.AbstractBinding
[SPRNET-1056] - Provide easier configuration of exception handlers in ExceptionTranslationAdvice.
New Feature
[SPRNET-711] - Add generic DI support for IHttpHandlers
[SPRNET-713] - Add support for custom .ashx IHttpHandler implementations
[SPRNET-815] - Add Sql Server Compact Edition 3.5 database provider
[SPRNET-883] - Add support for translation of exceptions using PersistenceExceptionTranslationInterceptor.
[SPRNET-936] - Add message converter to/from XML (NMS)
[SPRNET-1039] - Add support for Sybase ADO.NET 2.0 provider
[SPRNET-1040] - Support encrypting url parameters when using Page.SetResult()
[SPRNET-1046] - Move hardcoded, Spring.Web specific ISharedStateAware handling to generic SharedStateAwareObjectPostProcessor
[SPRNET-1055] - Provide ability to easily register to MessageQueueFactoryObject definitions with the container at runtime
[SPRNET-1057] - Add new 'execute' action for ExceptionTranslationAdvice
[SPRNET-1058] - Provide WCF Service export akin to those for Remoting and .asmx WebServices
Refactoring
[SPRNET-1052] - Extract "SetResult" related code into a reusable ResultNavigator component
Task
[SPRNET-1045] - Colorize code listings (XML/C#) in reference documentation
[SPRNET-1048] - Drop IProcess support from Spring.Web
[SPRNET-1050] - Provide sample configuration for using MultiDelegatingDbProvider
*****************************************************************************************
Release 1.2.0 M1, August 15, 2008
Bug
[SPRNET-542] - Spring NMS AbstractListenerContainer does not set or use the ExceptionListener correctly
[SPRNET-939] - PageHandlerFactory does not behave like original factory w.r.t missing files
[SPRNET-941] - Proxying method with generic type parameter fails when the type resolves to a value type at runtime.
[SPRNET-942] - ExceptionHandlerAdvice doesn't allow for explicitly configured Handlers
[SPRNET-945] - NameMatchTransactionAttributeSource to support conversion of string representation of transaction attributes
[SPRNET-948] - Missing dependency cycle check for request / session scoped singletons in Spring.Web
[SPRNET-949] - Scoped object dictionaries (request,session) do not match case sensitivity setting of object factory
[SPRNET-952] - ObjectCurrentlyInCreationException constructor mismatch doesn't show affected object's name
[SPRNET-954] - DeclaredParameters property is not property initialized in AdoOperation subclasses
[SPRNET-961] - Exception handling advice throws NullReferenceException when using swallow action on methods that return value types
[SPRNET-970] - TypeConversionUtils should not throw TypeMismatchException on null value for System.Nullable
[SPRNET-974] - SpEL ConstructorNode doesn't support non-public constructors
[SPRNET-975] - Object alias names are not treated according to "caseSensitive" setting
[SPRNET-985] - Autowire byType checks for UnsatisfiedDependencyException before honoring overrides
[SPRNET-986] - Constructor autowiring for array types not working
[SPRNET-988] - Add support for XmlArrayAttribute to WebServiceProxyFactory
[SPRNET-994] - Null reference in SessionFactoryUtils.GetDbProvider
[SPRNET-1002] - Object name generation when no name specified produces duplicate names
Improvement
[SPRNET-794] - Improve web-DI performance, in particular with GridViews
[SPRNET-869] - WebServiceExporter to generate WebServiceBinding attribute with WSI basic profile 1.1 by default.
[SPRNET-928] - Add nant build file and supporting tools in the release.
[SPRNET-946] - Extend code example in chapter "19.4. Connection String management" of the reference documentation
[SPRNET-947] - Singleton Cache Locks are too coarse grained for custom scopes (e.g. Request, Session)
[SPRNET-955] - Provide better error message if dbprovider name is not found in thread local storage when using MultiDelegatingDbProvider
[SPRNET-956] - Provide better error message if assembly name is not provided when specying method signature for MethodMapTransactionAttributeSource
[SPRNET-959] - Use 'invocation.Method' as variable for CacheResultAdvice Key expression resolution
[SPRNET-976] - Register WebObjectFactory with EndSession and EndRequest events only when request|session scope is really used
[SPRNET-977] - Avoid unnecessary use of HttpContextSwitch within WebObjectFactory.ConfigureObject()
[SPRNET-978] - CaseInsensitiveHashtable is not serializable
[SPRNET-999] - Add DefaultDbProvider property to MultiDelegatingDbProvider.
New Feature
[SPRNET-753] - Add ILifecycle interface
[SPRNET-896] - Allow registering custom ICollectionProcessors in SpEL MethodNode
[SPRNET-922] - NHibernate 2.0 RC1 Support
[SPRNET-953] - Allow for circular dependencies of web-scoped singletons
[SPRNET-980] - Quartz.NET Integration
[SPRNET-982] - TIBCO EMS Integration
[SPRNET-993] - Added InheritanceBasedAopConfigurer for true inheritance based AOP
[SPRNET-1000] - Configure WCF services via dependency injection and add additional behavior to them using Aspect-Oriented programming (AOP)
[SPRNET-1006] - ActiveMQ NMS integration
Task
[SPRNET-782] - Removed IApplicationContextAware.ApplicationContext getter from the interface.
[SPRNET-811] - Removed WebServiceProxyFactory.ClientProtocolType property (obsolete)
[SPRNET-990] - Removed IResourceLoaderAware.ResourceLoader getter from the interface.
[SPRNET-991] - ContextRegistry.GetContext(string name) should throw an exception if no context has been registered under that name.
*****************************************************************************************
Release 1.1.2, May 6, 2008
Bug
[SPRNET-930] - Validation user controls not rendering errors.
[SPRNET-931] - PreviousPage property is not set correctly during Server.Transfer
Improvement
[SPRNET-558] - Enable Data Validation and Model Management for UserControl
[SPRNET-785] - SessionScope / OSIV should obtain 1 EntityInterceptor per Session instance
[SPRNET-926] - Add PessimisticLockingFailureException as base class for CannotAcquireLockException, CannotSerializeTransactionException, and DeadlockLoserDataAccessException.
[SPRNET-927] - NHibernate Exception mapping improvements.
[SPRNET-932] - Create signed DLLs in debug build configuration
[SPRNET-933] - Support MethodInjection for objects declared inside the WebApplicationContext
[SPRNET-935] - Release DLLs built with /DEBUG:pdbonly
[SPRNET-937] - Add additional logging of cache inserts in Cache advice.
Task
[SPRNET-925] - Update documentation for DI in ASP.NET regarding use of name attribute and object definition inheritance
[SPRNET-938] - Add documentation for authoring custom namespace parsers
*****************************************************************************************
Release 1.1.1, April 7, 2008
Bug
[SPRNET-394] - Fix recursive calls to Context.GetRegistry()
[SPRNET-538] - Binding fails with binding to property of nullable type
[SPRNET-570] - ObjectNameAutoProxyCreator incompatible with NHibernate.LocalSessionFactoryObject
[SPRNET-576] - Allow formatting null values for .NET 2.0 Nullable Types
[SPRNET-755] - SpEL method invocation fails if the same expression instance is used with two different context types
[SPRNET-607] - TypeAliasConfigurer does not work in Spring.Web applications
[SPRNET-818] - Provide .NET TypeConverter for ITransactionAttribute
[SPRNET-820] - spring:CheckBoxList doesn't allow for <asp:ListItem> children
[SPRNET-821] - HttpRequestBindingContainer can't bind to checkboxes
[SPRNET-827] - TypedDataSetUtils should use IDbCommand instead of provider specified SqlDbCommand.
[SPRNET-829] - Named constructor argument metadata should be stored/compared using consistent CultureInfo
[SPRNET-838] - 404 exception handling in NET 1.1 does not work as expected / differs from standard behaviour
[SPRNET-845] - OSIV/SessionScope generates the wrong key for EntityInterceptorObjectName
[SPRNET-846] - ProxyFactory allows for advisors being added twice
[SPRNET-847] - Implementations of AbstractPointcurAdvisor.Equals() and .GetHashCode() are wrong
[SPRNET-852] - Creating a custom attribute did not take into account public field values that match the named arguments in the attribute declaration.
[SPRNET-853] - Throw HibernateSystemException (part of Spring's DAO exception hierarchy) when can not translate inner exception in NHibernate.ADOException
[SPRNET-854] - Fix NullReferenceException in HibernateAccessor when SqlString in ADOException is null.
[SPRNET-860] - Placeholders not resolved in name-values element
[SPRNET-861] - Couldn't resolve internal properties in Strong Typed resources in Web Application
[SPRNET-862] - Resolve object references that use the Spring expression language while parsing config files
[SPRNET-871] - GenericApplicationContext.ctor(IApplicationContext) always throws NullReferenceException
[SPRNET-872] - Resolve WebResources relative to HttpContext.Current.Request.FilePath
[SPRNET-873] - ReadCommitted was misspelled in spring-tx-1.1.xsd
[SPRNET-874] - Null reference accessing TransactionSynchronizationManager.CurrentTransactionIsolationLevel when no Spring managed transaction is active
[SPRNET-877] - IConfigurableFactoryObject instance cannot be proxied with the AOP auto proxy functionality
[SPRNET-880] - Logging exception handler should continue processing of exception handler chain.
[SPRNET-882] - Test "ExistsValidHttp" fails
[SPRNET-886] - IInitializingObject isn't honored in case of calls to ConfigureObject()
[SPRNET-891] - Failure to create hiearchical context with depth greater than two.
[SPRNET-893] - Retry advice goes into infinite loop when exception type not listed in advice is thrown
[SPRNET-902] - DbProvider ExtractError method should explicitly perform ToString operation on object returned from SpEL expression to obtain error code
[SPRNET-908] - ReflectionUtils.MethodIsOnOneOfTheseInterfaces does not correctly iterate over multiple interface types
[SPRNET-920] - AbstractObjectFactory.GetObject(name,requiredType,arguments) does not propagate 'requiredType' and 'arguments' ParentObjectFactory
Improvement
[SPRNET-531] - It is not possible to call Page.SetResult() outside the page (e.g. from a Control)
[SPRNET-558] - Enable Data Validation and Model Management for UserControl
[SPRNET-559] - Change ValidationError control to enable Message resolution for UserControl
[SPRNET-762] - De-couple the url from the actual object definition name in WebServiceExporter
[SPRNET-772] - Distribute Northwind sql server 2005 data files to provide easy 'out-of-the-box' running of NHibernate example application.
[SPRNET-783] - Take TypeConverters into account in SpEL numeric aggregate functions
[SPRNET-785] - SessionScope / OSIV should obtain 1 EntityInterceptor per Session instance
[SPRNET-799] - Add support for IBinding.SetMessage() to DataBindingPanel
[SPRNET-814] - Improve Spring.Web DataBinding error handling ("SetErrorMessage()") documentation
[SPRNET-824] - Make WebApplicationContext and WebObjectFactory accessible from non Web threads
[SPRNET-830] - Improved performance in Spring.Data by optimizing reflection calls.
[SPRNET-835] - Add additional convenience method to set TableAdapter transaction/connection properties using DbProvider.
[SPRNET-841] - Add option to specify external hibernate configuration files (hibernate.cfg.xml) in LocalSessionFactoryObject
[SPRNET-842] - Using DbProvider to configure LocalSessionFactory object will by default integrate with NHibernate's 'external connection' management feature
[SPRNET-855] - Update Oracle error code mapping to include ORA-2292 as a DataIntegrityViolationCodes
[SPRNET-856] - Add 03000 as BadSqlGrammarCode and 40001 as CannotSerializeTransactioncode for Postgress providers.
[SPRNET-857] - Improved MySql provider error code mappings for DataIntegrityViolationCodes
[SPRNET-858] - Added IDbProvider implementation, UserCredentialsDbProvider, to allow changing of username, password connection strings at runtime.
[SPRNET-859] - Add addtional constructor to MultiDelegatingDbProvider that takes dictionary of target name/providers.
[SPRNET-864] - Add additional result mapping variable prefix what will not clash with PropertyPlaceholderConfigurer
[SPRNET-867] - Add line number to top level error message when there are XML parsing errors.
[SPRNET-879] - LocalSessionFactoryObject can configure ISessionFactory to use Spring's IDbProvider as a NHibernate ConnectionProvider
[SPRNET-887] - Add support for asp:HiddenField in DataBindingPanel
[SPRNET-897] - Allow binding/unbding string.Empty to nullable types
[SPRNET-898] - Add additional ICollectionProcessors to SpEL
[SPRNET-901] - Extend SpEL selection with mysql-like LIMIT functionality
[SPRNET-905] - RollbackRuleAttribute checks for null Type and null or empty string in constructor
[SPRNET-906] - Build scripts generate unique revision numbers for assemblies
[SPRNET-910] - Updated DB2 codes for exception translation
[SPRNET-913] - Add convenience method in Spring.Web.UI.Page/UserControl to navigate to a Result using a user provided object for result expression evaluation.
[SPRNET-914] - Add convenience method to get the Spring.Web.UI.Page Result as a url
[SPRNET-915] - Add additional CannotSerializeTransactionCodes for Oracle providers
[SPRNET-916] - Add additional BadSqlGrammarCode for Postgres
[SPRNET-917] - Add additonal db error codes for exception translation for Oracle and MySql providers
[SPRNET-918] - Add property to enable/disable logging of return value in SimpleLoggingAdvice
[SPRNET-919] - Update NHibernate sample application to use NHibernate 1.2.1
New Feature
[SPRNET-892] - Introduce <spring:Panel> control for finer grained control over when to perform DI on user controls
[SPRNET-907] - Add Required attribute and RequiredObjectFactoryPostProcessor, allowing to enforce required object properties
[SPRNET-911] - Provide ParameterValidationAdvice to use validation framework to validate method arguments.
Task
[SPRNET-587] - Add example of validation usage in middle tier services
[SPRNET-689] - Add more documentation describing ITransactionAttributeSource implementations.
[SPRNET-775] - Document using a custom IFactoryObject to help with configuring embedded resources
[SPRNET-780] - Valdiation example for ASP.NET refers to wrong namespace.
[SPRNET-809] - Update to NHibernate 1.2.1
[SPRNET-819] - Add Multiselection samples (CheckListBox, ListBox) to WebQuickStart DataBindingPanel sample
[SPRNET-826] - Add section about manually registering objects with the container ("registersingleton" etc.)
[SPRNET-831] - SpringAir html doesn't pass VS2005 default validation (not xhtml transitional)
[SPRNET-849] - Add "SetErrorMessage" sample to Data Binding section in reference docs
[SPRNET-865] - Add Documention for the expression attribute.
[SPRNET-866] - Support .NET 1.1 for NHibernate 1.2
[SPRNET-875] - Documentation incorrectly lists Unspecified as default isolation level, should be ReadCommitted.
[SPRNET-885] - Add doc for <spring:Panel> server control usage
[SPRNET-909] - Document that WebServiceExporter does not add WebServiceBinding attribute with WSI basic profile 1.1 by default.
*****************************************************************************************
Release 1.1 final, December 7, 2007
Bug
[SPRNET-448] - TransactionTimeout setting not being applied correctly.
[SPRNET-453] - ConversionUtils should use ConvertFromInvariantString if failed to convert string value.
[SPRNET-511] - UrlResource Exists only returns true for file://
[SPRNET-606] - Problems with Attributes in proxy generation
[SPRNET-719] - PropertyPlaceholderConfigurer does not replace property values in <list element-type=${prop}>
[SPRNET-723] - Head control renders not XHTML valid script tag
[SPRNET-752] - Implement advanced DataSet related methods in AdoTemplate
[SPRNET-759] - Wrong assembly named used to configure NHibernate12's SessionFactory property ExposeTransactionAwareSessionFactory
[SPRNET-760] - StoredProcedure.DeclaredParameters.AddOut("A", OracleType.Cursor); causes double ':' in Oracle10g stored procedure call
[SPRNET-761] - Fix use of Nested Transactions in TxScopeTransactionManager.
[SPRNET-767] - Generic AdoTemplate CommandTimeout property does not set corresponding ClassicAdoTemplate property
[SPRNET-769] - Resume and throw exception if exception is thrown at start of transaction.
[SPRNET-770] - Nested RequiresNew propagaion options not working in AdoPlatformTransaction manager .
[SPRNET-778] - AdoExceptionTranslator in HibernateTransactionManager did not have a default value
[SPRNET-779] - NHibernateTransactionManager can not convert AdoAcessException
[SPRNET-796] - AdoTemplate not using DbMetadata for CommandBuilderDeriveParamtersMethod
[SPRNET-800] - SimpleLoggingAdvice does not correctly check for logging level other than trace.
[SPRNET-802] - Default IsolationLevel should be ReadCommitted.
Improvement
[SPRNET-497] - Print 'resultName's value if Page.SetResult() is called with a non-existant result name
[SPRNET-514] - dbproviders.xml configuration should allow for an optional 'DeriveParameters' method.
[SPRNET-555] - Improve ResourceSetMessageSource documentation and add example for ASP.NET 2.0
[SPRNET-756] - Add protected method to ErrorCodeExceptionTranslator to allow for a subclass to first attempt exception translation.
[SPRNET-766] - Add support for Sybase provider
[SPRNET-768] - Add support for ODBC provider
[SPRNET-774] - Add Designmode support for DataBindingPanel
[SPRNET-793] - Add Execute methods missing in Generic.AdoTemplate but present in non-generic version.
[SPRNET-797] - Make it such that DefaultTransactionStatus property Rollback can only be set to true
[SPRNET-803] - Allow web service base type to be configurable in WebServiceExporter.
Task
[SPRNET-203] - Add test coverage for Spring.Net Web module
[SPRNET-217] - QuickStart documents for Spring.Air
[SPRNET-421] - Document programmatic use of data validation framework
[SPRNET-457] - ErrorCode translation can produce extraneous UncategorizedDataAccessException
[SPRNET-516] - Improve documentation on Spring.Data DataSet functionality
[SPRNET-574] - NHibernate and custom loader
[SPRNET-590] - Include use of Spring's implementation of NHibernate's ICurrentSessionContext in demo appliation.
[SPRNET-610] - AOP documentation improvements
[SPRNET-682] - Change vs.net 2002 solution to be Spring.Net.1.1.2002.sln
[SPRNET-708] - Remove "UniqueID" based usercontrol DI sample from web reference docs
[SPRNET-726] - Improve Spring.Data.NHibernate docs w.r.t FlushMode.Never in OSIV
[SPRNET-744] - update assembly version numbers to current builds in dbproviders.xml
[SPRNET-764] - NUnit 2.4.3 GUI-runner not executing Spring.Testing.NUnit based tests linked to NUnit 2.4.1.
[SPRNET-773] - Unit tests for ServiceDomainTransactionManager
[SPRNET-776] - Unit tests for AdoPlatformTransactionManager
[SPRNET-777] - Provide 10,000 ft intro page on spring.net features on web site
[SPRNET-781] - Add new providers added to dbproviders.xml to spring-dataase-1.1.xsd
[SPRNET-786] - Fix Spring.Data related projects in Spring VS2003 solution
[SPRNET-787] - add examples for DataBindingPanel to WebQuickStart
[SPRNET-788] - integrate Spring.Web.Tests with NUnitAspEx to support real HttpRuntime-integrated tests
[SPRNET-798] - Add overview documentation from web site into reference docs
*****************************************************************************************
Release 1.1 RC2, October 15, 2007
(Note: A bug in the dbproviders.xml file was discovered shortly after the initial release of 1.1 RC2. A new version was uploaded with the same name. This should not present a problem, but if you have trouble creating an OracleODP-2.0 provider, please download again as it may take up to a day for the proxy servers to get updated)
Bug
[SPRNET-297] - Cannot proxy ODP.NET OracleConnection
[SPRNET-500] - ProxyFactoryObject attempts to add all interfaces target implements even if ProxyInterfaces property is set
[SPRNET-659] - Page doesn't allow to specify neutral cultures for CultureResolver
[SPRNET-664] - Add description and show usage of Spring's WebSupportModule to documentation.
[SPRNET-667] - Update Common.Logging documentation to point to NetCommon sourceforge project web site.
[SPRNET-684] - Remove duplicate logging when completing transaction after thrown exception.
[SPRNET-685] - Rethrow exception during transaction manager rollback or commit and log correctly.
[SPRNET-686] - CacheResultAdvice should cache 'null' return values
[SPRNET-687] - AspNetCache does not differentiate cache-keys if several instances with different names exist
[SPRNET-688] - Registered transaction syncrhonizations should not have to implement IComparator. Add support for implemented Spring's IOrdered interface (optional).
[SPRNET-690] - AbstractSpringContextTests is not caching ApplicationContexts
[SPRNET-692] - Incorrect metadata in dbproviders.xml for parameterDbTypeProperty for OracleODP-2.0
[SPRNET-696] - AbstractMessageSource messes parameters when calling ParentMessageSource
[SPRNET-704] - UserControl's SharedState doesn't reload after changing/recompiling .ascx file
[SPRNET-706] - Page.DataBound and Page.DataUnbound events are only raised if Binding collection is not empty
[SPRNET-709] - SpEL fails evaluating expression
[SPRNET-710] - DotNetMock based AbstractMessageSourceTests and MessageSourceAccessorTests have both "false positives" and "false negatives"
[SPRNET-714] - SessionFactory not bound to thread local storage if DbProvider for HibernateTransactionManager is null
[SPRNET-715] - SpringSessionSynchronization did not close hibernate session with a nested transaction with TransactionPropagation.NotSupported
[SPRNET-716] - Create new session if thread local storage SessionHolder is marked as SyncrhonizedWithTransaction.
[SPRNET-721] - Intercept all target interfaces when using an introduction with ObjectNameAutoProxyCreator
[SPRNET-722] - ReflectionUtils.getMostSpecificMethod() throws exception when handling Generic methods with the same parameter signature and different generic types
[SPRNET-725] - Concurrency problem with Spring.Expressions.PropertyOrFieldNode.Set()/.Get()
[SPRNET-727] - MethodMatchTransactionAttributeSource does not correctly return transaction attributes on candidate target object if method registered using MethodInfo object is based on an interface
[SPRNET-728] - Add missing ExecuteFind<T> method on IHibernateOperations interface
[SPRNET-731] - OSIV configuration doesn't work as described in reference docs
[SPRNET-733] - PropertyOverrideConfigurer on abstract object definition does not work
[SPRNET-734] - Northwind FulfillmentServiceTests are broken
[SPRNET-739] - fix NHibernate12 solution + nant build script
[SPRNET-746] - StoredProcedure class doesn't return sproc return value in result dictionary
[SPRNET-749] - AdoTempate's QueryCallback did not property extract return or output values from stored procedure.
[SPRNET-750] - Add the property UseParameterPrefixInSql to IDbMetadata
Improvement
[SPRNET-301] - Add IInstantiationAwareObjectPostProcessor functionality
[SPRNET-399] - Simplify custom config parser registration
[SPRNET-454] - PropertyPlaceholderConfigurer should be able to modify the values within expression elements
[SPRNET-485] - Add logging of transaction definition name and description when creating new transaction.
[SPRNET-486] - Provide better logging information in TransactionSynchronizationManager to identify ConnectionHolder, DbProvider and thread name
[SPRNET-679] - ResourceManagerConverter should throw a sensible exception in case of missing App_GlobalResources
[SPRNET-683] - Change type of "TimeToLive" parameter in ICache.Insert from int to TimeSpan
[SPRNET-697] - Refactor SessionScope initialization strategy
[SPRNET-705] - Page.SharedState must be discarded by PageHandler after .aspx recompile
[SPRNET-712] - Change ICache interface to be the least common denominator of potential cache implementations
[SPRNET-717] - Add default transaction timeout property on AbstractPlatformTransactionManager
[SPRNET-718] - Make node classes in SpEL public to allow for node traveral.
[SPRNET-720] - Change ObjectNameAutoProxyCreator default behavior to proxy the product of a IFactoryObject and not the IFactoryObject itself
[SPRNET-729] - Improve API documentation in NHibernate12 project using comment-checker program
[SPRNET-730] - Make current AppDomain's config file the default for RemotingConfigurer if filename==null
[SPRNET-732] - CollectionValidator should allow validation of any IEnumerable type
[SPRNET-740] - SpEL doesn't accept unicode characters
[SPRNET-742] - Exception handling aspect supports using SpEL expression as filtering condition as alternative to use of exception name.
[SPRNET-745] - Improved PropertyOverrideConfigurer to support 'ref' and 'expression' values override
New Feature
[SPRNET-344] - Add the ability to bind to collections to data binding framework
[SPRNET-614] - Logging aspect based on Common.Logging
[SPRNET-693] - Add MultiDelegatingDbProvider to main distribution to support easy access to multiple databases selected at runtime.
[SPRNET-748] - Retry Advice
Task
[SPRNET-495] - Add information on how to configure Spring under IIS7 to reference documentation
[SPRNET-544] - Update to use Common.Logging 1.2
[SPRNET-736] - Remove NHibernate integrations from CVS Integration module
[SPRNET-738] - Document configuring aop Namespace parser
[SPRNET-747] - Add description of how to do assembly redirects for database assemblies.
Release 1.1 RC1, August 10, 2007
Summary: Feature and bug fix release
Bug
[SPRNET-452] - Improve application context configuration error handling
[SPRNET-475] - ContextRegistry.GetContext() should print a detailed error
[SPRNET-583] - WebApplicationContext.Refresh() should be thread-safe
[SPRNET-607] - TypeAliasConfigurer does not work
[SPRNET-641] - MessageSource related code does not consistently use CultureInfo.CurrentUICulture as default
[SPRNET-642] - ObjectFactory must not call 'ObjectType' or 'GetObject()' of an IFactoryObject before calling IInitializingObject.AfterPropertiesSet()
[SPRNET-643] - ApplicationContextAwareProcessor and ObjectPostProcessorChecker may be registered twice on AbstractApplicationContext.Refresh()
[SPRNET-649] - AbstractLocalizer should by default use Thread.CurrentUICulturer instead of CurrentCulture
[SPRNET-650] - Introductions with AutoProxy
[SPRNET-655] - Proxy a Proxy where class explicitly implements interfaces with same method names and signatures
[SPRNET-658] - Npgsql-1.0 provider has incorrect configuration for parameter name prefix
[SPRNET-662] - DynamicMethod will call target method twice is target throws InvalidCastException
[SPRNET-666] - Change Log4NetFactoryObject to LogFactoryObject in documentation for IFactoryObject implementations (4.3.6)
[SPRNET-671] - Possible Null reference in HibernateAccessor.PrepareQuery
[SPRNET-675] - SpEL does not allow access to private/protected indexer
[SPRNET-677] - ReflectionUtils.GetMethodByArgumentValues() does not choose an exact overload match if available
Improvement
[SPRNET-443] - Add support for SqlLite in DbProviders.xml
[SPRNET-461] - Support accessing WebApplicationContext from asynchronous worker threads
[SPRNET-469] - Add Generics support in Spring.Data.Object.* classes (e.g. support IRowMapper<T>)
[SPRNET-478] - Enhance the use of multiple object definition parsers
[SPRNET-481] - DelegateFactoryObject/MethodInvokingFactoryObject does not support generic methods
[SPRNET-490] - Make Model persistence customizable in Spring.Web.UI.Page
[SPRNET-565] - TxScopePlatformTransaction manager to support EnterpriseServicesInteropOption
[SPRNET-578] - Additional documentation for IVariableSource
[SPRNET-585] - Change spring-database.xsd to use 'provider' instead of 'dbprovider' element since it looks redundant in usage, i.e <db:dbProvider> instead of <db:provider>
[SPRNET-603] - Ignore missing local resources for asp.net 2.0 pages and user controls
[SPRNET-635] - Refactor implementation regarding finding correct overloaded factory-method
[SPRNET-644] - Make IConfigurableFactoryObject members of WebServiceProxyFactory virtual
[SPRNET-648] - Make ResourceSetLocalizer ignore missing invariant resourceset
[SPRNET-651] - In Spring.Caching.AspNetCache/Spring.Web replace usages of HttpContext.Current.Cache with HttpRuntime.Cache
[SPRNET-654] - Expose method ConfigureObject( name, target, objectDefinition ) on IListableObjectFactory and all implementations
[SPRNET-660] - Make configurable the choice of reflection library used in AOP proxies.
[SPRNET-661] - Rename CheckBoxListControl -> CheckBoxList and make it a first class citizen for DataBinding
[SPRNET-663] - Change signature of IVariableSource to string ResolveVariable(string name) instead of object return value to provide consistent contract with container property replacement..
[SPRNET-665] - Enable RegistryVariableSource to deal with REG_MULTI_SZ and REG_DWORD values
[SPRNET-668] - Throw InvalidDataAccessApiUsageException if calling Execute<T>(ICommandCallback<T> action) with a provider whose IDbCommand implementation does not inherit from System.Data.Common.DbCommand.
[SPRNET-669] - Provide IDbProvider to IDbCommandCreator callback to simplify implementations that want to create parameters in provider neutral manner.
[SPRNET-673] - Rename XmlParserRegistry/IXmlObjectDefinitionParser to NamespaceParserRegistry/INamespaceParser for greater naming consistency.
[SPRNET-674] - Renaming/Moving of namespace parsers into Config subnamespace, renaming of *.xsd files to *-1.1.xsd for greater naming consistency
[SPRNET-681] - Add support for DB2 iSeries dbprovider.
New Feature
[SPRNET-549] - Support for setting of TableAdapters transaction property for using typed data sets within a Spring demarcated transactional boundary
[SPRNET-556] - Add support for <httpModule> DI
[SPRNET-557] - Add DI support asp.net 2.0 intrinsic providers (membership,role,profile,sitemap)
[SPRNET-560] - Add custom HtmlForm tag to overcome "action"-Attribute rendering troubles
[SPRNET-599] - Create SessionScope based on top of current OSIV functionality
[SPRNET-647] - Add TabularMultiView control
[SPRNET-676] - Exception handling aspect for simple declarative configuration of common exception handling strategies.
Task
[SPRNET-434] - Document ResourceHandlersSectionHandler to register custom IResource implementations
[SPRNET-439] - Refactor TransactionAspectSupport to use LogicalThreadContext for storage of TransactionInfo
[SPRNET-612] - Transaction quick start example to use tx schema and declarative exception handling advice.
[SPRNET-638] - Additional documentation regarding how NHibernateSessions are managed by both HibernateTransactionManager and OSIV
[SPRNET-646] - Document use of Client Certificates in WebServiceProxyFactory
*****************************************************************************************
Release 1.1 Milestone 2, July 11, 2007
Summary: Primarily a bug fix release