RE: Resource merging and symlinks - two similar patches, do we unify?

2013-10-11 Thread Stefan Seifert
>On Fri, Sep 27, 2013 at 11:59 AM, Carsten Ziegeler > wrote: >> ...Not quite the same - but we might be able to share code / >functionality... > >Yeah that's my main concern: the merging/overriding logic should use >the same code. > >-Bertrand yes, i think this is a good thought as well. i will st

failure running sling.extensions.event unit/integraiton tests on windows?

2013-10-15 Thread Stefan Seifert
running win7 64bit, java 1.7.0_17, maven 3.0.5 any idea why this integration tests for sling event module fails when building with "mvn clean install"? i assume they run on other platforms? >>> Results : Tests in error: testHistory(org.apache.sling.event.it.HistoryTest): test timed out after

RE: failure running sling.extensions.event unit/integraiton tests on windows?

2013-10-16 Thread Stefan Seifert
strange. i tried to isolate the problem by disabling all integration tests by added junit @Ignore annotation to them. the HistoryTest IT runs then fine. i startet adding/removing more integration tests and sometims it succeeds, sometimes not. perhaps a racing condition, or a cleanup issue of the

RE: failure running sling.extensions.event unit/integraiton tests on windows?

2013-10-16 Thread Stefan Seifert
i was able to reproduce it in 2 of 3 tries with only two integration tests activated: - ClassloadingTest - HistoryTest running historytest or ClassloadingTest standalone worked. running both (i assume ClassloadingTest did run first) did not work in 2 of 3 tries. stefan >-Original Message--

RE: failure running sling.extensions.event unit/integraiton tests on windows?

2013-10-16 Thread Stefan Seifert
please note: i was not able to reproduce the problem after your last commits. perhaps the problem was fixed by accident. i tried it several times on two different machines. although we do not know why it seems to be solved now. stefan >-Original Message- >From: Carsten Ziegeler [mailto:c

release of fsresource bundle?

2010-02-17 Thread Stefan Seifert
the fsresource provider bundle is quite stable now, a lot of fixes and enhancements where implemented since the last release. perhaps this is the time to make an official release of it? stefan

RE: release of fsresource bundle?

2010-02-17 Thread Stefan Seifert
>> perhaps this is the time to make an official release of it? >> >yes, good idea...but :) ... I would like to get SLING-1387 done before >the release. I'll hopefully get this done in the next days, so we could >do a release sometime next week. Is this ok for you? yes, thats perfect. stefan

RE: release of fsresource bundle?

2010-02-19 Thread Stefan Seifert
i tested it in two different project environments - it works as expected! stefan >-Original Message- >From: Carsten Ziegeler [mailto:cziege...@apache.org] >Sent: Friday, February 19, 2010 11:46 AM >To: dev@sling.apache.org >Subject: Re: release of fsresource bundle? > >Hi Stefan, > >I add

RE: [VOTE] Release Commons MIME type support 2.1.4, Eventing 2.3, File System Provider 1.0, and Scripting Core 2.0.10

2010-02-23 Thread Stefan Seifert
>Apache Sling File System Provider 1.0.0 >https://issues.apache.org/jira/browse/SLING/fixforversion/12314388 >Several fixes +1 (non-binding)

RE: [Tooling] Experimental Plugin for Eclipse for Sling aka Slingclipse

