Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Netflix/conductor-community
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.15.0
Choose a base ref
...
head repository: Netflix/conductor-community
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 4 commits
  • 3 files changed
  • 3 contributors

Commits on Nov 27, 2023

  1. Update revElasticSearch7 to 7.17.13 and FIX NoClassDefFoundError on o…

    …rg.elasticsearch.common.xcontent.XContentType
    mspasiano committed Nov 27, 2023
    Copy the full SHA
    9be0010 View commit details

Commits on Dec 4, 2023

  1. Merge pull request #303 from mspasiano/main

    Update revElasticSearch7 to 7.17.13 and FIX NoClassDefFoundError on o…
    v1r3n authored Dec 4, 2023
    Copy the full SHA
    7e1b912 View commit details

Commits on Dec 13, 2023

  1. Update README.md

    apanicker-nflx authored Dec 13, 2023
    Copy the full SHA
    0bde632 View commit details
  2. Update README.md

    apanicker-nflx authored Dec 13, 2023
    Copy the full SHA
    d72b134 View commit details
Showing with 9 additions and 6 deletions.
  1. +7 −4 README.md
  2. +1 −1 dependencies.gradle
  3. +1 −1 index/es7-persistence/src/main/java/com/netflix/conductor/es7/dao/index/ElasticSearchRestDAOV7.java
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# Netflix Conductor community modules
# Announcement

> Effective **December 13, 2023**, Netflix will discontinue maintenance of Conductor OSS on GitHub. This strategic decision, while difficult, is essential for realigning our resources to better serve our business objectives with our internal Conductor fork.
>
> We are *deeply grateful* for your support and contributions over the years. While Netflix will no longer be maintaining this repo, members of the Conductor community have been active in promoting alternative forks of this project, we’ll leave the code as is and trust that the health of the community will remain strong and continue to develop moving forward.
## Netflix Conductor community modules

This repository hosts all the community contributed modules and extensions for
[Netflix Conductor](https://github.com/Netflix/conductor)
@@ -15,9 +21,6 @@ Conductor is an extensible platform that allows users to bring in their own pers
The core conductor project contains implementations tested and supported by Netflix, while this repository will contain all
the modules contributed by community.

### Who is responsible for maintaining this repository?
Netflix in collaboration with the team at Orkes (https://orkes.io/) will continue to maintain this repository.

## Repository Structure and Published Artifcats
Binaries are available from [Netflix OSS Maven](https://artifacts.netflix.net/netflixoss/com/netflix/conductor/) repository, or the [Maven Central Repository](https://search.maven.org/search?q=g:com.netflix.conductor).

2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ ext {
revCommonsIo = '2.7'
revCuratorRecipes = '5.4.0'
revCuratorTest = '5.4.0'
revElasticSearch7 = '7.6.2'
revElasticSearch7 = '7.17.13'
revEmbeddedRedis = '0.6'
revEurekaClient = '1.10.10'
revGrpc = '1.57.+'
Original file line number Diff line number Diff line change
@@ -44,7 +44,6 @@
import org.elasticsearch.client.*;
import org.elasticsearch.client.core.CountRequest;
import org.elasticsearch.client.core.CountResponse;
import org.elasticsearch.common.xcontent.XContentType;
import org.elasticsearch.index.query.BoolQueryBuilder;
import org.elasticsearch.index.query.QueryBuilder;
import org.elasticsearch.index.query.QueryBuilders;
@@ -53,6 +52,7 @@
import org.elasticsearch.search.builder.SearchSourceBuilder;
import org.elasticsearch.search.sort.FieldSortBuilder;
import org.elasticsearch.search.sort.SortOrder;
import org.elasticsearch.xcontent.XContentType;
import org.joda.time.DateTime;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;