Skip to content

Releases: diegolamanno/gatsby-source-greenhouse

[MAJOR] Changes to greenhouse API

24 Jun 22:08
Compare
Choose a tag to compare

Summary

This release brings the plugin up to date to the greenhouse API. Now allowing you to query for multiple job posts per job.

Check #13 for more details.

[MINOR] Docs

24 Jun 21:26
e1d1e6c
Compare
Choose a tag to compare

Updates to README for Greenhouse API permission changes

[hot fix] Change to dependencies

03 Oct 13:46
Compare
Choose a tag to compare

Summary

Fixed a dependency that was placed incorrectly in devDependencies instead.

[hot fix] Changes to gitignore

26 Sep 14:21
Compare
Choose a tag to compare

Summary

Small changes made to .gitignore file to fix a bug introduced with #5 that was not allowing any other .js file to be committed to the repo.

Support for Departments + new Jobs API

13 Sep 20:50
Compare
Choose a tag to compare

Summary

  • Support to pull Departments from Greenhouse
  • Changes the allGreenhouseJob API to allGreenhouseJobPost to maintain a relationship with Greenhouse's API naming convention.
  • New plugin option: now you can select directly from the jobPosts options to pull only live posts or all posts

[New] Departments

Ability to query departments

{
  allGreenhouseDepartment {
    edges {
      node {
        name
        childrenGreenhouseJobPost {
          ...
        }
      }
    }
  }
}

[Breaking Changes] Jobs

Previously used as on v1.1.0 :

{
    allGreenhouseJob {
       ...
    }
}

Changed to on v2.0.0:

{
    allGreenhouseJobPost {
       ...
    }
}

[New] Plugins options

Ability to turn off default behavior of pulling live posts only.

{
      resolve: `gatsby-source-greenhouse`,
      options: {
        apiToken: `{API_TOKEN}`,
        jobPosts: {
          live: true
      }
},

Version 1.1.0

06 Nov 22:08
Compare
Choose a tag to compare
  • Accepts queryParams to pass multiple options to greenhouse API request