[pylons-discuss] Pyramid 1.10.7 released

2021-02-20 Thread Michael Merickel
Pyramid 1.10.7 has been released. Whoops, had one remaining PR that hadn't been merged in 1.10.6. - Fixed an issue where reified properties would show up as functions in certain tools instead of attributes. The full changelog is here:

Re: [pylons-discuss] Pyramid 2.0b1 released

2021-02-20 Thread Michael Merickel
It's in the cookiecutter's "get_tm_session" on the master branch. Which is not the default branch. The purpose of the pattern is if your model objects needed access to some settings or some other request properties. It's up to you to decide if that's good or bad. Of course you don't need to

Re: [pylons-discuss] Pyramid 2.0b1 released

2021-02-20 Thread Mike Orr
On Sat, Feb 20, 2021 at 12:57 PM Michael Merickel wrote: > Check out the new pattern of storing the request in the SQLAlchemy session > object for easier access in your model layer without threadlocals! Where is that? I don't see it in 'pyramid-cookiecutter-starter' or the 2.0 docs. I do

[pylons-discuss] Pyramid 2.0b1 released

2021-02-20 Thread Michael Merickel
Pyramid 2.0b1 has been released. - Fixes a circular reference / memory leak between request and context in some apps. - A bunch of documentation and cookiecutter improvements. Check out the new pattern of storing the request in the SQLAlchemy session object for easier access in your model

Re: [pylons-discuss] Can you recommend some nice libraries that I can use in my flask web applications?

2021-02-20 Thread 'Jürgen Gmach' via pylons-discuss
I think you are on the wrong mailing list. This is about Pyramid/Pylons/Waitress. But while you are here Flask is a micro framework, and it is completely modular. So, e.g. when you need login functionality, you could use a plugin for that. So, asking for useful libraries is the wrong way.

[pylons-discuss] Can you recommend some nice libraries that I can use in my flask web applications?

2021-02-20 Thread PYDEVOPS
I am developing a web application on Flask. I am looking for useful Flask libraries that I can use in this web application. It can be any library. For example, Flask-MonitoringDashboard. -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To

[pylons-discuss] Pyramid 1.10.6 released

2021-02-20 Thread Michael Merickel
Pyramid 1.10.6 has been released. - Deprecated pyramid.compat so that apps can prepare more easily for their upgrade to 2.0. - Fixed a potential memory leak in which a circular reference between context and request may rely on the garbage collector to clean up. The full changelog is here: