Skip to content

Commit

Permalink
fix: Github requires authenticated channels only. (#5)
Browse files Browse the repository at this point in the history
* fix: Github requires authenticated channels only.

	https://github.blog/2021-09-01-improving-git-protocol-security-github/
	Github requires using authenticated channels whenever cloning a repo,
	see: https://github.blog/2021-09-01-improving-git-protocol-security-github/#no-more-unauthenticated-git

	This change broke the `luarocks` installing script since it was using unauthenticated git:// protocol.

* Add the new version to the README file

Co-authored-by: Mahmoud Ali <m7moud.said@gmail.com>
  • Loading branch information
Jonathan Duarte and m7moud authored Jan 11, 2022
1 parent 041f29f commit 3e79204
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,5 @@ Plugin is protecting Kong API service/route with introspection of Oauth2.0 JWT a
**1.1.1** `luarocks install https://raw.githubusercontent.com/medwing/kong-token-introspection/v1.1.1/access-token-introspection-1.1.1-0.rockspec`

**1.2.0** `luarocks install https://raw.githubusercontent.com/medwing/kong-token-introspection/v1.2.0/access-token-introspection-1.2.0-0.rockspec`

**1.2.1** `luarocks install https://raw.githubusercontent.com/medwing/kong-token-introspection/v1.2.1/access-token-introspection-1.2.1-0.rockspec`
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package = "access-token-introspection"
version = "1.2.0-0"
version = "1.2.1-0"

source = {
url = "git://github.com/medwing/kong-token-introspection",
tag = "v1.2.0"
url = "https://github.com/medwing/kong-token-introspection",
tag = "v1.2.1"
}

description = {
Expand Down

0 comments on commit 3e79204

Please sign in to comment.