M6 - autowiring

So, I am now using M6 for one of my apps. and the autowiring has
stopped working.

I have this in my Coldbox.cfc

    //Model Integration
    models = {
      objectCaching = false,
      setterInjection = false,
      definitionFile = "config/ModelMappings.cfm"
    };

  interceptors = [
      //SES
      {class="coldbox.system.interceptors.SES",
       properties={}
      },
      //Autowire
      {class="coldbox.system.interceptors.Autowire",
       properties={enableSetterInjection=false,debugMode=true}
      }
    ];

and my ModelMappings.cfm has all the Models defined like this

addModelMapping(path="UserService"); etc

My handler looks like this

<cfcomponent name="main" extends="coldbox.system.eventhandler"
autowire="true">

  <cfproperty name="UserService" type="model" scope="instance" />

....
</cfcomponent>

but I dont see anything in the logs (no errors in autowiring) and the
autowiring doesnt happen at all....
What am I missing?

This was working perfectly fine in previous version I was using (I
think M3 or M2) ?

What am I missing ?

Syntax change. Use "inject" instead of type in your CFC properties.

that was it! I changed it and it worked. Thanks Aaron.

Thank you, Aaron! I was going nuts before I saw your message... never found
anything directly stating this change in the docs.

Thanks again,

Fernando S. Trevisan (Programador)
TRIBO INTERACTIVE
I fernando.trevisan@tribointeractive.com.br
f (11) 5506-4771

-----Mensagem original-----

You are correct. It is not yet in the documentation.