Skip to content

Commit 07c28d3

Browse files
chore(release): 1.0.0 [skip ci]
# 1.0.0 (2022-03-11) ### Bug Fixes * **command:** Restore environment variables before calling `exec` ([c7631e5](c7631e5)) * correctly render the command name in the help text ([d2bbce7](d2bbce7)), closes [#16](#16) * **http:** corrects protocol check for wget availability ([eficode#82](https://github.com/Penbase/wait-for/issues/82)) ([570c9fb](570c9fb)) * **iteration:** Remember to try one last time before giving up ([2ed5308](2ed5308)) * **timeout:** resolve degredation which prevented setting indefinite timeout ([b45e76c](b45e76c)) * typo in error message for missing wget command ([db2479e](db2479e)) * uses timeout in nc as it is used with wget ([eficode#42](https://github.com/Penbase/wait-for/issues/42)) ([0195167](0195167)) * wget timeout does not double ([206b38d](206b38d)) ### Features * adds -v and --version flag to show the version (Thanks [@philipp-kunz-mimacom](https://github.com/philipp-kunz-mimacom)) ([8636f50](8636f50)), closes [eficode#71](https://github.com/Penbase/wait-for/issues/71) * adds license header to wait-for script ([975d508](975d508)) * adds support for http using wget ([ff0d29d](ff0d29d)), closes [#14](#14) * **option:** Restrict the timeout input to non-negative integers ([c4d125f](c4d125f)) * **option:** Support more conventional formats in the option parser ([ce95717](ce95717)) * **version:** trigger first release for v1.0.0 ([33f1343](33f1343)) ### BREAKING CHANGES * **command:** HOST, PORT and other internally used environment variables are not overwritten anymore. If you use these, then you need to manually supply them.
1 parent d548ec5 commit 07c28d3

File tree

4 files changed

+32
-3
lines changed

4 files changed

+32
-3
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
# 1.0.0 (2022-03-11)
2+
3+
4+
### Bug Fixes
5+
6+
* **command:** Restore environment variables before calling `exec` ([c7631e5](https://github.com/Penbase/wait-for/commit/c7631e52594858ff18d1ab563e111289f8f8b45e))
7+
* correctly render the command name in the help text ([d2bbce7](https://github.com/Penbase/wait-for/commit/d2bbce787871c67cdcfe1e614b90f96e1c3217f3)), closes [#16](https://github.com/Penbase/wait-for/issues/16)
8+
* **http:** corrects protocol check for wget availability ([#82](https://github.com/Penbase/wait-for/issues/82)) ([570c9fb](https://github.com/Penbase/wait-for/commit/570c9fbbfd4bd3f86deee2d1159d35c2b80806a4))
9+
* **iteration:** Remember to try one last time before giving up ([2ed5308](https://github.com/Penbase/wait-for/commit/2ed5308e39aa9fe462fde50dc491deedd8dbad75))
10+
* **timeout:** resolve degredation which prevented setting indefinite timeout ([b45e76c](https://github.com/Penbase/wait-for/commit/b45e76cba24166e52c7e1d71fb4c0f557c05de7d))
11+
* typo in error message for missing wget command ([db2479e](https://github.com/Penbase/wait-for/commit/db2479e4411441e8edc9188d002ee73b3d3e8e4e))
12+
* uses timeout in nc as it is used with wget ([#42](https://github.com/Penbase/wait-for/issues/42)) ([0195167](https://github.com/Penbase/wait-for/commit/019516781dcca428cb0ee372e008e251e333f1ac))
13+
* wget timeout does not double ([206b38d](https://github.com/Penbase/wait-for/commit/206b38d01ddf0fe76ea35efadc4ebdfb6c877895))
14+
15+
16+
### Features
17+
18+
* adds -v and --version flag to show the version (Thanks [@philipp-kunz-mimacom](https://github.com/philipp-kunz-mimacom)) ([8636f50](https://github.com/Penbase/wait-for/commit/8636f50d4a83e3e1c44fafae7c3d63f2f3d8db49)), closes [#71](https://github.com/Penbase/wait-for/issues/71)
19+
* adds license header to wait-for script ([975d508](https://github.com/Penbase/wait-for/commit/975d508c4839631c839de553fdca3c72c3628714))
20+
* adds support for http using wget ([ff0d29d](https://github.com/Penbase/wait-for/commit/ff0d29d11ecd99a8209c6dd3968fd14ab2878b5b)), closes [#14](https://github.com/Penbase/wait-for/issues/14)
21+
* **option:** Restrict the timeout input to non-negative integers ([c4d125f](https://github.com/Penbase/wait-for/commit/c4d125f22d34dfa589509abd0103404a7ab2a222))
22+
* **option:** Support more conventional formats in the option parser ([ce95717](https://github.com/Penbase/wait-for/commit/ce95717bd98e65a447aa2f0de6ae64e52bbfbe65))
23+
* **version:** trigger first release for v1.0.0 ([33f1343](https://github.com/Penbase/wait-for/commit/33f13430ff5780b87ca646058e2b9c2bfba8a8f6))
24+
25+
26+
### BREAKING CHANGES
27+
28+
* **command:** HOST, PORT and other internally used environment variables are not overwritten anymore. If you use these, then you need to manually supply them.
29+
130
## [2.2.3](https://github.com/eficode/wait-for/compare/v2.2.2...v2.2.3) (2022-03-05)
231

332

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wait-for",
3-
"version": "2.2.3",
3+
"version": "1.0.0",
44
"scripts": {
55
"test": "./node_modules/.bin/bats wait-for.bats",
66
"test:docker": "docker build -t wait-for-test . && docker run --rm -it wait-for-test"

wait-for

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2323
# SOFTWARE.
2424

25-
VERSION="2.2.3"
25+
VERSION="1.0.0"
2626

2727
set -- "$@" -- "$TIMEOUT" "$QUIET" "$PROTOCOL" "$HOST" "$PORT" "$result"
2828
TIMEOUT=15

0 commit comments

Comments
 (0)