Skip to content

Commit ea48835

Browse files
Bump github.com/dunglas/frankenphp from 1.3.6 to 1.4.0 in /cli (#103)
Bumps [github.com/dunglas/frankenphp](https://github.com/dunglas/frankenphp) from 1.3.6 to 1.4.0. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dunglas/frankenphp/commit/c3031ea07fd477498ef9dc01df4b196ffadfea49"><code>c3031ea</code></a> chore: prepare release 1.4.0</li> <li><a href="https://github.com/dunglas/frankenphp/commit/39a88c3e8339696949ac72a5cf5c3aa23973393e"><code>39a88c3</code></a> chore: bump deps</li> <li><a href="https://github.com/dunglas/frankenphp/commit/19344a0dfe6fedc1c09bd69d9ef6102eee02625c"><code>19344a0</code></a> chore: bump deps</li> <li><a href="https://github.com/dunglas/frankenphp/commit/5b86f2c554cbc4838450a59bb797226834889caa"><code>5b86f2c</code></a> ci: fix build-static.sh CS</li> <li><a href="https://github.com/dunglas/frankenphp/commit/fd6cc7148d5c4ee3bca626b3df81a1c71afc8c70"><code>fd6cc71</code></a> fix(static): removed redundant ext-json for embedded apps (<a href="https://redirect.github.com/dunglas/frankenphp/issues/1300">#1300</a>)</li> <li><a href="https://github.com/dunglas/frankenphp/commit/72120d7a2c79e284762d107993303150e755feb9"><code>72120d7</code></a> fix(static): check command go and xcaddy in build-static.sh (<a href="https://redirect.github.com/dunglas/frankenphp/issues/1298">#1298</a>)</li> <li><a href="https://github.com/dunglas/frankenphp/commit/479ba0a063901703cdccd9dd1d31811415214d8e"><code>479ba0a</code></a> fix: log error if FrankenPHP is not properly started (<a href="https://redirect.github.com/dunglas/frankenphp/issues/1314">#1314</a>)</li> <li><a href="https://github.com/dunglas/frankenphp/commit/2b7b3d1e4b0bb2634936ce463ffe7cf10c5978e3"><code>2b7b3d1</code></a> perf: put all $_SERVER vars into one function call. (<a href="https://redirect.github.com/dunglas/frankenphp/issues/1303">#1303</a>)</li> <li><a href="https://github.com/dunglas/frankenphp/commit/ec8eea0c7db7c8273abc6181b52577f9a6d6e165"><code>ec8eea0</code></a> fix(static): update patch from rust-alpine-mimalloc for mimalloc &gt;= 2.1.8 (<a href="https://redirect.github.com/dunglas/frankenphp/issues/1">#1</a>...</li> <li><a href="https://github.com/dunglas/frankenphp/commit/c2ca4dbf03048d7d82c9b069646d64d1454b6abb"><code>c2ca4db</code></a> feat(caddy): use new first_exist_fallback try policy</li> <li>Additional commits viewable in <a href="https://github.com/dunglas/frankenphp/compare/v1.3.6...v1.4.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/dunglas/frankenphp&package-manager=go_modules&previous-version=1.3.6&new-version=1.4.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 1b6a8e1 commit ea48835

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

cli/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module durable_php
22

33
go 1.23
44

5-
require github.com/dunglas/frankenphp v1.3.6
5+
require github.com/dunglas/frankenphp v1.4.0
66

77
require github.com/nats-io/nats.go v1.38.0
88

@@ -47,9 +47,9 @@ require (
4747
github.com/sony/gobreaker v1.0.0 // indirect
4848
go.uber.org/multierr v1.11.0 // indirect
4949
golang.org/x/crypto v0.31.0 // indirect
50-
golang.org/x/sys v0.28.0 // indirect
50+
golang.org/x/sys v0.29.0 // indirect
5151
golang.org/x/text v0.21.0 // indirect
5252
golang.org/x/time v0.8.0 // indirect
53-
google.golang.org/protobuf v1.36.0 // indirect
53+
google.golang.org/protobuf v1.36.2 // indirect
5454
gopkg.in/yaml.v3 v3.0.1 // indirect
5555
)

cli/go.sum

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c
1111
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
1212
github.com/dolthub/maphash v0.1.0 h1:bsQ7JsF4FkkWyrP3oCnFJgrCUAFbFf3kOl4L/QxPDyQ=
1313
github.com/dolthub/maphash v0.1.0/go.mod h1:gkg4Ch4CdCDu5h6PMriVLawB7koZ+5ijb9puGMV50a4=
14-
github.com/dunglas/frankenphp v1.3.6 h1:pOCNI8BQtjzut2AnVxeSSgpuT7X9x87mIZS+LNYf45o=
15-
github.com/dunglas/frankenphp v1.3.6/go.mod h1:jlt95wpO1sSHxV4Uq0ijxxz/DaC+4Ne5sr4KOt9ls/k=
14+
github.com/dunglas/frankenphp v1.4.0 h1:yHOCOtobHG9LoMgqKBUFVO809eS1xk7Lyw5yfqL0jE4=
15+
github.com/dunglas/frankenphp v1.4.0/go.mod h1:Jc0uiWdbebGeqGRkD02J1Of9Jp6bLiT3dwHgGTlAIyU=
1616
github.com/gammazero/deque v1.0.0 h1:LTmimT8H7bXkkCy6gZX7zNLtkbz4NdS2z8LZuor3j34=
1717
github.com/gammazero/deque v1.0.0/go.mod h1:iflpYvtGfM3U8S8j+sZEKIak3SAKYpA5/SQewgfXDKo=
1818
github.com/golang-jwt/jwt/v4 v4.5.1 h1:JdqV9zKUdtaa9gdPlywC3aeoEsR681PlKC+4F5gQgeo=
@@ -85,17 +85,17 @@ go.uber.org/zap v1.27.0 h1:aJMhYGrd5QSmlpLMr2MftRKl7t8J8PTZPA732ud/XR8=
8585
go.uber.org/zap v1.27.0/go.mod h1:GB2qFLM7cTU87MWRP2mPIjqfIDnGu+VIO4V/SdhGo2E=
8686
golang.org/x/crypto v0.31.0 h1:ihbySMvVjLAeSH1IbfcRTkD/iNscyz8rGzjF/E5hV6U=
8787
golang.org/x/crypto v0.31.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk=
88-
golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I=
89-
golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4=
88+
golang.org/x/net v0.34.0 h1:Mb7Mrk043xzHgnRM88suvJFwzVrRfHEHJEl5/71CKw0=
89+
golang.org/x/net v0.34.0/go.mod h1:di0qlW3YNM5oh6GqDGQr92MyTozJPmybPK4Ev/Gm31k=
9090
golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
91-
golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA=
92-
golang.org/x/sys v0.28.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
91+
golang.org/x/sys v0.29.0 h1:TPYlXGxvx1MGTn2GiZDhnjPA9wZzZeGKHHmKhHYvgaU=
92+
golang.org/x/sys v0.29.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
9393
golang.org/x/text v0.21.0 h1:zyQAAkrwaneQ066sspRyJaG9VNi/YJ1NfzcGB3hZ/qo=
9494
golang.org/x/text v0.21.0/go.mod h1:4IBbMaMmOPCJ8SecivzSH54+73PCFmPWxNTLm+vZkEQ=
9595
golang.org/x/time v0.8.0 h1:9i3RxcPv3PZnitoVGMPDKZSq1xW1gK1Xy3ArNOGZfEg=
9696
golang.org/x/time v0.8.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM=
97-
google.golang.org/protobuf v1.36.0 h1:mjIs9gYtt56AzC4ZaffQuh88TZurBGhIJMBZGSxNerQ=
98-
google.golang.org/protobuf v1.36.0/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE=
97+
google.golang.org/protobuf v1.36.2 h1:R8FeyR1/eLmkutZOM5CWghmo5itiG9z0ktFlTVLuTmU=
98+
google.golang.org/protobuf v1.36.2/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE=
9999
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
100100
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
101101
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=

0 commit comments

Comments
 (0)