diff --git a/CHANGELOG.md b/CHANGELOG.md index d17d6c57..72b64325 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,12 @@ All notable changes to this project will be documented in this file. This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a CHANGELOG](https://keepachangelog.com/). -## [2.3.6] +## [2.3.8] + +### Fixed +- Workable integration jobs fetch optimizations. + +## [2.3.7] ### Added - Workable, domain data from source and medium. @@ -208,6 +213,8 @@ This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a - Initial production release. +[2.3.8]: https://github.com/infinum/eightshift-forms/compare/2.3.7...2.3.8 +[2.3.7]: https://github.com/infinum/eightshift-forms/compare/2.3.6...2.3.7 [2.3.6]: https://github.com/infinum/eightshift-forms/compare/2.3.5...2.3.6 [2.3.5]: https://github.com/infinum/eightshift-forms/compare/2.3.4...2.3.5 [2.3.4]: https://github.com/infinum/eightshift-forms/compare/2.3.3...2.3.4 diff --git a/eightshift-forms.php b/eightshift-forms.php index 59fb6bb3..3a92dad9 100644 --- a/eightshift-forms.php +++ b/eightshift-forms.php @@ -6,7 +6,7 @@ * Description: Eightshift form builder plugin. * Author: Team Eightshift * Author URI: https://eightshift.com/ - * Version: 2.3.7 + * Version: 2.3.8 * Text Domain: eightshift-forms * * @package EightshiftForms diff --git a/package.json b/package.json index c4816c2e..6c4127a2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eightshift/eightshift-forms", - "version": "2.3.5", + "version": "2.3.8", "description": "This repository contains all the tools you need to start building a modern WordPress project.", "authors": [ { diff --git a/src/Integrations/Workable/WorkableClient.php b/src/Integrations/Workable/WorkableClient.php index dfad4801..93d2faf6 100644 --- a/src/Integrations/Workable/WorkableClient.php +++ b/src/Integrations/Workable/WorkableClient.php @@ -208,7 +208,7 @@ private function getErrorMsg(array $body): string */ private function getWorkableJobs() { - $url = "{$this->getBaseUrl()}jobs?limit=100"; + $url = "{$this->getBaseUrl()}jobs?limit=100&state=closed,published"; $response = \wp_remote_get( $url,