Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,5 @@
"initializeCommand": "sh .devcontainer/initialize-command.sh",
"onCreateCommand": "sh .devcontainer/on-create-command.sh",
"postStartCommand": "sh .devcontainer/post-start-command.sh"
// Devcontainer context hash (do not manually edit this, it's managed by a pre-commit hook): 71e03cf2 # spellchecker:disable-line
// Devcontainer context hash (do not manually edit this, it's managed by a pre-commit hook): f6db6dac # spellchecker:disable-line
}
2 changes: 2 additions & 0 deletions .devcontainer/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
services:
devcontainer:
# added the platform flag to override any local settings since this image is only compatible with linux/amd64.
platform: linux/amd64
build: .
# You can run `devcontainer-info content-url` in codespaces to see what image base is
volumes:
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -76,5 +76,10 @@ dist
# Logs
*.log
**/logs/log*.txt
**/logs/*.log.*

# macOS dev cleanliness
*.DS_Store
.DS_Store

# Ignores specific to this repository
8 changes: 4 additions & 4 deletions extensions/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]:
context["pytest_cov_version"] = "6.2.1"
#######
context["sphinx_version"] = "8.1.3"
context["pulumi_version"] = "3.188.0"
context["pulumi_aws_version"] = "7.3.1"
context["pulumi_aws_native_version"] = "1.31.0"
context["pulumi_version"] = "3.189.0"
context["pulumi_aws_version"] = "7.4.0"
context["pulumi_aws_native_version"] = "1.32.0"
context["pulumi_command_version"] = "1.1.0"
context["pulumi_github_version"] = "6.7.3"
context["pulumi_okta_version"] = "4.20.0"
context["boto3_version"] = "1.40.6"
context["boto3_version"] = "1.40.9"
context["ephemeral_pulumi_deploy_version"] = "0.0.4"
context["pydantic_version"] = "2.11.7"
context["pyinstaller_version"] = "6.13.0"
Expand Down
2 changes: 2 additions & 0 deletions template/.devcontainer/docker-compose.yml.jinja-base
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{% raw %}services:
devcontainer:
# added the platform flag to override any local settings since this image is only compatible with linux/amd64.
platform: linux/amd64
build:
context: .
args:
Expand Down