Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: hashicorp/terraform-plugin-go
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.18.0
Choose a base ref
...
head repository: hashicorp/terraform-plugin-go
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.19.0
Choose a head ref
  • 12 commits
  • 49 files changed
  • 6 contributors

Commits on Jul 7, 2023

  1. build(deps): Bump google.golang.org/grpc from 1.56.1 to 1.56.2 (#309)

    Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.56.1 to 1.56.2.
    - [Release notes](https://github.com/grpc/grpc-go/releases)
    - [Commits](grpc/grpc-go@v1.56.1...v1.56.2)
    
    ---
    updated-dependencies:
    - dependency-name: google.golang.org/grpc
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jul 7, 2023
    Configuration menu
    Copy the full SHA
    0627d1d View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2023

  1. build(deps): Bump google.golang.org/grpc from 1.56.2 to 1.57.0 (#312)

    Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.56.2 to 1.57.0.
    - [Release notes](https://github.com/grpc/grpc-go/releases)
    - [Commits](grpc/grpc-go@v1.56.2...v1.57.0)
    
    ---
    updated-dependencies:
    - dependency-name: google.golang.org/grpc
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jul 27, 2023
    Configuration menu
    Copy the full SHA
    db8cfe3 View commit details
    Browse the repository at this point in the history

Commits on Jul 28, 2023

  1. Configuration menu
    Copy the full SHA
    81f0d49 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2023

  1. build(deps): Bump github.com/hashicorp/terraform-registry-address (#316)

    Bumps [github.com/hashicorp/terraform-registry-address](https://github.com/hashicorp/terraform-registry-address) from 0.2.1 to 0.2.2.
    - [Release notes](https://github.com/hashicorp/terraform-registry-address/releases)
    - [Commits](hashicorp/terraform-registry-address@v0.2.1...v0.2.2)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/hashicorp/terraform-registry-address
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Aug 7, 2023
    Configuration menu
    Copy the full SHA
    e2f69ef View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2023

  1. Result of tsccr-helper -log-level=info -pin-all-workflows . (#317)

    Co-authored-by: hashicorp-tsccr[bot] <hashicorp-tsccr[bot]@users.noreply.github.com>
    hashicorp-tsccr[bot] and hashicorp-tsccr[bot] authored Aug 14, 2023
    Configuration menu
    Copy the full SHA
    0100c63 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2023

  1. Result of tsccr-helper -log-level=info -pin-all-workflows . (#318)

    Co-authored-by: hashicorp-tsccr[bot] <hashicorp-tsccr[bot]@users.noreply.github.com>
    hashicorp-tsccr[bot] and hashicorp-tsccr[bot] authored Aug 21, 2023
    Configuration menu
    Copy the full SHA
    5abb365 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2023

  1. build(deps): Bump github.com/hashicorp/go-plugin from 1.4.10 to 1.5.0 (

    …#319)
    
    Bumps [github.com/hashicorp/go-plugin](https://github.com/hashicorp/go-plugin) from 1.4.10 to 1.5.0.
    - [Release notes](https://github.com/hashicorp/go-plugin/releases)
    - [Changelog](https://github.com/hashicorp/go-plugin/blob/main/CHANGELOG.md)
    - [Commits](hashicorp/go-plugin@v1.4.10...v1.5.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/hashicorp/go-plugin
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Aug 31, 2023
    Configuration menu
    Copy the full SHA
    94c7a39 View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2023

  1. tfprotov5+tfprotov6: Update to protocol versions 5.4/6.4 with GetMeta…

    …data RPC and GetProviderSchemaOptional server capability (#311)
    
    Reference: #310
    
    Protocol upgrades that impose new RPCs will either require:
    
    - The `tfprotov5.ProviderServer`/`tfprotov6.ProviderServer` interface to require a new method
    - Or, new "optional" interfaces be implemented (let's make up `ProviderServerWithGetMetadata` in this case)
    
    terraform-plugin-go is a low level abstraction which is designed to _directly implement_ the protocol rather than introduce its own abstractions. Most provider developers will directly interface with higher level Go modules, such as terraform-plugin-sdk and terraform-plugin-framework. Except for advanced provider development using this Go module directly, this type of low level "breaking" change will be hidden by also upgrading those Go modules at the same time:
    
    - hashicorp/terraform-plugin-sdk#1235
    - hashicorp/terraform-plugin-framework#829
    - hashicorp/terraform-plugin-mux#186
    
    Therefore the change is implemented on the existing interface.
    bflad authored Sep 6, 2023
    Configuration menu
    Copy the full SHA
    24e6961 View commit details
    Browse the repository at this point in the history
  2. Result of tsccr-helper -log-level=info -pin-all-workflows . (#320)

    Co-authored-by: hashicorp-tsccr[bot] <hashicorp-tsccr[bot]@users.noreply.github.com>
    Co-authored-by: Brian Flad <bflad417@gmail.com>
    3 people authored Sep 6, 2023
    Configuration menu
    Copy the full SHA
    a48f2b2 View commit details
    Browse the repository at this point in the history
  3. build(deps): Bump github.com/hashicorp/go-plugin from 1.5.0 to 1.5.1 (#…

    …323)
    
    Bumps [github.com/hashicorp/go-plugin](https://github.com/hashicorp/go-plugin) from 1.5.0 to 1.5.1.
    - [Release notes](https://github.com/hashicorp/go-plugin/releases)
    - [Changelog](https://github.com/hashicorp/go-plugin/blob/main/CHANGELOG.md)
    - [Commits](hashicorp/go-plugin@v1.5.0...v1.5.1)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/hashicorp/go-plugin
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 6, 2023
    Configuration menu
    Copy the full SHA
    1eb755a View commit details
    Browse the repository at this point in the history
  4. all: Update Go Module to Go 1.20 (#322)

    Reference: #321
    bflad authored Sep 6, 2023
    Configuration menu
    Copy the full SHA
    6a7e35b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    255a89c View commit details
    Browse the repository at this point in the history
Loading