Snapshot Update recommended? JSR223 Javascript ded

welp, that went relatively quickly. i’m on latest snapshot now using openhab-helper-libraries, with some fixing here and there. Seems to be running flawlessly now. I added my custom libs as personal, the only thing missing in persistenceexstension.js is:

    
	//
	//HistoricItem historicState(Item item, AbstractInstant timestamp)
	//HistoricItem historicState(Item item, AbstractInstant timestamp, String serviceId)
	context.HistoricItem = function(it, timestamp, serviceId) {
		try {
			var item = context.getItem(it);
			return (serviceId == undefined) ? context.pe.historicState(item, timestamp) : context.pe.historicState(item, timestamp, serviceId);
		}catch(err) {
			context.logError("historicState "+__LINE__, err);
		}
		return null;
    };