Skip to content

Commit 2fcdc47

Browse files
authored
release: 3.6.2 (#111)
1 parent e8cb4f6 commit 2fcdc47

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.6.0
1+
3.6.2

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/bytebase/terraform-provider-bytebase
33
go 1.24.2
44

55
require (
6-
github.com/bytebase/bytebase v0.0.0-20250519144720-22dc39c1fd08
6+
github.com/bytebase/bytebase v0.0.0-20250522054226-64d0687b8e11
77
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320
88
github.com/hashicorp/terraform-plugin-docs v0.13.0
99
github.com/hashicorp/terraform-plugin-log v0.7.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ github.com/armon/go-radix v1.0.0/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgI
3030
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs=
3131
github.com/bgentry/speakeasy v0.1.0 h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQkY=
3232
github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs=
33-
github.com/bytebase/bytebase v0.0.0-20250519144720-22dc39c1fd08 h1:CEU+1Waq1qiJFC2LJYT/VxN3XhFyXbS9DC2gUnqILd4=
34-
github.com/bytebase/bytebase v0.0.0-20250519144720-22dc39c1fd08/go.mod h1:HHRGRkJYb2FKv2Iyl1feFzaadoXc14t2iMk4z+Xc/Kg=
33+
github.com/bytebase/bytebase v0.0.0-20250522054226-64d0687b8e11 h1:ZJyRdi/yQtpAQVqTIWVW7NnIWSkoCs4VnSAQEFfT2YA=
34+
github.com/bytebase/bytebase v0.0.0-20250522054226-64d0687b8e11/go.mod h1:HHRGRkJYb2FKv2Iyl1feFzaadoXc14t2iMk4z+Xc/Kg=
3535
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
3636
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3737
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=

provider/internal/utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ func ResourceNameValidation(regexs ...*regexp.Regexp) schema.SchemaValidateDiagF
7676
diags = append(diags, diag.Diagnostic{
7777
Severity: diag.Error,
7878
Summary: "Resource id not match",
79-
Detail: fmt.Sprintf("resource id must matches %s pattern", ResourceIDPattern),
79+
Detail: fmt.Sprintf(`resource id "%s" must matches "%s" pattern`, v, ResourceIDPattern),
8080
AttributePath: path,
8181
})
8282
return diags

0 commit comments

Comments
 (0)