Skip to content
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

Bump scala.version from 2.11.8 to 2.13.2 in /scala-package #15

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jun 4, 2020

Bumps scala.version from 2.11.8 to 2.13.2.
Updates scala-library from 2.11.8 to 2.13.2

Release notes

Sourced from scala-library's releases.

Scala 2.13.2 has:

  • a brand-new Vector implementation
  • configurable warnings
  • an improved REPL (now JLine 3 based)
  • bugfixes and more

Vector

  • Rewrite Vector (using "radix-balanced finger tree vectors"), for performance (#8534)

Small vectors are now more compactly represented. Some operations are now drastically faster on large vectors. A few operations may be a little slower.

Kudos to @szeiger for this work.

Configurable warnings

  • Add -Wconf flag for configurable warnings, @nowarn annotation for local suppression (#8373)

Note that scala-collection-compat 2.1.6 (or newer) provides @nowarn for cross-built projects (as a no-op on 2.11 and 2.12).

Special thanks to Roman Janusz (@ghik), whose silencer plugin was the basis for this work.

REPL improvements

  • REPL: upgrade to JLine 3 (benefits include multi-line editing) (#8036)
  • Default true -Yrepl-class-based and -Yuse-magic-imports (#8748)
    • -Yrepl-class-based avoids deadlocks
    • -Yuse-magic-imports improves performance for long sessions
  • Improve REPL display of method types (#8319)

Special thanks to @som-snytt for spearheading the JLine 3 upgrade.

We are tracking JLine-related improvements and regressions here. There some known regressions in some less-vital features and behaviors; we plan to address these in future 2.13.x releases.

Language changes

  • Unicode escapes are now ordinary escape sequences (not processed early) (#8282)

Compiler fixes

  • Plug many variance holes (in higher-kinded types, refined types, and private inner classes) (#8545)
  • Fix variance handling for parameterized type aliases (#8651)
  • Exclude universal members (getClass, toString, etc) from root module import (#8541)
  • Matching strings makes switches in bytecode (#8451)

Deprecations

  • Deprecate eta-expansion, via trailing underscore, of methods with no argument lists (#8836)
  • Deprecate nested class shadowing in "override" position (#8705)
... (truncated)
Commits
  • 706ef1b add mailmap entry
  • 7d29ccc Merge pull request #8905 from SethTisue/jline3-improved-completion
  • ee2b5ae REPL: JLine 3: tab completion: indicate deprecated?, universal?, arity
  • 19fd1a1 bump JLine version to 3.14.1 (was 3.14.0)
  • 8de6e34 Merge pull request #8906 from SethTisue/the-return-of-xnojline
  • 1989e0d REPL: JLine 3: bring back -Xnojline, but deprecate it
  • d69a1ef Merge pull request #8904 from SethTisue/scaladoc-regression
  • 8983b69 fix buggy Java version check in Scaladoc tool
  • 51233da Merge pull request #8900 from som-snytt/review/8558
  • 2c61430 Don't rewrite assignment of untyped qual
  • Additional commits viewable in compare view

Updates scala-reflect from 2.11.8 to 2.13.2

Release notes

Sourced from scala-reflect's releases.

Scala 2.13.2 has:

  • a brand-new Vector implementation
  • configurable warnings
  • an improved REPL (now JLine 3 based)
  • bugfixes and more

Vector

  • Rewrite Vector (using "radix-balanced finger tree vectors"), for performance (#8534)

Small vectors are now more compactly represented. Some operations are now drastically faster on large vectors. A few operations may be a little slower.

Kudos to @szeiger for this work.

Configurable warnings

  • Add -Wconf flag for configurable warnings, @nowarn annotation for local suppression (#8373)

Note that scala-collection-compat 2.1.6 (or newer) provides @nowarn for cross-built projects (as a no-op on 2.11 and 2.12).

Special thanks to Roman Janusz (@ghik), whose silencer plugin was the basis for this work.

REPL improvements

  • REPL: upgrade to JLine 3 (benefits include multi-line editing) (#8036)
  • Default true -Yrepl-class-based and -Yuse-magic-imports (#8748)
    • -Yrepl-class-based avoids deadlocks
    • -Yuse-magic-imports improves performance for long sessions
  • Improve REPL display of method types (#8319)

Special thanks to @som-snytt for spearheading the JLine 3 upgrade.

We are tracking JLine-related improvements and regressions here. There some known regressions in some less-vital features and behaviors; we plan to address these in future 2.13.x releases.

Language changes

  • Unicode escapes are now ordinary escape sequences (not processed early) (#8282)

Compiler fixes

  • Plug many variance holes (in higher-kinded types, refined types, and private inner classes) (#8545)
  • Fix variance handling for parameterized type aliases (#8651)
  • Exclude universal members (getClass, toString, etc) from root module import (#8541)
  • Matching strings makes switches in bytecode (#8451)

Deprecations

  • Deprecate eta-expansion, via trailing underscore, of methods with no argument lists (#8836)
  • Deprecate nested class shadowing in "override" position (#8705)
... (truncated)
Commits
  • 706ef1b add mailmap entry
  • 7d29ccc Merge pull request #8905 from SethTisue/jline3-improved-completion
  • ee2b5ae REPL: JLine 3: tab completion: indicate deprecated?, universal?, arity
  • 19fd1a1 bump JLine version to 3.14.1 (was 3.14.0)
  • 8de6e34 Merge pull request #8906 from SethTisue/the-return-of-xnojline
  • 1989e0d REPL: JLine 3: bring back -Xnojline, but deprecate it
  • d69a1ef Merge pull request #8904 from SethTisue/scaladoc-regression
  • 8983b69 fix buggy Java version check in Scaladoc tool
  • 51233da Merge pull request #8900 from som-snytt/review/8558
  • 2c61430 Don't rewrite assignment of untyped qual
  • Additional commits viewable in compare view

Updates scala-compiler from 2.11.8 to 2.13.2

Release notes

Sourced from scala-compiler's releases.

Scala 2.13.2 has:

  • a brand-new Vector implementation
  • configurable warnings
  • an improved REPL (now JLine 3 based)
  • bugfixes and more

Vector

  • Rewrite Vector (using "radix-balanced finger tree vectors"), for performance (#8534)

Small vectors are now more compactly represented. Some operations are now drastically faster on large vectors. A few operations may be a little slower.

Kudos to @szeiger for this work.

Configurable warnings

  • Add -Wconf flag for configurable warnings, @nowarn annotation for local suppression (#8373)

Note that scala-collection-compat 2.1.6 (or newer) provides @nowarn for cross-built projects (as a no-op on 2.11 and 2.12).

Special thanks to Roman Janusz (@ghik), whose silencer plugin was the basis for this work.

REPL improvements

  • REPL: upgrade to JLine 3 (benefits include multi-line editing) (#8036)
  • Default true -Yrepl-class-based and -Yuse-magic-imports (#8748)
    • -Yrepl-class-based avoids deadlocks
    • -Yuse-magic-imports improves performance for long sessions
  • Improve REPL display of method types (#8319)

Special thanks to @som-snytt for spearheading the JLine 3 upgrade.

We are tracking JLine-related improvements and regressions here. There some known regressions in some less-vital features and behaviors; we plan to address these in future 2.13.x releases.

Language changes

  • Unicode escapes are now ordinary escape sequences (not processed early) (#8282)

Compiler fixes

  • Plug many variance holes (in higher-kinded types, refined types, and private inner classes) (#8545)
  • Fix variance handling for parameterized type aliases (#8651)
  • Exclude universal members (getClass, toString, etc) from root module import (#8541)
  • Matching strings makes switches in bytecode (#8451)

Deprecations

  • Deprecate eta-expansion, via trailing underscore, of methods with no argument lists (#8836)
  • Deprecate nested class shadowing in "override" position (#8705)
... (truncated)
Commits
  • 706ef1b add mailmap entry
  • 7d29ccc Merge pull request #8905 from SethTisue/jline3-improved-completion
  • ee2b5ae REPL: JLine 3: tab completion: indicate deprecated?, universal?, arity
  • 19fd1a1 bump JLine version to 3.14.1 (was 3.14.0)
  • 8de6e34 Merge pull request #8906 from SethTisue/the-return-of-xnojline
  • 1989e0d REPL: JLine 3: bring back -Xnojline, but deprecate it
  • d69a1ef Merge pull request #8904 from SethTisue/scaladoc-regression
  • 8983b69 fix buggy Java version check in Scaladoc tool
  • 51233da Merge pull request #8900 from som-snytt/review/8558
  • 2c61430 Don't rewrite assignment of untyped qual
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

You can disable automated security fix PRs for this repo from the Security Alerts page.

@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Jun 4, 2020
@dependabot dependabot bot changed the base branch from master to master_1.5.0 June 8, 2020 16:09
Bumps `scala.version` from 2.11.8 to 2.13.2.

Updates `scala-library` from 2.11.8 to 2.13.2
- [Release notes](https://github.com/scala/scala/releases)
- [Commits](scala/scala@v2.11.8...v2.13.2)

Updates `scala-reflect` from 2.11.8 to 2.13.2
- [Release notes](https://github.com/scala/scala/releases)
- [Commits](scala/scala@v2.11.8...v2.13.2)

Updates `scala-compiler` from 2.11.8 to 2.13.2
- [Release notes](https://github.com/scala/scala/releases)
- [Commits](scala/scala@v2.11.8...v2.13.2)

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot changed the base branch from master_1.5.0 to master_1.5.x June 9, 2020 17:46
@dependabot dependabot bot force-pushed the dependabot/maven/scala-package/scala.version-2.13.2 branch from efdc906 to 2715863 Compare June 9, 2020 17:46
@dependabot dependabot bot changed the base branch from master_1.5.x to master June 9, 2020 18:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants