Releases: watzon/salesforce-angular2-boilerplate
Releases · watzon/salesforce-angular2-boilerplate
A few small changes
Updated Angular 2 to release
0.6.2-alpha Updated Angular 2 to release
Gravatar directive
Added a gravatar directive
that you can use in leu of pulling in the Contact's PhotoUrl.
<img [gravatar]="contact.Email" />
Updated Angular to v2.0.0-rc.6
v0.6.0-alpha Updated Angular to version 2.0.0-rc.6 and fixed breaking changes. The…
Breaking config changes
config.yaml
has been replaced with config.js
. Javascript files that export an object have greater flexibility and don't require an external dependency. With that change several changes were also made to the gulp tasks
Minor bug fix
There was a bug where calling the SalesforceService.execute
method within ngOnInit
caused the method to be fired twice. This has been resolved.
Refactoring
- Removed https requirement from local server. Use http://localhost:8080 now
- Added components to
app.module.ts
declarations - Made changes to forked version of jsforce and updated
salesforce.service.ts
to reflect those changes.
Added SOQL builder
Added a SOQL builder to the Salesforce Service! Now building queries is as easy as
let s = new SOQL()
.select('Id', 'Name', 'Birthdate')
.from('Contact');
let query = s.soql;
Initial Release
v0.2.0-alpha Fixed some bugs