From 2505557dc094346baee69ae1413fcc2f55321398 Mon Sep 17 00:00:00 2001 From: Danil Prisiazhnyi Date: Thu, 12 Jan 2023 22:27:50 +0400 Subject: [PATCH] update deps --- .gitignore | 1 + CHANGELOG.md | 3 +++ component.json | 2 +- docker/Dockerfile.test | 2 +- docs/pkg/connect/index.html | 10 +++++----- go.mod | 10 +++++----- 6 files changed, 16 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index 1c47645..35c851f 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ *.db /dist go.sum +/docker/id_rsa* \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index bc0c29c..c734d6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Sqlite components for Pip.Services in Go Changelog +## 1.2.4 (2023-01-12) + +- Update dependencies ## 1.2.3 (2022-10-19) ### Bug Fixes diff --git a/component.json b/component.json index 9d2087c..9f08d6c 100644 --- a/component.json +++ b/component.json @@ -2,7 +2,7 @@ "name": "pip-services3-sqlite-go", "type": "module", "language": "go", - "version": "1.2.3", + "version": "1.2.4", "build": 0, "registry": "pipservices", "artifacts": [ diff --git a/docker/Dockerfile.test b/docker/Dockerfile.test index 5054e98..9219fd2 100644 --- a/docker/Dockerfile.test +++ b/docker/Dockerfile.test @@ -17,4 +17,4 @@ RUN go mod tidy RUN go mod download # Specify the command from running tests -CMD go test -v -tags sqlite_json ./test/... \ No newline at end of file +CMD go clean -testcache && go test -v -tags sqlite_json ./test/... \ No newline at end of file diff --git a/docs/pkg/connect/index.html b/docs/pkg/connect/index.html index 98f185d..5f7003e 100644 --- a/docs/pkg/connect/index.html +++ b/docs/pkg/connect/index.html @@ -370,7 +370,7 @@

func (*SqliteConnection) type SqliteConnectionResolver +

type SqliteConnectionResolver @@ -422,7 +422,7 @@

Configuration parameters

-

func NewSqliteConnectionResolver +

func NewSqliteConnectionResolver @@ -439,7 +439,7 @@

func func (*SqliteConnectionResolver) Configure +

func (*SqliteConnectionResolver) Configure @@ -458,7 +458,7 @@

func (*SqliteConnectionResolver) func (*SqliteConnectionResolver) Resolve +

func (*SqliteConnectionResolver) Resolve @@ -476,7 +476,7 @@

func (*SqliteConnectionResolver) func (*SqliteConnectionResolver) SetReferences +

func (*SqliteConnectionResolver) SetReferences diff --git a/go.mod b/go.mod index d086df7..9906ed8 100644 --- a/go.mod +++ b/go.mod @@ -3,9 +3,9 @@ module github.com/pip-services3-go/pip-services3-sqlite-go go 1.16 require ( - github.com/mattn/go-sqlite3 v1.14.15 - github.com/pip-services3-go/pip-services3-commons-go v1.1.0 - github.com/pip-services3-go/pip-services3-components-go v1.1.0 - github.com/pip-services3-go/pip-services3-data-go v1.1.0 - github.com/stretchr/testify v1.7.0 + github.com/mattn/go-sqlite3 v1.14.16 + github.com/pip-services3-go/pip-services3-commons-go v1.1.6 + github.com/pip-services3-go/pip-services3-components-go v1.3.2 + github.com/pip-services3-go/pip-services3-data-go v1.1.11 + github.com/stretchr/testify v1.8.1 )