2012-10-25 Thread Stefan Seifert
hello antonio. this sounds interesting! what is the difference to the filesystem resource provider with which you can mount any folder in the filesystem to a JCR tree? the filesystem resource provider currently only supports nt:file and nt:folder nodes, but works very well for those (e.g. jsp,

RE: [VOTE] Release Apache Sling Models API 1.0.2 & Implementation 1.0.6

2014-06-27 Thread Stefan Seifert
+1 (non-binding) p.s. integration tests are running fine on my machine >-Original Message- >From: justinedel...@gmail.com [mailto:justinedel...@gmail.com] On Behalf Of >Justin Edelson >Sent: Wednesday, June 25, 2014 6:02 PM >To: dev@sling.apache.org >Subject: [VOTE] Release Apache Sling

release of fsresource bundle?

2014-06-30 Thread Stefan Seifert
can we make a new release of the fsresource bundle? in rev. 1510565 the dependencies to the sling api bundle were relaxed which is important to run this bundle with the latest version of sling. stefan

[RT] Sling Models as scoped Dependency Injection Framework

2014-06-30 Thread Stefan Seifert
in the last days we played around with Sling Models as underpinning of our views in a Sling+Sightly based application. it works fantastic. but during our experiments we detected that we were not using Sling Models for accessing resource content, i.e. we are not adapting resources to models to ac

RE: [RT] Sling Models as scoped Dependency Injection Framework

2014-06-30 Thread Stefan Seifert
y to create a circular injection. Any thoughts on how >that can be avoided? > >I'm certainly open to patches which broaden the scope for constructor >injection and @PreDestroy. > >Regards, >Justin > >On Mon, Jun 30, 2014 at 10:13 AM, Stefan Seifert >wrote: >> in th

RE: adaptTo and results ....

2014-07-01 Thread Stefan Seifert
> Foo f = someObject.adaptTo(RequireAdapter.class)); this would still require an "unwrapping" of the object out of the RequireAdapter instance. > Foo f = someObject.adaptTo(RequireAdapter.for(Foo.class)); this looks interesting, and does not need unwrapping if the return value is the input cla

RE: adaptTo and results ....

2014-07-01 Thread Stefan Seifert
example: usecase like here https://issues.apache.org/jira/browse/SLING-3714?focusedCommentId=14048040#comment-14048040 the caller code expects that the adaption is always successful if everything works correct - if not it is an application error which should be propagated through error handling

RE: adaptTo and results ....

2014-07-01 Thread Stefan Seifert
ull (I'm not >arguing that this is a good way, I'm just trying to avoid heavy changes). >And we could change the adapter manager/factory implemntation to log the >exceptions (if they're not doing it already) > >Carsten > > >2014-07-01 12:17 GMT+02:00 Stefan

RE: adaptTo and results ....

2014-07-02 Thread Stefan Seifert
>The example Stefan gave [1] is just about removing the boilerplate of the null >check + throwing a runtime exception, which could be handled using a static >utility method (adaptOrThrow, but outside the adaptable interface). yes, you are right - this would be an alternative for this simple usec

RE: adaptTo and results ....

2014-07-03 Thread Stefan Seifert
>* My original suggestion of using a Result interface. This requires >more verbose code on the caller side -- the caller needs to check a >success flag -- but allows for fine-grained information (which would >be appropriate for a validation use case). +1 https://issues.apache.org/jira/browse/SLI

RE: [RT] Multi Tenancy

2014-08-11 Thread Stefan Seifert
hello carsten. thanks for bringing this up. multi-tenancy is very important for our projects. but to be honest, until now i did not see that any of the current tenant api implementation [2] is of much use for user usecases. let's start with the detecting of a tenant: * if adapting from a resou

RE: [RT] Multi Tenancy

2014-08-11 Thread Stefan Seifert
when looking in the wiki i found another page [1] with some thoughts on multi tenancy from a mailing list discussion from february [2] from this i get we have two quite different scenarios although they have a shared part: * the "fully isolated tenant" scenario - tenants are fully isolated and

write access to sling wiki

2014-08-11 Thread Stefan Seifert
can i get write accesss to the sling wiki? currently i've only read access. my apache confluence user name is: sseifert stefan

RE: write access to sling wiki

2014-08-12 Thread Stefan Seifert
>Done via >https://cwiki.apache.org/confluence/spaces/spacepermissions.action?key=SLING thanks, works! stefan

RE: [RT] Multi Tenancy

2014-08-12 Thread Stefan Seifert
>-Original Message- >From: Alexander Klimetschek [mailto:aklim...@adobe.com] >Sent: Tuesday, August 12, 2014 1:47 AM >To: dev@sling.apache.org >Subject: Re: [RT] Multi Tenancy ... >And here it becomes tricky. Because if you are allowed to write arbitrary >code (e.g. in JSPs), you can get

RE: [RT] Multi Tenancy

2014-08-12 Thread Stefan Seifert
i created a first draft of a wiki page where i tried to collect the different views of and requirements for multitenancy of the recent discussions: https://cwiki.apache.org/confluence/x/So2uAg i coined new names for the two scenarios "Virtual Hosting" and "Massive Multi Site" we should decide f

RE: [RT] Multi Tenancy

2014-08-12 Thread Stefan Seifert
>-Original Message- >From: Alexander Saar [mailto:alexander.s...@googlemail.com] >Sent: Tuesday, August 12, 2014 8:34 PM >To: dev@sling.apache.org >Subject: Re: [RT] Multi Tenancy ... >thanks for putting this together. While I agree that the requirements are >different for the 2 scenarios,

resourceresolver-mock implementation: support for binary data?

2014-08-13 Thread Stefan Seifert
today i had a deeper look at the current implementation of resourceresolver-mock [1]. nice work, simulates an simple in-memory resource tree without any underlying JCR. data can be written using Sling CRUD API. unfortunately currently no support for binary data exists, and i'm unsure what's the

RE: [RT] The various roles of (multitenant) content

2014-08-22 Thread Stefan Seifert
hello betrand. i try to find the bridge to the multitenancy scenarios i've described in [1]: >Deliverable content: >Displayed on a website or mobile app for example. >Can be global, shared between a group of tenants or tenant-specific. this is what i've called "content" in the wiki page. may be

RE: resourceresolver-mock implementation: support for binary data?

2014-08-27 Thread Stefan Seifert
>To: dev@sling.apache.org >Subject: Re: resourceresolver-mock implementation: support for binary data? > >Hi Stefan > >I guess a good first step would be to go with b) > >Carsten > > >2014-08-13 23:51 GMT+02:00 Stefan Seifert : > >> today i had a deeper look a

