-
Notifications
You must be signed in to change notification settings - Fork 2k
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
[Do Not Merge] Remove Cloud Tasks samples which have moved. #679
Conversation
Codecov Report
@@ Coverage Diff @@
## master #679 +/- ##
=======================================
Coverage 55.17% 55.17%
=======================================
Files 1 1
Lines 58 58
=======================================
Hits 32 32
Misses 26 26 Continue to review full report at Codecov.
|
/assign @jmdobry |
Has a conflict |
So there's good news and bad news. 👍 The good news is that everyone that needs to sign a CLA (the pull request submitter and all commit authors) have done so. Everything is all good there. 😕 The bad news is that it appears that one or more commits were authored or co-authored by someone other than the pull request submitter. We need to confirm that all authors are ok with their commits being contributed to this project. Please have them confirm that here in the pull request. Note to project maintainer: This is a terminal state, meaning the |
CLAs look good, thanks! |
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [mathjs](https://mathjs.org) ([source](https://github.com/josdejong/mathjs)) | [`^10.0.0` -> `^11.0.0`](https://renovatebot.com/diffs/npm/mathjs/10.6.4/11.0.1) | [![age](https://badges.renovateapi.com/packages/npm/mathjs/11.0.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/mathjs/11.0.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/mathjs/11.0.1/compatibility-slim/10.6.4)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/mathjs/11.0.1/confidence-slim/10.6.4)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>josdejong/mathjs</summary> ### [`v11.0.1`](https://github.com/josdejong/mathjs/blob/HEAD/HISTORY.md#​2022-07-25-version-1101) [Compare Source](https://github.com/josdejong/mathjs/compare/v11.0.0...v11.0.1) - Fix [#​2632](https://github.com/josdejong/mathjs/issues/2632): TypeScript issue of `simplifyConstant` and `simplifyCore` not having a return type defined. ### [`v11.0.0`](https://github.com/josdejong/mathjs/blob/HEAD/HISTORY.md#​2022-07-23-version-1100) [Compare Source](https://github.com/josdejong/mathjs/compare/v10.6.4...v11.0.0) !!! BE CAREFUL: BREAKING CHANGES !!! Breaking changes: - Dropped official support for IE11. - Upgraded to `typed-function@3`, see [josdejong/typed-function/HISTORY.md](https://github.com/josdejong/typed-function/blob/develop/HISTORY.md#​2022-05-12-version-300). Thanks [@​gwhitney](https://github.com/gwhitney). Most importantly: - Conversions now have preference over `any`. - The `this` variable is no longer bound to the typed function itself. - The properties `typed.types`, `typed.conversions`, and `typed.ignore` have been removed. - There are new static functions available like `typed.referTo`, `typed.referToSelf`, `typed.addTypes`, `typed.addConversions`. - Implement amended "Rule 2" for implicit multiplication ([#​2370](https://github.com/josdejong/mathjs/issues/2370), [#​2460](https://github.com/josdejong/mathjs/issues/2460)): when having a division followed by an implicit multiplication, the division gets higher precedence over the implicit multiplication when (a) the numerator is a constant with optionally a prefix operator (`-`, `+`, `~`), and (b) the denominator is a constant. For example: formerly `-1 / 2 x` was interpreted as `-1 / (2 * x)` and now it is interpreted as `(-1 / 2) * x`. Thanks [@​gwhitney](https://github.com/gwhitney). - Drop elementwise matrix support for trigonometric functions, exp, log, gamma, square, sqrt, cube, and cbrt to prevent confusion with standard matrix functions ([#​2440](https://github.com/josdejong/mathjs/issues/2440), [#​2465](https://github.com/josdejong/mathjs/issues/2465)). Instead, use `math.map(matrix, fn)`. Thanks [@​gwhitney](https://github.com/gwhitney). - Simplify: convert equivalent function calls into operators, for example, `add(2, x)` will now be simplified into `2 + x` ([#​2415](https://github.com/josdejong/mathjs/issues/2415), [#​2466](https://github.com/josdejong/mathjs/issues/2466)). Thanks [@​gwhitney](https://github.com/gwhitney). - Removed the automatic conversion from `number` to `string` ([#​2482](https://github.com/josdejong/mathjs/issues/2482)). Thanks [@​gwhitney](https://github.com/gwhitney). - Fix [#​2412](https://github.com/josdejong/mathjs/issues/2412): let function `diff` return an empty matrix when the input contains only one element ([#​2422](https://github.com/josdejong/mathjs/issues/2422)). - Internal refactoring in the `simplifyCore` logic ([#​2490](https://github.com/josdejong/mathjs/issues/2490), [#​2484](https://github.com/josdejong/mathjs/issues/2484), [#​2459](https://github.com/josdejong/mathjs/issues/2459)). The function `simplifyCore` will no longer (partially) merge constants, that behavior has been moved to `simplifyConstant`. The combination of `simplifyConstant` and `simplifyCore` is still close to the old behavior of `simplifyCore`, but there are some differences. To reproduce the same behavior as the old `simplifyCore`, you can use `math.simplify(expr, [math.simplifyCore, math.simplifyConstant])`. Thanks to the refactoring, `simplify` is more thorough in reducing constants. Thanks [@​gwhitney](https://github.com/gwhitney). - Disable support for splitting rest parameters in chained calculations ([#​2485](https://github.com/josdejong/mathjs/issues/2485), [#​2474](https://github.com/josdejong/mathjs/issues/2474)). For example: `math.chain(3).max(4, 2).done()` will now throw an error rather than return `4`, because the rest parameter of `math.max(...number)` has been split between the contents of the chain and the arguments to the max call. Thanks [@​gwhitney](https://github.com/gwhitney). - Function `typeOf` now returns `function` (lowercase) for a function instead of `Function` ([#​2560](https://github.com/josdejong/mathjs/issues/2560)). Thanks [@​gwhitney](https://github.com/gwhitney). Non-breaking changes: - Fix [#​2600](https://github.com/josdejong/mathjs/issues/2600): improve the TypeScript definitions of `simplify`. Thanks [@​laureen-m](https://github.com/laureen-m) and [@​mattvague](https://github.com/mattvague). - Fix [#​2607](https://github.com/josdejong/mathjs/issues/2607): improve type definition of `createUnit`. Thanks [@​egziko](https://github.com/egziko). - Fix [#​2608](https://github.com/josdejong/mathjs/issues/2608): clarify the docs on the need to configure a smaller `epsilon` when using BigNumbers. - Fix [#​2613](https://github.com/josdejong/mathjs/issues/2613): describe matrix methods `get` and `set` in the docs. - Fix link to `math.rationalize` in the docs ([#​2616](https://github.com/josdejong/mathjs/issues/2616)). Thanks [@​nukisman](https://github.com/nukisman). - Fix [#​2621](https://github.com/josdejong/mathjs/issues/2621): add TypeScript definitions for `count` ([#​2622](https://github.com/josdejong/mathjs/issues/2622)). Thanks [@​Hansuku](https://github.com/Hansuku). - Improved TypeScript definitions of `multiply` ([#​2623](https://github.com/josdejong/mathjs/issues/2623)). Thanks [@​Windrill](https://github.com/Windrill). </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 9am and before 3pm" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/nodejs-language). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMjIuMSIsInVwZGF0ZWRJblZlciI6IjMyLjEyNy4wIn0=-->
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [mathjs](https://mathjs.org) ([source](https://github.com/josdejong/mathjs)) | [`^10.0.0` -> `^11.0.0`](https://renovatebot.com/diffs/npm/mathjs/10.6.4/11.0.1) | [![age](https://badges.renovateapi.com/packages/npm/mathjs/11.0.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/mathjs/11.0.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/mathjs/11.0.1/compatibility-slim/10.6.4)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/mathjs/11.0.1/confidence-slim/10.6.4)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>josdejong/mathjs</summary> ### [`v11.0.1`](https://github.com/josdejong/mathjs/blob/HEAD/HISTORY.md#​2022-07-25-version-1101) [Compare Source](https://github.com/josdejong/mathjs/compare/v11.0.0...v11.0.1) - Fix [#​2632](https://github.com/josdejong/mathjs/issues/2632): TypeScript issue of `simplifyConstant` and `simplifyCore` not having a return type defined. ### [`v11.0.0`](https://github.com/josdejong/mathjs/blob/HEAD/HISTORY.md#​2022-07-23-version-1100) [Compare Source](https://github.com/josdejong/mathjs/compare/v10.6.4...v11.0.0) !!! BE CAREFUL: BREAKING CHANGES !!! Breaking changes: - Dropped official support for IE11. - Upgraded to `typed-function@3`, see [josdejong/typed-function/HISTORY.md](https://github.com/josdejong/typed-function/blob/develop/HISTORY.md#​2022-05-12-version-300). Thanks [@​gwhitney](https://github.com/gwhitney). Most importantly: - Conversions now have preference over `any`. - The `this` variable is no longer bound to the typed function itself. - The properties `typed.types`, `typed.conversions`, and `typed.ignore` have been removed. - There are new static functions available like `typed.referTo`, `typed.referToSelf`, `typed.addTypes`, `typed.addConversions`. - Implement amended "Rule 2" for implicit multiplication ([#​2370](https://github.com/josdejong/mathjs/issues/2370), [#​2460](https://github.com/josdejong/mathjs/issues/2460)): when having a division followed by an implicit multiplication, the division gets higher precedence over the implicit multiplication when (a) the numerator is a constant with optionally a prefix operator (`-`, `+`, `~`), and (b) the denominator is a constant. For example: formerly `-1 / 2 x` was interpreted as `-1 / (2 * x)` and now it is interpreted as `(-1 / 2) * x`. Thanks [@​gwhitney](https://github.com/gwhitney). - Drop elementwise matrix support for trigonometric functions, exp, log, gamma, square, sqrt, cube, and cbrt to prevent confusion with standard matrix functions ([#​2440](https://github.com/josdejong/mathjs/issues/2440), [#​2465](https://github.com/josdejong/mathjs/issues/2465)). Instead, use `math.map(matrix, fn)`. Thanks [@​gwhitney](https://github.com/gwhitney). - Simplify: convert equivalent function calls into operators, for example, `add(2, x)` will now be simplified into `2 + x` ([#​2415](https://github.com/josdejong/mathjs/issues/2415), [#​2466](https://github.com/josdejong/mathjs/issues/2466)). Thanks [@​gwhitney](https://github.com/gwhitney). - Removed the automatic conversion from `number` to `string` ([#​2482](https://github.com/josdejong/mathjs/issues/2482)). Thanks [@​gwhitney](https://github.com/gwhitney). - Fix [#​2412](https://github.com/josdejong/mathjs/issues/2412): let function `diff` return an empty matrix when the input contains only one element ([#​2422](https://github.com/josdejong/mathjs/issues/2422)). - Internal refactoring in the `simplifyCore` logic ([#​2490](https://github.com/josdejong/mathjs/issues/2490), [#​2484](https://github.com/josdejong/mathjs/issues/2484), [#​2459](https://github.com/josdejong/mathjs/issues/2459)). The function `simplifyCore` will no longer (partially) merge constants, that behavior has been moved to `simplifyConstant`. The combination of `simplifyConstant` and `simplifyCore` is still close to the old behavior of `simplifyCore`, but there are some differences. To reproduce the same behavior as the old `simplifyCore`, you can use `math.simplify(expr, [math.simplifyCore, math.simplifyConstant])`. Thanks to the refactoring, `simplify` is more thorough in reducing constants. Thanks [@​gwhitney](https://github.com/gwhitney). - Disable support for splitting rest parameters in chained calculations ([#​2485](https://github.com/josdejong/mathjs/issues/2485), [#​2474](https://github.com/josdejong/mathjs/issues/2474)). For example: `math.chain(3).max(4, 2).done()` will now throw an error rather than return `4`, because the rest parameter of `math.max(...number)` has been split between the contents of the chain and the arguments to the max call. Thanks [@​gwhitney](https://github.com/gwhitney). - Function `typeOf` now returns `function` (lowercase) for a function instead of `Function` ([#​2560](https://github.com/josdejong/mathjs/issues/2560)). Thanks [@​gwhitney](https://github.com/gwhitney). Non-breaking changes: - Fix [#​2600](https://github.com/josdejong/mathjs/issues/2600): improve the TypeScript definitions of `simplify`. Thanks [@​laureen-m](https://github.com/laureen-m) and [@​mattvague](https://github.com/mattvague). - Fix [#​2607](https://github.com/josdejong/mathjs/issues/2607): improve type definition of `createUnit`. Thanks [@​egziko](https://github.com/egziko). - Fix [#​2608](https://github.com/josdejong/mathjs/issues/2608): clarify the docs on the need to configure a smaller `epsilon` when using BigNumbers. - Fix [#​2613](https://github.com/josdejong/mathjs/issues/2613): describe matrix methods `get` and `set` in the docs. - Fix link to `math.rationalize` in the docs ([#​2616](https://github.com/josdejong/mathjs/issues/2616)). Thanks [@​nukisman](https://github.com/nukisman). - Fix [#​2621](https://github.com/josdejong/mathjs/issues/2621): add TypeScript definitions for `count` ([#​2622](https://github.com/josdejong/mathjs/issues/2622)). Thanks [@​Hansuku](https://github.com/Hansuku). - Improved TypeScript definitions of `multiply` ([#​2623](https://github.com/josdejong/mathjs/issues/2623)). Thanks [@​Windrill](https://github.com/Windrill). </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 9am and before 3pm" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/nodejs-language). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMjIuMSIsInVwZGF0ZWRJblZlciI6IjMyLjEyNy4wIn0=-->
No description provided.