Skip to content

Commit c1330b5

Browse files
authored
Merge branch '1.x' into nw-1258-implement-deployment-tagging-system-for-nightwatch-graphs
2 parents 4c45d13 + b054d4c commit c1330b5

34 files changed

+1332
-490
lines changed

CHANGELOG.md

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,43 @@
11
# Release Notes
22

3-
## [Unreleased](https://github.com/laravel/nightwatch/compare/v1.15.0...1.x)
3+
## [Unreleased](https://github.com/laravel/nightwatch/compare/v1.17.0...1.x)
4+
5+
## [v1.17.0](https://github.com/laravel/nightwatch/compare/v1.16.0...v1.17.0) - 2025-10-22
6+
7+
### What's Changed
8+
9+
* Capture request payload on unhandled exception by [@jessarcher](https://github.com/jessarcher) in https://github.com/laravel/nightwatch/pull/276
10+
11+
**Full Changelog**: https://github.com/laravel/nightwatch/compare/v1.16.0...v1.17.0
12+
13+
## [v1.16.0](https://github.com/laravel/nightwatch/compare/v1.15.2...v1.16.0) - 2025-10-22
14+
15+
### What's Changed
16+
17+
* Use latest version of box by [@timacdonald](https://github.com/timacdonald) in https://github.com/laravel/nightwatch/pull/290
18+
* Ignore vendor cache keys by [@avosalmon](https://github.com/avosalmon) in https://github.com/laravel/nightwatch/pull/291
19+
20+
**Full Changelog**: https://github.com/laravel/nightwatch/compare/v1.15.2...v1.16.0
21+
22+
## [v1.15.2](https://github.com/laravel/nightwatch/compare/v1.15.1...v1.15.2) - 2025-10-17
23+
24+
### What's Changed
25+
26+
* Fix PHP warning on bad cookie by [@jessarcher](https://github.com/jessarcher) in https://github.com/laravel/nightwatch/pull/292
27+
28+
**Full Changelog**: https://github.com/laravel/nightwatch/compare/v1.15.1...v1.15.2
29+
30+
## [v1.15.1](https://github.com/laravel/nightwatch/compare/v1.15.0...v1.15.1) - 2025-10-16
31+
32+
### What's Changed
33+
34+
* Allow multiple filter callbacks to be registered by [@avosalmon](https://github.com/avosalmon) in https://github.com/laravel/nightwatch/pull/287
35+
* Allow multiple redact callbacks to be registered by [@avosalmon](https://github.com/avosalmon) in https://github.com/laravel/nightwatch/pull/289
36+
* Use config dot notation by [@timacdonald](https://github.com/timacdonald) in https://github.com/laravel/nightwatch/pull/288
37+
* Extract stream helpers by [@timacdonald](https://github.com/timacdonald) in https://github.com/laravel/nightwatch/pull/286
38+
* Gracefully handle error output on shutdown by [@timacdonald](https://github.com/timacdonald) in https://github.com/laravel/nightwatch/pull/285
39+
40+
**Full Changelog**: https://github.com/laravel/nightwatch/compare/v1.15.0...v1.15.1
441

542
## [v1.15.0](https://github.com/laravel/nightwatch/compare/v1.14.1...v1.15.0) - 2025-10-10
643

agent/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN ./install-composer.sh \
1010

1111
WORKDIR /nightwatch-agent
1212

13-
COPY version.txt agent/docker/entrypoint.sh agent/docker/nightwatch-status ./
13+
COPY version.txt agent/docker/entrypoint.sh agent/nightwatch-status agent/helpers.php ./
1414
COPY agent/build ./agent/build/
1515

1616
ENV NIGHTWATCH_INGEST_URI=0.0.0.0:2407

agent/build/agent.phar

3.33 KB
Binary file not shown.

agent/build/signature.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
88EA194AA44600EDDF6423EF930CCB00DE00D1AC4FC5DA6FEDD26D60573745254FF765AEED2FBC321B74C908DF9C26D5AEC3F59AEBE01869158F4AF03AC1F5E1
1+
7F310B40C103C40A15B1126C34A2C0274E9BFBB22DF21B66257A84E4BDA63D84EF77CE395B972B262FC6F5DAD880A5A4FEF39F5DF8021D59E5870495C43E30F3

agent/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@
3939
"autoload": {
4040
"psr-4": {
4141
"Laravel\\NightwatchAgent\\": "src/"
42-
}
42+
},
43+
"files": ["helpers.php"]
4344
},
4445
"autoload-dev": {
4546
"psr-4": {

agent/docker/Dockerfile.build

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
FROM boxproject/box:4.6.3
1+
FROM boxproject/box:4.6.8
22

33
RUN install-php-extensions pcntl
44

5-
COPY docker/install-composer.sh /
6-
RUN ./install-composer.sh
7-
RUN ln -s /composer.phar /usr/bin/composer
8-
95
WORKDIR /app
6+
107
CMD ["compile"]

agent/docker/nightwatch-status

Lines changed: 0 additions & 200 deletions
This file was deleted.

0 commit comments

Comments
 (0)