RE: Two models integration tests fail

2014-08-29 Thread Stefan Seifert
>I filed https://issues.apache.org/jira/browse/SLING-3884 for this a >couple of day ago. patch attached in the ticket. stefan

RE: [RT] The various roles of (multitenant) content

2014-09-01 Thread Stefan Seifert
>-Original Message- >From: Bertrand Delacretaz [mailto:bdelacre...@apache.org] >Sent: Thursday, August 28, 2014 6:31 PM >To: dev >Subject: Re: [RT] The various roles of (multitenant) content > >Hi Stefan, > >On Fri, Aug 22, 2014 at 2:03 PM, Stefan Seifert

RE: [VOTE] Release Apache Sling Filesystem ResourceProvider 1.1.4

2014-09-02 Thread Stefan Seifert
+1 (non-binding) >-Original Message- >From: Robert Munteanu [mailto:romb...@apache.org] >Sent: Tuesday, September 02, 2014 4:06 PM >To: dev@sling.apache.org >Subject: [VOTE] Release Apache Sling Filesystem ResourceProvider 1.1.4 > >Hi, > >We solved 2 issues in this release: >https://issues

RE: [VOTE] Release Apache Sling Models API & Implementation 1.1.0

2014-09-02 Thread Stefan Seifert
+1! (non-binding) >-Original Message- >From: justinedel...@gmail.com [mailto:justinedel...@gmail.com] On Behalf Of >Justin Edelson >Sent: Tuesday, September 02, 2014 9:22 PM >To: dev@sling.apache.org >Subject: [VOTE] Release Apache Sling Models API & Implementation 1.1.0 > >Hi, > >We solve

RE: [ANN] New Apache Sling Committer: Stefan Seifert

2014-09-08 Thread Stefan Seifert
y, September 08, 2014 6:21 PM >To: dev@sling.apache.org >Subject: [ANN] New Apache Sling Committer: Stefan Seifert > >Hi > >it's my pleasure to announce that the Apache Sling PMC has invited Stefan >Seifert as a new Sling committer...and Stefan accepted.

RE: [VOTE] Release Apache Sling Filesystem ResourceProvider 1.1.4

2014-09-09 Thread Stefan Seifert
any more votes? one (binding) vote is still missing. stefan >2014-09-02 16:05 GMT+02:00 Robert Munteanu : > >> Hi, >> >> We solved 2 issues in this release: >> https://issues.apache.org/jira/browse/SLING/fixforversion/12324318 >> >> Staging repository: >> https://repository.apache.org/content/re

prepare release of resourceresolver-mock?

2014-09-19 Thread Stefan Seifert
we did considerable amount of fixes and enhancements to the testing/resourceresoler-mock implementation - see [1] i think we should do a release, it is quite stable now, i tested it in a complex unit test environment. can i help in preparing the release? stefan [1] https://issues.apache.org

RE: Releasing installer bundles?

