Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GH-773]: Fixed Issue Jira's autolink should support issue links that contain a comment link in the URL #871

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ endif
## Ensures NPM dependencies are installed without having to run this all the time.
webapp/node_modules: $(wildcard webapp/package.json)
ifneq ($(HAS_WEBAPP),)
cd webapp && $(NPM) install
cd webapp && $(NPM) install --verbose
touch $@
endif

Expand Down
5 changes: 3 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ go 1.21.8
require (
github.com/andygrunwald/go-jira v1.16.0
github.com/blang/semver/v4 v4.0.0
//TODO: This is a temporary package will be changed after the autolink PR is merged
github.com/brightscout/mattermost-plugin-autolink v0.0.0-20230406101012-1b413c6d3031
github.com/dghubble/oauth1 v0.5.0
github.com/golang-jwt/jwt/v5 v5.2.1
github.com/gorilla/mux v1.8.1
github.com/jarcoal/httpmock v1.0.8
github.com/mattermost/mattermost-plugin-autolink v1.2.2-0.20210709183311-c8fa30db649f
github.com/mattermost/mattermost-server/v6 v6.3.0 // indirect
github.com/mattermost/mattermost/server/public v0.0.17-0.20240313200153-4d7437d30e1c
github.com/pkg/errors v0.9.1
github.com/rbriski/atlassian-jwt v0.0.0-20240408161306-6b6d681cf2d9
Expand Down Expand Up @@ -64,7 +66,6 @@ require (
github.com/wiggin77/merror v1.0.5 // indirect
github.com/wiggin77/srslog v1.0.1 // indirect
github.com/xtgo/uuid v0.0.0-20140804021211-a0b114877d4c // indirect
go.uber.org/atomic v1.9.0 // indirect
golang.org/x/crypto v0.21.0 // indirect
golang.org/x/net v0.23.0 // indirect
golang.org/x/sys v0.18.0 // indirect
Expand Down
Loading
Loading