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

chore(deps): update dependency azure/bicep to v0.34.1 #4985

Merged
merged 1 commit into from
Mar 21, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 21, 2025

This PR contains the following updates:

Package Update Change
Azure/bicep minor 0.33.93 -> 0.34.1

Release Notes

Azure/bicep (Azure/bicep)

v0.34.1

Compare Source

Highlights
  • Optional Module Names GA (#​16518)
    module storage 'storageaccount.bicep' = {
    // no need to specify a name here!
      scope: rg
      params: {
        location: location
        sku: skuProd
      }
    }
  • Experimental support for typed variables (#​16451) using the feature flag "typedVariables"
    // an optional type can be added to a variable declaration statement.
    
    // current syntax
    var foo = 'hello'
    
    // with optional type
    var foo string = 'hello'
  • Resource Derived Types GA (#​16517)
    param storageSkuName resourceInput<'Microsoft.Storage/storageAccounts@2024-01-01'>.sku.name
    
    output storageEndpoints resourceOutput<'Microsoft.Storage/storageAccounts@2024-01-01'>.properties.primaryEndpoints = ...
  • ACR Private Module Completions (#​16051)
  • Add Notepad++ Bicep Syntax Highlighting Information (#​16506) - thanks @​richardsondev !
Bug Fixes and Features
  • secure-secrets-in-params: Flag insecure references to secure params (#​16251)
  • Add code action to suggest multi-line strings (#​16296)
  • Handle decompilation of variable-defined API version correctly (#​16384)
  • Support dark + light mode in the Bicep playground (#​16388)
  • Support for validating inputs in deploy pane (#​16442)
  • Add the --pattern CLI argument for faster batch operations on multiple files (#​16456)
build all .bicep files under current path
bicep build --pattern './**/*.bicep'
build all .bicepparam files under current path
bicep build-params --pattern './**/*.bicepparam'
format all .bicep files under current path
bicep format --pattern './**/*.bicep*'
lint all .bicep files under current path
bicep lint --pattern './**/*.bicep'
restore modules for all .bicep files under current path
bicep restore --pattern './**/*.bicep'
```
  • Fix for completions inside object (#​16558)
  • Imported functions invoked in .bicepparam files can refer to variables from their source template (#​16322)
  • Emit an info-level diagnostic on safe access of undeclared property (#​16327)
  • Forward base-type errors when accessing type properties (#​16394)
  • Allow duplicated resources (by name) if at most one is unconditional (#​15909)
  • Index from end operator ([^]) (#​16104)
    param foo string[]
    
    var lastElement = foo[^1]
    var secondLastElement = foo[^2]
  • Partially parse function calls with no closing paren (#​16508)
  • Fix 13606, stuck in ext-src loop (#​16381)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Mar 21, 2025
@renovate renovate bot requested a review from nvuillam as a code owner March 21, 2025 20:18
@renovate renovate bot requested a review from echoix as a code owner March 21, 2025 20:18
Copy link
Contributor

github-actions bot commented Mar 21, 2025

🦙 MegaLinter status: ⚠️ WARNING

Descriptor Linter Files Fixed Errors Warnings Elapsed time
✅ API spectral 1 0 0 1.76s
⚠️ BASH bash-exec 6 1 0 0.02s
✅ BASH shellcheck 6 0 0 0.21s
✅ BASH shfmt 6 0 0 0 0.7s
✅ COPYPASTE jscpd yes no no 2.97s
✅ DOCKERFILE hadolint 129 0 0 30.46s
✅ JSON jsonlint 20 0 0 0.37s
✅ JSON v8r 22 0 0 12.26s
⚠️ MARKDOWN markdownlint 267 0 302 0 22.23s
✅ MARKDOWN markdown-table-formatter 267 0 0 0 169.49s
⚠️ PYTHON bandit 215 66 0 3.14s
✅ PYTHON black 215 0 0 0 4.92s
✅ PYTHON flake8 215 0 0 2.52s
✅ PYTHON isort 215 0 0 0 1.31s
✅ PYTHON mypy 215 0 0 10.72s
✅ PYTHON pylint 215 0 0 32.07s
✅ PYTHON ruff 215 0 0 0 0.78s
✅ REPOSITORY checkov yes no no 34.71s
✅ REPOSITORY git_diff yes no no 0.45s
⚠️ REPOSITORY grype yes 28 no 30.85s
✅ REPOSITORY secretlint yes no no 8.74s
✅ REPOSITORY trivy yes no no 16.83s
✅ REPOSITORY trivy-sbom yes no no 0.67s
⚠️ REPOSITORY trufflehog yes 1 no 55.5s
✅ SPELL cspell 718 0 0 12.9s
⚠️ SPELL lychee 349 20 0 39.54s
✅ XML xmllint 3 0 0 0 1.03s
✅ YAML prettier 160 0 0 0 4.05s
✅ YAML v8r 103 0 0 13.54s
✅ YAML yamllint 161 0 0 2.97s

See detailed report in MegaLinter reports

MegaLinter is graciously provided by OX Security

@nvuillam nvuillam merged commit ded2bcb into main Mar 21, 2025
130 checks passed
@nvuillam nvuillam deleted the renovate/azure-bicep-0.x branch March 21, 2025 23:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant