Skip to content

Bump http, angular_test, angular, stream_transform, build_test, angular_forms, angular_router, build_web_compilers and build_runner in /dart/angular_tour_of_heroes#7

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/pub/dart/angular_tour_of_heroes/http-and-angular_test-and-angular-and-stream_transform-and-build_test-and-angular_forms-and-angular_router-and-build_web_compilers-and-build_runner-0.13.5
Open

Bump http, angular_test, angular, stream_transform, build_test, angular_forms, angular_router, build_web_compilers and build_runner in /dart/angular_tour_of_heroes#7
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/pub/dart/angular_tour_of_heroes/http-and-angular_test-and-angular-and-stream_transform-and-build_test-and-angular_forms-and-angular_router-and-build_web_compilers-and-build_runner-0.13.5

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Dec 10, 2022

Bumps http, angular_test, angular, stream_transform, build_test, angular_forms, angular_router, build_web_compilers and build_runner. These dependencies needed to be updated together.
Updates http from 0.12.2 to 0.13.5

Commits

Updates angular_test from 2.4.0 to 4.0.1

Release notes

Sourced from angular_test's releases.

4.0.0

We are now named package:angular instead of package:angular2. As such you cannot pub upgrade from angular2 3.x -> angular2 4.x, and you need to manually update your dependencies instead:

dependencies:
  angular: ^4.0.0

AngularDart will start tracking the upcoming Dart 2.0 alpha SDK, and as such, 4.0.0 will be the last stable release that fully supports Dart 1.24.0. We may release small patches if needed, but otherwise the plan is to release 4.0.0 and then immediately start working on 5.0.0-alpha, which uses the new Dart SDK.

Breaking changes

  • @Pipe-annotated classes are no longer considered @Injectable, in that they aren't usable within a ReflectiveInjector. You can get this behavior back by adding the @Injectable() annotation to the @Pipe-annotated class. Similar changes are in progress for @Component and @Directive.

  • PLATFORM_{PIPES|DIRECTIVES|PROVIDERS}, which was only supported in an older version of the compiler, was removed. All of these must be manually included in lists in an @Directive or @Component annotation.

  • Removed formDirectives from COMMON_DIRECTIVES list; replace COMMON_DIRECTIVES with [CORE_DIRECTIVES, formDirectives] for components that use forms directives.

  • Forms API has been moved to a new package, angular_forms, which is going to be versioned and maintained alongside the core framework. This should allow better segmentation of code and easier contributions.

  • The router package is now being published separate as package:angular_router (not through package:angular/router.dart). In the near future it will be updated to a more Dart idiomatic "2.0" router, but for now it is an exact replica of the previous router.

  • Removed @{Component|Directive}#queries. This is replable using the same member-level annotation (i.e. @{Content|View}Child{ren}).

  • DynamicComponentLoader was renamed SlowComponentLoader to encourage users to prefer ComponentLoader. Additionally, arguments projectableNodes: and onDestroy: callbacks were removed - they were mostly unused, and confusing since they were undocumented.

  • Removed angular/platform/browser_static.dart; replace imports with angular/angular.dart.

... (truncated)

Commits

Updates angular from 6.0.1 to 7.0.2

