-
Notifications
You must be signed in to change notification settings - Fork 400
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Internal] Bumped
terraform-plugin-framework
branch to latest main
(
#3780) ## Changes <!-- Summary of your changes that are easy to understand --> Rebase the Plugin Framework branch to latest main + resolve conflicts: 9e8fd30 This needs to be merged before #3719 can be merged. Rebasing the PR over main will lead to many commits/changes so separating them in this PR. ## Tests <!-- How is this tested? Please see the checklist below and also describe any other relevant tests --> Unit tests - [ ] `make test` run locally - [ ] relevant change in `docs/` folder - [ ] covered with integration tests in `internal/acceptance` - [ ] relevant acceptance tests are passing - [ ] using Go SDK --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: vuong-nguyen <44292934+nkvuong@users.noreply.github.com> Co-authored-by: Alex Moschos <166370939+alexmos-db@users.noreply.github.com> Co-authored-by: hectorcast-db <hector.castejon@databricks.com> Co-authored-by: Aleksandar Dragojević <stingermssl@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alex Ott <alexey.ott@databricks.com> Co-authored-by: Karol <lus.karol@gmail.com> Co-authored-by: touchida <56789230+touchida@users.noreply.github.com> Co-authored-by: Miles Yucht <miles@databricks.com> Co-authored-by: Pieter Noordhuis <pieter.noordhuis@databricks.com> Co-authored-by: mkubicek <milan.kubicek@mba.sdabocconi.it> Co-authored-by: Renaud Hartert <renaud.hartert@databricks.com> Co-authored-by: Divyansh Vijayvergia <171924202+Divyansh-db@users.noreply.github.com>
- Loading branch information
1 parent
be7d694
commit 1f88025
Showing
144 changed files
with
3,278 additions
and
962 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,12 @@ | ||
# Version changelog | ||
|
||
## {{.Version}} | ||
{{- range .GroupChanges}} | ||
|
||
### New Features and Improvements | ||
{{range .Changes -}} | ||
### {{.Type.Message}} | ||
{{range .Changes}} | ||
* {{.}}. | ||
{{end}} | ||
|
||
### Documentation Changes | ||
|
||
### Exporter | ||
|
||
### Internal Changes | ||
{{if .DependencyUpdates}} | ||
Dependency updates: | ||
{{range .DependencyUpdates}} | ||
* {{.}}. | ||
{{- end -}} | ||
{{- end}} | ||
{{end}} | ||
|
||
## {{.PrevVersion}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
change_types: | ||
- message: New Features and Improvements | ||
tag: "[Feature]" | ||
- message: Bug Fixes | ||
tag: "[Fix]" | ||
- message: Documentation | ||
tag: "[Doc]" | ||
- message: Internal Changes | ||
tag: "[Internal]" | ||
- message: Dependency Updates | ||
tag: "[Dependency]" | ||
- message: Exporter | ||
tag: "[Exporter]" | ||
# Does not appear in the Changelog. Only for PR validation. | ||
- message: Release | ||
tag: "[Release]" | ||
# Default for messages without a tag | ||
- message: Other Changes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,5 @@ updates: | |
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
commit-message: | ||
prefix: "[Dependency] " |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Validate Commit Message | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize, edited] | ||
|
||
jobs: | ||
|
||
validate: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Validate Tag | ||
run: | | ||
TAG=$(echo ${{ github.event.pull_request.title }} | sed -ne 's/\[\(.*\)\].*/\1/p') | ||
if grep -q "tag: \"\[$TAG\]\"" .codegen/changelog_config.yml; then | ||
echo "Valid tag found: [$TAG]" | ||
else | ||
echo "Invalid or missing tag in commit message: [$TAG]" | ||
exit 1 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Request: Change owner to @mgyucht | ||
Registry link: https://registry.terraform.io/namespaces/databricks, https://registry.terraform.io/providers/databricks/databricks/latest/docs | ||
Request by: miles@databricks.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.