Skip to content

Commit

Permalink
Post release 2.5.1-gradle (GoogleContainerTools#2795)
Browse files Browse the repository at this point in the history
Update docs, actual release is not from master
See: GoogleContainerTools#2794
  • Loading branch information
loosebazooka authored Oct 1, 2020
1 parent 4e0e51c commit fd5843d
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 11 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ To use a local build of the `jib-gradle-plugin`:
1. Modify your test project's `build.gradle` to use the snapshot version
```groovy
plugins {
// id 'com.google.cloud.tools.jib' version '2.5.0'
id 'com.google.cloud.tools.jib' version '2.5.1-SNAPSHOT'
// id 'com.google.cloud.tools.jib' version '2.5.1'
id 'com.google.cloud.tools.jib' version '2.5.2-SNAPSHOT'
}

```
Expand Down
2 changes: 1 addition & 1 deletion examples/helloworld/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id 'com.google.cloud.tools.jib' version '2.5.0'
id 'com.google.cloud.tools.jib' version '2.5.1'
}

sourceCompatibility = 1.8
Expand Down
2 changes: 1 addition & 1 deletion examples/java-agent/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id 'com.google.cloud.tools.jib' version '2.5.0'
id 'com.google.cloud.tools.jib' version '2.5.1'
id 'de.undercouch.download' version '4.0.0'
id "com.gorylenko.gradle-git-properties" version "2.2.0"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/micronaut/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id "groovy"
id "com.github.johnrengelman.shadow" version "5.2.0"
id "application"
id 'com.google.cloud.tools.jib' version '2.5.0'
id 'com.google.cloud.tools.jib' version '2.5.1'
}

version "0.1"
Expand Down
2 changes: 1 addition & 1 deletion examples/multi-module/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
plugins {
id 'org.springframework.boot' version '2.0.3.RELEASE' apply false
id 'io.spring.dependency-management' version '1.0.6.RELEASE' apply false
id 'com.google.cloud.tools.jib' version '2.5.0' apply false
id 'com.google.cloud.tools.jib' version '2.5.1' apply false
}
2 changes: 1 addition & 1 deletion examples/spring-boot/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id 'idea'
id 'org.springframework.boot' version '2.1.6.RELEASE'
id 'io.spring.dependency-management' version '1.0.6.RELEASE'
id 'com.google.cloud.tools.jib' version '2.5.0'
id 'com.google.cloud.tools.jib' version '2.5.1'
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion examples/vertx/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'io.vertx.vertx-plugin' version '0.1.0'
id 'com.google.cloud.tools.jib' version '2.5.0'
id 'com.google.cloud.tools.jib' version '2.5.1'
}

repositories {
Expand Down
7 changes: 6 additions & 1 deletion jib-gradle-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,16 @@ All notable changes to this project will be documented in this file.
### Fixed

- Fixed `NullPointerException` during input validation (in Java 9+) when configuring Jib parameters using certain immutable collections (such as `List.of()`). ([#2702](https://github.com/GoogleContainerTools/jib/issues/2702))
- Fixed an issue that configuring `jib.from.platforms` was always additive to the default `amd64/linux` platform. ([#2783](https://github.com/GoogleContainerTools/jib/issues/2783))
- Fixed authentication failure with Azure Container Registry when using ["tokens"](https://docs.microsoft.com/en-us/azure/container-registry/container-registry-repository-scoped-permissions). ([#2784](https://github.com/GoogleContainerTools/jib/issues/2784))
- Improved authentication flow for base image registry. ([#2134](https://github.com/GoogleContainerTools/jib/issues/2134))
- Throw `IllegalArgumentException` with an error message instead of throwing a `NullPointerException` when `jib.to.tags` is set to a collection containing a `null` value. ([#2760](https://github.com/GoogleContainerTools/jib/issues/2760))

## 2.5.1

### Fixed

- Fixed an issue that configuring `jib.from.platforms` was always additive to the default `amd64/linux` platform. ([#2783](https://github.com/GoogleContainerTools/jib/issues/2783))

## 2.5.0

### Added
Expand Down
2 changes: 1 addition & 1 deletion jib-gradle-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ In your Gradle Java project, add the plugin to your `build.gradle`:

```groovy
plugins {
id 'com.google.cloud.tools.jib' version '2.5.0'
id 'com.google.cloud.tools.jib' version '2.5.1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion jib-gradle-plugin/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = 2.5.1-SNAPSHOT
version = 2.5.2-SNAPSHOT

0 comments on commit fd5843d

Please sign in to comment.