From 705d8f812b6b7ddbc85715228c269048a2abf9c2 Mon Sep 17 00:00:00 2001 From: BoD Date: Wed, 18 Jun 2025 11:31:03 +0200 Subject: [PATCH] version is now 4.3.2-SNAPSHOT --- gradle.properties | 2 +- gradle/libraries.toml | 2 +- tests/integration-tests/testFixtures/allPlanets.json | 2 +- .../testFixtures/expectedOperationsPartBodyMultiple.json | 2 +- .../testFixtures/expectedOperationsPartBodyNested.json | 2 +- .../testFixtures/expectedOperationsPartBodySingle.json | 2 +- .../testFixtures/expectedOperationsPartBodyTwice.json | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/gradle.properties b/gradle.properties index 513c983e0d2..3f71ff01b8b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ # Publishing defaults, could ultimately be moved to build scripts GROUP=com.apollographql.apollo -VERSION_NAME=4.3.1 +VERSION_NAME=4.3.2-SNAPSHOT POM_URL=https://github.com/apollographql/apollo-kotlin/ POM_SCM_URL=https://github.com/apollographql/apollo-kotlin/ diff --git a/gradle/libraries.toml b/gradle/libraries.toml index 004eddc89b0..193498c08a0 100644 --- a/gradle/libraries.toml +++ b/gradle/libraries.toml @@ -15,7 +15,7 @@ android-sdkversion-benchmark-min = "24" android-sdkversion-target = "30" androidx-sqlite = "2.3.1" # This is used by the gradle integration tests to get the artifacts locally -apollo = "4.3.1" +apollo = "4.3.2-SNAPSHOT" apollo-execution = "0.1.0" apollo-normalizedcache-incubating = "0.0.8" # Used by the apollo-tooling project which uses a published version of Apollo diff --git a/tests/integration-tests/testFixtures/allPlanets.json b/tests/integration-tests/testFixtures/allPlanets.json index fd646b47c49..22bdbebd8ac 100644 --- a/tests/integration-tests/testFixtures/allPlanets.json +++ b/tests/integration-tests/testFixtures/allPlanets.json @@ -1 +1 @@ -{"operationName":"AllPlanets","variables":{},"query":"query AllPlanets { allPlanets(first: 300) { planets { __typename ...PlanetFragment filmConnection { totalCount films { __typename title ...FilmFragment } } } } } fragment PlanetFragment on Planet { name climates surfaceWater } fragment FilmFragment on Film { title producers }","extensions":{"clientLibrary":{"name":"apollo-kotlin","version":"4.3.1-SNAPSHOT"}}} \ No newline at end of file +{"operationName":"AllPlanets","variables":{},"query":"query AllPlanets { allPlanets(first: 300) { planets { __typename ...PlanetFragment filmConnection { totalCount films { __typename title ...FilmFragment } } } } } fragment PlanetFragment on Planet { name climates surfaceWater } fragment FilmFragment on Film { title producers }","extensions":{"clientLibrary":{"name":"apollo-kotlin","version":"4.3.2-SNAPSHOT"}}} \ No newline at end of file diff --git a/tests/integration-tests/testFixtures/expectedOperationsPartBodyMultiple.json b/tests/integration-tests/testFixtures/expectedOperationsPartBodyMultiple.json index 3f96cc2ad72..ea0ddfc8e69 100644 --- a/tests/integration-tests/testFixtures/expectedOperationsPartBodyMultiple.json +++ b/tests/integration-tests/testFixtures/expectedOperationsPartBodyMultiple.json @@ -1 +1 @@ -{"operationName":"MultipleUpload","variables":{"files":[null,null]},"query":"mutation MultipleUpload($files: [Upload!]!) { multipleUpload(files: $files) { id path filename mimetype } }","extensions":{"clientLibrary":{"name":"apollo-kotlin","version":"4.3.1-SNAPSHOT"}}} \ No newline at end of file +{"operationName":"MultipleUpload","variables":{"files":[null,null]},"query":"mutation MultipleUpload($files: [Upload!]!) { multipleUpload(files: $files) { id path filename mimetype } }","extensions":{"clientLibrary":{"name":"apollo-kotlin","version":"4.3.2-SNAPSHOT"}}} \ No newline at end of file diff --git a/tests/integration-tests/testFixtures/expectedOperationsPartBodyNested.json b/tests/integration-tests/testFixtures/expectedOperationsPartBodyNested.json index a9d5d1c06fd..f00762f3cde 100644 --- a/tests/integration-tests/testFixtures/expectedOperationsPartBodyNested.json +++ b/tests/integration-tests/testFixtures/expectedOperationsPartBodyNested.json @@ -1 +1 @@ -{"operationName":"NestedUpload","variables":{"topFile":null,"topFileList":[null,null],"nested":{"recursiveNested":[{"file":null,"fileList":[null,null]},{"file":null,"fileList":[null,null]}],"file":null,"fileList":[null,null]}},"query":"mutation NestedUpload($topFile: Upload, $topFileList: [Upload], $nested: NestedObject) { nestedUpload(topFile: $topFile, topFileList: $topFileList, nested: $nested) }","extensions":{"clientLibrary":{"name":"apollo-kotlin","version":"4.3.1-SNAPSHOT"}}} \ No newline at end of file +{"operationName":"NestedUpload","variables":{"topFile":null,"topFileList":[null,null],"nested":{"recursiveNested":[{"file":null,"fileList":[null,null]},{"file":null,"fileList":[null,null]}],"file":null,"fileList":[null,null]}},"query":"mutation NestedUpload($topFile: Upload, $topFileList: [Upload], $nested: NestedObject) { nestedUpload(topFile: $topFile, topFileList: $topFileList, nested: $nested) }","extensions":{"clientLibrary":{"name":"apollo-kotlin","version":"4.3.2-SNAPSHOT"}}} \ No newline at end of file diff --git a/tests/integration-tests/testFixtures/expectedOperationsPartBodySingle.json b/tests/integration-tests/testFixtures/expectedOperationsPartBodySingle.json index 0a5a84cd262..dbf72cb98f2 100644 --- a/tests/integration-tests/testFixtures/expectedOperationsPartBodySingle.json +++ b/tests/integration-tests/testFixtures/expectedOperationsPartBodySingle.json @@ -1 +1 @@ -{"operationName":"SingleUpload","variables":{"file":null},"query":"mutation SingleUpload($file: Upload!) { singleUpload(file: $file) { id path filename mimetype } }","extensions":{"clientLibrary":{"name":"apollo-kotlin","version":"4.3.1-SNAPSHOT"}}} \ No newline at end of file +{"operationName":"SingleUpload","variables":{"file":null},"query":"mutation SingleUpload($file: Upload!) { singleUpload(file: $file) { id path filename mimetype } }","extensions":{"clientLibrary":{"name":"apollo-kotlin","version":"4.3.2-SNAPSHOT"}}} \ No newline at end of file diff --git a/tests/integration-tests/testFixtures/expectedOperationsPartBodyTwice.json b/tests/integration-tests/testFixtures/expectedOperationsPartBodyTwice.json index 86a9d07213b..435aca94dff 100644 --- a/tests/integration-tests/testFixtures/expectedOperationsPartBodyTwice.json +++ b/tests/integration-tests/testFixtures/expectedOperationsPartBodyTwice.json @@ -1 +1 @@ -{"operationName":"SingleUploadTwice","variables":{"file1":null,"file2":null},"query":"mutation SingleUploadTwice($file1: Upload!, $file2: Upload!) { file1: singleUpload(file: $file1) { id path filename mimetype } file2: singleUpload(file: $file2) { id path filename mimetype } }","extensions":{"clientLibrary":{"name":"apollo-kotlin","version":"4.3.1-SNAPSHOT"}}} \ No newline at end of file +{"operationName":"SingleUploadTwice","variables":{"file1":null,"file2":null},"query":"mutation SingleUploadTwice($file1: Upload!, $file2: Upload!) { file1: singleUpload(file: $file1) { id path filename mimetype } file2: singleUpload(file: $file2) { id path filename mimetype } }","extensions":{"clientLibrary":{"name":"apollo-kotlin","version":"4.3.2-SNAPSHOT"}}} \ No newline at end of file