forked from Kong/kong
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit d6633e9 Author: thefosk <[email protected]> Date: Wed Jan 20 19:46:43 2016 -0800 Configuration in API - force-leave in API - additional check for luajit commit e7ce5d6 Author: Thibault Charbonnier <[email protected]> Date: Thu Dec 24 01:12:11 2015 -0800 fix(api) allow to delete APIs and Consumers by name commit cf4ea3a Author: Thibault Charbonnier <[email protected]> Date: Wed Dec 23 20:17:58 2015 -0800 docs(readme) update getkong links to https commit 738cd8e Author: Thibault Charbonnier <[email protected]> Date: Wed Dec 23 15:48:19 2015 -0800 docs(readme) add more development instructions The different test suites and the way test/development running Kong need a different configuration file can be confusing at first, so this adds some more insight as to what is needed and why. Of course, this is the current system but nothing prevents it from being improved in the future. commit 4ea5b2b Author: thefosk <[email protected]> Date: Sat Oct 17 03:03:38 2015 -0700 Adding cache API - CLI Rewrite - Serf integration/Clustering - Hooks/Events - Invalidations commit 9f1ffb3 Author: Shashi Ranjan <[email protected]> Date: Tue Nov 17 18:37:00 2015 -0800 fix(resp-tranformer) handle already existing headers Now add will only add header/json if it does not exist, config `append` added to support adding new value to existing header/json. If header does not exist, a new one will be added. config `replace added to replace the value of existing header/json with new value commit 20d4b72 Author: Shashi Ranjan <[email protected]> Date: Mon Dec 21 16:39:33 2015 -0800 refactor(req-transformer) append, replace of header/querystring Fix for issue Kong#393 for response-transformer motivated fix for this plugin too. New config append/replace added to support adding new value to existing header/querystring and replcaing existing header/querystring with new value. commit 5feacd1 Author: Thibault Charbonnier <[email protected]> Date: Thu Dec 24 01:12:11 2015 -0800 fix(api) allow to delete APIs and Consumers by name Cassandra from 3 to 2 during an update and a delete, it removed the possibility of updating and deleting APIs and Consumers by their name, because that change made it so the base_dao's underlying `delete()` and `update()` were directly used instead of first querying the entity. Querying the entity first allowed to retrieve its PRIMARY KEY fields, and hence `delete()` and `update()` never complained. But by removing this initial retrieving, we removed this feature, and **there were not tests** for it! - This adds test for PATCH/DELETE APIs and Consumers by name/username - Adds an argument to the base_dao `update()` and `delete()` to select by any field rather than only the PRIMARY KEY fields. commit 32b9945 Author: Thibault Charbonnier <[email protected]> Date: Wed Dec 23 20:17:58 2015 -0800 docs(readme) update getkong links to https commit 6c31ec5 Author: Thibault Charbonnier <[email protected]> Date: Wed Dec 23 15:48:19 2015 -0800 docs(readme) add more development instructions The different test suites and the way test/development running Kong need a different configuration file can be confusing at first, so this adds some more insight as to what is needed and why. Of course, this is the current system but nothing prevents it from being improved in the future.
- Loading branch information
1 parent
14351e3
commit 4720b7b
Showing
142 changed files
with
5,431 additions
and
1,196 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
if [ "$TEST_SUITE" == "unit" ]; then | ||
echo "Exiting, no integration tests" | ||
exit | ||
fi | ||
|
||
mkdir -p $DNSMASQ_DIR | ||
|
||
if [ ! "$(ls -A $DNSMASQ_DIR)" ]; then | ||
pushd $DNSMASQ_DIR | ||
wget http://www.thekelleys.org.uk/dnsmasq/dnsmasq-${DNSMASQ_VERSION}.tar.gz | ||
tar xzf dnsmasq-${DNSMASQ_VERSION}.tar.gz | ||
|
||
pushd dnsmasq-${DNSMASQ_VERSION} | ||
make install DESTDIR=$DNSMASQ_DIR | ||
popd | ||
|
||
popd | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
if [ "$TEST_SUITE" == "unit" ]; then | ||
echo "Exiting, no integration tests" | ||
exit | ||
fi | ||
|
||
mkdir -p $SERF_DIR | ||
|
||
if [ ! "$(ls -A $SERF_DIR)" ]; then | ||
pushd $SERF_DIR | ||
wget https://releases.hashicorp.com/serf/${SERF_VERSION}/serf_${SERF_VERSION}_linux_amd64.zip | ||
unzip serf_${SERF_VERSION}_linux_amd64.zip | ||
popd | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.