From 8365e10b71f1163b8747df02ab5aac60875ee99b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 25 Jan 2024 15:01:19 +0000 Subject: [PATCH 1/6] [tagpr] prepare for the next release From 79719b480489e722371a36b67fa8661462f15fce Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 25 Jan 2024 15:01:19 +0000 Subject: [PATCH 2/6] [tagpr] update CHANGELOG.md --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 314b704f..4e8d0928 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [v1.73.2](https://github.com/k1LoW/tbls/compare/v1.72.2...v1.73.2) - 2024-01-25 +### Other Changes +- Fix CD pipeline by @k1LoW in https://github.com/k1LoW/tbls/pull/554 +- Update pkgs by @k1LoW in https://github.com/k1LoW/tbls/pull/556 + ## [v1.72.2](https://github.com/k1LoW/tbls/compare/v1.72.1...v1.72.2) - 2024-01-25 ### Other Changes - Update go-graphviz to v0.1.2 by @k1LoW in https://github.com/k1LoW/tbls/pull/552 From cb956ab13d0adc5685daf1cad350b12877170077 Mon Sep 17 00:00:00 2001 From: Minoru Mizutani Date: Sat, 9 Mar 2024 16:11:30 +0900 Subject: [PATCH 3/6] Fix some typos in README --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 68d17b87..487de360 100644 --- a/README.md +++ b/README.md @@ -338,7 +338,7 @@ script: - tbls lint ``` -> **Tips:** If your CI based on Debian/Ubuntu (`/bin/sh -> dash`), you can use following install command `curl -sL https://raw.githubusercontent.com/k1LoW/tbls/main/use > use-tbls.tmp && . ./use-tbls.tmp && rm ./use-tbls.tmp` +> **Tips:** If your CI based on Debian/Ubuntu (`/bin/sh -> dash`), you can use the following install command `curl -sL https://raw.githubusercontent.com/k1LoW/tbls/main/use > use-tbls.tmp && . ./use-tbls.tmp && rm ./use-tbls.tmp` > **Tips:** If the order of the columns does not match, you can use the `--sort` option. @@ -411,7 +411,7 @@ dsn: my://dbuser:dbpass@hostname:3306/dbname #### Support Datasource -tbls support following databases/datasources. +tbls supports the following databases/datasources. **PostgreSQL:** @@ -814,10 +814,10 @@ lint: enabled: true exclude: - schema_migrations - # checks if tables are included in at leaset one viewpoint + # checks if tables are included in at least one viewpoint requireViewpoints: enabled: true - exclued: + exclude: - schema_migrations ``` @@ -1062,7 +1062,7 @@ You can also define groups of tables within viewpoints. viewpoints: - name: comments on post - desc: Users can comment on each post multiple times and put a star on each comments. + desc: Users can comment on each post multiple times and put a star on each comment. tables: - users - posts From 0e0bd84b76f725a53be15606a9e00ba33bf26c30 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 13 Mar 2024 23:33:41 +0000 Subject: [PATCH 4/6] Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 Bumps google.golang.org/protobuf from 1.32.0 to 1.33.0. --- updated-dependencies: - dependency-name: google.golang.org/protobuf dependency-type: indirect ... Signed-off-by: dependabot[bot] --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index ce1973f9..84680a67 100644 --- a/go.mod +++ b/go.mod @@ -155,6 +155,6 @@ require ( google.golang.org/genproto/googleapis/api v0.0.0-20240123012728-ef4313101c80 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect google.golang.org/grpc v1.61.0 // indirect - google.golang.org/protobuf v1.32.0 // indirect + google.golang.org/protobuf v1.33.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) diff --git a/go.sum b/go.sum index 1eb1f957..6ae924cf 100644 --- a/go.sum +++ b/go.sum @@ -523,8 +523,8 @@ google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpAD google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.32.0 h1:pPC6BG5ex8PDFnkbrGU3EixyhKcQ2aDuBS36lqK/C7I= -google.golang.org/protobuf v1.32.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= +google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI= +google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= From 871a8eab4e64e82ee698561bd4043d4d243df9f5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 13 Mar 2024 23:54:07 +0000 Subject: [PATCH 5/6] [tagpr] prepare for the next release --- version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/version.go b/version/version.go index 0dfc93a4..d94e0299 100644 --- a/version/version.go +++ b/version/version.go @@ -4,4 +4,4 @@ package version const Name string = "tbls" // Version for this -var Version = "1.73.2" +var Version = "1.73.3" From 33c5549a7be278ffd4b91d2462bc46424a7acc57 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 13 Mar 2024 23:54:07 +0000 Subject: [PATCH 6/6] [tagpr] update CHANGELOG.md --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e8d0928..0e32a5b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [v1.73.3](https://github.com/k1LoW/tbls/compare/v1.73.2...v1.73.3) - 2024-03-13 +### Other Changes +- Fix some minor typos in README by @mmizutani in https://github.com/k1LoW/tbls/pull/563 +- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 by @dependabot in https://github.com/k1LoW/tbls/pull/565 + ## [v1.73.2](https://github.com/k1LoW/tbls/compare/v1.72.2...v1.73.2) - 2024-01-25 ### Other Changes - Fix CD pipeline by @k1LoW in https://github.com/k1LoW/tbls/pull/554