❌

Normale weergave

5.1.4

14 Juli 2025 om 17:16

Changelog

Features

Others

Go dependencies

  • 4ebbbd3: go-dep: bump golang.org/x/sys from 0.33.0 to 0.34.0 in /backend (@dependabot[bot])

Npm dependencies

  •  

v0.12.0-beta2

Door: henrygd
13 Juli 2025 om 03:52

Warning

This is a beta release. Please make a hub backup before upgrading.

  • Add 5 and 15 minute load average to systems table (#816)
  • Add alerts for load average (thanks @Allespro)
  • Fix issue with multiple systems using the same token

For more information about new features in 0.12.0, see the 0.12.0-beta1 release notes.

Please report issues or provide feedback in #951. Thanks!

Upgrading

For those running the Linux agent binary, the copy/paste install command in the hub should work if you add -v "0.12.0-beta2" to the script arguments.

Full Changelog: v0.12.0-beta1...v0.12.0-beta2

  •  

v11.9.3

9 Juli 2025 om 13:15

πŸ› Bug Fixes & Optimizations

  • @directus/api
    • Fixed Flows with manual triggers failing for integer primary keys on the item detail page (#25406 by @br41nslug)

πŸ“¦ Published Versions

  • @directus/app@13.11.3
  • @directus/api@28.0.3

  •  

v0.12.0-beta1

Door: henrygd
9 Juli 2025 om 03:22

Warning

This is a beta release. Please make a hub backup before upgrading.

Version 0.12.0 adds the ability for agents to initiate an outgoing connection to the hub.

It also introduces universal tokens, which can be used to register systems without needing to add them manually in the hub. It also allows you to deploy multiple agents with the same configuration, which should make cluster deployments easier.

Please report issues or provide feedback in #951. Thanks!

Upgrading

  • Docker: Switch to the :edge tag.
  • Other: This is the first beta release so I'm not sure how the different package managers handle it. To run manually, download the new binary, replace the old one, then add the new env vars and restart the service. I'm working on updating the install scripts and will look further into the package manager situation tomorrow.

Details

The WebSocket connection works in tandem with the agent's existing SSH server. If the agent connects successfully via WebSocket it will stop the SSH server. Likewise, if the agent connects via SSH it will stop attempting to connect via WebSocket.

Note: Don't add the HUB_URL env var to an agent that connects to multiple hubs. This isn't supported yet with WebSocket. Otherwise everything should be fully backwards compatible.

The agent gets two new environment variables:

  • HUB_URL: The URL of the hub.
  • TOKEN: The token associated with the system, provided in the hub.

You can copy these values for existing systems in the hub at /settings/tokens.

WebSocket authentication

We use a mutual authentication handshake that ensures both parties are trusted before any data is exchanged. Let me know if you have ideas for improvement.

  1. Initial connection and token verification: The agent initiates a WebSocket connection to the hub. It includes a unique registration token as an HTTP header during the upgrade request. The hub verifies that the token is associated with an existing system before upgrading the connection.

  2. Hub challenge: To prove its identity to the agent, the hub signs the token using its private key and sends the signature back to the agent. The agent verifies the signature using its public key.

  3. Fingerprint authentication: After verifying the hub, the agent responds by sending its fingerprint. This fingerprint is a secure hash of unique identifiers, locking the agent's registration to the machine it's running on. The hub verifies the received fingerprint against the one stored for the system. If they match, the connection is authorized.

New Contributors

Full Changelog: v0.11.1...v0.12.0-beta1

  •  

BookStack v25.05.2

7 Juli 2025 om 16:08

Links

Full List of Changes

This release contains the following fixes and changes:

  • Added Nepali Language. (#5677)
  • Updated translations with latest Crowdin changes. (#5695)
  • Updated PHP package versions.
  • Updated content diffs to better group non-ascii language characters into words.
  • Fixed error when loading opensearch endpoint with certain PHP in some environments. (#5673)
  • Fixed namespace for test case. Thanks to @bumperbox. (#5668)

  •  

Part-DB 1.17.2

Door: jbtronics
6 Juli 2025 om 14:23

Part-DB 1.17.2

Important

If you are using Part-DB it would be helpful if you fill out this short survey on your usage of Part-DB (Google Forms): https://forms.gle/Q15twx3YYq3qCNfe8

Tip

There is a new experimental docker image, which is much faster. See this post for more info.

Tip

You can help to translate Part-DB to other languages. See this post for more info.

New features

  • Added option to disable image overlay on part detail pages (#960, thanks @d-buchmann)
  • Allow to use the percentage sign directly as unit in parameters, without needing to latex escape it
  • Pass supplier part number info to KiCad as custom field (#955, thanks @barisgit)
  • Add fields for KiCost KiCad plugin, so that you can easily create a BOM from the information (#910)

Bug fixes

  • Fixed typos in info provider description (#942, thanks @d-buchmann)
  • Link project root node to edit project page instead of listing all parts (#957, thanks @d-buchmann)
  • Fixed problems if parameter value was 0 (#959, thanks @d-buchmann)

What's Changed

Miscellaneous

  • Updated dependencies

New Contributors

Full Changelog: v1.17.1...v1.17.2

  •  

5.1.1

2 Juli 2025 om 18:08

Changelog

Bug fixes

Others

Go dependencies

Npm dependencies

  •  

v11.9.2

1 Juli 2025 om 17:24

πŸ› Bug Fixes & Optimizations

  • @directus/app
    • Fixed a bug that caused an error when making unchanged edits to an O2M field (#25387 by @formfcw)
  • @directus/api

πŸ“¦ Published Versions

  • @directus/app@13.11.2
  • @directus/api@28.0.2

  •  

v11.9.1

30 Juni 2025 om 18:36

πŸ› Bug Fixes & Optimizations

  • @directus/app
    • Fixed a bug that was preventing the file interface menu from appearing in the drawer (#25374 by @formfcw)

πŸ“¦ Published Versions

  • @directus/app@13.11.1
  • @directus/api@28.0.1

  •  

v11.9.0

25 Juni 2025 om 21:36

⚠️ Potential Breaking Changes

Added support for LDAP login and enhanced parameter consistency for refresh/logout commands. Allowed overriding the mode in refresh and logout commands to be inline with login (#25132)
The login method now accepts a payload object instead of separate email and password parameters.
This enables support for both standard and LDAP authentication, but requires updates to code that previously called sdk.login(email, password).
The new usage is sdk.login({ email, password }) or sdk.login({ identifier, password }) for LDAP.

The refresh and logout command method parameters have been updated to be consistent across usage. The functions now accept an options object instead of their previous regular parameters.

For example the new usage for refresh is sdk.request(refresh({ mode: "json", refresh_token })) instead of sdk.request(refresh('json', refresh_token)).

  • @directus/api
    • Fixed manual flows to only trigger with appropriate permissions (#25354 by @br41nslug)
  • @directus/sdk
    • Added support for LDAP login and enhanced parameter consistency for refresh/logout commands. Allowed overriding the mode in refresh and logout commands to be inline with login (#25132 by @ComfortablyCoding)
  • @directus/extensions-sdk

✨ New Features & Improvements

  • @directus/app
    • Added Keyboard Accessibility (#25214 by @formfcw)
    • Improved the UX of the field permissions by changing its interface to a checkbox tree (#25253 by @formfcw)
  • @directus/api
    • Added AUTH_.+_ISSUER_DISCOVERY_MUST_SUCCEED and AUTH_.+_CLIENT_HTTP env variables to the openid provider (#25002 by @ComfortablyCoding)
    • Added backlink query parameter to exclude back-relations when expanding *.* in the fields query parameter (#25284 by @Nitwel)
  • @directus/composables
  • @directus/env
    • Added AUTH_.+_ISSUER_DISCOVERY_MUST_SUCCEED and AUTH_.+_CLIENT_HTTP env variables to the openid provider (#25002 by @ComfortablyCoding)
  • @directus/sdk
    • Added backlink query parameter to exclude back-relations when expanding *.* in the fields query parameter (#25284 by @Nitwel)
  • @directus/types
    • Added backlink query parameter to exclude back-relations when expanding *.* in the fields query parameter (#25284 by @Nitwel)

πŸ› Bug Fixes & Optimizations

  • @directus/app
    • Added BSL license banner to display for first admin user (#25299 by @AlexGaillard)
    • Fixed system filters showing null (#25294 by @br41nslug)
    • Ensured to revert changes on error after drag & drop in kanban and calendar layout (#25329 by @formfcw)
    • Prevented table column widths from having null values (#25298 by @robluton)
    • Ensured that the redirection to the collection view after editing an item takes the bookmark query into account (#25327 by @formfcw)
    • Allowed selecting custom collections for items.sort action hook (#25340 by @ComfortablyCoding)
    • Improved nested folder rendering performance (#25276 by @AlexGaillard)
    • Fixed the β€œSave as Copy” action for files (#25351 by @Nitwel)
    • Updated dependencies tar-fs, vue-i18n, vite and undici (#25267 by @br41nslug)
    • Ensured that the archive filter would only apply if permissions were granted for the archive field (#25352 by @formfcw)
  • @directus/api
  • @directus/env
  • @directus/types
  • @directus/system-data
  • @directus/components
  • @directus/extensions-sdk
  • @directus/storage-driver-cloudinary
  • @directus/storage-driver-supabase
  • @directus/themes
  • @directus/utils
    • Replaced mapValuesDeep with deepMap. (#25216 by @Nitwel)
    • Fixed translating m2a filters on GQL only when applicable (#24830 by @Nitwel)
  • @directus/schema-builder
    • Fixed translating m2a filters on GQL only when applicable (#24830 by @Nitwel)
  • @directus/sdk
  • @directus/errors
  • @directus/extensions
    • Fixed default value of extension options not allowing any (#25273 by @Nitwel)

πŸ“¦ Published Versions

  • @directus/app@13.11.0
  • @directus/api@28.0.0
  • @directus/components@1.1.1
  • @directus/composables@11.2.0
  • create-directus-extension@11.0.15
  • @directus/env@5.1.0
  • @directus/errors@2.0.2
  • @directus/extensions@3.0.7
  • @directus/extensions-registry@3.0.7
  • @directus/extensions-sdk@14.0.0
  • @directus/memory@3.0.6
  • @directus/pressure@3.0.6
  • @directus/schema-builder@0.0.3
  • @directus/storage-driver-azure@12.0.6
  • @directus/storage-driver-cloudinary@12.0.6
  • @directus/storage-driver-gcs@12.0.6
  • @directus/storage-driver-s3@12.0.6
  • @directus/storage-driver-supabase@3.0.6
  • @directus/system-data@3.1.1
  • @directus/themes@1.1.2
  • @directus/types@13.2.0
  • @directus/utils@13.0.7
  • @directus/validation@2.0.6
  • @directus/sdk@20.0.0

  •  

5.1.0

28 Mei 2025 om 07:44

Changelog

Features

Bug fixes

  • 2cb4ee3: fix: drop freebsd/arm support (modernc.org/sqlite does not support it) (@seriousm4x)

Go dependencies

Npm dependencies

  •  

5.0.6

14 Mei 2025 om 09:05

Changelog

Bug fixes

Others

Go dependencies

Npm dependencies

  • 0ecaf8e: npm-dep: bump @eslint/compat from 1.2.8 to 1.2.9 in /frontend (@dependabot[bot])
  • d2b51bc: npm-dep: bump @eslint/js from 9.25.1 to 9.26.0 in /frontend (@dependabot[bot])
  • e5a8685: npm-dep: bump @sveltejs/kit from 2.20.7 to 2.20.8 in /frontend (@dependabot[bot])
  • ac2bd62: npm-dep: bump @sveltejs/kit from 2.20.8 to 2.21.0 in /frontend (@dependabot[bot])
  • b59bc41: npm-dep: bump @tailwindcss/postcss from 4.1.4 to 4.1.5 in /frontend (@dependabot[bot])
  • f4b1c82: npm-dep: bump @tailwindcss/postcss from 4.1.5 to 4.1.6 in /frontend (@dependabot[bot])
  • b17a497: npm-dep: bump daisyui from 5.0.28 to 5.0.30 in /frontend (@dependabot[bot])
  • ae2db49: npm-dep: bump daisyui from 5.0.30 to 5.0.35 in /frontend (@dependabot[bot])
  • b262886: npm-dep: bump eslint from 9.25.1 to 9.26.0 in /frontend (@dependabot[bot])
  • 8af2111: npm-dep: bump eslint-config-prettier from 10.1.2 to 10.1.3 in /frontend (@dependabot[bot])
  • afd5112: npm-dep: bump eslint-config-prettier from 10.1.3 to 10.1.5 in /frontend (@dependabot[bot])
  • 537290b: npm-dep: bump svelte-check from 4.1.6 to 4.1.7 in /frontend (@dependabot[bot])
  • eac0703: npm-dep: bump tailwindcss from 4.1.4 to 4.1.5 in /frontend (@dependabot[bot])
  • fde3a0e: npm-dep: bump tailwindcss from 4.1.5 to 4.1.6 in /frontend (@dependabot[bot])
  • 52c91d1: npm-dep: bump typescript-eslint from 8.31.0 to 8.31.1 in /frontend (@dependabot[bot])
  • a7f84b2: npm-dep: bump typescript-eslint from 8.31.1 to 8.32.0 in /frontend (@dependabot[bot])
  • e3dcbf1: npm-dep: bump typescript-eslint from 8.32.0 to 8.32.1 in /frontend (@dependabot[bot])
  • f1c2b23: npm-dep: bump vite from 6.3.3 to 6.3.4 in /frontend (@dependabot[bot])
  • 8588359: npm-dep: bump vite from 6.3.4 to 6.3.5 in /frontend (@dependabot[bot])

  •  

5.0.5

27 April 2025 om 23:10

Changelog

Features

Others

Go dependencies

Npm dependencies

  •  

5.0.5-beta.1

19 April 2025 om 09:48

Changelog

Features

Others

Go dependencies

Npm dependencies

  •  

5.0.1

17 Maart 2025 om 11:35

Changelog

Bug fixes

Others

  •  

1.5.0

Door: louislam
30 Maart 2025 om 19:43

Warning

Breaking change: Due to the security reason, the "Console" feature is now disabled by default. If you need this feature and understand the risk, you can enable it via the environment variable DOCKGE_ENABLE_CONSOLE=true.

πŸ†• New Features

  • Docker client updated to 28.0.4
  • Docker Compose updated to 2.34.0
  • #767 Console Improvements

⬆️ Improvements

πŸ› Bug Fixes

🦎 Translation Contributions

⬆️ Security Fixes

Others

  • Other small changes, code refactoring and comment/doc updates in this repo:
  • #636 #766

Please let me know if your username is missing, if your pull request has been merged in this version, or your commit has
s been included in one of the pull requests.

  •  

1.4.2

Door: louislam
21 Januari 2024 om 18:04

πŸ› Bug Fixes

  • #380 Fixed the startup issue that Dockge is no longer working after restart
  • #342 Fixed the login placeholder issue (Thanks @cyril59310)

🦎 Translation Contributions

Please let me know if your username is missing, if your pull request has been merged in this version, or your commit has been included in one of the pull requests.

  •  

1.4.0

Door: louislam
3 Januari 2024 om 13:39

πŸ†• New Features

  • #200 Initial support for multiple Dockge instances

🦎 Translation Contributions

Please let me know if your username is missing, if your pull request has been merged in this version, or your commit has been included in one of the pull requests.

How to setup multiple instances

Assume that you have 4 Dockge instances currently.

  1. Find one Dockge instance as your primary Dockge
  2. Login to your primary Dockge
  3. In the homepage, you can connect to other Dockge instances by clicking New Agent.
  4. Now you should see all instances are online and all stacks across all Dockge instances are in the stack list.

How it works?

  • Your browser only need to connect to Dockge 1. Dockge 2/3/4 are connected from Dockge 1.
  • Dockge 1 works like a proxy, it will forward requests/responses from Dockge 2/3/4 to your browser.

  •  

1.4.0-beta.0

Door: louislam
26 December 2023 om 13:32

πŸ†• New Features

  • #200 Multiple Dockge instances

🦎 Translation Contributions

Please let me know if your username is missing, if your pull request has been merged in this version, or your commit has been included in one of the pull requests.

How to switch to the beta version?

Open dockge's compose.yaml and change the image tag from 1 to beta like:

...
services:
  dockge:
    image: louislam/dockge:beta
...

And then update and restart the stack:

docker compose pull
docker compose up -d

How to setup multiple instances

Assume that you have 4 Dockge instances currently.

  1. Find one Dockge instance as your primary Dockge
  2. Login to your primary Dockge
  3. In the homepage, you can add new agent. Connect all 3 other Dockge instances.
  4. Now you should see all instances are online and all stacks across all Dockge instances are in the stack list.

How it works?

  • Your browser only need to connect to Dockge 1. Dockge 2/3/4 are connected from Dockge 1.
  • Dockge 1 works like a proxy, it will forward requests/responses from Dockge 2/3/4 to your browser.

  •  

1.3.4

Door: louislam
16 December 2023 om 16:34

⬆️ Improvements

πŸ› Bug Fixes

  • #301 Fixed an envsubst issue that it won't work if the yaml contains non-string primitive types
  • #303 Updated Docker Dompose plugin from 2.21.0 to 2.23.3, which may fixed some upstream bugs

🦎 Translation Contributions

Please let me know if your username is missing, if your pull request has been merged in this version, or your commit has been included in one of the pull requests.

  •  

1.3.3

Door: louislam
10 December 2023 om 14:28

πŸ› Bug Fixes

  • #255 Fix: The .env editor is stopped working if the file contains \r\n (Thanks @syko9000)
  • #269 Fix: Check update is not working
  • #268 Envsubst the yaml file in order to display the correct values in the UI instead of tags such as ${PORT}
  • #270 Fix: .env code change is not reactive

🦎 Translation Contributions

⬆️ Security Fixes

Others

  • Other small changes, code refactoring and comment/doc updates in this repo:
    #264 (Thanks @derekmahar)

Please let me know if your username is missing, if your pull request has been merged in this version, or your commit has been included in one of the pull requests.

  •  
❌