Skip to content

Commit 61c0958

Browse files
committed
Merge commit '48f9b0a4862e1699079666181991d7c21b53f89a'
* commit '48f9b0a4862e1699079666181991d7c21b53f89a': Add webhook restriction Updte all packages Fix the loading of messages on send Reduce timeout to 30 seconds Refactor in memory push queue to emulator push queue chore(deps-dev): bump @babel/eslint-parser from 7.19.1 to 7.21.3 in /web chore(deps-dev): bump @nuxt/types from 2.16.0 to 2.16.3 in /web fix(deps): bump libphonenumber-js from 1.10.21 to 1.10.24 in /web fix(deps): bump nuxt from 2.16.2 to 2.16.3 in /web fix(deps): bump webpack from 5.76.1 to 5.76.2 in /web fix(deps): bump firebase from 9.17.2 to 9.18.0 in /web fix(deps): bump @mdi/js from 7.1.96 to 7.2.96 in /web fix(deps): bump core-js from 3.29.0 to 3.29.1 in /web fix(deps): bump actions/cache from 3.3.0 to 3.3.1
2 parents af88444 + 48f9b0a commit 61c0958

12 files changed

Lines changed: 594 additions & 602 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
run: echo "::set-output name=dir::$(yarn cache dir)"
3434

3535
- name: Cache node_modules 📦
36-
uses: actions/cache@v3.3.0
36+
uses: actions/cache@v3.3.1
3737
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
3838
with:
3939
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

api/.env.production

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ GCP_PROJECT_ID=
44

55
APP_HTTP_LOGGER=
66

7+
EVENTS_QUEUE_TYPE=
78
EVENTS_QUEUE_USER_API_KEY=
89
EVENTS_QUEUE_NAME=
910
EVENTS_QUEUE_USER_ID=

api/go.mod

Lines changed: 62 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -3,65 +3,65 @@ module github.com/NdoleStudio/httpsms
33
go 1.18
44

55
require (
6-
cloud.google.com/go/cloudtasks v1.9.0
6+
cloud.google.com/go/cloudtasks v1.10.0
77
firebase.google.com/go v3.13.0+incompatible
8-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.10.2
9-
github.com/NdoleStudio/go-otelroundtripper v0.0.6
10-
github.com/NdoleStudio/lemonsqueezy-go v0.0.5
11-
github.com/carlmjohnson/requests v0.22.3
8+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.12.0
9+
github.com/NdoleStudio/go-otelroundtripper v0.0.7
10+
github.com/NdoleStudio/lemonsqueezy-go v0.0.8
11+
github.com/carlmjohnson/requests v0.23.2
1212
github.com/cheggaaa/pb/v3 v3.0.8
1313
github.com/cloudevents/sdk-go/v2 v2.13.0
14-
github.com/cockroachdb/cockroach-go/v2 v2.2.20
14+
github.com/cockroachdb/cockroach-go/v2 v2.3.3
1515
github.com/davecgh/go-spew v1.1.1
16-
github.com/gofiber/fiber/v2 v2.41.0
17-
github.com/gofiber/swagger v0.1.8
16+
github.com/gofiber/fiber/v2 v2.42.0
17+
github.com/gofiber/swagger v0.1.9
1818
github.com/golang-jwt/jwt v3.2.2+incompatible
1919
github.com/google/uuid v1.3.0
2020
github.com/hashicorp/go-retryablehttp v0.7.2
2121
github.com/hirosassa/zerodriver v0.1.4
2222
github.com/jinzhu/now v1.1.5
23-
github.com/joho/godotenv v1.4.0
23+
github.com/joho/godotenv v1.5.1
2424
github.com/jordan-wright/email v4.0.1-0.20210109023952-943e75fe5223+incompatible
2525
github.com/lib/pq v1.10.7
2626
github.com/matcornic/hermes/v2 v2.1.0
27-
github.com/nyaruka/phonenumbers v1.1.4
27+
github.com/nyaruka/phonenumbers v1.1.6
2828
github.com/palantir/stacktrace v0.0.0-20161112013806-78658fd2d177
2929
github.com/pkg/errors v0.9.1
3030
github.com/redis/go-redis/v9 v9.0.2
31-
github.com/rs/zerolog v1.28.0
31+
github.com/rs/zerolog v1.29.0
3232
github.com/sendgrid/sendgrid-go v3.12.0+incompatible
33-
github.com/swaggo/swag v1.8.9
33+
github.com/swaggo/swag v1.8.10
3434
github.com/thedevsaddam/govalidator v1.9.10
35-
github.com/uptrace/uptrace-go v1.11.8
36-
go.opentelemetry.io/otel v1.11.2
37-
go.opentelemetry.io/otel/metric v0.34.0
38-
go.opentelemetry.io/otel/sdk v1.11.2
39-
go.opentelemetry.io/otel/trace v1.11.2
40-
google.golang.org/api v0.108.0
41-
google.golang.org/genproto v0.0.0-20230119192704-9d59e20e5cd1
42-
google.golang.org/protobuf v1.28.1
43-
gorm.io/datatypes v1.1.0
44-
gorm.io/driver/postgres v1.4.6
45-
gorm.io/gorm v1.24.3
35+
github.com/uptrace/uptrace-go v1.13.0
36+
go.opentelemetry.io/otel v1.14.0
37+
go.opentelemetry.io/otel/metric v0.37.0
38+
go.opentelemetry.io/otel/sdk v1.14.0
39+
go.opentelemetry.io/otel/trace v1.14.0
40+
google.golang.org/api v0.114.0
41+
google.golang.org/genproto v0.0.0-20230320173215-1fe4d14fc725
42+
google.golang.org/protobuf v1.30.0
43+
gorm.io/datatypes v1.1.1
44+
gorm.io/driver/postgres v1.5.0
45+
gorm.io/gorm v1.24.7-0.20230306060331-85eaf9eeda11
4646
)
4747

