Hello,
I have released a new version of the Pharo VM for Pharo 9, Pharo 10 and
Pharo 11. This VM is accessible right now from Zero-Conf, updating it in
the Pharo Launcher or using the usual downloads (as described in
pharo.org/download).
This version includes a series of bug fixes and upgrades o
Thanks Pablo!!!
> El 12 dic. 2022, a las 14:30, teso...@gmail.com escribió:
>
> Hello,
> I have released a new version of the Pharo VM for Pharo 9, Pharo 10 and
> Pharo 11. This VM is accessible right now from Zero-Conf, updating it in the
> Pharo Launcher or using the usual downloads (as de
Thanks Pablo for the new vm but as well for the update notification. This is
super valuable.
Norbert
> Am 12.12.2022 um 14:30 schrieb teso...@gmail.com:
>
> Hello,
> I have released a new version of the Pharo VM for Pharo 9, Pharo 10 and
> Pharo 11. This VM is accessible right now from Zero
docker-pharo-vm, docker image for Pharo VM reached it's v9.0.21-2022.12.12 version.
What's Changed
Update VM version to v9.0.21 by @gcotelli in https://github.com/ba-st/docker-pharo-vm/pull/8
Full Changelog: https://github.com/ba-st/docker-pharo-vm/compare/v9.0.17-2022.08.24…v9.0.21-2022.12.12
Re
docker-pharo-runtime, docker image for Pharo reached it's v10.0.1-2022-12-12 version.
What's Changed
Update vm base image to v9.0.21 by @gcotelli in https://github.com/ba-st/docker-pharo-runtime/pull/8
Full Changelog: https://github.com/ba-st/docker-pharo-runtime/compare/v10.0.1-2022.08.24…v10.0.
Hello
I catch an error like this:
```
[ self insertNewUser.
```
```
ZnResponse redirect: self request url ] on: TbDbError do: [ :err | | ent |
```
```
ZnResponse redirect: '/error/db_error' ] ].
```
I would like to pass
```
err messageText
```
to the page at: ‘/error/db_error’, to disp
Hi
To answer my own question, I passed the error message as a parameter in the url:
```
[ self insertNewUser.
```
```
ZnResponse redirect: self request url ] on: TbDbError do: [ :err | |
url |
```
```
url := (ZnUrl fromString: 'error/db_error/')
```
```
que