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

feat: type check values based on pulumi schema #1800

Merged
merged 26 commits into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
0201d50
feat: type check values based on pulumi schema
corymhall Mar 21, 2024
06138b4
forgot to handle the difference in "integer" & "boolean" types
corymhall Mar 27, 2024
677b637
simplifying some things
corymhall Mar 28, 2024
c7e3ffc
linting...
corymhall Mar 28, 2024
a09ba3b
more updates
corymhall Mar 29, 2024
0cd1e17
Merge branch 'master' into corymhall/better-type-checking
corymhall Mar 29, 2024
4e0fdf6
Apply suggestions from code review
corymhall Apr 8, 2024
ff1d03f
update based on comments
corymhall Apr 8, 2024
abe24e8
removing logWarning
corymhall Apr 8, 2024
5fb5895
Merge branch 'master' into corymhall/better-type-checking
corymhall Apr 8, 2024
9181a72
adding comments
corymhall Apr 8, 2024
7957457
fixing linting error
corymhall Apr 8, 2024
fc14e02
adding `isComputed` to exclusions
corymhall Apr 9, 2024
79bbdef
refactoring some stuff
corymhall Apr 9, 2024
c91835e
refactoring to PropertyPath
corymhall Apr 9, 2024
2d40aff
fixing lint errors
corymhall Apr 9, 2024
24d52e3
rebasing #1878
corymhall Apr 16, 2024
44a903f
update sync.OnceValue
corymhall Apr 17, 2024
c41e288
Merge remote-tracking branch 'origin/master' into corymhall/better-ty…
corymhall Apr 17, 2024
af83021
fixing tests
corymhall Apr 17, 2024
bd62853
add pulumi schema to provider struct
corymhall Apr 18, 2024
d9aff59
Merge remote-tracking branch 'origin/master' into corymhall/better-ty…
corymhall Apr 18, 2024
58370dc
run go mod tidy
corymhall Apr 18, 2024
8fa4cb3
correctly read env var
corymhall Apr 19, 2024
abae1a5
fixing imports
corymhall Apr 19, 2024
3e55e5a
add in todo comments
corymhall Apr 19, 2024
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
4 changes: 3 additions & 1 deletion pf/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ require (
github.com/hashicorp/terraform-plugin-framework-validators v0.12.0
github.com/hashicorp/terraform-plugin-go v0.22.0
github.com/hashicorp/terraform-plugin-log v0.9.0
github.com/hashicorp/terraform-plugin-sdk/v2 v2.33.0
github.com/pulumi/providertest v0.0.11
github.com/pulumi/pulumi-terraform-bridge/v3 v3.80.0
github.com/pulumi/pulumi-terraform-bridge/x/muxer v0.0.8
github.com/stretchr/testify v1.8.4
Expand Down Expand Up @@ -51,7 +53,6 @@ require (
github.com/google/s2a-go v0.1.7 // indirect
github.com/hashicorp/go-hclog v1.5.0 // indirect
github.com/hashicorp/logutils v1.0.0 // indirect
github.com/hashicorp/terraform-plugin-sdk/v2 v2.33.0 // indirect
github.com/kylelemons/godebug v1.1.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-localereader v0.0.1 // indirect
Expand All @@ -62,6 +63,7 @@ require (
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 // indirect
github.com/pulumi/appdash v0.0.0-20231130102222-75f619a67231 // indirect
github.com/pulumi/esc v0.6.2 // indirect
github.com/pulumi/terraform-diff-reader v0.0.2 // indirect
github.com/shopspring/decimal v1.3.1 // indirect
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
Expand Down
Loading