2010-09-14 Thread Stefan Seifert
+1 stefan >-Original Message- >From: Carsten Ziegeler [mailto:cziege...@apache.org] >Sent: Tuesday, September 14, 2010 6:46 PM >To: Sling Developers >Subject: Releasing installer bundles? > >Hi, > >I think the osgi installer is now ready for a release, the api looks now >fine to me and th

RE: [VOTE] Release Commons Testing 2.0.6, OSGi Installer 3.0.0, JCR Installer 3.0.0, and File Installer 1.0.0

2010-09-16 Thread Stefan Seifert
+1 (non-binding) >-Original Message- >From: Carsten Ziegeler [mailto:cziege...@apache.org] >Sent: Thursday, September 16, 2010 9:48 AM >To: Sling Developers >Subject: [VOTE] Release Commons Testing 2.0.6, OSGi Installer 3.0.0, JCR >Installer 3.0.0, and File Installer 1.0.0 > >Hi, > >as ann

RE: [VOTE] Release Commons Testing 2.0.6, OSGi Installer 3.0.0, JCR Installer 3.0.0, and File Installer 1.0.0

2010-09-16 Thread Stefan Seifert
>Don't know if this is just me, but I'm getting reports on bad >signatures for all artifacts: i've tested it on a linux machine and got GOOD results for the md5 and sha1 hashes, BAD only for pgp (although i've scanned the results only briefly and deleted them already) stefan

RE: [VOTE] Release Installer Core 3.0.0, JCR Installer 3.0.0, and File Installer 1.0.0

2010-09-21 Thread Stefan Seifert
+1 (non-binding)

sideeffects of ResourceResolver.map method

2010-11-08 Thread Stefan Seifert
we're a bit unhappy with the current implementation of the map method in JcrResourceResolver. the SLING api documentation describes it with a clear purpose: it maps a given resource path to its mapped counterpart, taking mapping defined at /etc/map or vanity urls into account. the variant with

RE: sideeffects of ResourceResolver.map method

2010-12-16 Thread Stefan Seifert
>Well, the map methods are intended to be the reverse to the resolve >methods (and vice versa). As such the namespace mangling is a required >part of the operation. > >If there is a concrete case of wrong URL encoding/externalizing, please >report a JIRA issue such that we can fix this. i've crea

RE: [OT] Support Confluence Wiki Syntax in issue comments

2012-05-31 Thread Stefan Seifert
+1 stefan >-Original Message- >From: Felix Meschberger [mailto:fmesc...@adobe.com] >Sent: Thursday, May 31, 2012 11:40 AM >To: dev@sling.apache.org >Subject: [OT] Support Confluence Wiki Syntax in issue comments > >Hi, > >We can configure the SLING JIRA project to support the Confluence W

RE: [VOTE] Release Apache Sling slingfeature maven plugin 1.8.0

2023-11-13 Thread Stefan Seifert
+1 stefan

RE: [VOTE] Release Apache Sling Repoinit JCR 1.1.46

2023-11-13 Thread Stefan Seifert
+1 stefan

RE: [VOTE] Release Apache Sling Resource Resolver 1.11.4

2023-11-14 Thread Stefan Seifert
+1 stefan

RE: [VOTE] Release Apache Sling Engine 2.15.8

2023-11-15 Thread Stefan Seifert
+1 stefan

[VOTE] Release Apache Sling Testing OSGi Mock 3.4.0

2023-11-17 Thread Stefan Seifert
Hi, We solved 5 issues in this release: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12353545&styleName=Text&projectId=12310710 Staging repository: https://repository.apache.org/content/repositories/orgapachesling-2810/ You can use this UNIX script to download the release and v

RE: [VOTE] Release Apache Sling Testing OSGi Mock 3.4.0

2023-11-17 Thread Stefan Seifert
+1 stefan

Sling Johnzon Wrapper & Jakarta JSON

