Skip to content

Commit

Permalink
Workable integration jobs fetch optimizations.
Browse files Browse the repository at this point in the history
  • Loading branch information
iruzevic committed Jun 21, 2023
1 parent 781abf5 commit 9600c78
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion eightshift-forms.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": [
{
Expand Down
2 changes: 1 addition & 1 deletion src/Integrations/Workable/WorkableClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 9600c78

Please sign in to comment.