Skip to content

Releases: watzon/salesforce-angular2-boilerplate

A few small changes

29 Oct 03:33
Compare
Choose a tag to compare
A few small changes Pre-release
Pre-release
  • Updated README to describe directory structure
  • Removed unnecessary typings
  • Modified salesforce.service.ts and added self variable as reference to this
  • Merged pull requests #5 and #6

Updated Angular 2 to release

16 Sep 06:11
Compare
Choose a tag to compare
Pre-release
0.6.2-alpha

Updated Angular 2 to release

Gravatar directive

02 Sep 04:51
Compare
Choose a tag to compare
Gravatar directive Pre-release
Pre-release

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

02 Sep 03:05
Compare
Choose a tag to compare
Pre-release
v0.6.0-alpha

Updated Angular to version 2.0.0-rc.6 and fixed breaking changes. The…

Breaking config changes

01 Sep 18:55
Compare
Choose a tag to compare
Pre-release

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

30 Aug 22:52
Compare
Choose a tag to compare
Minor bug fix Pre-release
Pre-release

There was a bug where calling the SalesforceService.execute method within ngOnInit caused the method to be fired twice. This has been resolved.

Refactoring

30 Aug 22:14
Compare
Choose a tag to compare
Refactoring Pre-release
Pre-release
  • 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

27 Aug 00:30
Compare
Choose a tag to compare
Added SOQL builder Pre-release
Pre-release

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

26 Aug 21:48
Compare
Choose a tag to compare
Initial Release Pre-release
Pre-release
v0.2.0-alpha

Fixed some bugs