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-framework-validators
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.13.0
Choose a base ref
...
head repository: hashicorp/terraform-plugin-framework-validators
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.14.0
Choose a head ref
  • 18 commits
  • 155 files changed
  • 8 contributors

Commits on Jul 19, 2024

  1. Result of tsccr-helper -log-level=info gha update -latest . (#224)

    Co-authored-by: hashicorp-tsccr[bot] <hashicorp-tsccr[bot]@users.noreply.github.com>
    hashicorp-tsccr[bot] and hashicorp-tsccr[bot] authored Jul 19, 2024
    Configuration menu
    Copy the full SHA
    73c6990 View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2024

  1. Result of tsccr-helper -log-level=info gha update -latest . (#225)

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

Commits on Aug 7, 2024

  1. build(deps): bump github.com/hashicorp/terraform-plugin-framework (#226)

    Bumps [github.com/hashicorp/terraform-plugin-framework](https://github.com/hashicorp/terraform-plugin-framework) from 1.10.0 to 1.11.0.
    - [Release notes](https://github.com/hashicorp/terraform-plugin-framework/releases)
    - [Changelog](https://github.com/hashicorp/terraform-plugin-framework/blob/main/CHANGELOG.md)
    - [Commits](hashicorp/terraform-plugin-framework@v1.10.0...v1.11.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/hashicorp/terraform-plugin-framework
      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 7, 2024
    Configuration menu
    Copy the full SHA
    1d6d280 View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2024

  1. Result of tsccr-helper -log-level=info gha update -latest . (#227)

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

Commits on Aug 20, 2024

  1. SEC-090: Automated trusted workflow pinning (2024-08-19) (#228)

    * Result of tsccr-helper -log-level=info gha update -latest .
    
    * Resolve linter errors and warnings
    
    ---------
    
    Co-authored-by: hashicorp-tsccr[bot] <hashicorp-tsccr[bot]@users.noreply.github.com>
    Co-authored-by: Selena Goods <github@simplebox.anonaddy.com>
    3 people authored Aug 20, 2024
    Configuration menu
    Copy the full SHA
    673fbef View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2024

  1. Result of tsccr-helper -log-level=info gha update -latest . (#230)

    Co-authored-by: hashicorp-tsccr[bot] <hashicorp-tsccr[bot]@users.noreply.github.com>
    Configuration menu
    Copy the full SHA
    ab5bb62 View commit details
    Browse the repository at this point in the history
  2. all: Bump minimum Go module version to 1.22 (#229)

    * all: Bump minimum Go module version to 1.22
    
    * add changelog
    austinvalle authored Sep 9, 2024
    Configuration menu
    Copy the full SHA
    be3fc06 View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2024

  1. Configuration menu
    Copy the full SHA
    609df6f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bb73498 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    08bf4f2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9ec018a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7cdde0b View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2024

  1. build(deps): bump github.com/hashicorp/terraform-plugin-framework (#233)

    Bumps [github.com/hashicorp/terraform-plugin-framework](https://github.com/hashicorp/terraform-plugin-framework) from 1.11.0 to 1.12.0.
    - [Release notes](https://github.com/hashicorp/terraform-plugin-framework/releases)
    - [Changelog](https://github.com/hashicorp/terraform-plugin-framework/blob/main/CHANGELOG.md)
    - [Commits](hashicorp/terraform-plugin-framework@v1.11.0...v1.12.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/hashicorp/terraform-plugin-framework
      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 Sep 19, 2024
    Configuration menu
    Copy the full SHA
    7979126 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2024

  1. boolvalidator: add Equals validator (#232)

    * boolvalidator: add Equals validator
    
    This validator can be used in cases where non-null boolean value should be exactly `true` or exactly `false`.
    
    ```console
    % go test -count=1 ./boolvalidator/...
    ok      github.com/hashicorp/terraform-plugin-framework-validators/boolvalidator        0.251s
    ```
    
    * Update boolvalidator/equals.go
    
    Co-authored-by: Austin Valle <austinvalle@gmail.com>
    
    * chore: changelog
    jar-b authored Sep 20, 2024
    Configuration menu
    Copy the full SHA
    974015b View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2024

  1. Result of tsccr-helper -log-level=info gha update -latest . (#236)

    Co-authored-by: hashicorp-tsccr[bot] <hashicorp-tsccr[bot]@users.noreply.github.com>
    Configuration menu
    Copy the full SHA
    8beb218 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2024

  1. Result of tsccr-helper -log-level=info gha update -latest . (#237)

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

Commits on Oct 17, 2024

  1. all: Implement function parameter validation interfaces (#238)

    * stringvalidator: implement parameter interface
    
    * boolvalidator: implement parameter interface
    
    * float32validator: implement parameter interface
    
    * float64validator: implement parameter interface
    
    * numbervalidator: implement parameter interface
    
    * int32validator: implement parameter interface
    
    * int64validator: implement parameter interface
    
    * listvalidator: implement parameter interface validation
    
    * setvalidator: implement parameter interface
    
    * mapvalidator: implement parameter interface
    
    * add changelogs
    austinvalle authored Oct 17, 2024
    Configuration menu
    Copy the full SHA
    aa6a2de View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    081db0f View commit details
    Browse the repository at this point in the history
Loading