Skip to content

chore(deps): update all non-major dependencies - #26

Merged
leomp12 merged 1 commit into
mainfrom
renovate/all-minor-patch
Jul 4, 2022
Merged

chore(deps): update all non-major dependencies#26
leomp12 merged 1 commit into
mainfrom
renovate/all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented Jul 4, 2022

Copy link
Copy Markdown
Contributor

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@typescript-eslint/eslint-plugin ^5.30.0 -> ^5.30.4 age adoption passing confidence
@typescript-eslint/parser ^5.30.0 -> ^5.30.4 age adoption passing confidence
astro (source) 1.0.0-beta.46 -> 1.0.0-beta.63 age adoption passing confidence
esbuild ^0.14.47 -> ^0.14.48 age adoption passing confidence
eslint (source) ^8.18.0 -> ^8.19.0 age adoption passing confidence
firebase-functions ^3.21.2 -> ^3.22.0 age adoption passing confidence
vitest ^0.16.0 -> ^0.17.0 age adoption passing confidence
zx ^7.0.3 -> ^7.0.7 age adoption passing confidence

Release Notes

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v5.30.4

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

v5.30.3

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

v5.30.2

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

v5.30.1

Compare Source

Bug Fixes
  • eslint-plugin: [no-base-to-string] add missing apostrophe to message (#​5270) (d320174)
typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v5.30.4

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

v5.30.3

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

v5.30.2

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

v5.30.1

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

withastro/astro

v1.0.0-beta.63

Compare Source

Patch Changes

v1.0.0-beta.62

Patch Changes

v1.0.0-beta.61

Patch Changes

v1.0.0-beta.60

Compare Source

Patch Changes

v1.0.0-beta.59

Compare Source

Patch Changes

v1.0.0-beta.58

Compare Source

Patch Changes

v1.0.0-beta.57

Compare Source

Patch Changes

v1.0.0-beta.56

Compare Source

Patch Changes

v1.0.0-beta.55

Compare Source

Patch Changes
  • #​3696 3daaf510 Thanks @​matthewp! - Support for streaming responses

    Astro supports streaming in its templates. Any time Astro encounters an async boundary it will stream out HTML that occurs before it. For example:

v1.0.0-beta.54

Compare Source

Patch Changes
  • #​3652 7373d61c Thanks @​natemoo-re! - Add renderer support for passing named slots to framework components.

    BREAKING: integrations using the addRenderer() API are now passed all named slots via Record<string, string> rather than string. Previously only the default slot was passed.

  • #​3679 fa7ed3f3 Thanks @​matthewp! - Moves head injection to happen during rendering

    This change makes it so that head injection; to insert component stylesheets, hoisted scripts, for example, to happen during rendering than as a post-rendering step.

    This is to enable streaming. This change will only be noticeable if you are rendering your <head> element inside of a framework component. If that is the case then the head items will be injected before the first non-head element in an Astro file instead.

    In the future we may offer a <Astro.Head> component as a way to control where these scripts/styles are inserted.

v1.0.0-beta.53

Compare Source

Patch Changes
  • #​3665 9a813268 Thanks @​matthewp! - Allow TypeScript inside script tags

    This makes it so that you can use TypeScript inside of script tags like so:

    <script>
      interface Person {
        name: string;
      }
    
      const person: Person = {
        name: 'Astro',
      };
    
      console.log(person);
    </script>

    Note that the the VSCode extension does not currently support this, however.

v1.0.0-beta.52

Compare Source

Patch Changes
  • #​3658 aeab8909 Thanks @​matthewp! - Inlines small hoisted scripts

    This enables a perf improvement, whereby small hoisted scripts without dependencies are inlined into the HTML, rather than loaded externally. This uses vite.build.assetInlineLimit to determine if the script should be inlined.

v1.0.0-beta.51

Compare Source

Patch Changes

v1.0.0-beta.50

Compare Source

Patch Changes

v1.0.0-beta.49

Compare Source

Patch Changes

v1.0.0-beta.48

Compare Source

Patch Changes
  • #​3625 f5afaf24 Thanks @​matthewp! - Significantly improved build performance

    This change reflects in a significantly improved build performance, especially on larger sites.

    With this change Astro is not building everything by statically analyzing .astro files. This means it no longer needs to dynamically run your code in order to know what JavaScript needs to be built.

    With one particular large site we found it to build 32% faster.

v1.0.0-beta.47

Compare Source

Patch Changes
evanw/esbuild

v0.14.48

Compare Source

  • Enable using esbuild in Deno via WebAssembly (#​2323)

    The native implementation of esbuild is much faster than the WebAssembly version, but some people don't want to give Deno the --allow-run permission necessary to run esbuild and are ok waiting longer for their builds to finish when using the WebAssembly backend. With this release, you can now use esbuild via WebAssembly in Deno. To do this you will need to import from wasm.js instead of mod.js:

    import * as esbuild from 'https://deno.land/x/esbuild@v0.14.48/wasm.js'
    const ts = 'let test: boolean = true'
    const result = await esbuild.transform(ts, { loader: 'ts' })
    console.log('result:', result)

    Make sure you run Deno with --allow-net so esbuild can download the WebAssembly module. Using esbuild like this starts up a worker thread that runs esbuild in parallel (unless you call esbuild.initialize({ worker: false }) to tell esbuild to run on the main thread). If you want to, you can call esbuild.stop() to terminate the worker if you won't be using esbuild anymore and you want to reclaim the memory.

    Note that Deno appears to have a bug where background WebAssembly optimization can prevent the process from exiting for many seconds. If you are trying to use Deno and WebAssembly to run esbuild quickly, you may need to manually call Deno.exit(0) after your code has finished running.

  • Add support for font file MIME types (#​2337)

    This release adds support for font file MIME types to esbuild, which means they are now recognized by the built-in local web server and they are now used when a font file is loaded using the dataurl loader. The full set of newly-added file extension MIME type mappings is as follows:

    • .eot => application/vnd.ms-fontobject
    • .otf => font/otf
    • .sfnt => font/sfnt
    • .ttf => font/ttf
    • .woff => font/woff
    • .woff2 => font/woff2
  • Remove "use strict"; when targeting ESM (#​2347)

    All ES module code is automatically in strict mode, so a "use strict"; directive is unnecessary. With this release, esbuild will now remove the "use strict"; directive if the output format is ESM. This change makes the generated output file a few bytes smaller:

    // Original code
    'use strict'
    export let foo = 123
    
    // Old output (with --format=esm --minify)
    "use strict";let t=123;export{t as foo};
    
    // New output (with --format=esm --minify)
    let t=123;export{t as foo};
  • Attempt to have esbuild work with Deno on FreeBSD (#​2356)

    Deno doesn't support FreeBSD, but it's possible to build Deno for FreeBSD with some additional patches on top. This release of esbuild changes esbuild's Deno installer to download esbuild's FreeBSD binary in this situation. This configuration is unsupported although in theory everything should work.

  • Add some more target JavaScript engines (#​2357)

    This release adds the Rhino and Hermes JavaScript engines to the set of engine identifiers that can be passed to the --target flag. You can use this to restrict esbuild to only using JavaScript features that are supported on those engines in the output files that esbuild generates.

eslint/eslint

v8.19.0

Compare Source

Features

  • 7023628 feat: add importNames support for patterns in no-restricted-imports (#​16059) (Brandon Scott)
  • 472c368 feat: fix handling of blockless with statements in indent rule (#​16068) (Milos Djermanovic)

Bug Fixes

  • fc81848 fix: throw helpful exception when rule has wrong return type (#​16075) (Bryan Mishkin)

Documentation

  • 3ae0574 docs: Remove duplicate rule descriptions (#​16052) (Amaresh S M)
  • f50cf43 docs: Add base href to each page to fix relative URLs (#​16046) (Nicholas C. Zakas)
  • ae4b449 docs: make logo link clickable on small width screens (#​16058) (Milos Djermanovic)
  • 280f898 docs: use only fenced code blocks (#​16044) (Milos Djermanovic)
  • f5d63b9 docs: add listener only if element exists (#​16045) (Amaresh S M)
  • 8b639cc docs: add missing migrating-to-8.0.0 in the user guide (#​16048) (唯然)
  • b8e68c1 docs: Update release process (#​16036) (Nicholas C. Zakas)
  • 6d0cb11 docs: remove table of contents from markdown text (#​15999) (Nitin Kumar)

Chores

firebase/firebase-functions

v3.22.0

Compare Source

  • Adds RTDB Triggers for v2 functions (#​1127)
  • Adds support for Firebase Admin SDK v11 (#​1151)
  • Fixes bug where emulated task queue function required auth header (#​1154)
vitest-dev/vitest

v0.17.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
google/zx

v7.0.7

Compare Source

Now it's possible to do:

const my$ = $.bind(null)
const foo = await my$`echo foo`

v7.0.6

Compare Source

  • Bunch of fixes and improvements. ᕕ( ᐛ )ᕗ

v7.0.5

Compare Source

  • Fixed types definitions for autocomplete in VSCode #​466

v7.0.4

Compare Source

  • Fixed default shell on Windows.
  • Fixed missing chalk import in zx/experimental.

Configuration

📅 Schedule: Branch creation - "before 3am on Monday" (UTC), 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, click this checkbox.

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

@renovate renovate Bot added the dependencies Pull requests that update a dependency file label Jul 4, 2022
@leomp12
leomp12 merged commit 9d36d86 into main Jul 4, 2022
@leomp12
leomp12 deleted the renovate/all-minor-patch branch July 4, 2022 20:15
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant