Re: [Koha-devel] Plugin hooks on datas and store()

2021-03-08 Thread Tomas Cohen Arazi
Maybe you need some other hook. Ones that allows you to make changes to the object right before it is stored instead of this one, that gets the 'just updated' object. When I added 'after' hooks for biblios and items actions, the idea was that they should act as triggers for other actions: in my

Re: [Koha-devel] Testing Docker Issue

2021-02-11 Thread Tomas Cohen Arazi
I had issues with reset_all as well. It is some latest changes on the db El jue., 11 feb. 2021 15:32, Jonathan Druart < jonathan.dru...@bugs.koha-community.org> escribió: > Which errors do you get? > > Le jeu. 11 févr. 2021 à 18:03, Andrew Fuerste-Henry < > and...@bywatersolutions.com> a écrit :

Re: [Koha-devel] Character sets in MariaDB 10.5

2021-08-25 Thread Tomas Cohen Arazi
Those are just defaults in the OS distribution, that can be changed at will. Koha, internally, sets the character set correctly on connection time [1]. You should always check when they drop support for our used encodings. Which is not the case (for now?). We have the test suite run against the

Re: [Koha-devel] Changing the lost card value

2021-10-18 Thread Tomas Cohen Arazi
You need to run it inside koha-shell El lun., 18 oct. 2021 12:30, Stephen Graham escribió: > Actually I just testing this now and cannot get it to work. I'm getting an > error about not being able to write to the plack-opac-error.log file. I'm > logged in as the usual koha user, and it's for a

Re: [Koha-devel] Ignore this test

2021-12-06 Thread Tomas Cohen Arazi
Effectively ignored. Oh, wait. El lun, 6 dic 2021 a las 8:14, Marcel de Rooy () escribió: > Just testing if these signatures did not come along now anymore  > > Have a great day, Koha. > > Marcel > ___ > Koha-devel mailing list >

[Koha-devel] API error responses change

2021-12-27 Thread Tomas Cohen Arazi
Hi all, I wanted to mention that I've submitted patches for bug 28020 [1]. The change introduces a new attribute to the generic error response object that is reused everywhere in the spec. The new attribute is called 'error_code' and is intended to be adopted so API consumers have better means to

Re: [Koha-devel] KohaCon22 proposals changes suggestions

2021-12-29 Thread Tomas Cohen Arazi
+1 El mié., 29 dic. 2021 5:40, Fridolin SOMERS escribió: > Hi, > > We are getting close to end date for KohaCon22 proposals, January 8. > > Unfortunately there is actually no proposal : > https://wiki.koha-community.org/wiki/KohaCon22_Proposals > > This as been discussed in last dev meeting. >

Re: [Koha-devel] Relooking staff interface (BibLibre sponsoring)

2021-12-18 Thread Tomas Cohen Arazi
This is great! Community involvement will be key to reach the release! El lun., 13 dic. 2021 12:11, Paul Poulain escribió: > Hello all, > > The staff interface design is something like 8 years old. It's worth > being refreshed. > > We'd like to sponsor that work, with the idea to have a 22.05

Re: [Koha-devel] Discourse forum / mailing list

2021-11-16 Thread Tomas Cohen Arazi
I can try installing it in the community Portainer server. El mar., 16 nov. 2021 3:20, Fridolin SOMERS escribió: > Thanks a lot David for your sharing. > > What plugin do you have in mind ? > If we like the features of this software, it is worth doing the install > work I bet. > > Best regards,

Re: [Koha-devel] Fwd: Rabbitmq

2021-11-16 Thread Tomas Cohen Arazi
I'm more inclined to make ktd use an external rabbitmq container. But yeah, we could do it El mar., 16 nov. 2021 12:17, Marcel de Rooy escribió: > Looks like we should add this "fix". Before starting the rabbitmq service, > rm -rf /var/run/rabbitmq. > Tested this in a Docker container, works

Re: [Koha-devel] QA : List::Util any ?

2021-11-19 Thread Tomas Cohen Arazi
If you are not using the output of grep (it returns all matching elements) you should be using 'any', which short-circuits on the first match. And List::Util is a core library nowadays. That's why I use it in those scenarios and suggest it on QA as well. Best regards El vie., 19 nov. 2021

Re: [Koha-devel] My dev list for 22.05

2021-12-03 Thread Tomas Cohen Arazi
El mié, 1 dic 2021 a las 12:24, Jonathan Druart (< jonathan.dru...@bugs.koha-community.org>) escribió: > Hello everybody, > > I have been listing some tasks I would like to work on during the next > development cycle. > I suggest a give and take approach. Help me on one or more of those > topics

Re: [Koha-devel] Next dev IRC meeting 16 Feb changed time

2022-02-15 Thread Tomas Cohen Arazi
That's fantastic! El mar., 15 feb. 2022 13:01, Owen Leonard escribió: > On Thu, Feb 10, 2022 at 3:27 PM Fridolin SOMERS > wrote: > > Hi devels. > > I've changed next dev IRC meeting hour from 15 UTC to 10 UTC. > > >

