commits

date

comment

1a5235191800
by Hendy
(1 download)
Fri
8:50 PM
4.8.0 tip

migrated in the RelationTypes package - converting it's namespace to umbraco.cms.presentation.Trees.RelationTypes

cdfd8a7c86a9
by Hendy
(0 downloads)
Fri
7:36 PM

added local web.config transform

d5a090790681
by Shandem
(1 download)
Fri
8:42 PM
5.2

Updated umbraco nuspec to be dependent on Lucene.Net nuget

6112ef1bab1a
by Shandem
(0 downloads)
Fri
8:34 PM

Merge with 5.0.0-MNTP-wip

a1fdb97f97dc
by Shandem
(0 downloads)
Fri
8:24 PM
5.0.0-MNTP-wip

Updated Umbraco nuspec to ensure Umbraco.Lucene is included

003278596fcc
by Shandem
(0 downloads)
Fri
8:04 PM

Adds nuspec files to sln, modifies Framework nuspec to include ServiceStack references
Removes old examine.config from solution so hopefully it doesn't get shipped still.

fccfba0dd3d6
by boxbinary
(0 downloads)
Fri
4:08 PM
5.2

Resolves a saving issue and adds a (failing) test for updating a member

868c96ae7a35
by boxbinary
(0 downloads)
Fri
3:20 PM

Fixes a FK violation error when fully deleting entities (e.g. Member deletion)
Provider installation cache was 2 mins; changed to forever (cache is cleared on app recycle anyway)

8c7456616772
by boxbinary
(1 download)
Fri
2:26 PM

Changes log4net config to ensure every single cache hit / put is not logged for the disk cache provider

613cfa9897d5
by boxbinary
(0 downloads)
Thu
10:17 PM

Adds sgen'ed dll for dramatically speeding up NHibernate deserialization on app startup

1d0a2aeb9d8a
by boxbinary
(0 downloads)
Thu
9:36 PM

Adds a thread-safe ConcurrentHashedCollection, a thread-safe wrapper for HashSet<T> which is faster than ConcurrentBag<T> (which isn't a set anyway)
This solves a thread-safety issue in the disk-cache provider which was using a HashSet internally for faster lookups - thanks David Lighty for reporting #U5-961

7c0e4c6919d2
by boxbinary
(0 downloads)
Thu
9:28 PM

Resolves some regressed tests regarding gate-checking of a property editor id in ApplyDynamicFieldExtensions
(PropertyEditorId is actually optional, if not supplied to the DynamicFieldExtension attribute, then it's not filtered to just certain property editors)

c0dc338d1a9f
by boxbinary
(0 downloads)
Thu
9:12 PM

Merge with 5.0.0-MNTP-wip

36711ceff916
by boxbinary
(0 downloads)
Thu
9:06 PM
5.0.0-MNTP-wip

Resolves an issue from the changes to Bend where the new dynamic extension method CurrentPage.Image.Url(size) didn't work due to Image returning the string Id rather than a bendy object as it had done previously.
The previous check to establish whether a child BendyObject should be added relied on checking the attribute's default value for null, however the upload property editor saves both "MediaId" and "Value" - therefore providing a match for GetDefaultValue(). Changed the check so that a subbendy is created if the attribute's values.Count > 1 or default value is null.

8126cff6576a
by boxbinary
(0 downloads)
Thu
8:57 PM

Reverts port back to 4450

79c12be4869c
by boxbinary
(0 downloads)
Thu
8:40 PM

Merge with 5.2

db85f50c0fe3
by boxbinary
(0 downloads)
Thu
8:38 PM
5.2

Merge with 5.2-perfspike-wip

d8b7944fe256
by boxbinary
(0 downloads)
Thu
8:37 PM

Removes regions from pullreq file

123057416f01
by boxbinary
(0 downloads)
Thu
8:35 PM

Merging accepting pull req (thanks Andrew!)

3c31ef8e3366
by boxbinary
(0 downloads)
Thu
8:33 PM

Case collisions

c7f87215f4ad
by boxbinary
(0 downloads)
Thu
8:31 PM
5.2-perfspike-wip

Merge with 5.2

c6186bcaa515
by asayre
(0 downloads)
May 15
8:18 PM
5.2

Attempts to fix U5-673 and cache-by-page.
Traces macro compilation and render times.

fd39571b62ce
by boxbinary
(0 downloads)
Thu
1:23 PM
5.2-perfspike-wip

Changes schema / group Rdbms model inheritance so that they refer to Node rather than "inheriting" from Node, which avoids NH's joins from every polymorphic query for a schema or a group
Adds batch sizes to various mappings to allow NH to load multiple collections in a batch rather than n+1
Reduces number of select n+1 queries caused after obtaining entities, when mapping associated items like schema, group, attribute definition

fed6ffc600a6
by boxbinary
(5 downloads)
Thu
1:34 PM
5.2-packagebuilder-wip

Merge

94769247cabd
by boxbinary
(0 downloads)
Thu
1:34 PM

Resolves an issue with relation caches not being updated by the IO provider. Since the IO provider is not (currently) transactional it uses a NullProviderTransaction, and the cache flushing was only happening if providerTransaction.IsTransactional was true.
Additionally, since regular relation caches get flushed as a result of a call to AddRelation, and this clearly doesn't need to happen on the filesystem, it now ensures NotifyRelationCache is called from PerformAddOrUpdate in this provider