Skip to content

Commit

Permalink
release 2.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Tieske committed Jan 21, 2025
1 parent 0c0aa7c commit bcf8cd8
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* create a PR that changes Kong-Enterprise tests to use the Pongo release branch
* add a link in the PR description to the Pongo release PR for cross-referencing
* mark the PR as "draft"
* example where/how to make the change: https://github.com/Kong/kong-ee/pull/4156. Copy the to-do list from the PR description!
* example where/how to make the change: https://github.com/Kong/kong-ee/pull/10335. Copy the to-do list from the PR description!
* make sure it passes, adjust if required
* merge the Pongo release branch, tag as `x.y.z`, and push the tag
* in Github UI create a release from the tag
Expand All @@ -22,12 +22,21 @@

---

## Unreleased...
## 2.16.0 released 21-Jan-2025

* Fix: warning in docker file.
[#647](https://github.com/Kong/kong-pongo/pull/647)

* Fix: check for `md5` availability in platform indepedent way.
Removes need to install coreutils on Mac.
[#642](https://github.com/Kong/kong-pongo/pull/642).

* Feat: Kong Enterprise 3.4.3.16

* Feat: Kong Enterprise 3.4.3.15

* Feat: Kong Enterprise 3.4.3.14

---

## 2.15.0 released 17-Dec-2024
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2016-2021 Kong Inc.
Copyright 2016-2025 Kong Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ check [this blogpost on the Kong website](https://konghq.com/blog/custom-lua-plu
| | | (_) | | | | (_| | (_) |
\_| \___/|_| |_|\__, |\___/
__/ |
|___/ v2.15.0
|___/ v2.16.0
Usage: pongo action [options...] [--] [action options...]
Expand Down
8 changes: 4 additions & 4 deletions pongo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

function globals {
# Project related global variables
PONGO_VERSION=2.15.0
PONGO_VERSION=2.16.0

local script_path
# explicitly resolve the link because realpath doesn't do it on Windows
Expand All @@ -20,7 +20,7 @@ function globals {
PONGORC_FILE=".pongo/pongorc"
fi

# shellcheck disable=SC1090 # do not follow source
# shellcheck disable=SC1091 # do not follow source
source "${LOCAL_PATH}/assets/set_variables.sh"

DOCKER_FILE=${PONGO_DOCKER_FILE:-$LOCAL_PATH/assets/Dockerfile}
Expand Down Expand Up @@ -767,7 +767,7 @@ function build_image {

if is_commit_based "$KONG_VERSION"; then
# development; we must fetch the related development files dynamically in this case
# shellcheck disable=SC1090 # do not follow source
# shellcheck disable=SC1091 # do not follow source
source "${LOCAL_PATH}/assets/update_versions.sh"
update_development "$KONG_VERSION" "$VERSION"
fi
Expand Down Expand Up @@ -1340,7 +1340,7 @@ function main {
;;

update)
# shellcheck disable=SC1090 # do not follow source
# shellcheck disable=SC1091 # do not follow source
source "${LOCAL_PATH}/assets/update_versions.sh"
update_artifacts
exit $?
Expand Down

0 comments on commit bcf8cd8

Please sign in to comment.