-
-
Notifications
You must be signed in to change notification settings - Fork 0
Updated Vortex to 1.38.0. #169
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
48801be
765baf4
0fa4f70
f5ef344
2336c2c
47b6adb
d9c76cf
6156e2b
6c2af37
6870557
7f7c002
7579f4f
3ed4a23
341e403
3c77249
7a8126a
a097b25
3953138
af46fe7
628a30c
b41e637
91740fc
0f056de
09c6be6
e3eb919
961e446
d41ab39
8d270a4
2d29d5f
5d4df46
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,9 +10,9 @@ | |
| # @see https://hub.docker.com/r/uselagoon/commons/tags | ||
| # @see https://github.com/uselagoon/lagoon-images/tree/main/images/commons | ||
|
|
||
| FROM uselagoon/commons:26.3.0 AS commons | ||
| FROM uselagoon/commons:26.4.0 AS commons | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Vortex 1.38.0: drevops/vortex#2471 Lagoon container images bumped |
||
|
|
||
| FROM clamav/clamav-debian:1.5.2-34 | ||
| FROM clamav/clamav-debian:1.5.2-37 | ||
|
|
||
| COPY --from=commons /lagoon /lagoon | ||
| COPY --from=commons /bin/fix-permissions /bin/ep /bin/docker-sleep /bin/wait-for /bin/ | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -61,6 +61,18 @@ | |
| "operator-linebreak": ["error", "after", { "overrides": { "?": "ignore", ":": "ignore" } }], | ||
| "yml/indent": ["error", 2] | ||
| }, | ||
| "overrides": [ | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Vortex 1.38.0: drevops/vortex#2418 Vortex 1.38.0 added Jest as the JavaScript unit-test runner. This |
||
| { | ||
| "files": ["*.test.js"], | ||
| "env": { "jest": true }, | ||
| "rules": { | ||
| "global-require": "off", | ||
| "import/extensions": "off", | ||
| "max-nested-callbacks": ["warn", 5], | ||
| "jsdoc/check-tag-names": "off" | ||
| } | ||
| } | ||
| ], | ||
| "settings": { | ||
| "jsdoc": { | ||
| "tagNamePreference": { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Vortex 1.38.0: drevops/vortex#2390
ahoy infonow exports its discovered host/port variables (COMPOSE_PROJECT_NAME,VORTEX_HOST_DB_PORT, etc.) so the subsequentahoy cli ./scripts/vortex/info.shinvocation - and any other commands in the same shell context - can read them. Previously these were inline-assigned with trailing-backslash continuation, which only made them visible to the immediate next command.