Re: [Koha-devel] Additional DB indices for Koha?

2022-03-21 Thread Tomas Cohen Arazi
We have lots of indexes. KEY and INDEX are basically synonyms in MySQL. We in fact might have too many indexes defined. This is a valid hypothesis when the index size (on disk) is too close to the DB size for a table. El lun, 21 mar 2022 a las 14:40, Victor Grousset/tuxayo () escribió: > Hi :)

[Koha-devel] Resultsets vs. list context

2022-01-06 Thread Tomas Cohen Arazi
Hi, let me tell you a short and (technical but) interesting story. Most of you might know about this, but I found it could be useful to know and/or to refresh. DBIC has a nice property that our Koha::Objects inherited (obviously): you can chain calls like this: Koha::Patrons->search(

[Koha-devel] New class: Koha::Result::Boolean

2022-01-06 Thread Tomas Cohen Arazi
Hi all, happy 2022 :-D I wanted to mention that a bug that introduces Koha::Result::Boolean has been pushed [1]. This class provides a way to return an object, that evaluates to a boolean in (Perl's) bool context but also carries reasons for the result. It has been used in a couple places, like

Re: [Koha-devel] How to install Koha plugins for development

2022-01-19 Thread Tomas Cohen Arazi
You should use koha-testing-docker, there's an alias specifically for that. Once you use it, the instructions Michael have you are similar! El mié., 19 ene. 2022 16:31, Samu Heiskanen escribió: > Hi, > > I am a new Koha developer from windy and cold Finland. As new to the > Koha-community, I'd

Re: [Koha-devel] Loosing owner permissions under koha-testing-docker (solution)

2022-01-25 Thread Tomas Cohen Arazi
What I do is running the qa script within the kshell. We should add an alias there. El mar., 25 ene. 2022 7:49, Jonathan Druart < jonathan.dru...@bugs.koha-community.org> escribió: > Hi devs, > > If you are using koha-testing-docker and you write patches, you certainly > also use the koha-qa.pl

[Koha-devel] Warning: KTD problems with latest master

2023-09-05 Thread Tomas Cohen Arazi
Hi all. Today we pushed to master a needed upgrade for Cypress. The new Cypress configuration file that is included in the master branch IS NOT COMPATIBLE with older Cypress versions, and thus you need to pull the latest KTD image in order for things to work. I didn't expect a `ktd up` to fail

[Koha-devel] Testing DB upgrades

2023-09-06 Thread Tomas Cohen Arazi
Hi all, we've recently run into issues on the stable branches with DB upgrades failing. Jonathan put together a proposal that will help us catch those beforehand, as mentioned on [bug 34683]( https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34683). Please take a look ASAP and help us

Re: [Koha-devel] stuck emails to koha-devel?

2023-09-11 Thread Tomas Cohen Arazi
I see this email. El lun, 11 sept 2023 a las 12:21, Philippe Blouin (< philippe.blo...@inlibro.com>) escribió: > Hi! > > Someone here (Shi Yao) has been trying to write to koha-devel starting two > weeks ago. The emails never got through, nor he got any followup from > koha-devel-owner. > >

[Koha-devel] KTD testers needed

2023-08-31 Thread Tomas Cohen Arazi
Hi all, I've been working on making things easier on ARM64 processors (M1, M2, and so on) on top of the great work from Mason. Now we need help testing a branch [1]. I specially need non-ARM testers, so we are sure nothing gets broken with the change. To test: 1. On your KTD clone do: $ git

Re: [Koha-devel] plugins on KohaDevboxes

2023-08-31 Thread Tomas Cohen Arazi
What plugin is that? El jue, 31 ago 2023 a las 17:16, Philippe Blouin (< philippe.blo...@inlibro.com>) escribió: > Hi! > > Any suggestion onto why our plugin doesn't seem to work on (bywater's) > Devboxes while being perfectly fine in 22,23 or master local installs ? > > The UI of the config is

Re: [Koha-devel] Background jobs in plugins

2023-10-13 Thread Tomas Cohen Arazi
Hi all. I'm wrapping a KitchenSink patch to highlight how it would be used. The background jobs themselves work, but the template side I never looked at. I thought there was some default display showing all the report metadata, but it seems all descriptions are hardcoded and a dev is required to

Re: [Koha-devel] REST API and new defaults (Zeno Tajoli)

2023-10-06 Thread Tomas Cohen Arazi
El vie, 6 oct 2023 a las 11:03, Olli-Antti Hypernova (< olli-antti.kivila...@hypernova.fi>) escribió: > Good idea. Anything to disband the "SmartUI"-antipattern is good for me. > > > We should add a new endpoint following established nomenclature. > > eg. PUT /biblios/123/merge/456 (PUT as it

Re: [Koha-devel] Background jobs in plugins

2023-10-13 Thread Tomas Cohen Arazi
Look at this commit: https://github.com/bywatersolutions/dev-koha-plugin-kitchen-sink/commit/30d1446387fa864fe49f25cb53a2915b33ef73ce Best regards El vie, 13 oct 2023 a las 10:09, Tomas Cohen Arazi () escribió: > Hi all. I'm wrapping a KitchenSink patch to highlight how it would be u

Re: [Koha-devel] Background jobs in plugins

2023-10-15 Thread Tomas Cohen Arazi
id Cook > > Senior Software Engineer > > Prosentient Systems > > Suite 7.03 > > 6a Glen St > > Milsons Point NSW 2061 > > Australia > > > > Office: 02 9212 0899 > > Online: 02 8005 0595 > > > > *From:* Kyle Hall > *Sent:* Satur

Re: [Koha-devel] Google showing "Borrow" option for nearby public libraries

2022-04-18 Thread Tomas Cohen Arazi
I'd say it is a neat core feature as well! Nice finding!! El lun, 18 abr 2022 23:04, escribió: > Hi all, > > > > I was looking up a book the other day on Google when I noticed a section > called “Borrow” and it showed two local library services where I could > borrow the book. > > > > I did a

Re: [Koha-devel] Koha 22.05.00 released

2022-05-31 Thread Tomas Cohen Arazi
Congrats!!! El vie, 27 may 2022 20:42, Fridolin SOMERS escribió: > Hello everyone 珞 > > The Koha community is proud to announce the release of Koha 22.05.00. > > It is a major release, that comes with 6 new features, 239 enhancements, > 360 bugfixes 者 > > The full release notes are available

Re: [Koha-devel] Gitlab policy changes

2022-05-25 Thread Tomas Cohen Arazi
neer > Prosentient Systems > Suite 7.03 > 6a Glen St > Milsons Point NSW 2061 > Australia > > Office: 02 9212 0899 > Online: 02 8005 0595 > > From: Koha-devel On Behalf > Of Jonathan Druart > Sent: Thursday, 26 May 2022 8:33 AM > To: Tomas Cohen Arazi > Cc: koha-d

[Koha-devel] Gitlab policy changes

2022-05-25 Thread Tomas Cohen Arazi
Hi, we need to take a look at the upcoming changes and make a decision on enrolling as an Open Source project: https://about.gitlab.com/blog/2022/02/04/ultimate-perks-for-open-source-projects/ Please read carefully so we can make a decision eventually. -- Tomás Cohen Arazi Theke Solutions

[Koha-devel] dbic --force

2022-05-16 Thread Tomas Cohen Arazi
Just so you know and because these things frequently go unadvertised: we now have a --force switch in KTD for the `dbic` command. Enjoy. -- Tomás Cohen Arazi Theke Solutions (http://theke.io) ✆ +54 9351 3513384 GPG: B2F3C15F ___ Koha-devel mailing

Re: [Koha-devel] Embed see-from headings (authorities) into bibliographic records at OAI repository level

2022-06-24 Thread Tomas Cohen Arazi
I like te idea, but where would you put those headings? El sáb., 19 jun. 2021 3:09 p. m., Julien Sicot escribió: > Hi all, > > An enhancement idea : > > It could be interesting to enrich the bibliographic records exposed in OAI > with see-from headings, this would allow users who use koha with

Re: [Koha-devel] How can I improve this report?

2022-07-02 Thread Tomas Cohen Arazi
I think you can improve it by doing a LEFT JOIN between the two tables instead of the IN comparison. That way you will find those without matching authorities when they auth_header counterpart is NULL. If you want to go precise, you should also add 100$9 vs authid to the game. Good luck! El

Re: [Koha-devel] Gitlab policy changes

2022-06-29 Thread Tomas Cohen Arazi
Hi all, I have submitted the form, and also contacted the sales department so we can explain how the project management works and to clarify any doubts. I will add others to the conversation once I get the call with the sales people. Thanks everyone. El mié, 29 jun 2022 a las 0:37, Victor

[Koha-devel] Help needed

2022-07-08 Thread Tomas Cohen Arazi
Hi all, I've been trying to track down a problem with TestBuilder tests. The are failing (almost) randomly but I narrow it down to: - Koha::Checkouts::Renewals - Koha::Biblio::ItemGroup::Items I ran out of fuel today, but it would be great if some more eyes were put on this, so I can move on

Re: [Koha-devel] Elasticsearch: Minor fix ?

2022-06-27 Thread Tomas Cohen Arazi
9.99~really6.81? El lun, 27 jun 2022 a las 15:41, Mason James () escribió: > hiya > i've pushed a pkg to the dev and 22.05 suites, on koha-staging - for > testing > > we do seem to have a potential problem for deb11(>=) and ES6 - as deb11 > has libsearch-elasticsearch-perl-7.30-1, which seems to

Re: [Koha-devel] Help needed

2022-07-11 Thread Tomas Cohen Arazi
ss an AI value, TestBuilder > explodes with "Value not allowed for auto_incr issue_id in Issue". > I guess the fix would be to use the constraint's name instead of the > column's name. > > Le sam. 9 juil. 2022 à 02:18, Tomas Cohen Arazi a > écrit : > > > >

Re: [Koha-devel] Help needed

2022-07-12 Thread Tomas Cohen Arazi
Thanks everyone! El mar, 12 jul 2022 a las 0:15, Tomas Cohen Arazi () escribió: > Thanks, Jonathan. Your pointer was very helpful. > > El lun, 11 jul 2022 6:27, Jonathan Druart > escribió: > >> I think the problem is that Koha::Checkouts::Renewals has 2 >> ("

[Koha-devel] Roadmap

2022-06-03 Thread Tomas Cohen Arazi
Hi all, I have started outlining a Roadmap document [1] for us to put together for the 22.11 release. Feel free to comment there or add the things you plan to work on during this cycle. If there are already bugs filed, please add links to them as well. Thanks! [1]

Re: [Koha-devel] Gitlab policy changes

2022-06-11 Thread Tomas Cohen Arazi
I think we will contact Gitlab to explain how the project works and see how things fit (or not). We ain't no lawyers. We haven't reached any quotas yet, and we can of course host our own workers. So it feels we're gonna be good in any case. Best regards El vie, 10 jun 2022 17:42, Victor

Re: [Koha-devel] Updating SCSS lint process to use stylelint

2022-07-21 Thread Tomas Cohen Arazi
Hi Owen! If the tool is deprecated, let's find another one. I'll follow your lead on this matter. El mié, 20 jul 2022 7:34, Renvoize, Martin escribió: > I'm in a similar camp to David, though I have touched it a few times here > and there.. I wasn't aware of a linter, but would take your lead

Re: [Koha-devel] Staff interface redesign is ready to be tested

2022-07-26 Thread Tomas Cohen Arazi
+1 Is it possible to apply branches to a sandbox also? Or it just interacts with BZ? El mar, 26 jul 2022 a las 12:43, Katrin Fischer () escribió: > I still think a dedicated sandbox would be really helpful. What Victor > says is certainly true for smaller patch sets, but this is a big patch >

Re: [Koha-devel] Debian 9 LTS EOL

2022-07-28 Thread Tomas Cohen Arazi
I'm pretty sure we don't support Debian 9 anymore. And Ubuntu 18.04 is in the same situation. Using those old MariaDB and MySQL versions is problematic and thus discouraged. El mié, 27 jul 2022 2:15, escribió: > Hi all, > > > > While commenting on Bug 28267, I decided to review what versions

Re: [Koha-devel] Debian 9 LTS EOL

2022-07-29 Thread Tomas Cohen Arazi
s Point NSW 2061 > > Australia > > > > Office: 02 9212 0899 > > Online: 02 8005 0595 > > > > *From:* Tomas Cohen Arazi > *Sent:* Wednesday, 27 July 2022 11:36 PM > *To:* David Cook > *Cc:* Koha Devel > *Subject:* Re: [Koha-devel] Debian 9 LTS EOL >

Re: [Koha-devel] QA for Bug 30988 - Add generic OpenIDConnect client implementation

2022-07-23 Thread Tomas Cohen Arazi
Hi, David. I meant to answer your first email. I'm submitting (immediately) an alternative implementation I've been working on but failed to wrap up sooner. I've read the one you pointed and if fairly similar to the google oaidc implementation for OPAC, so it is correct. My plan is to do it for

Re: [Koha-devel] Difficulties with JSON::Validator after upgrading to 22.05

2022-08-26 Thread Tomas Cohen Arazi
You've got the wrong library version. Ubuntu 20.04 is old in terms of the Debian version of is based on. I'm pretty sure you can append 'focal' to the repository configuration line and it will pull the right dependencies. El vie, 26 ago 2022 14:08, Philippe Blouin escribió: > Hi folks! > > Got

Re: [Koha-devel] Difficulties with JSON::Validator after upgrading to 22.05

2022-08-26 Thread Tomas Cohen Arazi
ibro | pour esprit libre | www.inLibro.com > On 2022-08-26 13:32, Tomas Cohen Arazi wrote: > > You've got the wrong library version. > > Ubuntu 20.04 is old in terms of the Debian version of is based on. I'm > pretty sure you can append 'focal' to the repository configuration line a

Re: [Koha-devel] Enable libraries to moderate OPAC self-registrations

2022-09-06 Thread Tomas Cohen Arazi
eletedborrowers, borrower_modifications. We might also > want to think about how the data will move when email verification is used > in addition to moderation. > > Hope this helps, > > Katrin > On 31.08.22 04:35, Tomas Cohen Arazi wrote: > > Please, use a separate table. An

Re: [Koha-devel] Enable libraries to moderate OPAC self-registrations

2022-08-30 Thread Tomas Cohen Arazi
Please, use a separate table. And think of the request workflow handling in the db, the statuses (as enum), how it will be handled at library or library group level. Even if not implemented at this stage. Also, maybe you need more than one table, don't fear adding tables if they make sense and

[Koha-devel] Koha 22.11 - Release dates

2022-10-17 Thread Tomas Cohen Arazi
Hi all, this cycle has been very busy and all of a sudden, it is ending! This are the preliminary dates so you are aware of: * Oct 28th - "Soft" feature freeze, nothing big or with high risk of side-effects will be included into the final release if not marked as Passed QA * Nov 3-5 - "Hard"

Re: [Koha-devel] [Koha] OAI-PMH harvester

2022-10-25 Thread Tomas Cohen Arazi
I think with background jobs we have most of the framework that is needed to deal with this within Koha. Best regards El mar, 25 oct 2022 7:08, BOUIS Sonia escribió: > Hi, > KohaLA would like to finance an OAI-PMH client in Koha but, we have > questions that we want to raise to the community.

Re: [Koha-devel] Koha Wiki migrated and upgraded

2022-10-27 Thread Tomas Cohen Arazi
Excellent work Thomas! Congratulations for getting it done so well. Thanks!!! El jue, 27 oct 2022 a las 9:29, Thomas Dukleth () escribió: > [For those not subscribed or giving attention to the Koha mailing list, I > repeat the announcement here without in message cross-posting.] > > The Koha

Re: [Koha-devel] [Koha] Koha 22.05.04: Can't locate Koha/Script.pm in @INC

2022-10-29 Thread Tomas Cohen Arazi
Are you by chance running the command in the root shell? You should always run it inside koha-shell El vie, 28 oct 2022 8:03, Michael Kuhn escribió: > Hi > > I am running a fresh installation of Koha 22.05.04 on Debian 11. > > I am trying to load some data using "bulkmarcimport.pl": > > #

Re: [Koha-devel] [Koha] Koha 22.05.04: Can't locate Koha/Script.pm in @INC

2022-10-29 Thread Tomas Cohen Arazi
Yeah, the docs are really generic, and there are several ways to install Koha. Packages (i.e. having koha-shell) is one of them. Please file an issue on the manual's project so we document it better. Regarding the fact it worked before, have you changed the server? It is not working because of

Re: [Koha-devel] [Koha] Koha 22.05.06 is here!

2022-10-25 Thread Tomas Cohen Arazi
:-D El mar, 25 oct 2022 a las 15:33, Lucas Gass () escribió: > Hello, Hola, Bonjour, Guten tag, Olá! > > The Koha community is proud to announce the release of Koha 22.05.06! > > Koha 22.05.06 includes 8 enhancements, 42 bugfixes, and 1 security fix. > > The full release notes can be found here:

Re: [Koha-devel] Enable libraries to moderate OPAC self-registrations

2022-09-12 Thread Tomas Cohen Arazi
onality on > https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20916 > > Were you planning on working on that or is it available for others to work > on it? > > > On 7/09/22 03:04, Tomas Cohen Arazi wrote: > > I think we need to resurrect the idea of a patron i

Re: [Koha-devel] A guide for testing Koha's REST API

2022-09-15 Thread Tomas Cohen Arazi
Thank you!! El jue, 15 sept 2022 6:48, Mason James escribió: > hi folks > > i've made a guide here... > > https://wiki.koha-community.org/wiki/REST_API_Debug > > > ___ > Koha-devel mailing list > Koha-devel@lists.koha-community.org >

Re: [Koha-devel] Elasticsearch not auto-updating after cataloguing

2022-09-11 Thread Tomas Cohen Arazi
Is koha-worker running? El vie, 9 sept 2022 12:42, Philippe Blouin escribió: > Hello kohaers! > > Simply put: our production servers installation work very fine, each > change into a record is immediately reindexed into ES. > > BUT on laptop (ubuntu 20 or 22), the reindexing never occurs. We

Re: [Koha-devel] an SMS Send issue - wondering if it is possible to do with Koha

2022-10-02 Thread Tomas Cohen Arazi
I'd say we could add a hook for plugins to inject variables for notices. El dom, 2 oct 2022 4:01, Indranil Das Gupta escribió: > Hi all, > > I've written a new SMS::Send driver module for NIC SMS service (a > federal IT service provider to Govt agencies in India). It's working > fine on its

Re: [Koha-devel] Getting "count" when using REST API

2022-08-04 Thread Tomas Cohen Arazi
entient Systems > Suite 7.03 > 6a Glen St > Milsons Point NSW 2061 > Australia > > Office: 02 9212 0899 > Online: 02 8005 0595 > > -Original Message- > From: Jonathan Druart > Sent: Thursday, 4 August 2022 10:17 PM > To: Tomas Cohen Arazi > Cc: David Coo

Re: [Koha-devel] Getting "count" when using REST API

2022-08-05 Thread Tomas Cohen Arazi
d then sends an API request >> using an offset and that count to handle the paging. Their internal API >> breaks it into 2 steps, so I have to hit the database twice anyway. >> >> >> >> David Cook >> >> Senior Software Engineer >> >> Prosent

Re: [Koha-devel] Getting "count" when using REST API

2022-08-04 Thread Tomas Cohen Arazi
Only with x-koha-embed El jue, 4 ago 2022 3:54, escribió: > Hi all, > > > > Is there a method for getting a “count” using the REST API without > fetching every record? > > > > When building a paging lookup outside of Koha, it would be useful to get a > total record count and then just fetch

Re: [Koha-devel] Who runs the koha-jenkins IRC bot?

2022-08-02 Thread Tomas Cohen Arazi
Hi, koha-jenkins is now sending to #koha-ci only. Will move it to #koha-bots El mar, 2 ago 2022 21:06, Victor Grousset/tuxayo escribió: > Hi :) > > It's about the move of automated output to #koha-bots > > Cheers, > > -- > Victor Grousset/tuxayo > ___

[Koha-devel] KTD - stable branches

2022-12-23 Thread Tomas Cohen Arazi
Hi all, I made some pushes to the stable branches (22.11, 22.05 and 21.11) so the images are (internally) aligned with (master's) `ktd` command. Please let me know if you encounter any issues. Merry xmas everyone! -- Tomás Cohen Arazi Theke Solutions (http://theke.io) ✆ +54 9351 3513384 GPG:

[Koha-devel] Roadmap for v23.05

2023-01-02 Thread Tomas Cohen Arazi
Hi all, last cycle we worked through a roadmap which was not 100% finished, but we made good progress in many of the main milestones: - Task queue streamlining (several improvements, progress bars, etc) - ERM (done) - Introduction of Vue (done) - Dates handling (partially done) - Circ, holds,

Re: [Koha-devel] Upgrading bugs.koha-community.org (plus others)

2023-01-02 Thread Tomas Cohen Arazi
Thanks for letting us know! Good luck! El lun, 2 ene 2023 19:54, Chris Cormack escribió: > Hi All > > The linode that bugs, dashboard, splitter, download, plus the bots run > on needs an OS upgrade. > > I am about to snapshot it and attempt that now. The server may or may > not go down for

Re: [Koha-devel] Upgrading bugs.koha-community.org (plus others)

2023-01-02 Thread Tomas Cohen Arazi
ntu 18.04 to 20.04. (18.04 goes out > of support in April). > It should be slightly faster with more ram available. > > Happy new OS for new year :) > > Chris > > On Tue, 3 Jan 2023 at 12:55, Tomas Cohen Arazi > wrote: > > > > Thanks for letting us know! G

Re: [Koha-devel] Upgrading bugs.koha-community.org (plus others)

2023-01-03 Thread Tomas Cohen Arazi
I've seen some errors on saved reports. But it looks like DB structure changes won't be easy to fix manually. El mar, 3 ene 2023 a las 14:43, David Nind () escribió: > Hi Chris. > > Thanks for all your work in supporting and maintaining these! > > I get this message when trying to access the IRC

[Koha-devel] KTD, permissions and stuff

2023-01-11 Thread Tomas Cohen Arazi
Hi all, after several comments from people struggling with permissions, yarn build, etc; I've went ahead and tweaked the new `ktd` command so the default behavior is to jump into the container, on the instance user. i.e. # this command will put you in what we traditionally call 'kshell' ktd

Re: [Koha-devel] What's the definitive way to use Perl tidy in koha-testing-docker?

2022-12-11 Thread Tomas Cohen Arazi
I normally point vscode's perltidy extension to the shipped perltidyrc: https://git.koha-community.org/Koha-community/Koha/src/branch/master/xt/perltidyrc and do Ctrl+k-f on the region I'm editing. El vie, 9 dic 2022 0:27, David Cook escribió: > Hi all, > > > > I’ve heard a few people saying

Re: [Koha-devel] Good enough?

2022-12-05 Thread Tomas Cohen Arazi
El vie, 2 dic 2022 a las 11:43, Jonathan Druart (< jonathan.dru...@bugs.koha-community.org>) escribió: > 10. CI should drive the pushes. No more push if CI is not green. The > more we wait the harder it is to track down the origin of the problem. > Last cycle some jobs have been red for months,

Re: [Koha-devel] Good enough?

2022-12-06 Thread Tomas Cohen Arazi
What is your dev environment like? a dev install? on the host OS or a VM? We tried hard to make the misc4dev tools agnostic of KTD. Feedback is welcome. El mar, 6 dic 2022 a las 9:17, Marcel de Rooy () escribió: > > As said in the email I am planning to integrate them into our dev > env (via

[Koha-devel] Jenkins notifications

2022-12-14 Thread Tomas Cohen Arazi
Hi all, I've (finally) restored jenkins notifications, and I plan to send failure notifications to: - Release maintainers - QA team Developers whose commits are suspected to have broken the tests will still be notified. I created two forwarding addresses to simplify notifications as well. --

[Koha-devel] ktd - enhancements

2022-12-19 Thread Tomas Cohen Arazi
Hi all, just wanted to let you know that we solved a long standing issue in KTD [1] that made it awkward to switch from using ES or not with KTD (required tweaking the .env file and would break if things didn't match). The `ktd` command now takes advantage of this enhancement so, as a reminder,

Re: [Koha-devel] The many failings of background_jobs_worker.pl

2022-12-21 Thread Tomas Cohen Arazi
You need to understand that you have dangling messages on your . Old messages that have invalid JSON, and ids that were picked by the hybrid fallback mechanism so fail (which I agree it's not cool) Stop Koha, stop the worker, stop rabbit, clean rabbit, start the worker, let it exhaust already

Re: [Koha-devel] Fundamental flaw in Koha REST API

2022-12-05 Thread Tomas Cohen Arazi
I recall we used the header at some point, to keep the base query clean when adding new filters. The only alternative is forcing the use of some form of ascii encoding (base64?) But I agree we should better deprecate it. It's use in the codebase on DT is tied to an option switch and probably not

Re: [Koha-devel] Good enough?

2022-12-05 Thread Tomas Cohen Arazi
El lun, 5 dic 2022 a las 14:24, Julian Maurice () escribió: > Yes it is expensive. But manual testing is much more expensive. I'd > rather pay for some CPU time than do manually what a bot can do better > and faster than me. Free services exist too (CircleCI, github actions, ...) > When you

Re: [Koha-devel] [Koha] Some very sad news.

2022-11-18 Thread Tomas Cohen Arazi
Yeah! This release will be dedicated to Rosalie. Great call! El vie, 18 nov 2022 12:19, Paul Poulain escribió: > Hi Chris, > > Sad news, let us know when the funerals are. > > @community : May I suggest that we name the next release "Koha 22.11 > Rosalie" ? > > Le 17/11/2022 à 08:09, Chris

Re: [Koha-devel] release-tools

2022-11-28 Thread Tomas Cohen Arazi
unctionality into the main script though. ;) > > Once I've got myself back up to speed on the release process from an > rmaint view I'll be more than happy to help refine it  > > On Mon, 28 Nov 2022, 1:36 pm Tomas Cohen Arazi, > wrote: > >> Hi all this is for rmaints mostly,

[Koha-devel] Koha 22.11.00 Rosalie released

2022-11-25 Thread Tomas Cohen Arazi
The Koha community is proud to announce the release of Koha 22.11.00. Koha 22.11.00 is a major release, that comes with many new features. It includes 13 new features, 351 enhancements, 3 security fixes, 551 bugfixes. The full release notes are available here:

[Koha-devel] release-tools

2022-11-28 Thread Tomas Cohen Arazi
Hi all this is for rmaints mostly, I've just added a new 'tarball' option to koha-release. Please review and comment if you'd prefer some other way to do this. Also, I think we should work on the release tools a bit so all parameters are named and have option switches to simplify the code.

[Koha-devel] KTD // SSO

2022-11-07 Thread Tomas Cohen Arazi
Hi all, time to git pull on your koha-testing-docker clone: we have just added a docker-compose.sso.yml file that can be used for launching an IdP, based on keycloak. As usual, the `ktd` script options got a new `--sso` option switch for enabling it. The keycloak server is running on port 8082.

[Koha-devel] New pushes, new KTD images

2022-11-09 Thread Tomas Cohen Arazi
Hi all, both ERM and the OIDC/OAuth2 integration have been pushed. As some of you noted, they have new dependencies. New KTD images have been built before pushing to avoid issues, so please do the usual so things keep working: $ ktd pull Best regards PS: If you use other ktd flags, you can also

[Koha-devel] ERM - workflow change

2022-11-09 Thread Tomas Cohen Arazi
Hi all, we pushed ERM but didn't communicate some decisions made: - For running the ERM component (and in the future any other Vue-driven thing) a build step needs to happen. Either: $ yarn build_js or (the dev-oriented version): $ yarn watch_js - We could've gone 'the SCSS' way, in which the

Re: [Koha-devel] OIDC client pushed to master!

2022-11-09 Thread Tomas Cohen Arazi
Thank you David for all your valuable input. Looking forward to those follow-ups. El mar, 8 nov 2022 a las 23:36, David Cook () escribió: > I was pumped to see this morning that the OIDC client was pushed to master! > > > > I have 2 very easy follow-ups that I think are necessary before the >

[Koha-devel] Pull newer images today :-D

2023-02-22 Thread Tomas Cohen Arazi
Hi, we've just pushed a change to Koha, moving away from node-sass to dart-sass, and older docker images will fail as all assets are automatically built on startup and it will fail otherwise. Best regards -- Tomás Cohen Arazi Theke Solutions (http://theke.io) ✆ +54 9351 3513384 GPG: B2F3C15F

Re: [Koha-devel] Problem configuring apache with mpm_itk

2023-03-01 Thread Tomas Cohen Arazi
Hi. The message you posted contains a command you're suggested to run to get Apache properly configured. But beware 22.11 on Ubuntu 18.04 is not officially supported. El mié, 1 mar 2023 21:59, Christian Calle Jahuira escribió: > Hi all, > > I found the following detail when installing koha

Re: [Koha-devel] Bug 32609 and package building

2023-04-26 Thread Tomas Cohen Arazi
gt; Suite 7.03 > > 6a Glen St > > Milsons Point NSW 2061 > > Australia > > > > Office: 02 9212 0899 > > Online: 02 8005 0595 > > > > *From:* Koha-devel *On > Behalf Of *Tomas Cohen Arazi > *Sent:* Wednesday, 26 April 2023 11:25 PM > *T

Re: [Koha-devel] Interesting syscalls when Starman starting up

2023-04-26 Thread Tomas Cohen Arazi
Koha has been using the Swagger/OpenAPI plugin since... 2015. The validation step is important, especially when there are API plugins. Plugins can break the API, and we need to check that. I'd like to hear opinions about that, though. And I am open to changing my mind. Best regards El mié, 26

[Koha-devel] Bug 32609 and package building

2023-04-26 Thread Tomas Cohen Arazi
There's a conversation going on on the bug, about how that change made the build process a bit more complicated (i.e. more steps). Kyle and I have been working on this: https://gitlab.com/koha-community/koha-dpkg-docker#usage which is a simple way to build packages, and considers that required

[Koha-devel] Roles for 23.11 are open

2023-04-26 Thread Tomas Cohen Arazi
A new cycle is about to start. It is time for you all to put your names for the next release. Here: https://wiki.koha-community.org/wiki/Roles_for_23.11 Best regards -- Tomás Cohen Arazi Theke Solutions (http://theke.io) ✆ +54 9351 3513384 GPG: B2F3C15F

[Koha-devel] Your patches => your matter

2023-03-31 Thread Tomas Cohen Arazi
Hi all :-D I wanted to ask everyone contributing patches to Koha, that when you get notified your patches have been pushed, at least two things need to happen: - You get happy - You keep an eye on the test suite [1] You get happy because it means a lot of people reviewed your stuff, spent time

[Koha-devel] Heya

2023-03-31 Thread Tomas Cohen Arazi
Hi, the hackfest is over, we had great time! I wanted to thank everyone supporting our open source work, and Biblibre for making this opportunity to meet in person real. Thanks! -- Tomás Cohen Arazi Theke Solutions (http://theke.io) ✆ +54 9351 3513384 GPG: B2F3C15F

[Koha-devel] Git server maintenance

2023-04-04 Thread Tomas Cohen Arazi
Hi all, we will be performing a maintenance task on the Git server during the next hours. -- Tomás Cohen Arazi Theke Solutions (http://theke.io) ✆ +54 9351 3513384 GPG: B2F3C15F ___ Koha-devel mailing list Koha-devel@lists.koha-community.org

Re: [Koha-devel] Koha objects

2023-04-04 Thread Tomas Cohen Arazi
The Koha::Objects query syntax is passed through. I guess you need to make a regular join but call ->get_columns or smth. El mar, 4 abr 2023 a las 9:07, Marcel de Rooy () escribió: > Hi, > > Just a dumb question. But what is the best way to get a column from a > joined table in the results of a

Re: [Koha-devel] koha-testing-docker is now installing pre-commit git hooks

2023-02-07 Thread Tomas Cohen Arazi
Excellent, thanks Jonathan. El mar, 7 feb 2023 a las 10:31, Jonathan Druart (< jonathan.dru...@bugs.koha-community.org>) escribió: > Hi, > > We have a pre-commit hook in the wiki but people forget to install it. And > it was not easy to update and propagate the changes. We decided to embed it >

[Koha-devel] KTD and (Linux) Docker Desktop issues

2023-02-15 Thread Tomas Cohen Arazi
Hi all, community members have reported permissions issues breaking ktd initialization when launching it fresh. It's been narrowed down to be an issue with the Docker Desktop for Linux product. Please use the Docker Engine/server install instructions as pointed by the readme.

[Koha-devel] CI and packaging

2023-02-15 Thread Tomas Cohen Arazi
Hi all, we've been talking for a while by different means (IRC, pm, hackfests, etc) about the need to build a solid pipeline for our testing infrastructure, package building and testing and also the docker images. Several individuals have implemented different things over time, for building the

Re: [Koha-devel] Trouble for the Gitea project: forked to Forgejo

2023-02-01 Thread Tomas Cohen Arazi
Can't we just use Gitlab for now? El mié, 1 feb 2023 a las 6:08, Jonathan Druart (< jonathan.dru...@bugs.koha-community.org>) escribió: > See https://codeberg.org/forgejo/forgejo and > https://forgejo.org/2022-12-15-hello-forgejo/ > "To this end we are very proud that Codeberg e.V. has decided

<    2   3   4   5   6   7   8   >