From 6875a6b11b0ce071af30d2421745b03277e9f34b Mon Sep 17 00:00:00 2001 From: Kevin Whitley Date: Sun, 30 May 2021 00:32:05 -0500 Subject: [PATCH] released v2.3.9 - developer QOL fixes <3 --- CHANGELOG.md | 1 + README.md | 11 ++++++----- package.json | 2 +- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 34c9aba7..7617160f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ ## Changelog Until this library makes it to a production release of v1.x, **minor versions may contain breaking changes to the API**. After v1.x, semantic versioning will be honored, and breaking changes will only occur under the umbrella of a major version bump. +- **v2.3.9** - dev fixes: [@taralx](https://github.com/taralx) improved QOL issues for test writers and dev installers - **v2.3.7** - fix: :id.:format not resolving (only conditional format would match) - **v2.3.0** - feature: request handler will be passed request.proxy (if found) or request (if not) - allowing for middleware magic downstream... - **v2.2.0** - feature: base path (option) is now included in the route param parsing... diff --git a/README.md b/README.md index e057ca55..4d0d0e69 100644 --- a/README.md +++ b/README.md @@ -384,10 +384,11 @@ This trick allows methods (e.g. "get", "post") to by defined dynamically by the These folks are the real heroes, making open source the powerhouse that it is! Help out and get your name added to this list! <3 #### Core, Concepts, and Codebase -- [@technoyes](https://github.com/technoyes) - three kind-of-a-big-deal errors fixed. Imagine the look on my face... thanks man!! :) - [@hunterloftis](https://github.com/hunterloftis) - router.handle() method now accepts extra arguments and passed them to route functions -- [@roojay520](https://github.com/roojay520) - TS interface fixes - [@mvasigh](https://github.com/mvasigh) - proxy hacks courtesy of this chap -#### Documentation Fixes -- [@arunsathiya](https://github.com/arunsathiya) -- [@poacher2k](https://github.com/poacher2k) +#### Fixes +- [@taralx](https://github.com/taralx) - QOL fixes for contributing (dev dep fix and test file consistency) <3 +- [@technoyes](https://github.com/technoyes) - three kind-of-a-big-deal errors fixed. Imagine the look on my face... thanks man!! :) +- [@roojay520](https://github.com/roojay520) - TS interface fixes +- [@arunsathiya](https://github.com/arunsathiya) - documentation +- [@poacher2k](https://github.com/poacher2k) - documentation diff --git a/package.json b/package.json index 0615a4c9..fd1de8ab 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "itty-router", - "version": "2.3.8", + "version": "2.3.9", "description": "Tiny, zero-dependency router with route param and query parsing - build for Cloudflare Workers, but works everywhere!", "main": "./dist/itty-router.min.js", "types": "./dist/itty-router.d.ts",