4848
require (
49-
cloud.google.com/go v0.109.0 // indirect
50-
cloud.google.com/go/compute v1.15.1 // indirect
49+
cloud.google.com/go v0.110.0 // indirect
50+
cloud.google.com/go/compute v1.18.0 // indirect
5151
cloud.google.com/go/compute/metadata v0.2.3 // indirect
5252
cloud.google.com/go/firestore v1.9.0 // indirect
53-
cloud.google.com/go/iam v0.10.0 // indirect
54-
cloud.google.com/go/longrunning v0.4.0 // indirect
55-
cloud.google.com/go/storage v1.29.0 // indirect
56-
cloud.google.com/go/trace v1.5.0 // indirect
57-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.34.2 // indirect
53+
cloud.google.com/go/iam v0.13.0 // indirect
54+
cloud.google.com/go/longrunning v0.4.1 // indirect
55+
cloud.google.com/go/storage v1.30.0 // indirect
56+
cloud.google.com/go/trace v1.9.0 // indirect
57+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.36.0 // indirect
5858
github.com/KyleBanks/depth v1.2.1 // indirect
5959
github.com/Masterminds/goutils v1.1.1 // indirect
6060
github.com/Masterminds/semver v1.5.0 // indirect
6161
github.com/Masterminds/sprig v2.22.0+incompatible // indirect
62-
github.com/PuerkitoBio/goquery v1.8.0 // indirect
62+
github.com/PuerkitoBio/goquery v1.8.1 // indirect
6363
github.com/VividCortex/ewma v1.1.1 // indirect
64-
github.com/andybalholm/brotli v1.0.4 // indirect
64+
github.com/andybalholm/brotli v1.0.5 // indirect
6565
github.com/andybalholm/cascadia v1.3.1 // indirect
6666
github.com/cenkalti/backoff/v4 v4.2.0 // indirect
6767
github.com/cespare/xxhash/v2 v2.2.0 // indirect
@@ -75,23 +75,23 @@ require (
7575
github.com/go-openapi/swag v0.22.3 // indirect
7676
github.com/go-sql-driver/mysql v1.7.0 // indirect
7777
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
78-
github.com/golang/protobuf v1.5.2 // indirect
78+
github.com/golang/protobuf v1.5.3 // indirect
7979
github.com/google/go-cmp v0.5.9 // indirect
80-
github.com/googleapis/enterprise-certificate-proxy v0.2.1 // indirect
81-
github.com/googleapis/gax-go/v2 v2.7.0 // indirect
80+
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect
81+
github.com/googleapis/gax-go/v2 v2.8.0 // indirect
8282
github.com/gorilla/css v1.0.0 // indirect
83-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.15.0 // indirect
83+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.15.2 // indirect
8484
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
8585
github.com/huandu/xstrings v1.4.0 // indirect
86-
github.com/imdario/mergo v0.3.13 // indirect
86+
github.com/imdario/mergo v0.3.14 // indirect
8787
github.com/jackc/pgpassfile v1.0.0 // indirect
8888
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
89-
github.com/jackc/pgx/v5 v5.2.0 // indirect
89+
github.com/jackc/pgx/v5 v5.3.1 // indirect
9090
github.com/jaytaylor/html2text v0.0.0-20211105163654-bc68cce691ba // indirect
9191
github.com/jinzhu/inflection v1.0.0 // indirect
9292
github.com/josharian/intern v1.0.0 // indirect
9393
github.com/json-iterator/go v1.1.12 // indirect
94-
github.com/klauspost/compress v1.15.15 // indirect
94+
github.com/klauspost/compress v1.16.3 // indirect
9595
github.com/mailru/easyjson v0.7.7 // indirect
9696
github.com/mattn/go-colorable v0.1.13 // indirect
9797
github.com/mattn/go-isatty v0.0.17 // indirect
@@ -101,40 +101,44 @@ require (
101101
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
102102
github.com/modern-go/reflect2 v1.0.2 // indirect
103103
github.com/olekukonko/tablewriter v0.0.5 // indirect
104-
github.com/rivo/uniseg v0.4.3 // indirect
104+
github.com/philhofer/fwd v1.1.2 // indirect
105+
github.com/rivo/uniseg v0.4.4 // indirect
105106
github.com/russross/blackfriday/v2 v2.1.0 // indirect
107+
github.com/savsgio/dictpool v0.0.0-20221023140959-7bf2e61cea94 // indirect
108+
github.com/savsgio/gotils v0.0.0-20230208104028-c358bd845dee // indirect
106109
github.com/sendgrid/rest v2.6.9+incompatible // indirect
107110
github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect
108111
github.com/swaggo/files v1.0.0 // indirect
112+
github.com/tinylib/msgp v1.1.8 // indirect
109113
github.com/valyala/bytebufferpool v1.0.0 // indirect
110-
github.com/valyala/fasthttp v1.44.0 // indirect
114+
github.com/valyala/fasthttp v1.45.0 // indirect
111115
github.com/valyala/tcplisten v1.0.0 // indirect
112116
github.com/vanng822/css v1.0.1 // indirect
113117
github.com/vanng822/go-premailer v1.20.1 // indirect
114118
go.opencensus.io v0.24.0 // indirect
115-
go.opentelemetry.io/contrib/instrumentation/runtime v0.37.0 // indirect
116-
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.11.2 // indirect
117-
go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.34.0 // indirect
118-
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.34.0 // indirect
119-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.11.2 // indirect
120-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.11.2 // indirect
121-
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.11.2 // indirect
122-
go.opentelemetry.io/otel/sdk/metric v0.34.0 // indirect
119+
go.opentelemetry.io/contrib/instrumentation/runtime v0.40.0 // indirect
120+
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.14.0 // indirect
121+
go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.37.0 // indirect
122+
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.37.0 // indirect
123+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.14.0 // indirect
124+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.14.0 // indirect
125+
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.14.0 // indirect
126+
go.opentelemetry.io/otel/sdk/metric v0.37.0 // indirect
123127
go.opentelemetry.io/proto/otlp v0.19.0 // indirect
124128
go.uber.org/atomic v1.10.0 // indirect
125-
go.uber.org/multierr v1.9.0 // indirect
129+
go.uber.org/multierr v1.10.0 // indirect
126130
go.uber.org/zap v1.24.0 // indirect
127-
golang.org/x/crypto v0.5.0 // indirect
128-
golang.org/x/net v0.5.0 // indirect
129-
golang.org/x/oauth2 v0.4.0 // indirect
131+
golang.org/x/crypto v0.7.0 // indirect
132+
golang.org/x/net v0.8.0 // indirect
133+
golang.org/x/oauth2 v0.6.0 // indirect
130134
golang.org/x/sync v0.1.0 // indirect
131-
golang.org/x/sys v0.4.0 // indirect
132-
golang.org/x/text v0.6.0 // indirect
135+
golang.org/x/sys v0.6.0 // indirect
136+
golang.org/x/text v0.8.0 // indirect
133137
golang.org/x/time v0.3.0 // indirect
134-
golang.org/x/tools v0.5.0 // indirect
138+
golang.org/x/tools v0.7.0 // indirect
135139
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
136140
google.golang.org/appengine v1.6.7 // indirect
137-
google.golang.org/grpc v1.52.0 // indirect
141+
google.golang.org/grpc v1.53.0 // indirect
138142
gopkg.in/yaml.v3 v3.0.1 // indirect
139-
gorm.io/driver/mysql v1.4.5 // indirect
143+
gorm.io/driver/mysql v1.4.7 // indirect
140144
)

0 commit comments

Comments
 (0)