Skip to content

Commit

Permalink
chore(*): release 1.1.0
Browse files Browse the repository at this point in the history
### Summary

#### Added
- `url:decode` method
- `ada.decode` function
- `search:decode` method
- `search:decode_all` method
- `ada.search_encode` function
- `ada.search.encode` function
- `ada.search_decode` function
- `ada.search.decode` function
- `ada.search_decode_all` function
- `ada.search.decode_all` function
#### Changed
- The `set_port` to not allow negative or positive inf or NaN
#### Updated
- The CI is now executed against Ada 2.9.1

Signed-off-by: Aapo Talvensaari <[email protected]>
  • Loading branch information
bungle committed Sep 3, 2024
1 parent 0d4397b commit 4085a26
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
17 changes: 16 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,26 @@

All notable changes to `lua-resty-ada` will be documented in this file.

## [1.1.0] - 2024-09-03
### Added
- `url:decode` method
- `ada.decode` function
- `ada.search_encode` function
- `ada.search.encode` function
- `search:decode` method
- `search:decode_all` method
- `ada.search_decode` function
- `ada.search.decode` function
- `ada.search_decode_all` function
- `ada.search.decode_all` function
### Changed
- The `set_port` to not allow negative or positive inf or NaN
### Updated
- The CI is now executed against Ada 2.9.1

## [1.0.1] - 2024-08-20
### Removed
- The unnecessary `:is_valid` was removed (the URL is validated when parsed)

### Added
- Explicitly free Ada URL object on invalid URLs

Expand Down
2 changes: 1 addition & 1 deletion lib/resty/ada.lua
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ local setmetatable = setmetatable


local _OMITTED = 0xffffffff
local _VERSION = "1.0.1"
local _VERSION = "1.1.0"


local function parse_component(c, raw)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package = "lua-resty-ada"
version = "1.0.1-1"
version = "1.1.0-1"
source = {
url = "git+https://github.com/bungle/lua-resty-ada.git",
tag = "v1.0.1",
tag = "v1.1.0",
}
description = {
summary = "LuaJIT FFI bindings to Ada — WHATWG-compliant and fast URL parser",
Expand Down

0 comments on commit 4085a26

Please sign in to comment.