-
-
Notifications
You must be signed in to change notification settings - Fork 140
[JEP-206] Always use UTF-8 for the main Pipeline log file #89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
d7921a9
5cb884e
90e81c2
d0b5694
29e8025
2c5d9ff
5ba8a1a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -64,11 +64,11 @@ | |
| <properties> | ||
| <revision>2.22</revision> | ||
| <changelist>-SNAPSHOT</changelist> | ||
| <jenkins.version>2.62</jenkins.version> | ||
| <jenkins.version>2.73.3</jenkins.version> | ||
| <java.level>8</java.level> | ||
| <no-test-jar>false</no-test-jar> | ||
| <workflow-support-plugin.version>2.17</workflow-support-plugin.version> | ||
| <scm-api-plugin.version>2.1.1</scm-api-plugin.version> | ||
| <workflow-support-plugin.version>2.19-rc287.918f5958551d</workflow-support-plugin.version> <!-- TODO https://github.com/jenkinsci/workflow-support-plugin/pull/56 --> | ||
| <scm-api-plugin.version>2.2.6</scm-api-plugin.version> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Something in the transitive deps needs it. |
||
| <git-plugin.version>3.2.0</git-plugin.version> | ||
| <jenkins-test-harness.version>2.33</jenkins-test-harness.version> | ||
| </properties> | ||
|
|
@@ -104,7 +104,7 @@ | |
| <dependency> | ||
| <groupId>org.jenkins-ci.plugins</groupId> | ||
| <artifactId>structs</artifactId> | ||
| <version>1.7</version> | ||
| <version>1.10</version> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -469,4 +469,12 @@ private void assertCulprits(WorkflowRun b, String... expectedIds) throws IOExcep | |
| } | ||
| } | ||
|
|
||
| @Issue("JENKINS-31096") | ||
| @Test public void unicode() throws Exception { | ||
| WorkflowJob p = r.jenkins.createProject(WorkflowJob.class, "p"); | ||
| String message = "¡Čau → there!"; | ||
| p.setDefinition(new CpsFlowDefinition("echo '" + message + "'", true)); | ||
| r.assertLogContains(message, r.buildAndAssertSuccess(p)); | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. On Windows (ISO-8859-1), this fails with mojibake with the |
||
| } | ||
|
|
||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unrelated, but easier to remember LTS baselines.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's not bump the baseline unless there's a need to - this limits who can take advantage of new plugin releases.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bumped only to the nearest LTS line. There is no reason for anyone to still be using intermediate weeklies. If they are, they need to update.