Skip to content

Commit 9af9ba9

Browse files
committed
v2.0
1 parent f64651a commit 9af9ba9

File tree

10 files changed

+17156
-9724
lines changed

10 files changed

+17156
-9724
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
dist
2+
#Makefile#
3+
node_modules/
4+
package-lock.json
5+
yarn.lock

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ifneq ($(wildcard build/custom.mk),)
2323
endif
2424

2525
## Checks the code style, tests, builds and bundles the plugin.
26-
all: check-style test dist
26+
all: test dist
2727

2828
## Propagates plugin manifest information into the server/ and webapp/ folders as required.
2929
.PHONY: apply
@@ -36,7 +36,7 @@ check-style: webapp/.npminstall golangci-lint
3636
@echo Checking for style guide compliance
3737

3838
ifneq ($(HAS_WEBAPP),)
39-
cd webapp && npm run lint
39+
cd webapp && npm run lint
4040
endif
4141

4242
## Run golangci-lint on codebase.

go.mod

Lines changed: 90 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,97 @@
11
module github.com/mattermost/mattermost-plugin-google-calendar
22

3-
go 1.12
3+
go 1.19
44

55
require (
6-
github.com/google/uuid v1.1.2
7-
github.com/mattermost/mattermost-plugin-api v0.0.12
8-
github.com/mattermost/mattermost-server/v5 v5.28.1
9-
github.com/mholt/archiver/v3 v3.3.0
6+
github.com/google/uuid v1.3.0
7+
github.com/mattermost/mattermost-plugin-api v0.0.29
8+
github.com/mattermost/mattermost-server/v5 v5.33.5
9+
github.com/mholt/archiver/v3 v3.5.1
1010
github.com/pkg/errors v0.9.1
1111
github.com/robfig/cron/v3 v3.0.1
12-
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
13-
google.golang.org/api v0.25.0
12+
golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1
13+
google.golang.org/api v0.95.0
14+
)
15+
16+
require (
17+
9fans.net/go v0.0.4 // indirect
18+
cloud.google.com/go/compute v1.7.0 // indirect
19+
github.com/andybalholm/brotli v1.0.4 // indirect
20+
github.com/blang/semver v3.5.1+incompatible // indirect
21+
github.com/davecgh/go-spew v1.1.1 // indirect
22+
github.com/disintegration/imaging v1.6.2 // indirect
23+
github.com/dsnet/compress v0.0.2-0.20210315054119-f66993602bf5 // indirect
24+
github.com/dustin/go-humanize v1.0.0 // indirect
25+
github.com/dyatlov/go-opengraph v0.0.0-20210112100619-dae8665a5b09 // indirect
26+
github.com/fatih/color v1.13.0 // indirect
27+
github.com/francoispqt/gojay v1.2.13 // indirect
28+
github.com/fsnotify/fsnotify v1.5.4 // indirect
29+
github.com/go-asn1-ber/asn1-ber v1.5.4 // indirect
30+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
31+
github.com/golang/protobuf v1.5.2 // indirect
32+
github.com/golang/snappy v0.0.4 // indirect
33+
github.com/googleapis/enterprise-certificate-proxy v0.1.0 // indirect
34+
github.com/googleapis/gax-go/v2 v2.4.0 // indirect
35+
github.com/gorilla/websocket v1.5.0 // indirect
36+
github.com/hashicorp/errwrap v1.1.0 // indirect
37+
github.com/hashicorp/go-hclog v1.2.1 // indirect
38+
github.com/hashicorp/go-multierror v1.1.1 // indirect
39+
github.com/hashicorp/go-plugin v1.4.4 // indirect
40+
github.com/hashicorp/yamux v0.0.0-20211028200310-0bc27b27de87 // indirect
41+
github.com/json-iterator/go v1.1.12 // indirect
42+
github.com/jstemmer/gotags v1.4.1 // indirect
43+
github.com/kisielk/errcheck v1.6.2 // indirect
44+
github.com/klauspost/compress v1.15.6 // indirect
45+
github.com/klauspost/cpuid/v2 v2.0.13 // indirect
46+
github.com/klauspost/pgzip v1.2.5 // indirect
47+
github.com/mattermost/go-i18n v1.11.1-0.20211013152124-5c415071e404 // indirect
48+
github.com/mattermost/ldap v0.0.0-20201202150706-ee0e6284187d // indirect
49+
github.com/mattermost/logr v1.0.13 // indirect
50+
github.com/mattn/go-colorable v0.1.12 // indirect
51+
github.com/mattn/go-isatty v0.0.14 // indirect
52+
github.com/minio/md5-simd v1.1.2 // indirect
53+
github.com/minio/minio-go/v7 v7.0.28 // indirect
54+
github.com/minio/sha256-simd v1.0.0 // indirect
55+
github.com/mitchellh/go-homedir v1.1.0 // indirect
56+
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
57+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
58+
github.com/modern-go/reflect2 v1.0.2 // indirect
59+
github.com/nsf/gocode v0.0.0-20190302080247-5bee97b48836 // indirect
60+
github.com/nwaples/rardecode v1.1.3 // indirect
61+
github.com/oklog/run v1.1.0 // indirect
62+
github.com/pborman/uuid v1.2.1 // indirect
63+
github.com/pelletier/go-toml v1.9.5 // indirect
64+
github.com/philhofer/fwd v1.1.1 // indirect
65+
github.com/pierrec/lz4/v4 v4.1.14 // indirect
66+
github.com/pmezard/go-difflib v1.0.0 // indirect
67+
github.com/rogpeppe/godef v1.1.2 // indirect
68+
github.com/rs/xid v1.4.0 // indirect
69+
github.com/sirupsen/logrus v1.8.1 // indirect
70+
github.com/stretchr/testify v1.7.2 // indirect
71+
github.com/tinylib/msgp v1.1.6 // indirect
72+
github.com/ulikunitz/xz v0.5.10 // indirect
73+
github.com/wiggin77/cfg v1.0.2 // indirect
74+
github.com/wiggin77/merror v1.0.3 // indirect
75+
github.com/wiggin77/srslog v1.0.1 // indirect
76+
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
77+
github.com/yuin/goldmark v1.4.14 // indirect
78+
go.opencensus.io v0.23.0 // indirect
79+
go.uber.org/atomic v1.9.0 // indirect
80+
go.uber.org/multierr v1.6.0 // indirect
81+
go.uber.org/zap v1.17.0 // indirect
82+
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
83+
golang.org/x/image v0.0.0-20220601225756-64ec528b34cd // indirect
84+
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
85+
golang.org/x/net v0.0.0-20220909164309-bea034e7d591 // indirect
86+
golang.org/x/sys v0.0.0-20220909162455-aba9fc2a8ff2 // indirect
87+
golang.org/x/text v0.3.7 // indirect
88+
golang.org/x/tools v0.1.12 // indirect
89+
google.golang.org/appengine v1.6.7 // indirect
90+
google.golang.org/genproto v0.0.0-20220624142145-8cd45d7dbd1f // indirect
91+
google.golang.org/grpc v1.47.0 // indirect
92+
google.golang.org/protobuf v1.28.0 // indirect
93+
gopkg.in/ini.v1 v1.66.6 // indirect
94+
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
95+
gopkg.in/yaml.v2 v2.4.0 // indirect
96+
gopkg.in/yaml.v3 v3.0.1 // indirect
1497
)

0 commit comments

Comments
 (0)