Releases: diegolamanno/gatsby-source-greenhouse
Releases · diegolamanno/gatsby-source-greenhouse
[MAJOR] Changes to greenhouse API
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
Updates to README for Greenhouse API permission changes
[hot fix] Change to dependencies
Summary
Fixed a dependency that was placed incorrectly in devDependencies
instead.
[hot fix] Changes to gitignore
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
Summary
- Support to pull Departments from Greenhouse
- Changes the
allGreenhouseJob
API toallGreenhouseJobPost
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
- Accepts queryParams to pass multiple options to greenhouse API request