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

chore(deps): update dependency @akryum/vue-cli-plugin-ssr to v0.6.0 #146

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 2, 2019

This PR contains the following updates:

Package Type Update Change
@akryum/vue-cli-plugin-ssr devDependencies minor 0.5.0 -> 0.6.0

Release Notes

Akryum/vue-cli-plugin-ssr

v0.6.0

Compare Source

Breaking changes

  • Now require Node 8+
  • Now use a different html file (by default index.ssr.html) so spa serve still works.

In the public folder, make sure to have the following two files.

index.html:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width,initial-scale=1.0">
    <link rel="icon" href="<%= BASE_URL %>favicon.ico">
    <title>vue-apollo-repro-48</title>
  </head>
  <body>
    <noscript>
      <strong>We're sorry but vue-apollo-repro-48 doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
    </noscript>
    <div id="app"></div>
    <!-- built files will be auto injected -->
  </body>
</html>

index.ssr.html:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width,initial-scale=1.0">
    <link rel="icon" href="<%%= BASE_URL %%>favicon.ico">
    <title>{{ title }}</title>
    {{{ renderResourceHints() }}}
    {{{ renderStyles() }}}
  </head>
  <body>
    <!--vue-ssr-outlet-->
    {{{ renderState() }}}
    {{{ renderState({ contextKey: 'apolloState', windowKey: '__APOLLO_STATE__' }) }}}
    {{{ renderScripts() }}}
  </body>
</html>

You can run/build in SPA mode with vue-cli-service serve and vue-cli-service build.

With SSR enabled it's still vue-cli-service ssr:serve and vue-cli-service ssr:build.

New

  • Moved Cache-Control maxAge to config (issue: #​137) (#​138)
  • Added LRU cache options. (#​120)
  • Added onError config option
  • Added onRender hook config option (#​81)
  • Added option to disable the default static files behaviour (#​77)
  • Added clustered config option to run the built in server in cluster mode (#​59)
  • Added shouldNotPrefetch and shouldNotPreload options to control assets hints (#​59)
  • Allow extending context object with extendContext hook option (#​58)
  • Added the ability to disable critical css with criticalCSS option for users who wants to keep css separated (#​48)
  • Added copyUrlOnStart option to disable URL copy in clipboard (#​41)
  • Return app from ssr serve command. (#​143)

Fixed

  • Internal Server Error isn't shown if httpCode is 500, closes #​55 (#​56)
  • correctly set ssr:serve mode (#​60)
  • fix compatibility with router/ directories (#​146)
  • keep case sensitivity intact when minifying html template #​123 (#​124)
  • Use NODE_ENV to determine if webpack should use production build instead of mode (#​114)
  • apollo: add fetch polyfill for client (#​106)
  • Support publicPath in vue.config.js (#​98)
  • await router before mounting the app (#​93)
  • don't cache service-worker.js when using pwa plugin (#​53)
  • generator: failing linting
  • generator: improved router codemod

Renovate configuration

📅 Schedule: "every weekend" in timezone Europe/Paris.

🚦 Automerge: Disabled due to failing status checks.

♻️ 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.


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

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

@renovate
Copy link
Contributor Author

renovate bot commented Nov 2, 2019

Branch automerge failure

This PR was configured for branch automerge, however this is not possible so it has been raised as a PR instead.


  • Branch has one or more failed status checks

@renovate renovate bot force-pushed the renovate/akryum-vue-cli-plugin-ssr-0.x branch from f7a4951 to cb4bf68 Compare November 6, 2019 18:15
@renovate renovate bot force-pushed the renovate/akryum-vue-cli-plugin-ssr-0.x branch from cb4bf68 to 5d9cef2 Compare November 21, 2019 15:50
@renovate renovate bot force-pushed the renovate/akryum-vue-cli-plugin-ssr-0.x branch from 5d9cef2 to 024000c Compare February 8, 2020 12:57
@renovate renovate bot force-pushed the renovate/akryum-vue-cli-plugin-ssr-0.x branch from 024000c to 09e323b Compare April 26, 2020 08:03
@renovate renovate bot force-pushed the renovate/akryum-vue-cli-plugin-ssr-0.x branch from 09e323b to 3f91f89 Compare June 12, 2020 22:16
@Haroenv Haroenv closed this Oct 2, 2020
@renovate
Copy link
Contributor Author

renovate bot commented Oct 2, 2020

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update (0.6.0). You will get a PR once a newer version is released. To ignore this dependency forever, add it to the ignoreDeps array of your Renovate config.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

@renovate renovate bot deleted the renovate/akryum-vue-cli-plugin-ssr-0.x branch October 2, 2020 16:12
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.

2 participants