Commits
  • e943f6f Bump pkg:angular deps
  • ec1e4b0 Big changelog update (#1981)
  • e169b76 Update readmes
  • 95b8795 Update all gitter.im links and badges
  • 71b638c Drop Travis-CI badge (#1979)
  • 1a3ba03 Add back readme to pkg:angular, prepare for release
  • a0e72d1 tiny version bump to pkg:angular
  • 4eb56ad tiny bump to angular_compiler
  • 8e80c8c Prepare to release angular_forms and angular_router
  • bf8c047 Prepare to release angular_test v4.0.0
  • Additional commits viewable in compare view

Updates stream_transform from 0.0.20 to 2.1.0

Changelog

Sourced from stream_transform's changelog.

2.1.0

  • Add whereNotNull.

2.0.1

  • Require Dart 2.14 or greater.
  • Wait for the future returned from StreamSubscription.cancel() before listening to the subsequent stream in switchLatest and switchMap.

2.0.0

  • Migrate to null safety.
  • Improve tests of switchMap and improve documentation with links and clarification.
  • Add trailing argument to throttle.

1.2.0

  • Add support for emitting the "leading" event in debounce.

1.1.1

  • Fix a bug in asyncMapSample, buffer, combineLatest, combineLatestAll, merge, and mergeAll which would cause an exception when cancelling a subscription after using the transformer if the original stream(s) returned null from cancelling their subscriptions.

1.1.0

  • Add concurrentAsyncExpand to interleave events emitted by multiple sub streams created by a callback.

1.0.0

  • Remove the top level methods and retain the extensions only.
Commits

Updates build_test from 0.10.12+1 to 2.1.5

Commits
  • a9607c9 update to the latest analyzer across all packages (#3222)
  • bcab7b2 Describe build schema setup for common tools (#3220)
  • c34945b Replace implicit-casts with strict-casts (#3218)
  • a4b73fe Implement UriResolver.pathToUri() (#3216)
  • 84c7f30 Use raw string literals in more places when generating the build script (#3214)
  • 5c9bf02 Update config, modules, runner_core to latest json_serializable (#3211)
  • 599e688 Use specialized API to create AnalysisSession. (#3208)
  • 1703088 Allow resource value reuse when disposed (#3207)
  • 8e680c1 Mark mono_repo outputs as generated (#3194)
  • 23bd4d9 build_runner_core: use Object.hash, delete unneeded hash utilities (#3206)
  • Additional commits viewable in compare view

Updates angular_forms from 2.1.4 to 4.0.1

Release notes

Sourced from angular_forms's releases.

4.0.0

We are now named package:angular instead of package:angular2. As such you cannot pub upgrade from angular2 3.x -> angular2 4.x, and you need to manually update your dependencies instead:

dependencies:
  angular: ^4.0.0

AngularDart will start tracking the upcoming Dart 2.0 alpha SDK, and as such, 4.0.0 will be the last stable release that fully supports Dart 1.24.0. We may release small patches if needed, but otherwise the plan is to release 4.0.0 and then immediately start working on 5.0.0-alpha, which uses the new Dart SDK.

Breaking changes

  • @Pipe-annotated classes are no longer considered @Injectable, in that they aren't usable within a ReflectiveInjector. You can get this behavior back by adding the @Injectable() annotation to the @Pipe-annotated class. Similar changes are in progress for @Component and @Directive.

  • PLATFORM_{PIPES|DIRECTIVES|PROVIDERS}, which was only supported in an older version of the compiler, was removed. All of these must be manually included in lists in an @Directive or @Component annotation.

  • Removed formDirectives from COMMON_DIRECTIVES list; replace COMMON_DIRECTIVES with [CORE_DIRECTIVES, formDirectives] for components that use forms directives.

  • Forms API has been moved to a new package, angular_forms, which is going to be versioned and maintained alongside the core framework. This should allow better segmentation of code and easier contributions.

  • The router package is now being published separate as package:angular_router (not through package:angular/router.dart). In the near future it will be updated to a more Dart idiomatic "2.0" router, but for now it is an exact replica of the previous router.

  • Removed @{Component|Directive}#queries. This is replable using the same member-level annotation (i.e. @{Content|View}Child{ren}).

  • DynamicComponentLoader was renamed SlowComponentLoader to encourage users to prefer ComponentLoader. Additionally, arguments projectableNodes: and onDestroy: callbacks were removed - they were mostly unused, and confusing since they were undocumented.

  • Removed angular/platform/browser_static.dart; replace imports with angular/angular.dart.

... (truncated)

Commits

Updates angular_router from 2.0.0 to 3.0.1

Commits
  • e943f6f Bump pkg:angular deps
  • ec1e4b0 Big changelog update (#1981)
  • e169b76 Update readmes
  • 95b8795 Update all gitter.im links and badges
  • 71b638c Drop Travis-CI badge (#1979)
  • 1a3ba03 Add back readme to pkg:angular, prepare for release
  • a0e72d1 tiny version bump to pkg:angular
  • 4eb56ad tiny bump to angular_compiler
  • 8e80c8c Prepare to release angular_forms and angular_router
  • bf8c047 Prepare to release angular_test v4.0.0
  • Additional commits viewable in compare view

Updates build_web_compilers from 2.16.3 to 3.2.5

Commits

Updates build_runner from 1.11.1+1 to 2.2.0

Commits

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.

…ar_forms, angular_router, build_web_compilers and build_runner

Bumps [http](https://github.com/dart-lang/http/tree/master/pkgs), [angular_test](https://github.com/angulardart/angular), [angular](https://github.com/angulardart/angular), [stream_transform](https://github.com/dart-lang/stream_transform), [build_test](https://github.com/dart-lang/build), [angular_forms](https://github.com/angulardart/angular), [angular_router](https://github.com/angulardart/angular), [build_web_compilers](https://github.com/dart-lang/build) and [build_runner](https://github.com/dart-lang/build). These dependencies needed to be updated together.

Updates `http` from 0.12.2 to 0.13.5
- [Release notes](https://github.com/dart-lang/http/releases)
- [Commits](https://github.com/dart-lang/http/commits/HEAD/pkgs)

Updates `angular_test` from 2.4.0 to 4.0.1
- [Release notes](https://github.com/angulardart/angular/releases)
- [Commits](https://github.com/angulardart/angular/commits/angular_test-v4.0.1)

Updates `angular` from 6.0.1 to 7.0.2
- [Release notes](https://github.com/angulardart/angular/releases)
- [Commits](angulardart/angular@angular-v6.0.1...angular-v7.0.2)

Updates `stream_transform` from 0.0.20 to 2.1.0
- [Release notes](https://github.com/dart-lang/stream_transform/releases)
- [Changelog](https://github.com/dart-lang/stream_transform/blob/master/CHANGELOG.md)
- [Commits](dart-archive/stream_transform@v0.0.20...v2.1.0)

Updates `build_test` from 0.10.12+1 to 2.1.5
- [Release notes](https://github.com/dart-lang/build/releases)
- [Commits](dart-lang/build@build_test-v0.10.12...build_test-v2.1.5)

Updates `angular_forms` from 2.1.4 to 4.0.1
- [Release notes](https://github.com/angulardart/angular/releases)
- [Commits](https://github.com/angulardart/angular/commits/angular_forms-v4.0.1)

Updates `angular_router` from 2.0.0 to 3.0.1
- [Release notes](https://github.com/angulardart/angular/releases)
- [Commits](angulardart/angular@angular_router-v2.0.0...angular_router-v3.0.1)

Updates `build_web_compilers` from 2.16.3 to 3.2.5
- [Release notes](https://github.com/dart-lang/build/releases)
- [Commits](dart-lang/build@build_web_compilers-v2.16.3...build_web_compilers-v3.2.5)

Updates `build_runner` from 1.11.1+1 to 2.2.0
- [Release notes](https://github.com/dart-lang/build/releases)
- [Commits](dart-lang/build@build_runner-v1.11.1...build_runner-v2.2.0)

---
updated-dependencies:
- dependency-name: http
  dependency-type: direct:production
- dependency-name: angular_test
  dependency-type: direct:production
- dependency-name: angular
  dependency-type: direct:production
- dependency-name: stream_transform
  dependency-type: direct:production
- dependency-name: build_test
  dependency-type: direct:production
- dependency-name: angular_forms
  dependency-type: direct:production
- dependency-name: angular_router
  dependency-type: direct:production
- dependency-name: build_web_compilers
  dependency-type: direct:production
- dependency-name: build_runner
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dart Pull requests that update Dart code dependencies Pull requests that update a dependency file labels Dec 10, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dart Pull requests that update Dart code dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants