Skip to content

Commit

Permalink
release 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanstegall committed Jan 31, 2019
1 parent c283773 commit 15ff897
Show file tree
Hide file tree
Showing 7 changed files with 1,364 additions and 2,681 deletions.
6 changes: 3 additions & 3 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Changelog
=========

* 1.x.x (2019-)
* New: improve handling of custom meta fields that are required by Salesforce. This plugin would fail to create objects if required fields were missing when a record was created. It should handle these situations much better.
* New: update to version 2.2.0 of the ActionScheduler library.
* 1.7.0 (2019-01-31)
* New: improve handling of custom meta fields that are required by Salesforce. This plugin would fail to create objects if required fields were missing when a record was created. It should handle these situations much better.
* New: update to version 2.2.0 of the ActionScheduler library.
* 1.6.0 (2019-01-15)
* New: we have added some basic REST API endpoints to the plugin. They can be used to check for updated/deleted records in Salesforce, pull a specific record from Salesforce by ID, or push a specific record from WordPress by Id and type.
* Bug fix: pull queries were sometimes skipping records that should have been processed, especially when some records in the group were not allowed by the fieldmap.
Expand Down
5 changes: 4 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
Changelog
=========

* 1.6.0 (2018-01-15)
* 1.7.0 (2019-01-31)
* New: improve handling of custom meta fields that are required by Salesforce. This plugin would fail to create objects if required fields were missing when a record was created. It should handle these situations much better.
* New: update to version 2.2.0 of the ActionScheduler library.
* 1.6.0 (2019-01-15)
* New: we have added some basic REST API endpoints to the plugin. They can be used to check for updated/deleted records in Salesforce, pull a specific record from Salesforce by ID, or push a specific record from WordPress by Id and type.
* Bug fix: pull queries were sometimes skipping records that should have been processed, especially when some records in the group were not allowed by the fieldmap.
* Bug fix: as of 1.5.0, Salesforce records were not being deleted when a corresponding WordPress record was deleted. This release restorese that functionality.
Expand Down
2,415 changes: 218 additions & 2,197 deletions languages/object-sync-for-salesforce.pot

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions object-sync-for-salesforce.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/*
Plugin Name: Object Sync for Salesforce
Description: Object Sync for Salesforce maps and syncs data between Salesforce objects and WordPress objects.
Version: 1.6.0
Version: 1.7.0
Author: MinnPost
Author URI: https://code.minnpost.com
License: GPL2+
Expand Down Expand Up @@ -130,7 +130,7 @@ protected function __construct() {
global $wpdb;

$this->wpdb = $wpdb;
$this->version = '1.6.0';
$this->version = '1.7.0';
$this->slug = 'object-sync-for-salesforce';
$this->option_prefix = 'object_sync_for_salesforce_';
$this->login_credentials = $this->get_login_credentials();
Expand Down
Loading

0 comments on commit 15ff897

Please sign in to comment.