castle.dynamicproxy2 2.1.0.0 → 2.2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/docs/ASL - Apache Software Foundation License.txt +57 -0
- data/docs/Committers.txt +80 -0
- data/docs/ReleaseNotes/Changes.txt +234 -0
- data/lib/net-20/Castle.DynamicProxy2.dll +0 -0
- data/lib/{net-3.5 → net-20}/Castle.DynamicProxy2.xml +391 -169
- data/lib/net-35/Castle.DynamicProxy2.dll +0 -0
- data/lib/{net-2.0 → net-35}/Castle.DynamicProxy2.xml +391 -169
- data/lib/sl-30/Castle.DynamicProxy2.dll +0 -0
- data/lib/sl-30/Castle.DynamicProxy2.xml +1348 -0
- metadata +15 -12
- data/docs/Core Changes.txt +0 -85
- data/docs/DynamicProxy Changes.txt +0 -163
- data/lib/net-2.0/Castle.DynamicProxy2.dll +0 -0
- data/lib/net-3.5/Castle.DynamicProxy2.dll +0 -0
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: castle.dynamicproxy2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 127
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 2
|
8
|
-
-
|
8
|
+
- 2
|
9
9
|
- 0
|
10
10
|
- 0
|
11
|
-
version: 2.
|
11
|
+
version: 2.2.0.0
|
12
12
|
platform: ruby
|
13
13
|
authors:
|
14
14
|
- Jonathon Rossi
|
@@ -28,13 +28,13 @@ dependencies:
|
|
28
28
|
requirements:
|
29
29
|
- - "="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
hash:
|
31
|
+
hash: 79
|
32
32
|
segments:
|
33
33
|
- 1
|
34
|
-
-
|
34
|
+
- 2
|
35
35
|
- 0
|
36
36
|
- 0
|
37
|
-
version: 1.
|
37
|
+
version: 1.2.0.0
|
38
38
|
type: :runtime
|
39
39
|
version_requirements: *id001
|
40
40
|
description: |
|
@@ -48,12 +48,15 @@ extensions: []
|
|
48
48
|
extra_rdoc_files: []
|
49
49
|
|
50
50
|
files:
|
51
|
-
- lib/net-
|
52
|
-
- lib/net-
|
53
|
-
- lib/net-
|
54
|
-
- lib/net-
|
55
|
-
-
|
56
|
-
-
|
51
|
+
- lib/net-20/Castle.DynamicProxy2.dll
|
52
|
+
- lib/net-20/Castle.DynamicProxy2.xml
|
53
|
+
- lib/net-35/Castle.DynamicProxy2.dll
|
54
|
+
- lib/net-35/Castle.DynamicProxy2.xml
|
55
|
+
- lib/sl-30/Castle.DynamicProxy2.dll
|
56
|
+
- lib/sl-30/Castle.DynamicProxy2.xml
|
57
|
+
- docs/ASL - Apache Software Foundation License.txt
|
58
|
+
- docs/Committers.txt
|
59
|
+
- docs/ReleaseNotes/Changes.txt
|
57
60
|
has_rdoc: true
|
58
61
|
homepage: http://castleproject.org
|
59
62
|
licenses: []
|
data/docs/Core Changes.txt
DELETED
@@ -1,85 +0,0 @@
|
|
1
|
-
1.1.0 (2009-05-04)
|
2
|
-
==================
|
3
|
-
|
4
|
-
- Applied Eric Hauser's patch fixing CORE-ISSUE-22
|
5
|
-
"Support for environment variables in resource URI"
|
6
|
-
|
7
|
-
- Applied Gauthier Segay's patch fixing CORE-ISSUE-20
|
8
|
-
"Castle.Core.Tests won't build via nant because it use TraceContext without referencing System.Web.dll"
|
9
|
-
|
10
|
-
- Added simple interface to ComponentModel to make optional properties required.
|
11
|
-
|
12
|
-
- Applied Mark's -- <mwatts42@gmail.com> -- patch that changes
|
13
|
-
the Core to support being compiled for Silverlight 2
|
14
|
-
|
15
|
-
- Applied Louis DeJardin's patch adding TraceLogger as a new logger implementation
|
16
|
-
|
17
|
-
- Applied Chris Bilson's patch fixing CORE-15
|
18
|
-
"WebLogger Throws When Logging Outside of an HttpContext"
|
19
|
-
|
20
|
-
Release Candidate 3
|
21
|
-
===================
|
22
|
-
|
23
|
-
- Added IServiceProviderEx which extends IServiceProvider
|
24
|
-
|
25
|
-
- Added Pair<T,S> class.
|
26
|
-
|
27
|
-
- Applied Bill Pierce's patch fixing CORE-9
|
28
|
-
"Allow CastleComponent Attribute to Specify Lifestyle in Constructor"
|
29
|
-
|
30
|
-
- Added UseSingleInterfaceProxy to CompomentModel to control the proxying
|
31
|
-
behavior while maintaining backward compatibility.
|
32
|
-
Added the corresponding ComponentProxyBehaviorAttribute.
|
33
|
-
|
34
|
-
- Made NullLogger and IExtnededLogger
|
35
|
-
|
36
|
-
- Enabled a new format on ILogger interface, with 6 overloads for each method:
|
37
|
-
Debug(string)
|
38
|
-
Debug(string, Exception)
|
39
|
-
Debug(string, params object[])
|
40
|
-
DebugFormat(string, params object[])
|
41
|
-
DebugFormat(Exception, string, params object[])
|
42
|
-
DebugFormat(IFormatProvider, string, params object[])
|
43
|
-
DebugFormat(IFormatProvider, Exception, string, params object[])
|
44
|
-
|
45
|
-
The "FatalError" overloads where marked as [Obsolete], replaced by "Fatal" and "FatalFormat".
|
46
|
-
|
47
|
-
0.0.1.0
|
48
|
-
=======
|
49
|
-
|
50
|
-
- Included IProxyTargetAccessor
|
51
|
-
|
52
|
-
- Removed IMethodInterceptor and IMethodInvocation, that have been replaced
|
53
|
-
by IInterceptor and IInvocation
|
54
|
-
|
55
|
-
- Added FindByPropertyInfo to PropertySetCollection
|
56
|
-
|
57
|
-
- Made the DependencyModel.IsOptional property writable
|
58
|
-
|
59
|
-
- Applied Curtis Schlak's patch fixing IOC-27
|
60
|
-
"assembly resource format only works for resources where the assemblies name and default namespace are the same."
|
61
|
-
|
62
|
-
Quoting:
|
63
|
-
|
64
|
-
"I chose to preserve backwards compatibility by implementing the code in the
|
65
|
-
reverse order as suggested by the reporter. Given the following URI for a resource:
|
66
|
-
|
67
|
-
assembly://my.cool.assembly/context/moo/file.xml
|
68
|
-
|
69
|
-
It will initially look for an embedded resource with the manifest name of
|
70
|
-
"my.cool.assembly.context.moo.file.xml" in the loaded assembly my.cool.assembly.dll.
|
71
|
-
If it does not find it, then it looks for the embedded resource with the manifest name
|
72
|
-
of "context.moo.file.xml".
|
73
|
-
|
74
|
-
- IServiceEnabledComponent Introduced to be used across the project as
|
75
|
-
a standard way to have access to common services, for example, logger factories
|
76
|
-
|
77
|
-
- Added missing log factories
|
78
|
-
|
79
|
-
- Refactor StreamLogger and DiagnosticLogger to be more consistent behavior-wise
|
80
|
-
|
81
|
-
- Refactored WebLogger to extend LevelFilteredLogger (removed duplication)
|
82
|
-
|
83
|
-
- Refactored LoggerLevel order
|
84
|
-
|
85
|
-
- Project started
|
@@ -1,163 +0,0 @@
|
|
1
|
-
Unreleased Changes
|
2
|
-
==================
|
3
|
-
- N/A
|
4
|
-
|
5
|
-
2.1.0 (2009-05-04)
|
6
|
-
==================
|
7
|
-
- Fixed DYNPROXY-87: "Mixin takes precedence over target object"
|
8
|
-
changed DP to throw exceptions when two mixins implement the same interface or a mixin implements the same interface as its target class/object
|
9
|
-
|
10
|
-
- Applied Krzysztof Kozmic's patch improving the XML documentation of IInterceptorSelector
|
11
|
-
and IProxyGenerationHook.
|
12
|
-
|
13
|
-
2.1.0 RC1 (2009-03-10)
|
14
|
-
======================
|
15
|
-
- Applied Krzysztof Kozmic's patch improving the XML documentation and parameter names of IProxyBuilder, DefaultProxyBuilder and ProxyGenerator.
|
16
|
-
|
17
|
-
- Applied Krzysztof Kozmic's patch heavily improving the XML documentation of ProxyGenerator.
|
18
|
-
|
19
|
-
- Fixed DYNPROXY-ISSUE-84: "UseSingleInterfaceProxy on ProxyGenerationOptions is never used and should be removed"
|
20
|
-
|
21
|
-
- Fixed DYNPROXY-ISSUE-58/DYNPROXY-ISSUE-77: "Inherited interface seems not to work"
|
22
|
-
using Dimitri Goethals' test case and Ayende Rahien/Andrey Shchekin's patch.
|
23
|
-
|
24
|
-
- Fixed DYNPROXY-ISSUE-52: "DynamicProxy 1.1.5 doesn't work on Medium Trust"
|
25
|
-
uses the assembly's fullname instead of calling GetName()
|
26
|
-
|
27
|
-
- Fixed DYNPROXY-ISSUE-82: "Not allow generics & NoGeneric methods with same signature"
|
28
|
-
using Fabio Maulo's test case and Krzysztof Kozmic patch.
|
29
|
-
|
30
|
-
- Applied Neil Bourgeois's patch fixing DYNPROXY-ISSUE-78
|
31
|
-
"Custom attributes of virtual properties absent on proxy"
|
32
|
-
|
33
|
-
- Applied Craig Vermeer's patch fixing an issue with generating default constructors for DYNPROXY-ISSUE-81
|
34
|
-
"No Default Constructor in generated Class Proxy"
|
35
|
-
|
36
|
-
- Added support for IInterceptorSelector (patch provided by Krzysztof Kozmic).
|
37
|
-
- Removed ProxyGenerationOptions.UseSelector.
|
38
|
-
|
39
|
-
- Added support for generic methods when specifying additional interfaces to CreateInterfaceProxyWithoutTarget (reported by Craig Neuwirth, cause
|
40
|
-
found by Krzysztof Kozmic)
|
41
|
-
|
42
|
-
- Added support for provide additional interfaces for target interface proxies.
|
43
|
-
|
44
|
-
- Added workarounds for dictionary deserialization scenarios (reported by Gr�gory C�let)
|
45
|
-
|
46
|
-
- Fixed mixin-related bug with serialization (per Rogelio again)
|
47
|
-
- Made interface proxies without target and with target interface support mixins
|
48
|
-
|
49
|
-
- Fixed ProxyGenerationOptions equality issues with ordering and different instances of the same mixin types (thanks for finding
|
50
|
-
the bug, Rogelio)
|
51
|
-
|
52
|
-
- Readded mixin support (via Rogelio J. Baucells)
|
53
|
-
|
54
|
-
- ClassEmitter now supports emitting fields with specific attributes
|
55
|
-
|
56
|
-
- Added a load API to ModuleScope
|
57
|
-
- SaveAssembly now serializes the cache keys together with the generated types
|
58
|
-
|
59
|
-
- Fixed test issue - PEVerify is now called with a quoted assembly path (to allow for spaces in the path)
|
60
|
-
- Fixed test annoyance - PEVerify is now not called in a separate window
|
61
|
-
- Changed PersistentProxyBuilder behavior - SaveAssembly is not called by the class generators any more, instead PersistentProxyBuilder.SaveAssemblies
|
62
|
-
must be used. This allows the proxy builder to save multiple proxies at the same time. Test cases have been adapted.
|
63
|
-
|
64
|
-
- Fixed issues with CacheKey.Equals and ProxyGenerationOptions.Equals/GetHashCode
|
65
|
-
- Added a way to set and retrieve the ModuleScope used by ProxyObjectReference for proxy deserialization; proxies can now be deserialized with
|
66
|
-
the same ModuleScope used by the application (DYNPROXY-71)
|
67
|
-
|
68
|
-
- Made BasePEVerifyTestCase only check those assemblies that were actually generated in the test case, see DYNPROXY-68
|
69
|
-
- Fixed bug with protected internal constructors, see DYNPROXY-66/DYNPROXY-67
|
70
|
-
- Fixed test cases not using the ProxyGenerator supplied by BasePEVerifyTestCase, see DYNPROXY-69
|
71
|
-
|
72
|
-
- Added StrongNameUtil, which provides methods for checking whether an assembly is signed/a type comes from a signed assembly
|
73
|
-
- Added an additional constructor overload to ClassEmitter, allowing to force it to use an unsigned assembly
|
74
|
-
|
75
|
-
- Fixed a bug in ModuleScope: SaveAssembly tried to delete from the current directory if a file with a matching name existed, not from the target
|
76
|
-
directory
|
77
|
-
|
78
|
-
- Applied Pawel Pabich's suggestion fixing DYNPROXY-65
|
79
|
-
"OpCodeUtil.GetUnderlyingTypeOfEnum doesn't handle unsigned integers"
|
80
|
-
|
81
|
-
- Fixed bug in ArgumentReference occurring when emitting static methods
|
82
|
-
|
83
|
-
- Removed ClsCompliant(false) from all the public types in DynamicProxy
|
84
|
-
|
85
|
-
- Added constructors to ClassEmitter, removed "serializable" ctor parameter, it wasn't used
|
86
|
-
|
87
|
-
- Fixed bug in ModuleScope, see DYNPROXY-64
|
88
|
-
|
89
|
-
- Fixed bug in LoadArrayElementExpression, see DYNPROXY-57
|
90
|
-
|
91
|
-
- Changed signing behavior for generated assembly, assembly is now only signed if all involved types (base type, interfaces) are also signed
|
92
|
-
|
93
|
-
- Documented ModuleScope, added friendlier API for saving assemblies, added tests for ModuleScope, see DYNPROXY-55
|
94
|
-
|
95
|
-
- Applied Adam Tybor's patch fixing DYNPROXY-63
|
96
|
-
"ProxyType not included in CacheKey"
|
97
|
-
|
98
|
-
- Reimplemented serialization of ProxyGenerationOptions, see revision 3803, DYNPROXY-59
|
99
|
-
|
100
|
-
- Added method signature filtering to MethodFinder (see MethodSignatureComparer) because there were
|
101
|
-
still cases triggering duplicate methods
|
102
|
-
|
103
|
-
- Reimplemented serialization without default constructors, see revision 3725, DYNPROXY-53
|
104
|
-
- Reimplemented serialization with delegates/events, see revision 3751, DYNPROXY-56
|
105
|
-
|
106
|
-
- Renamed InterfaceProxyGeneratorWithoutTarget to InterfaceProxyWithoutTargetGenerator
|
107
|
-
|
108
|
-
- Fixed DYNPROXY-62
|
109
|
-
"Some tests in MethodFinderTestCase failed because of culture specific exception messages"
|
110
|
-
|
111
|
-
- Implemented cache for System.Type.GetMethods() in order to avoid triggering the duplicate methods bug
|
112
|
-
|
113
|
-
- Applied Adam Tybor's patch fixing DYNPROXY-61
|
114
|
-
"Need GetInterceptors from IProxyTargetAccessor back for NHibernate Trunk"
|
115
|
-
|
116
|
-
- Disabled replication of internal constructors on class proxies.
|
117
|
-
|
118
|
-
- Moved the UseSingleInterfaceProxy from Core.ComponentModel to ProxyGeneratorOptions.
|
119
|
-
|
120
|
-
- Applied Lee Henson's patch fixing generic parameter definitions
|
121
|
-
|
122
|
-
- Applied Jacob Lewallen's patch that introduces ProxyInterfaceWithTargetInterface
|
123
|
-
Quoting
|
124
|
-
|
125
|
-
"I've introduced a new "mode" that is
|
126
|
-
ProxyInterfaceWithTargetInterface, that uses the given interface as
|
127
|
-
the target type, rather than the type of the target (it asserts the
|
128
|
-
target implements the interface) All other modes should remain the
|
129
|
-
same.
|
130
|
-
|
131
|
-
"In this scenario, the IInvocation will also implement
|
132
|
-
IChangeProxyTarget, which can then be used to change the proxy target
|
133
|
-
to another implementation of the target interface."
|
134
|
-
|
135
|
-
- Added support for events
|
136
|
-
|
137
|
-
- Fixed DYNPROXY-43
|
138
|
-
"DP2 : Missing ParameterInfo 'Name' for Proxied methods"
|
139
|
-
|
140
|
-
- Fixed DYNPROXY-41
|
141
|
-
"Invalid state exception on DP2"
|
142
|
-
|
143
|
-
- Fixed DYNPROXY-39
|
144
|
-
"Deadlock in DynamicProxy2"
|
145
|
-
|
146
|
-
- Fixed DYNPROXY-28
|
147
|
-
"Virtual methods calls from constructors are not working"
|
148
|
-
|
149
|
-
- Fixed DYNPROXY-27
|
150
|
-
"Support for non-parameterless constructors"
|
151
|
-
|
152
|
-
- Fixed DYNPROXY-25
|
153
|
-
"Chars returns are not properly configured"
|
154
|
-
|
155
|
-
- Fixed DYNPROXY-24
|
156
|
-
"DynamicProxy2: missing locks"
|
157
|
-
|
158
|
-
- Fixed DYNPROXY-34
|
159
|
-
"Cant proxy generic interfaces"
|
160
|
-
|
161
|
-
Alpha Version 1.0.0.0
|
162
|
-
=====================
|
163
|
-
- First release
|
Binary file
|
Binary file
|