From 9141db1a66584b98c7e0ce11552fd87b6cb9479b Mon Sep 17 00:00:00 2001 From: Dmytro Vyazelenko <696855+vyazelenko@users.noreply.github.com> Date: Fri, 31 Jan 2025 12:29:50 +0100 Subject: [PATCH 1/2] Update `Implementation-Vendor`. --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index fdaca857c9..0158def713 100644 --- a/build.gradle +++ b/build.gradle @@ -254,7 +254,7 @@ subprojects { manifest.attributes( 'Implementation-Title': 'Artio', 'Implementation-Version': archiveVersion, - 'Implementation-Vendor': 'Real Logic Limited' + 'Implementation-Vendor': 'Adaptive Financial Consulting' ) } From 25ad83cee34772db3e5bc59103c649a280910409 Mon Sep 17 00:00:00 2001 From: Dmytro Vyazelenko <696855+vyazelenko@users.noreply.github.com> Date: Fri, 31 Jan 2025 12:33:51 +0100 Subject: [PATCH 2/2] Replace https://github.com/real-logic with https://github.com/aeron-io and https://github.com/artiofix. --- CONTRIBUTING.md | 2 +- README.md | 8 ++++---- .../co/real_logic/artio/entrypoint/binary_entrypoint.xml | 2 +- .../artio/dictionary/generation/CodecConfiguration.java | 2 +- .../generation/AbstractDecoderGeneratorTest.java | 2 +- .../uk/co/real_logic/artio/admin/FixAdminSession.java | 2 +- .../co/real_logic/artio/engine/EngineConfiguration.java | 4 ++-- .../artio/fixp/FixPCancelOnDisconnectTimeoutHandler.java | 2 +- .../java/uk/co/real_logic/artio/library/FixLibrary.java | 4 ++-- .../uk/co/real_logic/artio/library/SessionHandler.java | 2 +- .../artio/session/CancelOnDisconnectTimeoutHandler.java | 2 +- .../main/java/uk/co/real_logic/artio/session/Session.java | 2 +- build.gradle | 8 ++++---- 13 files changed, 21 insertions(+), 21 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 24d8d00c65..ec4dd6a28c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,7 +8,7 @@ When submitting code, please make every effort to follow existing conventions an By contributing your code, you agree to license your contribution under the terms of the APLv2: -https://github.com/real-logic/artio/blob/master/LICENSE +https://github.com/artiofix/artio/blob/master/LICENSE All files are made available under the Apache 2.0 license. diff --git a/README.md b/README.md index 32525887ed..47b407e14e 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ # Artio -[![Actions Status](https://github.com/real-logic/artio/workflows/Continuous%20Integration/badge.svg)](https://github.com/real-logic/artio/actions) -[![CodeQL Status](https://github.com/real-logic/artio/workflows/CodeQL/badge.svg)](https://github.com/real-logic/artio/actions) -[![GitHub](https://img.shields.io/github/license/real-logic/Aeron.svg)](https://github.com/real-logic/aeron/blob/master/LICENSE) +[![Actions Status](https://github.com/artiofix/artio/workflows/Continuous%20Integration/badge.svg)](https://github.com/artiofix/artio/actions) +[![CodeQL Status](https://github.com/artiofix/artio/workflows/CodeQL/badge.svg)](https://github.com/artiofix/artio/actions) +[![GitHub](https://img.shields.io/github/license/aeron-io/Aeron.svg)](https://github.com/aeron-io/aeron/blob/master/LICENSE) High-Performance FIX Gateway -Please check out the [Wiki](https://github.com/real-logic/artio/wiki). +Please check out the [Wiki](https://github.com/artiofix/artio/wiki). ## How to build diff --git a/artio-binary-entrypoint-codecs/src/main/resources/uk/co/real_logic/artio/entrypoint/binary_entrypoint.xml b/artio-binary-entrypoint-codecs/src/main/resources/uk/co/real_logic/artio/entrypoint/binary_entrypoint.xml index b38e12963e..d66897a9dc 100644 --- a/artio-binary-entrypoint-codecs/src/main/resources/uk/co/real_logic/artio/entrypoint/binary_entrypoint.xml +++ b/artio-binary-entrypoint-codecs/src/main/resources/uk/co/real_logic/artio/entrypoint/binary_entrypoint.xml @@ -31,7 +31,7 @@ History ================================================================================= --> - + wiki for details. + * wiki for details. * * @param parentPackage the parent package where classes are generated. * @return this diff --git a/artio-codecs/src/test/java/uk/co/real_logic/artio/dictionary/generation/AbstractDecoderGeneratorTest.java b/artio-codecs/src/test/java/uk/co/real_logic/artio/dictionary/generation/AbstractDecoderGeneratorTest.java index 54c22efa58..bf1dd5f859 100644 --- a/artio-codecs/src/test/java/uk/co/real_logic/artio/dictionary/generation/AbstractDecoderGeneratorTest.java +++ b/artio-codecs/src/test/java/uk/co/real_logic/artio/dictionary/generation/AbstractDecoderGeneratorTest.java @@ -1182,7 +1182,7 @@ public void shouldResetAllNestedRepeatingGroupEntries() throws Exception // Although the message does not have nestedEg tags, the decoders will remain // This is to ensure allocation is done only when it's necessary to add new elements to a repeating group - // for more details see issue https://github.com/real-logic/artio/issues/532 + // for more details see issue https://github.com/artiofix/artio/issues/532 assertNotNull(getNestedGroup(group)); group = next(group); diff --git a/artio-core/src/main/java/uk/co/real_logic/artio/admin/FixAdminSession.java b/artio-core/src/main/java/uk/co/real_logic/artio/admin/FixAdminSession.java index 650a68376c..3956272046 100644 --- a/artio-core/src/main/java/uk/co/real_logic/artio/admin/FixAdminSession.java +++ b/artio-core/src/main/java/uk/co/real_logic/artio/admin/FixAdminSession.java @@ -167,7 +167,7 @@ public boolean isConnected() * Gets whether the session is slow or not. If the session is not currently connected then this method will * return true. * - * @see + * @see * Slow Consumer Support. * @return true if slow, false otherwise. */ diff --git a/artio-core/src/main/java/uk/co/real_logic/artio/engine/EngineConfiguration.java b/artio-core/src/main/java/uk/co/real_logic/artio/engine/EngineConfiguration.java index 95152cea7c..186b929eda 100644 --- a/artio-core/src/main/java/uk/co/real_logic/artio/engine/EngineConfiguration.java +++ b/artio-core/src/main/java/uk/co/real_logic/artio/engine/EngineConfiguration.java @@ -1100,7 +1100,7 @@ public EngineConfiguration errorIfDuplicateEngineDetected(final boolean errorIfD * Sets the cancel on disconnect timeout handler for FIX sessions. This is invoked when a cancel on disconnect * event occurs. * - * You can see the wiki + * You can see the wiki * for more details around Cancel on disconnect support. * * @param cancelOnDisconnectTimeoutHandler the handler to be invoked when a cancel on disconnect event occurs. @@ -1118,7 +1118,7 @@ public EngineConfiguration cancelOnDisconnectTimeoutHandler( * Sets the cancel on disconnect timeout handler for FIXP connections. This is invoked when a cancel on disconnect * event occurs. * - * You can see the wiki + * You can see the wiki * for more details around Cancel on disconnect support. * * @param fixPCancelOnDisconnectTimeoutHandler the handler to be invoked when a cancel on disconnect event occurs. diff --git a/artio-core/src/main/java/uk/co/real_logic/artio/fixp/FixPCancelOnDisconnectTimeoutHandler.java b/artio-core/src/main/java/uk/co/real_logic/artio/fixp/FixPCancelOnDisconnectTimeoutHandler.java index 75634ec8b6..d1d84dba3a 100644 --- a/artio-core/src/main/java/uk/co/real_logic/artio/fixp/FixPCancelOnDisconnectTimeoutHandler.java +++ b/artio-core/src/main/java/uk/co/real_logic/artio/fixp/FixPCancelOnDisconnectTimeoutHandler.java @@ -29,7 +29,7 @@ *
  • the CODTimeoutWindow also specified in the establish message must have expired without a reconnect
  • * . * - * You can see the wiki + * You can see the wiki * for more details around Cancel on disconnect support. * * The FIX equivalent to this interface is {@link CancelOnDisconnectTimeoutHandler}. diff --git a/artio-core/src/main/java/uk/co/real_logic/artio/library/FixLibrary.java b/artio-core/src/main/java/uk/co/real_logic/artio/library/FixLibrary.java index 93f24384f6..54013c2d8f 100644 --- a/artio-core/src/main/java/uk/co/real_logic/artio/library/FixLibrary.java +++ b/artio-core/src/main/java/uk/co/real_logic/artio/library/FixLibrary.java @@ -495,8 +495,8 @@ public String currentAeronChannel() * * @param configuration the configuration for this Session. * @return a reply object wrapping the Connection itself. - * @see - * https://github.com/real-logic/artio/wiki/ILink-3-Support + * @see + * https://github.com/artiofix/artio/wiki/ILink-3-Support */ public Reply initiate(final ILink3ConnectionConfiguration configuration) { diff --git a/artio-core/src/main/java/uk/co/real_logic/artio/library/SessionHandler.java b/artio-core/src/main/java/uk/co/real_logic/artio/library/SessionHandler.java index 3b3ef303bc..d435c31713 100644 --- a/artio-core/src/main/java/uk/co/real_logic/artio/library/SessionHandler.java +++ b/artio-core/src/main/java/uk/co/real_logic/artio/library/SessionHandler.java @@ -65,7 +65,7 @@ Action onMessage( /** * Invoked if a session has been detected as being, or no longer being demarcated as a slow * session. See - * the wiki + * the wiki * for details on what a slow consumer is. * * @param libraryId the id of library which the session used to owned by. diff --git a/artio-core/src/main/java/uk/co/real_logic/artio/session/CancelOnDisconnectTimeoutHandler.java b/artio-core/src/main/java/uk/co/real_logic/artio/session/CancelOnDisconnectTimeoutHandler.java index c1801941d8..f775cc3c00 100644 --- a/artio-core/src/main/java/uk/co/real_logic/artio/session/CancelOnDisconnectTimeoutHandler.java +++ b/artio-core/src/main/java/uk/co/real_logic/artio/session/CancelOnDisconnectTimeoutHandler.java @@ -31,7 +31,7 @@ * the value provided in the logon message if it is specified and otherwise taking it from the acceptor engine * configuration. * - * You can see the wiki + * You can see the wiki * for more details around Cancel on disconnect support. * * Initiator implementations using cancel on disconnect can set the requisite logon fields using a diff --git a/artio-core/src/main/java/uk/co/real_logic/artio/session/Session.java b/artio-core/src/main/java/uk/co/real_logic/artio/session/Session.java index ba7784a1b0..6e44511db7 100644 --- a/artio-core/src/main/java/uk/co/real_logic/artio/session/Session.java +++ b/artio-core/src/main/java/uk/co/real_logic/artio/session/Session.java @@ -484,7 +484,7 @@ public long cancelOnDisconnectTimeoutWindowInNs() /** * Gets the slow consumer status for this session. See - * the wiki + * the wiki * for details on what a slow consumer is. * * @return true if the session is a slow consumer, false otherwise. diff --git a/build.gradle b/build.gradle index 0158def713..e255566246 100644 --- a/build.gradle +++ b/build.gradle @@ -48,12 +48,12 @@ def projectPom = { packaging = 'jar' description = 'High-Performance FIX Gateway' - url = 'https://github.com/real-logic/artio' + url = 'https://github.com/artiofix/artio' scm { - connection = 'scm:git:https://github.com/real-logic/artio.git' - developerConnection = 'scm:git:https://github.com/real-logic/artio.git' - url = 'https://github.com/real-logic/artio.git' + connection = 'scm:git:https://github.com/artiofix/artio.git' + developerConnection = 'scm:git:https://github.com/artiofix/artio.git' + url = 'https://github.com/artiofix/artio.git' } licenses {