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

Update dependency assemblyscript to v0.27.27 #335

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Mar 3, 2021

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
assemblyscript (source) 0.18.11 -> 0.27.27 age adoption passing confidence

Release Notes

AssemblyScript/assemblyscript (assemblyscript)

v0.27.27

Compare Source

Bug fixes
  • for statement increment will be processed in correct context (#​2839) (64cba2e)
Other

v0.27.26

Compare Source

Bug fixes
  • ignore this (#​2834) (b640ff2)
    This is a dummy commit to create a new release.
Other
  • Compile incrementors in for loops within the initializer's flow (#​2826) (9102c05)
    It turns out that incrementors were compiled with the body's flow, which
    meant that the incrementor had access to local variables declared in the
    body. Now, incrementors no longer have access to such variables.

    Fixes #​2825.

  • Binaryen on transform (#​2832) (9605c03)

    • Expose binaryen instance on transform

    • Fix invalid import in generated output

v0.27.25

Compare Source

Bug fixes

v0.27.24

Compare Source

Bug fixes

v0.27.23

Compare Source

Bug fixes
Other
  • Update Binaryen (#​2811) (dc547a8)
    This version of binaryen.js has the requisite 4 GiB max memory change.
    Fixes #​2810.

v0.27.22

Compare Source

New features

v0.27.21

Compare Source

Bug fixes

v0.27.20

Compare Source

Bug fixes
  • Improve date parsing (fractional seconds, UTC offsets) (#​2803) (d142ac8)

v0.27.19

Compare Source

Bug fixes

v0.27.18

Compare Source

Bug fixes
Other

v0.27.17

Compare Source

Bug fixes
  • placeholder commit for aspublish (#​2789) (f055bff)
    The commit that fixed the regression didn't start with "fix:" and such,
    so this commit accounts for that instead.
Other

v0.27.16

Compare Source

Bug fixes
Other

v0.27.15

Compare Source

Bug fixes
  • add diagnose for non-declarative statements in namespace (#​2765) (0b8abe4)

v0.27.14

Compare Source

Bug fixes
Other

v0.27.13

Compare Source

Bug fixes

v0.27.12

Compare Source

Bug fixes

v0.27.11

Compare Source

Bug fixes
Other

v0.27.10

Compare Source

Bug fixes

v0.27.9

Compare Source

Bug fixes

v0.27.8

Compare Source

Bug fixes

v0.27.7

Compare Source

Bug fixes
Other

v0.27.6

Compare Source

Bug fixes

v0.27.5

Compare Source

Bug fixes

v0.27.4

Compare Source

Bug fixes

v0.27.3

Compare Source

Bug fixes
Other

v0.27.2

Compare Source

New features
Bug fixes
  • Update Binaryen to 112.0.0-nightly.20230411 (#​2683) (f7571a4)
    Emscripten lowered the default stack size of emitted modules to 64kb recently, easily producing stack overflows in the optimizer. This version of Binaryen increases stack size to the previous 5mb again.
Other

v0.27.1

Compare Source

Bug fixes
  • Move compilation of instanceof helpers post override discovery (#​2661) (9497c3d)
Other

v0.27.0

Compare Source

Breaking changes
  • Check global uses more strictly (#​2632) (5cbbf84)
    Use of global variables (in the Wasm sense) is now checked more strictly to prevent undesirable execution order. If the compiler detects that it is possible that a variable might not have been initialized when accessed, a diagnostic is produced. It cannot be ruled out that some amount of existing code will be affected, since such checks are performed at runtime in JS but are proven at compile time in AS. If encountered, the fix is to move the variable's declaration up, say before the first invocation of a function (that might call another function) accessing the variable, so it is guaranteed that it is initialized before its first use.
Bug fixes
  • Update this and return type in generated child class constructor (#​2635) (941b0e1)
Other

v0.26.7

Compare Source

Bug fixes

v0.26.6

Compare Source

Bug fixes
Other
  • Add parse methods to portable. Also fix couple type definitions (#​2627) (4535263)

v0.26.5

Compare Source

Bug fixes
Other

v0.26.4

Compare Source

Bug fixes

v0.26.3

Compare Source

New features

v0.26.2

Compare Source

Bug fixes
Other

v0.26.1

Compare Source

Bug fixes
  • Mitigate endless loop in (invalid) override discovery (d46bfeb)
  • Check ASI upon unusual trailing expressions (#​2252) (282d924)
Other
  • [NFC] Simplify lookup tables with reinterprect casts (#​2609) (c9297db)

v0.26.0

Compare Source

Breaking changes
  • Add LUB computation for class types (#​2594) (4b3b390)
    Binary and ternary expressions now compute and evaluate to the least upper bound of two not identical class type inputs in the absence of a better fitting contextual type. Technically a breaking change, yet likely without noticeable effects on existing code.
Bug fixes
  • Defuse assert in lookupPropertyAccessExpression after prior error (82812de)
  • Support trailing comma in function type parameters (#​2608) (1ff71e5)
Other

v0.25.2

Compare Source

New features
  • Add --uncheckedBehavior to customize the use of unchecked() (#​2575) (7a35ff8)
Bug fixes
Other

v0.25.1

Compare Source

Bug fixes
Other

v0.25.0

Compare Source

Breaking changes
  • Fix variable initialization checks / revise flow logic (#​2578) (6717de0)
    Initialization of global variables sometimes wasn't guaranteed before, allowing unsafe behavior if initialization indeed wasn't performed before access. To mitigate, variables from now on require either an initializer, a primitive type with a trivial default value (typically 0), a nullable type (if a reference, defaulting to null) or otherwise annotation with definitive assignment (i.e. let someObject!: ..., then inserting a runtime check upon access).
Other

v0.24.1

Compare Source

Bug fixes

v0.24.0

Compare Source

Breaking changes
  • Implicitly inherit from Object (#​2559) (688dcd2)
    Constant class ids of String, ArrayBuffer etc. moved one value up, with Object now represented by ID=0.

v0.23.1

Compare Source

Bug fixes

v0.23.0

Compare Source

Breaking changes
  • Remove no longer used half of RTTI (#​2555) (a565d73)
    RTTI at __rtti_base no longer contains base class ids and now is just type flags.
  • Make class fields a special kind of property (#​2548) (0fd4db2)
    Element kinds FIELD and FIELD_PROTOTYPE and elements Field and FieldPrototype have been removed. Instead, Property inherit previous Field functionality, indicated by property.isField.
Other

v0.22.0

Compare Source

Breaking changes
  • Refactor enum identifiers to TitleCase and apply some changes in AST nodes (#​2501) (a7d10ba)
Other

v0.21.7

Compare Source

Bug fixes
Other

v0.21.6

Compare Source

Bug fixes
Other

v0.21.5

Compare Source

Bug fixes
Other

v0.21.4

Compare Source

Bug fixes
Other

v0.21.3

Compare Source

New features
  • Add warning about NaN invariant and -0.0 for direct comparisons (#​2475) (6c79e39)
Bug fixes
Other

v0.21.2

Compare Source

New features
  • Introduce new parse methods for builtin value types. Deprecate XX.parseInt/parseFloat (#​2465) (12b3f35)
Bug fixes
  • Element access operator should derive index type properly from overloaded signature (#​2468) (141e350)
  • Fix number of lines for f32x4.shuffle definition (#​2459) (61317b4)
Other

v0.21.1

Compare Source

Bug fixes
  • handle void to void during convertExpression (#​2412) (707fc7a)
  • Fix resolveNamedType cannot resolve type parameter in contextual element (#​2448) (b044b71)
Other

v0.21.0

Compare Source

Breaking changes
New features
Bug fixes
Other

v0.20.19

Compare Source

New features
  • Add simd shuffle / swizzle aliases for i16x8, i32x4, i64x2, f32x4 and f64x2 (#​2368) (e8ed2dd)
  • Make result of StaticArray#slice and StaticArray#concat as instance generics. Deprecate static methods (#​2404) (847dbde)
Bug fixes
  • assert throwing expected 2 arguments but got 1 (#​2435) (cf676d3)
  • Fix mixed up naming "upcast" <-> "downcast" for runtime checks (#​2423) (5faef3a)
Other

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 6264da4 to def5cc9 Compare March 8, 2021 02:53
@renovate renovate bot changed the title Update dependency assemblyscript to v0.18.12 Update dependency assemblyscript to v0.18.13 Mar 8, 2021
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from def5cc9 to 3dcbcf0 Compare March 9, 2021 02:26
@renovate renovate bot changed the title Update dependency assemblyscript to v0.18.13 Update dependency assemblyscript to v0.18.14 Mar 9, 2021
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 3dcbcf0 to 2b16cab Compare March 13, 2021 02:10
@renovate renovate bot changed the title Update dependency assemblyscript to v0.18.14 Update dependency assemblyscript to v0.18.15 Mar 13, 2021
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 2b16cab to 7a9ff64 Compare March 23, 2021 02:47
@renovate renovate bot changed the title Update dependency assemblyscript to v0.18.15 Update dependency assemblyscript to v0.18.16 Mar 23, 2021
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 7a9ff64 to c726302 Compare March 27, 2021 01:51
@renovate renovate bot changed the title Update dependency assemblyscript to v0.18.16 Update dependency assemblyscript to v0.18.17 Mar 27, 2021
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from c726302 to 29a814c Compare March 28, 2021 00:55
@renovate renovate bot changed the title Update dependency assemblyscript to v0.18.17 Update dependency assemblyscript to v0.18.18 Mar 28, 2021
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 29a814c to d7cc777 Compare March 30, 2021 03:47
@renovate renovate bot changed the title Update dependency assemblyscript to v0.18.18 Update dependency assemblyscript to v0.18.19 Mar 30, 2021
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from d7cc777 to 2c712cc Compare April 1, 2021 01:02
@renovate renovate bot changed the title Update dependency assemblyscript to v0.18.19 Update dependency assemblyscript to v0.18.20 Apr 1, 2021
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 2c712cc to 7991efd Compare April 2, 2021 02:00
@renovate renovate bot changed the title Update dependency assemblyscript to v0.18.20 Update dependency assemblyscript to v0.18.21 Apr 2, 2021
@renovate renovate bot changed the title Update dependency assemblyscript to v0.18.21 Update dependency assemblyscript to v0.18.22 Apr 7, 2021
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch 2 times, most recently from e8d8646 to a184ed3 Compare April 8, 2021 00:34
@renovate renovate bot changed the title Update dependency assemblyscript to v0.18.22 Update dependency assemblyscript to v0.18.23 Apr 8, 2021
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from a184ed3 to 3acacbc Compare April 11, 2021 01:32
@renovate renovate bot changed the title Update dependency assemblyscript to v0.18.23 Update dependency assemblyscript to v0.18.24 Apr 11, 2021
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 3acacbc to 731b5bb Compare April 15, 2021 01:07
@renovate renovate bot changed the title Update dependency assemblyscript to v0.18.24 Update dependency assemblyscript to v0.18.25 Apr 15, 2021
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 731b5bb to 07bce15 Compare April 16, 2021 02:31
@renovate renovate bot changed the title Update dependency assemblyscript to v0.18.25 Update dependency assemblyscript to v0.18.26 Apr 16, 2021
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 07bce15 to a12ebdf Compare April 20, 2021 02:10
@renovate renovate bot changed the title Update dependency assemblyscript to v0.18.26 Update dependency assemblyscript to v0.18.27 Apr 20, 2021
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.12 Update dependency assemblyscript to v0.27.13 Oct 11, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 4947335 to dfd9854 Compare October 18, 2023 03:48
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.13 Update dependency assemblyscript to v0.27.14 Oct 18, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from dfd9854 to 1c877f6 Compare November 3, 2023 04:15
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.14 Update dependency assemblyscript to v0.27.15 Nov 3, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 1c877f6 to 3167c18 Compare November 9, 2023 03:51
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.15 Update dependency assemblyscript to v0.27.16 Nov 9, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 3167c18 to cc0b8f6 Compare November 9, 2023 19:23
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.16 Update dependency assemblyscript to v0.27.17 Nov 9, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from cc0b8f6 to 39a6403 Compare November 15, 2023 04:48
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.17 Update dependency assemblyscript to v0.27.18 Nov 15, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 39a6403 to 114d829 Compare November 18, 2023 03:37
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.18 Update dependency assemblyscript to v0.27.19 Nov 18, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 114d829 to 7b0ae93 Compare November 21, 2023 03:31
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.19 Update dependency assemblyscript to v0.27.20 Nov 21, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 7b0ae93 to 8b31f05 Compare November 22, 2023 01:53
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.20 Update dependency assemblyscript to v0.27.21 Nov 22, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 8b31f05 to 1a92bd1 Compare November 24, 2023 04:12
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.21 Update dependency assemblyscript to v0.27.22 Nov 24, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 1a92bd1 to 7f206bd Compare January 16, 2024 01:47
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.22 Update dependency assemblyscript to v0.27.23 Jan 16, 2024
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 7f206bd to cc25050 Compare January 31, 2024 03:13
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.23 Update dependency assemblyscript to v0.27.24 Jan 31, 2024
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from cc25050 to 4dedf9e Compare March 9, 2024 04:07
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.24 Update dependency assemblyscript to v0.27.25 Mar 9, 2024
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 4dedf9e to a275e24 Compare April 3, 2024 06:49
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.25 Update dependency assemblyscript to v0.27.26 Apr 3, 2024
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from a275e24 to 6cb63a9 Compare April 11, 2024 02:14
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.26 Update dependency assemblyscript to v0.27.27 Apr 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants