Skip to content

Commit

Permalink
Nu bump 1.17.0 -> 1.18.0-RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
Arek Burdach committed Nov 6, 2024
1 parent a546a26 commit 0742ee6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ _book/
.DS_Store
*.log.logstashjson
out/
dumps/
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ val baseVersion = "1.0-SNAPSHOT"

// todo: for now we should regularly bump the version until we start publish single "latest" -SNAPSHOT version
val nussknackerV = settingKey[String]("Nussknacker version")
ThisBuild / nussknackerV := "1.18.0-staging-2024-10-10-20916-2224d333f-SNAPSHOT"
ThisBuild / nussknackerV := "1.18.0-RC1"
ThisBuild / version := codeVersion(baseVersion, nussknackerV.value)

// Global publish settings
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ trait CommonFlinkStreamingDeploymentManagerSpec extends AnyFunSuite with Matcher
val deploymentManager = createDeploymentManager(jobManager.jobmanagerRestUrl)
val processId = "runningFlink"

val version = ProcessVersion(VersionId(15), ProcessName(processId), ProcessId(1), List.empty, "user1", Some(13))
val version = ProcessVersion(VersionId(15), ProcessName(processId), ProcessId(1), labels = List.empty, user = "user1", modelVersion = Some(13))
val process = prepareProcess(processId, Some(1))

deployProcessAndWaitIfRunning(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import pl.touk.nussknacker.engine.api.deployment._
import pl.touk.nussknacker.engine.api.deployment.simple.SimpleStateStatus
import pl.touk.nussknacker.engine.api.process.ProcessName
import pl.touk.nussknacker.engine.canonicalgraph.CanonicalProcess
import pl.touk.nussknacker.engine.definition.component.Components.ComponentDefinitionExtractionMode.FinalDefinition
import pl.touk.nussknacker.engine.deployment.{DeploymentData, User}
import pl.touk.nussknacker.engine.management.FlinkStreamingDeploymentManagerProvider
import sttp.client3.SttpBackend
Expand Down Expand Up @@ -78,7 +79,8 @@ trait StreamingDockerTest
additionalConfigsFromProvider = Map.empty,
determineDesignerWideId = componentId => DesignerWideComponentId(componentId.toString),
workingDirectoryOpt = None,
shouldIncludeComponentProvider = _ => true
shouldIncludeComponentProvider = _ => true,
componentDefinitionExtractionMode = FinalDefinition
)
}
val deploymentManagerDependencies = DeploymentManagerDependencies(
Expand Down

0 comments on commit 0742ee6

Please sign in to comment.