Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

migrate greenhouse to config-based cdk #15344

Merged
merged 57 commits into from
Aug 12, 2022
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
44e9f35
greenhouse minus pagination
girarda Aug 5, 2022
60ab8c3
jobs
girarda Aug 5, 2022
ded284c
first substream
girarda Aug 5, 2022
9d9d2f6
Merge branch 'master' into alex/configbasedgreenhouse
girarda Aug 9, 2022
f604b76
rename field
girarda Aug 9, 2022
3d86dc8
applications_demographics_answers_stream
girarda Aug 10, 2022
233581b
interviews
girarda Aug 10, 2022
df5d5c2
All streams are implemented
girarda Aug 10, 2022
37b7990
fix check
girarda Aug 10, 2022
e768dce
fix spec
girarda Aug 10, 2022
12495f2
disable backward compatibility tests
girarda Aug 10, 2022
3cbf8f6
disable backward compatibility tests
girarda Aug 10, 2022
52112ab
unit tests
girarda Aug 10, 2022
ca1e20e
definitions
girarda Aug 10, 2022
6cd58f8
only use config.json
girarda Aug 10, 2022
4779738
Merge branch 'master' into alex/configbasedgreenhouse
girarda Aug 10, 2022
3a41750
bump version
girarda Aug 10, 2022
260ec89
expected records
girarda Aug 10, 2022
aada550
delete stream classes
girarda Aug 11, 2022
a1bb419
Handle extracting no records from root
girarda Aug 10, 2022
677f002
handle missing keys
girarda Aug 11, 2022
f049223
Remove unused field from JsonSchema (#15425)
girarda Aug 10, 2022
28d0c7a
:tada: Source File - add support for custom encoding (#15293)
midavadim Aug 10, 2022
a3ee499
change query frequency to 1hour (#15499)
xiaohansong Aug 10, 2022
0f780fd
[low-code connectors]: Assert there are no custom top-level fields (#…
girarda Aug 10, 2022
1692b0b
🐞 Postgres source: fix bug in intermediate state emission (#15496)
tuliren Aug 10, 2022
b8971c6
🪟 🔧 Add testing and storybook component for CatalogDiffModal (#15426)
teallarson Aug 10, 2022
563870c
:tada: New Source: Hubplanner (#15521)
marcosmarxm Aug 10, 2022
ebf8352
Make it possible to specify normalization pod resources. (#15495)
davinchia Aug 10, 2022
4f4a834
[low-code connectors] Extract datetime parser and handle %s format di…
girarda Aug 10, 2022
22a3be4
source-file-secure bump to 0.2.16 (#15528)
brianjlai Aug 11, 2022
e3f1166
unit test sendgrid messages stream (#15331)
girarda Aug 11, 2022
c5970d3
record extractor interface
girarda Aug 11, 2022
650ef56
dpath extractor
girarda Aug 11, 2022
7024ecc
docstring
girarda Aug 11, 2022
e1e4551
🎉 Source File: cache binary stream to file (#15501)
grubberr Aug 11, 2022
2151b77
Docs: update posthog.md (#15541)
juliatournant Aug 11, 2022
6ea5290
Source Stripe: implement slicing (#15292)
davydov-d Aug 11, 2022
2daad7b
fix: revert extraEnv delition in values.yaml for bootloader (#15548)
xpuska513 Aug 11, 2022
d78e9b7
SAT: backward compatibility - check that cursor fields were not chang…
alafanechere Aug 11, 2022
6155072
Replace twttr repo to the root build.gradle (#15544)
VitaliiMaltsev Aug 11, 2022
c048dbb
Generate separate server endpoints per domain (#15513)
jdpgrailsdev Aug 11, 2022
940bc8c
🐛 Backward compatibility test: Don't fail on updating additionalPrope…
girarda Aug 11, 2022
ee8df45
Source Recurly: adds `state_checkpoint_interval` to streams (#13685)
mohamagdy Aug 11, 2022
618bc3d
Merge branch 'master' into alex/configbasedgreenhouse
girarda Aug 11, 2022
e3053ba
merge
girarda Aug 11, 2022
b6204e8
reset
girarda Aug 11, 2022
347e6ad
use dpath
girarda Aug 11, 2022
362f5ee
Merge branch 'master' into alex/configbasedgreenhouse
girarda Aug 11, 2022
bb57372
enable backward compatibility test
girarda Aug 11, 2022
b4de8d6
infer types
girarda Aug 11, 2022
3dbf5ed
Revert "infer types"
girarda Aug 11, 2022
e07f54b
infer some of the types
girarda Aug 11, 2022
79d8414
some drying
girarda Aug 11, 2022
0269b19
more drying
girarda Aug 11, 2022
1f84dfa
Merge branch 'master' into alex/configbasedgreenhouse
girarda Aug 11, 2022
c99a8fc
auto-bump connector version [ci skip]
octavia-squidington-iii Aug 12, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ connector_image: airbyte/source-greenhouse:dev
tests:
spec:
- spec_path: "source_greenhouse/spec.json"
backward_compatibility_tests_config:
disable_for_version: "0.2.7"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

need to disable this test because the spec is updated

connection:
- config_path: "secrets/config.json"
status: "succeed"
- config_path: "secrets/config_users_only.json"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

these credentials don't work, but I confirmed there are users records in the account configured in "secrets/config.json"

- config_path: "secrets/config.json"
status: "succeed"
- config_path: "integration_tests/config_invalid.json"
status: "failed"
Expand Down
Loading