diff --git a/.github/readme/synth.metadata/synth.metadata b/.github/readme/synth.metadata/synth.metadata index 3c15b10d..d65003f6 100644 --- a/.github/readme/synth.metadata/synth.metadata +++ b/.github/readme/synth.metadata/synth.metadata @@ -4,14 +4,14 @@ "git": { "name": ".", "remote": "https://github.com/googleapis/java-bigqueryconnection.git", - "sha": "ac3669dd00e1a3e13a7a00c26d94d064e44a5aa6" + "sha": "c483db558cc6b547b550a628917ea505aa166622" } }, { "git": { "name": "synthtool", "remote": "https://github.com/googleapis/synthtool.git", - "sha": "6abb59097be84599a1d6091fe534a49e5c5cf948" + "sha": "ea52b8a0bd560f72f376efcf45197fb7c8869120" } } ] diff --git a/.kokoro/release/publish_javadoc.sh b/.kokoro/release/publish_javadoc.sh index 553c2d2c..b7a86b16 100755 --- a/.kokoro/release/publish_javadoc.sh +++ b/.kokoro/release/publish_javadoc.sh @@ -62,7 +62,7 @@ popd # V2 mvn clean site -B -q -Ddevsite.template="${KOKORO_GFILE_DIR}/java/" -pushd target/devsite +pushd target/devsite/reference # create metadata python3 -m docuploader create-metadata \ diff --git a/.repo-metadata.json b/.repo-metadata.json index 9e2420a4..1f2aaace 100644 --- a/.repo-metadata.json +++ b/.repo-metadata.json @@ -4,7 +4,7 @@ "product_documentation": "https://cloud.google.com/bigquery/docs/reference/bigqueryconnection/rest", "api_description": "allows users to manage BigQuery connections to external data sources.", "client_documentation": "https://cloud.google.com/bigquery/docs/reference/reservations/rpc/google.cloud.bigquery.reservation.v1beta1", - "release_level": "beta", + "release_level": "ga", "transport": "grpc", "language": "java", "repo": "googleapis/java-bigqueryconnection", diff --git a/CHANGELOG.md b/CHANGELOG.md index 3aef0e4d..41d3b6e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.0.0](https://www.github.com/googleapis/java-bigqueryconnection/compare/v0.4.2...v1.0.0) (2020-10-28) + + +### Features + +* promote to 1.0.0 ([#205](https://www.github.com/googleapis/java-bigqueryconnection/issues/205)) ([c483db5](https://www.github.com/googleapis/java-bigqueryconnection/commit/c483db558cc6b547b550a628917ea505aa166622)) + ### [0.4.2](https://www.github.com/googleapis/java-bigqueryconnection/compare/v0.4.1...v0.4.2) (2020-10-20) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 6b2238bb..2add2547 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -1,3 +1,4 @@ + # Code of Conduct ## Our Pledge @@ -69,12 +70,12 @@ dispute. If you are unable to resolve the matter for any reason, or if the behavior is threatening or harassing, report it. We are dedicated to providing an environment where participants feel welcome and safe. -Reports should be directed to *[PROJECT STEWARD NAME(s) AND EMAIL(s)]*, the -Project Steward(s) for *[PROJECT NAME]*. It is the Project Steward’s duty to +Reports should be directed to *googleapis-stewards@google.com*, the +Project Steward(s) for *Google Cloud Client Libraries*. It is the Project Steward’s duty to receive and address reported violations of the code of conduct. They will then work with a committee consisting of representatives from the Open Source Programs Office and the Google Open Source Strategy team. If for any reason you -are uncomfortable reaching out the Project Steward, please email +are uncomfortable reaching out to the Project Steward, please email opensource@google.com. We will investigate every complaint, but you may not receive a direct response. diff --git a/README.md b/README.md index edd33e55..4a7d43b6 100644 --- a/README.md +++ b/README.md @@ -8,9 +8,6 @@ Java idiomatic client for [Cloud BigQuery Connection][product-docs]. - [Product Documentation][product-docs] - [Client Library Documentation][javadocs] -> Note: This client is a work-in-progress, and may occasionally -> make backwards-incompatible changes. - ## Quickstart @@ -20,18 +17,18 @@ If you are using Maven, add this to your pom.xml file: com.google.cloud google-cloud-bigqueryconnection - 0.4.1 + 0.4.2 ``` If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-bigqueryconnection:0.4.1' +compile 'com.google.cloud:google-cloud-bigqueryconnection:0.4.2' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-bigqueryconnection" % "0.4.1" +libraryDependencies += "com.google.cloud" % "google-cloud-bigqueryconnection" % "0.4.2" ``` ## Authentication @@ -101,9 +98,6 @@ Java 7 or above is required for using this client. This library follows [Semantic Versioning](http://semver.org/). -It is currently in major version zero (``0.y.z``), which means that anything may change at any time -and the public API should not be considered stable. - ## Contributing @@ -141,7 +135,7 @@ Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5] [kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-bigqueryconnection/java8-win.html [kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-bigqueryconnection/java11.svg [kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-bigqueryconnection/java11.html -[stability-image]: https://img.shields.io/badge/stability-beta-yellow +[stability-image]: https://img.shields.io/badge/stability-ga-green [maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-bigqueryconnection.svg [maven-version-link]: https://search.maven.org/search?q=g:com.google.cloud%20AND%20a:google-cloud-bigqueryconnection&core=gav [authentication]: https://github.com/googleapis/google-cloud-java#authentication diff --git a/google-cloud-bigqueryconnection-bom/pom.xml b/google-cloud-bigqueryconnection-bom/pom.xml index 347cb7e8..74225ac0 100644 --- a/google-cloud-bigqueryconnection-bom/pom.xml +++ b/google-cloud-bigqueryconnection-bom/pom.xml @@ -3,12 +3,12 @@ 4.0.0 com.google.cloud google-cloud-bigqueryconnection-bom - 0.4.2 + 1.0.0 pom com.google.cloud google-cloud-shared-config - 0.9.3 + 0.9.4 Google Cloud BigQuery Connections BOM @@ -64,27 +64,27 @@ com.google.cloud google-cloud-bigqueryconnection - 0.4.2 + 1.0.0 com.google.api.grpc proto-google-cloud-bigqueryconnection-v1 - 0.4.2 + 1.0.0 com.google.api.grpc grpc-google-cloud-bigqueryconnection-v1 - 0.4.2 + 1.0.0 com.google.api.grpc proto-google-cloud-bigqueryconnection-v1beta1 - 0.4.2 + 0.5.0 com.google.api.grpc grpc-google-cloud-bigqueryconnection-v1beta1 - 0.4.2 + 0.5.0 @@ -100,4 +100,4 @@ - \ No newline at end of file + diff --git a/google-cloud-bigqueryconnection/pom.xml b/google-cloud-bigqueryconnection/pom.xml index eba8d56a..6657846b 100644 --- a/google-cloud-bigqueryconnection/pom.xml +++ b/google-cloud-bigqueryconnection/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.google.cloud google-cloud-bigqueryconnection - 0.4.2 + 1.0.0 jar Google Cloud BigQuery Connections https://github.com/googleapis/java-bigqueryconnection @@ -11,7 +11,7 @@ com.google.cloud google-cloud-bigqueryconnection-parent - 0.4.2 + 1.0.0 google-cloud-bigqueryconnection @@ -105,4 +105,4 @@ - \ No newline at end of file + diff --git a/grpc-google-cloud-bigqueryconnection-v1/pom.xml b/grpc-google-cloud-bigqueryconnection-v1/pom.xml index f9e365c8..ff88f2f1 100644 --- a/grpc-google-cloud-bigqueryconnection-v1/pom.xml +++ b/grpc-google-cloud-bigqueryconnection-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-bigqueryconnection-v1 - 0.4.2 + 1.0.0 grpc-google-cloud-bigqueryconnection-v1 GRPC library for grpc-google-cloud-bigqueryconnection-v1 com.google.cloud google-cloud-bigqueryconnection-parent - 0.4.2 + 1.0.0 @@ -51,4 +51,4 @@ - \ No newline at end of file + diff --git a/grpc-google-cloud-bigqueryconnection-v1beta1/pom.xml b/grpc-google-cloud-bigqueryconnection-v1beta1/pom.xml index 2d803e29..c8dd0069 100644 --- a/grpc-google-cloud-bigqueryconnection-v1beta1/pom.xml +++ b/grpc-google-cloud-bigqueryconnection-v1beta1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-bigqueryconnection-v1beta1 - 0.4.2 + 0.5.0 grpc-google-cloud-bigqueryconnection-v1beta1 GRPC library for grpc-google-cloud-bigqueryconnection-v1beta1 com.google.cloud google-cloud-bigqueryconnection-parent - 0.4.2 + 1.0.0 @@ -51,4 +51,4 @@ - \ No newline at end of file + diff --git a/pom.xml b/pom.xml index 038dcdd6..2ef0d6a5 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-bigqueryconnection-parent pom - 0.4.2 + 1.0.0 Google Cloud BigQuery Connections Parent https://github.com/googleapis/java-bigqueryconnection @@ -14,7 +14,7 @@ com.google.cloud google-cloud-shared-config - 0.9.3 + 0.9.4 @@ -71,27 +71,27 @@ com.google.cloud google-cloud-bigqueryconnection - 0.4.2 + 1.0.0 com.google.api.grpc proto-google-cloud-bigqueryconnection-v1 - 0.4.2 + 1.0.0 com.google.api.grpc grpc-google-cloud-bigqueryconnection-v1 - 0.4.2 + 1.0.0 com.google.api.grpc proto-google-cloud-bigqueryconnection-v1beta1 - 0.4.2 + 0.5.0 com.google.api.grpc grpc-google-cloud-bigqueryconnection-v1beta1 - 0.4.2 + 0.5.0 diff --git a/proto-google-cloud-bigqueryconnection-v1/pom.xml b/proto-google-cloud-bigqueryconnection-v1/pom.xml index 8852af52..83d35fc2 100644 --- a/proto-google-cloud-bigqueryconnection-v1/pom.xml +++ b/proto-google-cloud-bigqueryconnection-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-bigqueryconnection-v1 - 0.4.2 + 1.0.0 proto-google-cloud-bigqueryconnection-v1 PROTO library for proto-google-cloud-bigqueryconnection-v1 com.google.cloud google-cloud-bigqueryconnection-parent - 0.4.2 + 1.0.0 @@ -43,4 +43,4 @@ - \ No newline at end of file + diff --git a/proto-google-cloud-bigqueryconnection-v1beta1/pom.xml b/proto-google-cloud-bigqueryconnection-v1beta1/pom.xml index 046fb511..00f96e29 100644 --- a/proto-google-cloud-bigqueryconnection-v1beta1/pom.xml +++ b/proto-google-cloud-bigqueryconnection-v1beta1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-bigqueryconnection-v1beta1 - 0.4.2 + 0.5.0 proto-google-cloud-bigqueryconnection-v1beta1 PROTO library for proto-google-cloud-bigqueryconnection-v1beta1 com.google.cloud google-cloud-bigqueryconnection-parent - 0.4.2 + 1.0.0 @@ -43,4 +43,4 @@ - \ No newline at end of file + diff --git a/renovate.json b/renovate.json index ba3180c9..333404c9 100644 --- a/renovate.json +++ b/renovate.json @@ -17,24 +17,6 @@ ], "versionScheme": "docker" }, - { - "packagePatterns": [ - "^com.google.api:gax", - "^com.google.auth:", - "^com.google.cloud:google-cloud-core", - "^io.grpc:", - "^com.google.guava:" - ], - "groupName": "core dependencies" - }, - { - "packagePatterns": [ - "^com.google.http-client:", - "^com.google.oauth-client:", - "^com.google.api-client:" - ], - "groupName": "core transport dependencies" - }, { "packagePatterns": [ "*" @@ -63,6 +45,16 @@ "semanticCommitType": "chore", "semanticCommitScope": "deps" }, + { + "packagePatterns": [ + "^junit:junit", + "^com.google.truth:truth", + "^org.mockito:mockito-core", + "^org.objenesis:objenesis" + ], + "semanticCommitType": "test", + "semanticCommitScope": "deps" + }, { "packagePatterns": [ "^com.google.cloud:google-cloud-" @@ -78,4 +70,4 @@ ], "semanticCommits": true, "masterIssue": true -} \ No newline at end of file +} diff --git a/samples/install-without-bom/pom.xml b/samples/install-without-bom/pom.xml index 40ca9351..d0218e32 100644 --- a/samples/install-without-bom/pom.xml +++ b/samples/install-without-bom/pom.xml @@ -29,7 +29,7 @@ com.google.cloud google-cloud-bigqueryconnection - 0.4.1 + 0.4.2 diff --git a/samples/snapshot/pom.xml b/samples/snapshot/pom.xml index 4b42709c..a740c4b8 100644 --- a/samples/snapshot/pom.xml +++ b/samples/snapshot/pom.xml @@ -28,7 +28,7 @@ com.google.cloud google-cloud-bigqueryconnection - 0.4.2 + 1.0.0 diff --git a/samples/snippets/pom.xml b/samples/snippets/pom.xml index 4750a241..9c8407fe 100644 --- a/samples/snippets/pom.xml +++ b/samples/snippets/pom.xml @@ -28,7 +28,7 @@ com.google.cloud libraries-bom - 13.0.0 + 13.3.0 pom import @@ -40,7 +40,7 @@ com.google.cloud google-cloud-bigqueryconnection - 0.4.1 + 0.4.2 diff --git a/synth.metadata b/synth.metadata index 082e4996..c91bea06 100644 --- a/synth.metadata +++ b/synth.metadata @@ -4,7 +4,7 @@ "git": { "name": ".", "remote": "https://github.com/googleapis/java-bigqueryconnection.git", - "sha": "e2bae6f9c33a3d234eed2ac82522ddb675e3a4c5" + "sha": "56b20ddbb1daf49380fb1be73c1248ae28bd6268" } }, { @@ -27,7 +27,7 @@ "git": { "name": "synthtool", "remote": "https://github.com/googleapis/synthtool.git", - "sha": "5a506ec8765cc04f7e29f888b8e9b257d9a7ae11" + "sha": "5f6ef0ec5501d33c4667885b37a7685a30d41a76" } } ], diff --git a/versions.txt b/versions.txt index db769ab4..f7f925eb 100644 --- a/versions.txt +++ b/versions.txt @@ -1,8 +1,8 @@ # Format: # module:released-version:current-version -google-cloud-bigqueryconnection:0.4.2:0.4.2 -proto-google-cloud-bigqueryconnection-v1:0.4.2:0.4.2 -grpc-google-cloud-bigqueryconnection-v1:0.4.2:0.4.2 -proto-google-cloud-bigqueryconnection-v1beta1:0.4.2:0.4.2 -grpc-google-cloud-bigqueryconnection-v1beta1:0.4.2:0.4.2 \ No newline at end of file +google-cloud-bigqueryconnection:1.0.0:1.0.0 +proto-google-cloud-bigqueryconnection-v1:1.0.0:1.0.0 +grpc-google-cloud-bigqueryconnection-v1:1.0.0:1.0.0 +proto-google-cloud-bigqueryconnection-v1beta1:0.5.0:0.5.0 +grpc-google-cloud-bigqueryconnection-v1beta1:0.5.0:0.5.0