Skip to content

Commit 7102e70

Browse files
committed
chore: update changelog and versions for 2026-04-06 release
1 parent 5545a1e commit 7102e70

File tree

272 files changed

+1161
-966
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

272 files changed

+1161
-966
lines changed

.test/go.mod

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ go 1.25.0
44

55
require (
66
github.com/Shopify/toxiproxy v2.1.4+incompatible
7-
github.com/aws/aws-advanced-go-wrapper/auth-helpers v1.0.5
8-
github.com/aws/aws-advanced-go-wrapper/aws-secrets-manager v1.1.0
9-
github.com/aws/aws-advanced-go-wrapper/awssql v1.4.0
10-
github.com/aws/aws-advanced-go-wrapper/custom-endpoint v1.0.2
11-
github.com/aws/aws-advanced-go-wrapper/federated-auth v1.0.5
12-
github.com/aws/aws-advanced-go-wrapper/iam v1.0.5
13-
github.com/aws/aws-advanced-go-wrapper/mysql-driver v1.0.5
14-
github.com/aws/aws-advanced-go-wrapper/okta v1.0.5
15-
github.com/aws/aws-advanced-go-wrapper/otlp v1.0.5
16-
github.com/aws/aws-advanced-go-wrapper/pgx-driver v1.0.5
17-
github.com/aws/aws-advanced-go-wrapper/xray v1.0.5
7+
github.com/aws/aws-advanced-go-wrapper/auth-helpers v1.1.0
8+
github.com/aws/aws-advanced-go-wrapper/aws-secrets-manager v1.1.1
9+
github.com/aws/aws-advanced-go-wrapper/awssql/v2 v2.0.0
10+
github.com/aws/aws-advanced-go-wrapper/custom-endpoint v1.0.3
11+
github.com/aws/aws-advanced-go-wrapper/federated-auth v1.1.0
12+
github.com/aws/aws-advanced-go-wrapper/iam v1.1.0
13+
github.com/aws/aws-advanced-go-wrapper/mysql-driver v1.1.0
14+
github.com/aws/aws-advanced-go-wrapper/okta v1.1.0
15+
github.com/aws/aws-advanced-go-wrapper/otlp v1.0.6
16+
github.com/aws/aws-advanced-go-wrapper/pgx-driver v1.1.0
17+
github.com/aws/aws-advanced-go-wrapper/xray v1.0.6
1818
github.com/aws/aws-sdk-go-v2 v1.41.4
1919
github.com/aws/aws-sdk-go-v2/config v1.32.12
2020
github.com/aws/aws-sdk-go-v2/service/rds v1.116.3
@@ -104,7 +104,7 @@ require (
104104
gopkg.in/yaml.v3 v3.0.1 // indirect
105105
)
106106

107-
replace github.com/aws/aws-advanced-go-wrapper/awssql => ../awssql
107+
replace github.com/aws/aws-advanced-go-wrapper/awssql/v2 => ../awssql
108108

109109
replace github.com/aws/aws-advanced-go-wrapper/custom-endpoint => ./../custom-endpoint
110110

.test/test/adfs_credentials_provider_factory_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ import (
2727
mock_driver_infrastructure "github.com/aws/aws-advanced-go-wrapper/.test/test/mocks/awssql/driver_infrastructure"
2828
mock_telemetry "github.com/aws/aws-advanced-go-wrapper/.test/test/mocks/awssql/util/telemetry"
2929
auth_helpers "github.com/aws/aws-advanced-go-wrapper/auth-helpers"
30-
"github.com/aws/aws-advanced-go-wrapper/awssql/error_util"
31-
"github.com/aws/aws-advanced-go-wrapper/awssql/property_util"
30+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/error_util"
31+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/property_util"
3232
federated_auth "github.com/aws/aws-advanced-go-wrapper/federated-auth"
3333
"github.com/golang/mock/gomock"
3434

.test/test/aurora_connection_tracker_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ import (
2323
mock_driver_infrastructure "github.com/aws/aws-advanced-go-wrapper/.test/test/mocks/awssql/driver_infrastructure"
2424
mock_connection_tracker "github.com/aws/aws-advanced-go-wrapper/.test/test/mocks/awssql/plugins/connection_tracker"
2525
mock_database_sql_driver "github.com/aws/aws-advanced-go-wrapper/.test/test/mocks/database_sql_driver"
26-
"github.com/aws/aws-advanced-go-wrapper/awssql/error_util"
27-
"github.com/aws/aws-advanced-go-wrapper/awssql/host_info_util"
28-
"github.com/aws/aws-advanced-go-wrapper/awssql/plugins"
29-
"github.com/aws/aws-advanced-go-wrapper/awssql/utils"
26+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/error_util"
27+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/host_info_util"
28+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/plugins"
29+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/utils"
3030
"github.com/golang/mock/gomock"
3131
"github.com/stretchr/testify/assert"
3232
)

.test/test/aurora_initial_connection_strategy_plugin_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ import (
2323

2424
mock_driver_infrastructure "github.com/aws/aws-advanced-go-wrapper/.test/test/mocks/awssql/driver_infrastructure"
2525
mock_database_sql_driver "github.com/aws/aws-advanced-go-wrapper/.test/test/mocks/database_sql_driver"
26-
"github.com/aws/aws-advanced-go-wrapper/awssql/host_info_util"
27-
"github.com/aws/aws-advanced-go-wrapper/awssql/plugins"
28-
"github.com/aws/aws-advanced-go-wrapper/awssql/property_util"
29-
"github.com/aws/aws-advanced-go-wrapper/awssql/utils"
26+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/host_info_util"
27+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/plugins"
28+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/property_util"
29+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/utils"
3030
"github.com/golang/mock/gomock"
3131
"github.com/stretchr/testify/assert"
3232
)

.test/test/auth_plugin_param_validator_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ import (
2020
"testing"
2121

2222
auth_helpers "github.com/aws/aws-advanced-go-wrapper/auth-helpers"
23-
"github.com/aws/aws-advanced-go-wrapper/awssql/error_util"
24-
"github.com/aws/aws-advanced-go-wrapper/awssql/property_util"
23+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/error_util"
24+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/property_util"
2525
"github.com/stretchr/testify/assert"
2626
)
2727

.test/test/aws_credentials_management_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ import (
2121
"strings"
2222
"testing"
2323

24-
"github.com/aws/aws-advanced-go-wrapper/awssql/property_util"
24+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/property_util"
2525
"github.com/aws/aws-sdk-go-v2/aws"
2626
"github.com/stretchr/testify/assert"
2727

2828
auth_helpers "github.com/aws/aws-advanced-go-wrapper/auth-helpers"
29-
"github.com/aws/aws-advanced-go-wrapper/awssql/host_info_util"
29+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/host_info_util"
3030
)
3131

3232
type mockCredentialsProviderHandler struct {

.test/test/aws_secrets_manager_connection_plugin_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ import (
2626
mock_driver_infrastructure "github.com/aws/aws-advanced-go-wrapper/.test/test/mocks/awssql/driver_infrastructure"
2727
mock_telemetry "github.com/aws/aws-advanced-go-wrapper/.test/test/mocks/awssql/util/telemetry"
2828
aws_secrets_manager "github.com/aws/aws-advanced-go-wrapper/aws-secrets-manager"
29-
"github.com/aws/aws-advanced-go-wrapper/awssql/driver_infrastructure"
30-
"github.com/aws/aws-advanced-go-wrapper/awssql/error_util"
31-
"github.com/aws/aws-advanced-go-wrapper/awssql/host_info_util"
32-
"github.com/aws/aws-advanced-go-wrapper/awssql/property_util"
33-
"github.com/aws/aws-advanced-go-wrapper/awssql/utils"
29+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/driver_infrastructure"
30+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/error_util"
31+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/host_info_util"
32+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/property_util"
33+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/utils"
3434
"github.com/golang/mock/gomock"
3535

3636
mysql_driver "github.com/aws/aws-advanced-go-wrapper/mysql-driver"

.test/test/aws_wrapper_driver_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ import (
2626
mock_driver_infrastructure "github.com/aws/aws-advanced-go-wrapper/.test/test/mocks/awssql/driver_infrastructure"
2727
mock_telemetry "github.com/aws/aws-advanced-go-wrapper/.test/test/mocks/awssql/util/telemetry"
2828
mock_database_sql_driver "github.com/aws/aws-advanced-go-wrapper/.test/test/mocks/database_sql_driver"
29-
awsDriver "github.com/aws/aws-advanced-go-wrapper/awssql/driver"
30-
"github.com/aws/aws-advanced-go-wrapper/awssql/driver_infrastructure"
31-
"github.com/aws/aws-advanced-go-wrapper/awssql/error_util"
32-
"github.com/aws/aws-advanced-go-wrapper/awssql/host_info_util"
29+
awsDriver "github.com/aws/aws-advanced-go-wrapper/awssql/v2/driver"
30+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/driver_infrastructure"
31+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/error_util"
32+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/host_info_util"
3333
mysql_driver "github.com/aws/aws-advanced-go-wrapper/mysql-driver"
3434
"github.com/golang/mock/gomock"
3535

.test/test/base_connection_plugin_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ import (
2323
"database/sql/driver"
2424

2525
mock_database_sql_driver "github.com/aws/aws-advanced-go-wrapper/.test/test/mocks/database_sql_driver"
26-
"github.com/aws/aws-advanced-go-wrapper/awssql/driver_infrastructure"
27-
"github.com/aws/aws-advanced-go-wrapper/awssql/host_info_util"
28-
"github.com/aws/aws-advanced-go-wrapper/awssql/plugins"
29-
"github.com/aws/aws-advanced-go-wrapper/awssql/utils"
26+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/driver_infrastructure"
27+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/host_info_util"
28+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/plugins"
29+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/utils"
3030
"github.com/stretchr/testify/assert"
3131
)
3232

.test/test/benchmark_plugin.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ package test
1919
import (
2020
"database/sql/driver"
2121

22-
"github.com/aws/aws-advanced-go-wrapper/awssql/driver_infrastructure"
23-
"github.com/aws/aws-advanced-go-wrapper/awssql/host_info_util"
24-
"github.com/aws/aws-advanced-go-wrapper/awssql/plugin_helpers"
25-
"github.com/aws/aws-advanced-go-wrapper/awssql/plugins"
26-
"github.com/aws/aws-advanced-go-wrapper/awssql/utils"
22+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/driver_infrastructure"
23+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/host_info_util"
24+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/plugin_helpers"
25+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/plugins"
26+
"github.com/aws/aws-advanced-go-wrapper/awssql/v2/utils"
2727
)
2828

2929
type BenchmarkPluginFactory struct{}

0 commit comments

Comments
 (0)