You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: support for nested fields and query functions
- Nested fields like "Owner.Id" will be now populated correctly
- Functions like SOQL "toLabel(field) field" will now be populated correctly
- Removed field type validations as they are not working with nested fields
- Update changelog
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,10 @@
1
+
## 3.3.0
2
+
- feat: Added `timeout` configuration to control RESTForce timeout settings (defaults to `60`)
3
+
- feat: Added support for reference fields (`parent__r.child`)
4
+
- feat: Added support for built-in SOQL functions (etc. `toLabel(field__c) field`)
5
+
- refactor: Removed field_type inferring (elastic can infer it / logstash mapping can be configured for special cases)
6
+
- fix: update Apache licence to suppress compiling warning
7
+
1
8
## 3.2.0
2
9
- Added `use_tooling_api` configuration to connect to the Salesforce Tooling API instead of the regular Rest API. [#26](https://github.com/logstash-plugins/logstash-input-salesforce/pull/26)
Copy file name to clipboardExpand all lines: logstash-input-salesforce.gemspec
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
Gem::Specification.newdo |s|
2
2
s.name='logstash-input-salesforce'
3
-
s.version='3.2.0'
3
+
s.version='3.3.0'
4
4
s.licenses=['Apache-2.0']
5
5
s.summary="Creates events based on a Salesforce SOQL query"
6
6
s.description="This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
0 commit comments