Skip to content

Tags: littleyang/tyk

Tags

v2.6.1

Toggle v2.6.1's commit message
Adds Upstart version detection and separate conf, fixes sysv script, …

…compatible service stopping

v2.6.0

Toggle v2.6.0's commit message
edit version expected in test response

v2.5.4

Toggle v2.5.4's commit message
Bump version to 2.5.4

v2.5.3

Toggle v2.5.3's commit message
Bump version

v2.5.2

Toggle v2.5.2's commit message
Fix dashboard registration

v2.5.1

Toggle v2.5.1's commit message
bump version

v2.5.0

Toggle v2.5.0's commit message
Fix advanced url rewrites with session meta and path params

v2.4.3

Toggle v2.4.3's commit message
Fix 404 during reloads

Issue was happening on high load, because mainRouter object was
initialized with fresh router, before API routes was loaded into it.

Additionally added more mutexes.

v2.4.2

Toggle v2.4.2's commit message
Fix VirtualPath caching

Bug was introduced during refactoring, most likely as performance
optimization. `isVirtual` check never run if `CacheAllSafeRequests` was
true.

In addition test re-written to use full HTTP stack, and included case
when caching turned on.

Should fix TykTechnologies#1356

v2.4.1

Toggle v2.4.1's commit message
cache: EnabledForSpec should just use EnableCache

Don't require there to be a cached extended path too. Otherwise, one
can't use any sort of caching on an API without adding cached extended
paths.

At the same time, don't run the middleware if there are any cached
extended paths yet EnableCache is false. The docs tell the user to
enable the cache for the whole API, so that is expected.

Add a test to prove that caching of a simple API works. This test was
failing before, as the API does not have any cached extended paths.

Fixes TykTechnologies#1329.