2023-11-17 Thread Stefan Seifert
in context of SLING-12058 we are migrating lots of modules from javax.json to jakarta.json. this works fine for modules using javax.json directly. however, we have a few modules which are using johnzon, which uses javax.json internally. since version johnzon 1.2.5 (we are using johnzon 1.2.21 in

[RESULT] [VOTE] Release Apache Sling Testing OSGi Mock 3.4.0

2023-11-20 Thread Stefan Seifert
Hi, The vote has passed with the following result : +1 (binding): Stefan Seifert, Julian Sedding, Jörg Hoh, Daniel Klco I will copy this release to the Sling dist directory and promote the artifacts to the central Maven repository. stefan

RE: ASM library to parse class files?

2023-12-01 Thread Stefan Seifert
> We used different approaches for package and artifact names in > https://github.com/apache/sling-org-apache-sling-caconfig-bnd- > plugin/tree/master and https://github.com/apache/sling-org-apache-sling- > bnd-models. yes, that was my fault (i created both artifacts but in quite different points

RE: Introduce spotless-maven-plugin

2023-12-06 Thread Stefan Seifert
i like it to have tooling like this around (but if have no experience with this tool). one important point is that e.g. for PRs it only validates newly added lines. if all PRs fail due to inconsistent formatting in the existing codebase this would be quite disruptive. stefan > -Original M

RE: Introduce spotless-maven-plugin

2023-12-06 Thread Stefan Seifert
efore it requires some opt-in per module anyways. > Konrad > > > On 6. Dec 2023, at 10:53, Stefan Seifert e.com.INVALID> wrote: > > > > i like it to have tooling like this around (but if have no experience > with this tool). > > > > one important point is that

RE: [VOTE] Release Apache Sling Provider Type Checker Bnd Plugin 1.0.0

2023-12-06 Thread Stefan Seifert
+1 stefan

RE: Introduce spotless-maven-plugin

2023-12-07 Thread Stefan Seifert
> Sure, any candidate(s) you have in mind? Then I can prepare a PR with the > proposed changes. > Konrad e.g. models-api and models-impl we have to keep in mind that once we apply one-time reformatting of the code base, all open PRs might be in conflict and will only be mergeable with manual

[VOTE] Release Apache Sling Testing Sling Mock 3.4.16

2023-12-07 Thread Stefan Seifert
Hi, We solved 2 issues in this release: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12353706&styleName=Text&projectId=12310710 Staging repository: https://repository.apache.org/content/repositories/orgapachesling-2820/ You can use this UNIX script to download the release and v

RE: [VOTE] Release Apache Sling Commons Johnzon 2.0.0

2023-12-07 Thread Stefan Seifert
+1 stefan

RE: [VOTE] Release Apache Sling Testing Sling Mock 3.4.16

2023-12-07 Thread Stefan Seifert
+1 stefan

RE: [VOTE] Release Apache Sling Commons Mime 2.3.0

2023-12-07 Thread Stefan Seifert
+1 stefan

RE: [VOTE] Release Apache Sling Testing Sling Mock 3.4.16

2023-12-11 Thread Stefan Seifert
one binding vote is missing ... stefan > -Original Message- > From: Stefan Seifert > Sent: Thursday, December 7, 2023 5:59 PM > To: dev@sling.apache.org > Subject: [VOTE] Release Apache Sling Testing Sling Mock 3.4.16 > > Hi, > > We solved 2 issu

[VOTE] Release Apache Sling Context-Aware Configuration Mock Plugin 1.5.4

2023-12-11 Thread Stefan Seifert
Hi, We solved 2 issues in this release: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12353380&styleName=Text&projectId=12310710 Staging repository: https://repository.apache.org/content/repositories/orgapachesling-2821/ You can use this UNIX script to download the release and v

RE: [VOTE] Release Apache Sling Context-Aware Configuration Mock Plugin 1.5.4

2023-12-11 Thread Stefan Seifert
+1 stefan

[RESULT] [VOTE] Release Apache Sling Testing Sling Mock 3.4.16

2023-12-12 Thread Stefan Seifert
Hi, The vote has passed with the following result : +1 (binding): Stefan Seifert, Carsten Ziegeler, Eric Norman I will copy this release to the Sling dist directory and promote the artifacts to the central Maven repository. stefan

RE: [VOTE] Release Apache Sling GraphQL 0.0.26

2023-12-13 Thread Stefan Seifert
+1 stefan

RE: [VOTE] Release Apache Sling Context-Aware Configuration Mock Plugin 1.5.4

2023-12-15 Thread Stefan Seifert
i need one more binding vote ... stefan > -Original Message- > From: Stefan Seifert > Sent: Monday, December 11, 2023 4:16 PM > To: dev@sling.apache.org > Subject: [VOTE] Release Apache Sling Context-Aware Configuration Mock > Plugin 1.5.4 > > Hi, > &

[RESULT] [VOTE] Release Apache Sling Context-Aware Configuration Mock Plugin 1.5.4

2023-12-15 Thread Stefan Seifert
Hi, The vote has passed with the following result : +1 (binding): Stefan Seifert, Radu Cotescu, Robert Munteanu I will copy this release to the Sling dist directory and promote the artifacts to the central Maven repository. stefan

RE: [VOTE] Release Apache Sling Engine 2.15.10

2023-12-15 Thread Stefan Seifert
+1 stefan

RE: [VOTE] Release Apache Sling Testing JCR Mock version 1.6.12

2023-12-19 Thread Stefan Seifert
+1 stefan

RE: [VOTE] Release Apache Sling JCR Jackrabbit User Manager version 2.2.30

2023-12-19 Thread Stefan Seifert
+1 stefan

RE: [VOTE] Release Apache Sling JCR Jackrabbit Access Manager version 4.0.2

2024-01-11 Thread Stefan Seifert
+1 stefan

RE: [VOTE] Release Apache Sling Rewriter 1.3.8

2024-01-15 Thread Stefan Seifert
+1 stefan

RE: [VOTE] Release Apache Sling Testing Clients 3.0.22

2024-01-15 Thread Stefan Seifert
+1 stefan

[VOTE] Release Apache Sling Testing JCR Mock 1.6.14, OSGi Mock 3.4.2, ResourceResolver Mock 1.4.6, Sling Mock 3.4.18

2024-01-22 Thread Stefan Seifert
Hi, Testing JCR Mock 1.6.14 (1 issue) https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12354068&styleName=Text&projectId=12310710 Testing OSGi Mock 3.4.2 (1 issue) https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12353872&styleName=Text&projectId=12310710 Testing Re

RE: [VOTE] Release Apache Sling Testing JCR Mock 1.6.14, OSGi Mock 3.4.2, ResourceResolver Mock 1.4.6, Sling Mock 3.4.18

2024-01-22 Thread Stefan Seifert
+1 stefan

RE: [VOTE] Release Apache Sling Rewriter 1.3.10

2024-01-24 Thread Stefan Seifert
+1 stefan

RE: [VOTE] Release Apache Sling Servlets Resolver 2.11.0

2024-01-24 Thread Stefan Seifert
+1 stefan

[RESULT] [VOTE] Release Apache Sling Testing JCR Mock 1.6.14, OSGi Mock 3.4.2, ResourceResolver Mock 1.4.6, Sling Mock 3.4.18

2024-01-25 Thread Stefan Seifert
Hi, The vote has passed with the following result : +1 (binding): Stefan Seifert, Robert Munteanu, Jörg Hoh, Eric Norman I will copy this release to the Sling dist directory and promote the artifacts to the central Maven repository. stefan

RE: [VOTE] Release Apache Sling Commons Log 5.5.0

2024-01-29 Thread Stefan Seifert
+1 stefan

RE: Sling Model Caching & GC problems

2024-01-30 Thread Stefan Seifert
> @Joerg: Pauls mail never hit the mailing list. Can you forward it? must be a problem on you side - it's in the archives: https://lists.apache.org/thread/xj6qosnjtgxvdf1lh58zs1bv5lh0y0q6 stefan

RE: [VOTE] Release Apache Sling Parent and Bundle Parent version 60

2024-01-31 Thread Stefan Seifert
+1 after the release we should send a separate heads-up mail to the mailing list pointing to https://cwiki.apache.org/confluence/x/SI75E and the required steps to make sure everyone notices. stefan

adaptTo() 2024: Call for Papers, Early Bird Tickets

2024-02-19 Thread Stefan Seifert
Dear adaptTo() Community, adaptTo() is returning to the vibrant Kulturbrauerei in Berlin from September 23rd to 25th 2024, for another edition of Europe's leading AEM Developer Conference. https://adapt.to/ The adaptTo() is a community event. Therefore we encourage everyone to participate. By

adaptTo() 2024 - Important: Rescheduled to October 2024

2024-03-22 Thread Stefan Seifert
Dear adaptTo() Community, Due to a trade fair taking place in Berlin at the same time as our event, hotel prices had risen sharply by the time of the original date. To offer you a high-quality event at a fair price, we have decided to move the date. We hope you will agree to this and look forw

[VOTE] Release Apache Sling Content Parser JSON 2.1.0

2024-04-09 Thread Stefan Seifert
Hi, We solved 4 issues in this release: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12353724&styleName=Text&projectId=12310710 Staging repository: https://repository.apache.org/content/repositories/orgapachesling-2844/ You can use this UNIX script to download the release and v

RE: [VOTE] Release Apache Sling Content Parser JSON 2.1.0

2024-04-09 Thread Stefan Seifert
+1 stefan

RE: [VOTE] Release Apache Sling Tenant 1.1.8

2024-04-11 Thread Stefan Seifert
+1 stefan

RE: [VOTE] Release Apache Sling Content Parser JSON 2.1.0

2024-04-12 Thread Stefan Seifert
we need one more binding vote! steafn > -Original Message- > From: Stefan Seifert > Sent: Tuesday, April 9, 2024 12:15 PM > To: dev@sling.apache.org > Subject: [VOTE] Release Apache Sling Content Parser JSON 2.1.0 > > Hi, > > We solved 4 issu

RE: [VOTE] Release Apache Sling Commons JSON 2.0.26

2024-04-12 Thread Stefan Seifert
+1 stefan

[RESULT] [VOTE] Release Apache Sling Content Parser JSON 2.1.0

2024-04-12 Thread Stefan Seifert
Hi, The vote has passed with the following result : +1 (binding): Stefan Seifert, Robert Munteanu, Konrad Windszus I will copy this release to the Sling dist directory and promote the artifacts to the central Maven repository. stefan

RE: [VOTE] Release Apache Sling JUnit Tests Teleporter 1.0.26

2024-04-17 Thread Stefan Seifert
+1 stefan

[VOTE] Release Apache Sling Testing Sling Mock Oak 3.2.0-1.22.15

2024-04-17 Thread Stefan Seifert
Hi, We solved 6 issues in this release: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12353253&styleName=Text&projectId=12310710 Staging repository: https://repository.apache.org/content/repositories/orgapachesling-2849/ You can use this UNIX script to download the release and v

[VOTE] Release Apache Sling Testing Sling Mock 3.5.0, Sling Mock Oak 4.0.0-1.62.0

2024-04-17 Thread Stefan Seifert
Hi, Testing Sling Mock 3.5.0 (3 issues) https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12354169&styleName=Text&projectId=12310710 Testing Sling Mock Oak 4.0.0-1.62.0 (7 issues) https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12354581&styleName=Text&projectId=12310

RE: [VOTE] Release Apache Sling Testing Sling Mock Oak 3.2.0-1.22.15

2024-04-17 Thread Stefan Seifert
+1 stefan

RE: [VOTE] Release Apache Sling Testing Sling Mock 3.5.0, Sling Mock Oak 4.0.0-1.62.0

2024-04-17 Thread Stefan Seifert
+1 stefan

RE: [Vote] Release Apache Sling Engine 2.15.12

2024-04-18 Thread Stefan Seifert
+1 stefan

RE: [VOTE] Release Apache Sling Rewriter 1.4.0

2024-04-19 Thread Stefan Seifert
+1 stefan

[RESULT] [VOTE] Release Apache Sling Testing Sling Mock 3.5.0, Sling Mock Oak 4.0.0-1.62.0

2024-04-22 Thread Stefan Seifert
Hi, The vote has passed with the following result : +1 (binding): Stefan Seifert, Jörg Hoh, Radu Cotescu, Robert Munteanu I will copy this release to the Sling dist directory and promote the artifacts to the central Maven repository. stefan

[RESULT] [VOTE] Release Apache Sling Testing Sling Mock Oak 3.2.0-1.22.15

2024-04-22 Thread Stefan Seifert
Hi, The vote has passed with the following result : +1 (binding): Stefan Seifert, Jörg Hoh, Radu Cotescu, Robert Munteanu I will copy this release to the Sling dist directory and promote the artifacts to the central Maven repository. stefan

RE: [VOTE] Sling Engine 2.15.14

2024-04-22 Thread Stefan Seifert
+1 stefan

RE: [VOTE] Release Apache Sling Rewriter 1.4.2

2024-04-24 Thread Stefan Seifert
+1 stefan

  1   2   3   4   5   6   7   8   9   10   >