Skip to content

Commit

Permalink
release 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nowNick committed Oct 12, 2023
1 parent 439b5a1 commit 8f6ee73
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 5 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/build_and_test_with_resty_events.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: Build and test

on: [push, pull_request]
name: Build and test - with resty_events

on:
pull_request: {}
workflow_dispatch: {}
push:
branches:
- main
- master
- release/**

jobs:
build:
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/build_and_test_with_worker_events.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Build and test
name: Build and test - with worker_events

on: [push, pull_request]
on:
pull_request: {}
workflow_dispatch: {}
push:
branches:
- main
- master

jobs:
build:
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,14 @@ Versioning is strictly based on [Semantic Versioning](https://semver.org/)
* push commit and tag
* upload rock to luarocks: `luarocks upload rockspecs/[name] --api-key=abc`

### 3.0.0 (12-Oct-2023)

* Perf: optimize by localizing some functions [#92](https://github.com/Kong/lua-resty-healthcheck/pull/92) (backport)
* Fix: Generate fresh default http_statuses within new() [#83](https://github.com/Kong/lua-resty-healthcheck/pull/83) (backport)

### 2.0.0
--- Version discarded from current & future development

### 1.6.3 (06-Sep-2023)

* Feature: Added support for https_sni [#49](https://github.com/Kong/lua-resty-healthcheck/pull/49) (backport)
Expand Down
26 changes: 26 additions & 0 deletions rockspecs/lua-resty-healthcheck-3.0.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package = "lua-resty-healthcheck"
version = "3.0.0-1"
source = {
url = "git+https://github.com/Kong/lua-resty-healthcheck.git",
tag = "3.0.0"
}
description = {
summary = "Healthchecks for OpenResty to check upstream service status",
detailed = [[
lua-resty-healthcheck is a module that can check upstream service
availability by sending requests and validating responses at timed
intervals.
]],
license = "Apache 2.0",
homepage = "https://github.com/Kong/lua-resty-healthcheck"
}
dependencies = {
"penlight >= 1.9.2",
"lua-resty-timer ~> 1",
}
build = {
type = "builtin",
modules = {
["resty.healthcheck"] = "lib/resty/healthcheck.lua",
}
}

0 comments on commit 8f6ee73

Please sign in to comment.