id
stringlengths
4
10
text
stringlengths
4
2.14M
source
stringclasses
2 values
created
timestamp[s]date
2001-05-16 21:05:09
2025-01-01 03:38:30
added
stringdate
2025-04-01 04:05:38
2025-04-01 07:14:06
metadata
dict
809274709
Helm 2 and 3 support Is there a chance Helm 2 will be officially supported by avionix? So far it is unclear how it operates with Helm 2. @eli-halych As of right now, I unfortunately don't have any plans to officially support helm 2
gharchive/issue
2021-02-16T12:36:13
2025-04-01T06:40:59.903445
{ "authors": [ "eli-halych", "zbrookle" ], "repo": "zbrookle/avionix", "url": "https://github.com/zbrookle/avionix/issues/63", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
1301177942
404 error for world-110m.json data The data: https://raw.githubusercontent.com/zcreativelabs/react-simple-maps/master/topojson-maps/world-110m.json used to be working but is down for now. Will it be back? Found the current working version of world map raw data: https://raw.githubusercontent.com/deldersveld/topojson/master/world-countries.json
gharchive/issue
2022-07-11T20:18:34
2025-04-01T06:40:59.936789
{ "authors": [ "yaxue1123" ], "repo": "zcreativelabs/react-simple-maps", "url": "https://github.com/zcreativelabs/react-simple-maps/issues/291", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
289353696
New feature: Zoom and Pan two finger alert on touch screens Going off of your example for zooming and panning (https://www.react-simple-maps.io/zoom-pan), on a touch screen panning with one finger does nothing. As this is not an expected behavior a good solution would be to fire an alert warning the user that they must use two fingers to pan. Edit: Added in a better description Please if you're going to implement this, add a prop so developer could decide what to do, do not fire an alert(). @pronebird In my implementation I add a onTouchMove listener to the containing element. Then fire something like this to essentially hide/show the warning: touchWarning = (event) => { if (event.touches.length === 1) { this.setState({ touchError: true }); setTimeout(() => { this.setState({ touchError: false }); }, 2000); } } The result: hey @oktalk - this looks like a great solution, but I'm having trouble getting it working. I can't even get this to work: constructor() { ... this.handleTouchStart = this.handleTouchStart.bind(this) } ... handleTouchStart(event) { alert("Anything?") } <ZoomableGroup ... onTouchStart={this.handleTouchStart} > Any help would be greatly appreciated! So, I think the ZoomableGroup may only have onMoveStart... I actually attached my touchWarning() function to a div wrapped around the whole map. There I have access to React's ontouchStart() event. What you're are trying to do in your code probably wouldn't work since the core library doesn't have an onTouchStart callback function... I think. I'm going off of memory here. So, I think the ZoomableGroup may only have onMoveStart... I actually attached my touchWarning() function to a div wrapped around the whole map. There I have access to React's ontouchStart() event. What you're are trying to do in your code probably wouldn't work since the core library doesn't have an onTouchStart callback function... I think. I'm going off of memory here. I know this is a 4 year old comment, but this functionality would make it so our mobile users do not accidentally slide the map out of the interactive area by accident when scrolling down to the map section. Do you happen to have that code snippet logged somewhere? I'm not super fluent with React, but would be appreciative of a snippet.
gharchive/issue
2018-01-17T17:42:09
2025-04-01T06:40:59.942873
{ "authors": [ "Cleanse", "oktalk", "pronebird", "runofthemill" ], "repo": "zcreativelabs/react-simple-maps", "url": "https://github.com/zcreativelabs/react-simple-maps/issues/47", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1387296211
Please provide a git tag that points to the latest stable version It's possible to choose the latest commit by just specifying the main branch, but it'd be nice to have a way to point to the latest stable version. The official github actions does this by manually moving their v1, v2, v3... tags to point to the latest stable versions (example). Another common way to do this is to use the git tag latest if one doesn't want to mess with multiple versions. Hi @dundargoc 👋 I was on holiday for a few weeks, so it took me some time to reply to this. Anyways, thanks for reporting. I've tried to read up on the topic. Although moving git tags is controversial, it seems to be the official way to do versioning. I think it should also be easy to do (although it's some extra manual work for me 😅), doesn't block users from referencing exact versions or commit sha's, and I think it solves an actual problem. So, I'll tag the current latest release as v0. I hope that one day this can be handled automatically. I've introduced a v0 tag, and updated the installation examples in the README. Thank you, I truly appreciate this and the work you do.
gharchive/issue
2022-09-27T07:56:16
2025-04-01T06:41:00.032151
{ "authors": [ "dundargoc", "korthout" ], "repo": "zeebe-io/backport-action", "url": "https://github.com/zeebe-io/backport-action/issues/280", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
321486027
support zeebe 0.11.0 especially the new client POJO config see also #36 update version, use new fluent API @jangalinski , when do you want to release the new version 0.3.0? Still a todo: Rename annotation, like @ZeebeTaskListener to @ZeebeWorker (or @ZeebeJobListener?) I choose ZeebeWorker. Whats a good name for the TopicListener? Good choice. I actually wouldn't put much thought in the TopicListener as this might go away in this form in the next release (if you need details happy to jump on a call)
gharchive/issue
2018-05-09T08:56:05
2025-04-01T06:41:00.034412
{ "authors": [ "berndruecker", "jangalinski", "saig0" ], "repo": "zeebe-io/spring-zeebe", "url": "https://github.com/zeebe-io/spring-zeebe/issues/37", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
750818992
INFRA-1906: deduplicate CI pipeline code This proposal depends on https://github.com/zeebe-io/zeebe-jenkins-shared-library/pull/4 to avoid duplicated CI pipeline code and serves as an example. BEFORE merging please drop the REMOVEME commit. Related to INFRA-1906 Looks good to merge +1 @cmur2 do I need to wait until zeebe-io/zeebe-jenkins-shared-library#4 is merged? Yes indeed, https://github.com/zeebe-io/zeebe-jenkins-shared-library/pull/4 should be merged first (which we can do any time now). Looks good to merge +1 @cmur2 do I need to wait until zeebe-io/zeebe-jenkins-shared-library#4 is merged? Yes indeed, https://github.com/zeebe-io/zeebe-jenkins-shared-library/pull/4 should be merged first (which we can do any time now).
gharchive/pull-request
2020-11-25T13:29:17
2025-04-01T06:41:00.038615
{ "authors": [ "cmur2" ], "repo": "zeebe-io/zeebe-dmn-worker", "url": "https://github.com/zeebe-io/zeebe-dmn-worker/pull/73", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
343995534
Not Make SSO Hello first thank you so much for this project but I make all of the steps and make new broker with a new id and secret in the server and make it in .env but when login broker 1 not logged in broker 2 I mean broker 2 need press login and put user - password to make logging in Me neither. Did you have to create the username field in the database? Try clean server session cache. @ihabvip , @mlopez-aeduc Did you solve issue?
gharchive/issue
2018-07-24T11:26:00
2025-04-01T06:41:00.053993
{ "authors": [ "ihabvip", "lovecoding-git", "mlopez-aeduc", "smithscode" ], "repo": "zefy/laravel-sso", "url": "https://github.com/zefy/laravel-sso/issues/13", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
255098709
Black Screen When Opening on Ubuntu 16.04 (Virtualbox) [x] I am on the latest Hyper.app version [x] I have searched the issues of this repo and believe that this is not a duplicate OS version and name: Ubuntu 16.04.3 LTS on VirtualBox Hyper.app version: 1.4.3 Link of a Gist with the contents of your .hyper.js: N/A Relevant information from devtools (CMD+ALT+I on Mac OS, CTRL+SHIFT+I elsewhere): N/A The issue is reproducible in vanilla Hyper.app: Yes Issue Opening hyper results in a black screen which freezes the machine (which is why I can't get any relevant info from the devtools). I have to do a hard shutoff of the VM. I installed hyper via the .deb and .AppImage, both of which result in the same issue. freezes the machine 😱 when I run the lscommand, screen flickering does always happen. PS: Linux dblab-VirtualBox 4.4.0-130-generic #156-Ubuntu SMP Thu Jun 14 08:53:28 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux Experiencing this as well, just did a fresh install of hyper on a fresh VirtualBox VM and it's unusable at the moment, screen blanks out, flickers then hyper becomes unresponsive uname -a Output: Linux UBX64 4.15.0-32-generic #35~16.04.1-Ubuntu SMP Fri Aug 10 21:54:34 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
gharchive/issue
2017-09-04T18:16:44
2025-04-01T06:41:00.063761
{ "authors": [ "chabou", "hammus", "kelechifletcher", "zhuoshuai" ], "repo": "zeit/hyper", "url": "https://github.com/zeit/hyper/issues/2170", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
404582333
"hyper-launch-menu"提示安装成功,但菜单栏不显示 [ ] Your Hyper.app version is 2.1.1. Please verify your using the latest Hyper.app version [ ] I have searched the issues of this repo and believe that this is not a duplicate Any relevant information from devtools? (CMD+ALT+I on macOS, CTRL+SHIFT+I elsewhere): Is the issue reproducible in vanilla Hyper.app? Issue Hyper version: undefined "2.1.1" OS ARCH VERSION: win32 x64 10.0.17763 Electron: 1.8.8 LANG: undefined SHELL: undefined TERM: dumb ~/.hyper.js contents { "updateChannel": "stable", "fontSize": 15, "fontFamily": "Menlo, \"DejaVu Sans Mono\", Consolas, \"Lucida Console\", monospace", "fontWeight": "normal", "fontWeightBold": "bold", "lineHeight": 1, "letterSpacing": 0, "cursorColor": "rgba(248,28,229,0.8)", "cursorAccentColor": "#000", "cursorShape": "BLOCK", "cursorBlink": true, "foregroundColor": "#fff", "backgroundColor": "#000", "selectionColor": "rgba(248,28,229,0.3)", "borderColor": "#333", "css": "", "termCSS": "", "showHamburgerMenu": "", "showWindowControls": "", "padding": "12px 14px", "colors": { "black": "#000000", "red": "#C51E14", "green": "#1DC121", "yellow": "#C7C329", "blue": "#0A2FC4", "magenta": "#C839C5", "cyan": "#20C5C6", "white": "#C7C7C7", "lightBlack": "#686868", "lightRed": "#FD6F6B", "lightGreen": "#67F86F", "lightYellow": "#FFFA72", "lightBlue": "#6A76FB", "lightMagenta": "#FD7CFC", "lightCyan": "#68FDFE", "lightWhite": "#FFFFFF" }, "shell": "", "shellArgs": [ "--login" ], "env": {}, "bell": "SOUND", "copyOnSelect": true, "defaultSSHApp": true } { "plugins": [ "hyper-search", "hyperpower", "shades-of-purple-hyper", "hypercwd", "hyper-pane", "hyper-launch-menu" ], "localPlugins": [] } see https://gitlab.com/zach-geek/hyper-launch-menu#configuration Add the otherShells key to your hyper.js with a list of shells, e.g.: // List of other shells to add to launch menu otherShells: [ {shell: "C:\\Windows\\System32\\cmd.exe", shellArgs: [], shellName: "CMD"}, {shell: "C:\\Program Files\\Git\\bin\\bash.exe", shellArgs: ["--login"], shellName: "Git Bash"}, {shell: "powershell.exe", shellArgs: [], shellName: "Powershell"}, {shell: "C:\\cygwin64\\bin\\bash.exe", shellArgs: ["--login"], shellName: "Cygwin"}, {shell: "cmd.exe", shellName: "Visual Studio", shellArgs: ["/k", "C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\vcvarsall.bat", "amd64"]} ],
gharchive/issue
2019-01-30T03:11:46
2025-04-01T06:41:00.072371
{ "authors": [ "EternalPhane", "imjcroot" ], "repo": "zeit/hyper", "url": "https://github.com/zeit/hyper/issues/3449", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
174988617
Fix semver range latest doesn't seem to be a valid semver range. Per https://github.com/zeit/hyperterm/issues/689. It is not a valid semver range but it's a valid npm tag 😄 See https://docs.npmjs.com/files/package.json#dependencies How would this fix #689? "How would this fix #689?" That was the only thing I could think of for why HyperTerm isn't getting updates; but good to know that's not it.
gharchive/pull-request
2016-09-05T03:21:08
2025-04-01T06:41:00.074840
{ "authors": [ "matheuss", "trevordmiller" ], "repo": "zeit/hyperterm", "url": "https://github.com/zeit/hyperterm/pull/690", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
421207693
Update browserify wrapper handling This includes the update to the asset relocator loader to improve the Browserify wrapper handling (https://github.com/zeit/webpack-asset-relocator-loader/commit/2d0e7c7e2cc4a2df2baf8803867f186cb4e5dce1). Specifically we extend the browserify wrapper detection to be able to detect the uglification of the wrapper, as well as ensuring that the require detection is converted to apply to __non_webpack_require__. Fixes #299. Codecov Report Merging #311 into master will not change coverage. The diff coverage is n/a. @@ Coverage Diff @@ ## master #311 +/- ## ======================================= Coverage 68.37% 68.37% ======================================= Files 12 12 Lines 370 370 ======================================= Hits 253 253 Misses 117 117 Continue to review full report at Codecov. Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 17eb4d8...1024589. Read the comment docs. @guybedford Thanks! Can you add an integration test for tiny-json-http to prove that this fixes the bug? The test is a unit test in the asset relocator loader. My hesitation with adding full integration tests for everything is we end up with a 10 minute test script, but I get the arguments for that too. On Thu, 14 Mar 2019 at 21:49, Steven notifications@github.com wrote: @styfle requested changes on this pull request. Let's make sure this has a integration test for tiny-json-http so we don't regress — You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/zeit/ncc/pull/311#pullrequestreview-214728855, or mute the thread https://github.com/notifications/unsubscribe-auth/AAkiyvxO5MBhQoVrOaifqJJNGdBM9avxks5vWqfkgaJpZM4b1Dqn . +1 on integration test Sure, I've added an integration test here.
gharchive/pull-request
2019-03-14T19:36:23
2025-04-01T06:41:00.084605
{ "authors": [ "codecov-io", "guybedford", "rauchg", "styfle" ], "repo": "zeit/ncc", "url": "https://github.com/zeit/ncc/pull/311", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
231779451
Bootstrap won't work when loaded in Head visited from non-bootstrap page Go to https://bootstraperror-ijijmtupiv.now.sh/ Click link Now the dropdown doesn't work. Press F5 and it will. Source: https://zeit.co/hrronnie/bootstraperror/ijijmtupiv/source PS: If anyone has jQuery and Bootstrap working by using import, I would very much like to see how. Try https://github.com/reactstrap/reactstrap It's Bootstrap 4 for React and The library does not depend on jQuery or Bootstrap javascript If you open the console you'll also see an error: Uncaught Error: Bootstrap's JavaScript requires jQuery I also load jQuery in Head and it works after f5. @timneutkens The problem is that jQuery should be loaded (and will be if you press f5) as it is in the Head as well Actually, when navigating from a other page head is loading asynchronously. In this case, try to use jQuery and Bootstrap globally on all pages. Otherwise use a better pure JS/React alternative. @arunoda Thanks - I don't want to bloat the starting page with those libraries. I will try reactstrap I think this is worth mentioning somewhere. (perhaps it is and I missed it :-/ ) because bootstrap is used by many..
gharchive/issue
2017-05-27T06:17:44
2025-04-01T06:41:00.089225
{ "authors": [ "arunoda", "bestwestern", "fridays", "timneutkens" ], "repo": "zeit/next.js", "url": "https://github.com/zeit/next.js/issues/2079", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
281552303
Dynamic Imports don't respect custom BUILD_ID, the uuid used at build time is hardcoded Based on the guide in the wiki I assumed it would be safe to override the build id by changing that file. However, any use of dynamic imports import('.../....') will still use the old build id, which is hardcoded in the generated webpack bundle. This results in a 404. One solution might be to allow overriding the buildId at build time instead of afterwards: https://github.com/zeit/next.js/blob/52ccc14059673508803f96ef1c74eecdf27fe096/server/build/index.js#L10-L31 [x] I have searched the issues of this repository and believe that this is not a duplicate. Your Environment Tech Version next 3.0.6 node 7.10 OS Mac OS X browser All Closing https://github.com/zeit/next.js/issues/3402 because this issue is more up-to-date Dynamic imports now use file hashing
gharchive/issue
2017-12-12T21:59:54
2025-04-01T06:41:00.094451
{ "authors": [ "jayaram171992", "timneutkens", "unregistered" ], "repo": "zeit/next.js", "url": "https://github.com/zeit/next.js/issues/3446", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
300763962
Using Trello client api Hi. first of all thanks for this great library. I have a problem using client.js from Trello. refrence: https://developers.trello.com/docs/clientjs I added it's script to head using component of 'next/head' but when I try to use window.Trello.authorize(opts) or Trello.authorize(opts) in my component it says Trello is not defined. can someone help me handle this? how did you add the script to the next/head? For the third party script, it's better to use onload callback to trigger the following function. Something like: const ThirdParty = () => { const onload = () => { if (window && window.Trello) { window.Trello.authorize(opts); } }; return (<script onload={onload} src="https://trello.com/1/client.js?key=[key]"></script>); } I'd recommend using their api without the client so that you can server render too. But including in the head should work fine. If it doesn't it's related for the script. I did fix it. it doesn't work when I add it to head of my component. but If I add it to _document.js it works. thank you for your advise
gharchive/issue
2018-02-27T19:34:59
2025-04-01T06:41:00.097625
{ "authors": [ "haohcraft", "sinapcs", "timneutkens" ], "repo": "zeit/next.js", "url": "https://github.com/zeit/next.js/issues/3914", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
335153232
Feature to allow duplication of explicitly specified meta tags Feature request Is your feature request related to a problem? Please describe. In some use cases, we have to set meta tags with the same name (See https://github.com/zeit/next.js/issues/4407 for an actual example of use case) . However, you cannot do that because of next/head's duplication-filter feature. Although, thanks to https://github.com/zeit/next.js/pull/4121, in the latest version of Next.js you can set multiple article:tag meta tag as long as they have unique keys, the tag name is hard-coded and you seem to have no way to add other meta tags to ALLOWED_DUPLICATES. Describe the solution you'd like It would be great if users can explicitly specify meta tag names to be allowed (e.g. by configuring next.config.js) . Describe alternatives you've considered Provide a way of whatever allow duplication (like specifying by environment variables) . Additional context We are willing to send you a pull-request if the above concept is acceptable. Does this duplicate https://github.com/zeit/next.js/issues/3705? How is it going? I really need a feature like this.
gharchive/issue
2018-06-24T05:46:56
2025-04-01T06:41:00.101477
{ "authors": [ "5t111111", "jaydenseric", "lqt93" ], "repo": "zeit/next.js", "url": "https://github.com/zeit/next.js/issues/4656", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
489467258
Update pages-loader to return one value As metioned by @timneutkens, we only need to return the mod here Stats from current PR Default Server Mode (Increase detected ⚠️) General Overall increase ⚠️ zeit/next.js canary ijjk/next.js update/pages-loader Change buildDuration 22.1s 21.6s -466ms nodeModulesSize 42 MB 42 MB ⚠️ +4 B Client Bundles (main, webpack, commons) Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change main-HASH.js 18.2 kB 18.2 kB -21 B main-HASH.js gzip 6.64 kB 6.65 kB ⚠️ +4 B webpack-HASH.js 1.53 kB 1.53 kB ✓ webpack-HASH.js gzip 746 B 746 B ✓ f19ba9d9c079246737d41f3d64a781b228be8151.e2c00d0314f283e7a4a0.js 42.9 kB N/A N/A f19ba9d9c079246737d41f3d64a781b228be8151.e2c00d0314f283e7a4a0.js gzip 15.4 kB N/A N/A f99d4cf543cde08e27fc727f6309c169ace7731c.1f064d5355d2b8407376.js 21.9 kB N/A N/A f99d4cf543cde08e27fc727f6309c169ace7731c.1f064d5355d2b8407376.js gzip 7.81 kB N/A N/A framework.5b4f940f1eadbaff70d3.js 125 kB 125 kB ✓ framework.5b4f940f1eadbaff70d3.js gzip 39.4 kB 39.4 kB ✓ 03c015ba16866fefc996aa79630fd2f0b7768be1.1f064d5355d2b8407376.js N/A 21.9 kB N/A 03c015ba16866fefc996aa79630fd2f0b7768be1.1f064d5355d2b8407376.js gzip N/A 7.81 kB N/A 97042b0acdc7bb58db46e90472494e32c321833d.e2c00d0314f283e7a4a0.js N/A 42.9 kB N/A 97042b0acdc7bb58db46e90472494e32c321833d.e2c00d0314f283e7a4a0.js gzip N/A 15.4 kB N/A Overall change 210 kB 210 kB -21 B Client Bundles (main, webpack, commons) Modern Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change main-HASH.module.js 16.6 kB 16.5 kB -16 B main-HASH.module.js gzip 6.38 kB 6.39 kB ⚠️ +3 B webpack-HASH.module.js 1.53 kB 1.53 kB ✓ webpack-HASH.module.js gzip 746 B 746 B ✓ f19ba9d9c079246737d41f3d64a781b228be8151.36c6b20a7d953b3f28f0.module.js 45.5 kB N/A N/A f19ba9d9c079246737d41f3d64a781b228be8151.36c6b20a7d953b3f28f0.module.js gzip 16.5 kB N/A N/A framework.5b4f940f1eadbaff70d3.module.js 125 kB 125 kB ✓ framework.5b4f940f1eadbaff70d3.module.js gzip 39.4 kB 39.4 kB ✓ 97042b0acdc7bb58db46e90472494e32c321833d.36c6b20a7d953b3f28f0.module.js N/A 45.5 kB N/A 97042b0acdc7bb58db46e90472494e32c321833d.36c6b20a7d953b3f28f0.module.js gzip N/A 16.5 kB N/A Overall change 189 kB 189 kB -16 B Client Pages Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change _app.js 1.83 kB 1.81 kB -25 B _app.js gzip 883 B 873 B -10 B _error.js 12.1 kB 12 kB -25 B _error.js gzip 4.74 kB 4.73 kB -11 B hooks.js 12.7 kB 12.7 kB -25 B hooks.js gzip 4.81 kB 4.79 kB -16 B index.js 343 B 318 B -25 B index.js gzip 237 B 222 B -15 B link.js 8.14 kB 8.11 kB -25 B link.js gzip 3.49 kB 3.48 kB -15 B routerDirect.js 433 B 408 B -25 B routerDirect.js gzip 296 B 281 B -15 B withRouter.js 444 B 419 B -25 B withRouter.js gzip 294 B 280 B -14 B Overall change 36 kB 35.8 kB -175 B Client Pages Modern Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change _app.module.js 1.73 kB 1.7 kB -25 B _app.module.js gzip 841 B 832 B -9 B _error.module.js 23.3 kB 23.3 kB -25 B _error.module.js gzip 8.6 kB 8.59 kB -9 B hooks.module.js 1.55 kB 1.52 kB -25 B hooks.module.js gzip 804 B 793 B -11 B index.module.js 319 B 294 B -25 B index.module.js gzip 238 B 223 B -15 B link.module.js 8.52 kB 8.5 kB -25 B link.module.js gzip 3.67 kB 3.66 kB -12 B routerDirect.module.js 419 B 394 B -25 B routerDirect.module.js gzip 294 B 281 B -13 B withRouter.module.js 429 B 404 B -25 B withRouter.module.js gzip 293 B 278 B -15 B Overall change 36.2 kB 36.1 kB -175 B Client Build Manifests zeit/next.js canary ijjk/next.js update/pages-loader Change _buildManifest.js 81 B 81 B ✓ _buildManifest.js gzip 61 B 61 B ✓ _buildManifest.module.js 81 B 81 B ✓ _buildManifest.module.js gzip 61 B 61 B ✓ Overall change 162 B 162 B ✓ Rendered Page Sizes zeit/next.js canary ijjk/next.js update/pages-loader Change index.html 3.75 kB 3.75 kB ✓ index.html gzip 961 B 963 B ⚠️ +2 B link.html 3.79 kB 3.79 kB ✓ link.html gzip 969 B 970 B ⚠️ +1 B withRouter.html 3.8 kB 3.8 kB ✓ withRouter.html gzip 956 B 958 B ⚠️ +2 B Overall change 11.3 kB 11.3 kB ✓ Diffs Diff for main-HASH.js @@ -1592,19 +1592,14 @@ function () { var register = function register() { try { - var _regFn = regFn(), - error = _regFn.error, - page = _regFn.page; - - _this5.pageCache[route] = { - error: error, - page: page + var mod = regFn(); + var pageData = { + page: mod["default"] || mod, + mod: mod }; + _this5.pageCache[route] = pageData; - _this5.pageRegisterEvents.emit(route, { - error: error, - page: page - }); + _this5.pageRegisterEvents.emit(route, pageData); } catch (error) { _this5.pageCache[route] = { error: error Diff for main-HASH.module.js @@ -1466,18 +1466,13 @@ class PageLoader { registerPage(route, regFn) { const register = () => { try { - const { - error, - page - } = regFn(); - this.pageCache[route] = { - error, - page + const mod = regFn(); + const pageData = { + page: mod.default || mod, + mod }; - this.pageRegisterEvents.emit(route, { - error, - page - }); + this.pageCache[route] = pageData; + this.pageRegisterEvents.emit(route, pageData); } catch (error) { this.pageCache[route] = { error Diff for _app.js @@ -192,9 +192,9 @@ function createUrl(router) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/_app", function() { - var page = __webpack_require__("B5Ud") + var mod = __webpack_require__("B5Ud") if(false) {} - return { page: page.default || page } + return mod }]); Diff for _error.js @@ -187,9 +187,9 @@ var styles = { (window.__NEXT_P=window.__NEXT_P||[]).push(["/_error", function() { - var page = __webpack_require__("/a9y") + var mod = __webpack_require__("/a9y") if(false) {} - return { page: page.default || page } + return mod }]); Diff for hooks.js @@ -994,9 +994,9 @@ module.exports = __webpack_require__("jmDH") ? Object.defineProperties : functio (window.__NEXT_P=window.__NEXT_P||[]).push(["/hooks", function() { - var page = __webpack_require__("+MDD") + var mod = __webpack_require__("+MDD") if(false) {} - return { page: page.default || page } + return mod }]); Diff for index.js @@ -22,9 +22,9 @@ Page.getInitialProps = function () { (window.__NEXT_P=window.__NEXT_P||[]).push(["/", function() { - var page = __webpack_require__("RNiq") + var mod = __webpack_require__("RNiq") if(false) {} - return { page: page.default || page } + return mod }]); Diff for link.js @@ -167,9 +167,9 @@ module.exports = function (TYPE, $create) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/link", function() { - var page = __webpack_require__("ObF3") + var mod = __webpack_require__("ObF3") if(false) {} - return { page: page.default || page } + return mod }]); Diff for routerDirect.js @@ -5,9 +5,9 @@ (window.__NEXT_P=window.__NEXT_P||[]).push(["/routerDirect", function() { - var page = __webpack_require__("jSAA") + var mod = __webpack_require__("jSAA") if(false) {} - return { page: page.default || page } + return mod }]); Diff for withRouter.js @@ -30,9 +30,9 @@ useWithRouter.getInitialProps = function () { (window.__NEXT_P=window.__NEXT_P||[]).push(["/withRouter", function() { - var page = __webpack_require__("0Hlz") + var mod = __webpack_require__("0Hlz") if(false) {} - return { page: page.default || page } + return mod }]); Diff for _app.module.js @@ -197,9 +197,9 @@ function createUrl(router) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/_app", function() { - var page = __webpack_require__("B5Ud") + var mod = __webpack_require__("B5Ud") if(false) {} - return { page: page.default || page } + return mod }]); Diff for _error.module.js @@ -163,9 +163,9 @@ const styles = { (window.__NEXT_P=window.__NEXT_P||[]).push(["/_error", function() { - var page = __webpack_require__("/a9y") + var mod = __webpack_require__("/a9y") if(false) {} - return { page: page.default || page } + return mod }]); Diff for hooks.module.js @@ -133,9 +133,9 @@ module.exports = shouldUseNative() ? Object.assign : function (target, source) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/hooks", function() { - var page = __webpack_require__("+MDD") + var mod = __webpack_require__("+MDD") if(false) {} - return { page: page.default || page } + return mod }]); Diff for index.module.js @@ -18,9 +18,9 @@ Page.getInitialProps = () => ({}); (window.__NEXT_P=window.__NEXT_P||[]).push(["/", function() { - var page = __webpack_require__("RNiq") + var mod = __webpack_require__("RNiq") if(false) {} - return { page: page.default || page } + return mod }]); Diff for link.module.js @@ -225,9 +225,9 @@ module.exports = function (TYPE, $create) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/link", function() { - var page = __webpack_require__("ObF3") + var mod = __webpack_require__("ObF3") if(false) {} - return { page: page.default || page } + return mod }]); Diff for routerDirect.module.js @@ -5,9 +5,9 @@ (window.__NEXT_P=window.__NEXT_P||[]).push(["/routerDirect", function() { - var page = __webpack_require__("jSAA") + var mod = __webpack_require__("jSAA") if(false) {} - return { page: page.default || page } + return mod }]); Diff for withRouter.module.js @@ -28,9 +28,9 @@ useWithRouter.getInitialProps = () => ({}); (window.__NEXT_P=window.__NEXT_P||[]).push(["/withRouter", function() { - var page = __webpack_require__("0Hlz") + var mod = __webpack_require__("0Hlz") if(false) {} - return { page: page.default || page } + return mod }]); Diff for index.html @@ -6,19 +6,19 @@ <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1" /> <meta name="next-head-count" content="2" /> - <link rel="preload" href="/_next/static/f81eeNQapDBYoRgfJunjy/pages/index.module.js" + <link rel="preload" href="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/pages/index.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/f81eeNQapDBYoRgfJunjy/pages/_app.module.js" + <link rel="preload" href="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/pages/_app.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/runtime/webpack-7928590be3ef2e55b835.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/runtime/main-41b570be350e74cf32cb.module.js" + <link rel="preload" href="/_next/static/runtime/main-a4d17bae730952bcdd59.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/chunks/b62b7aef049a4daf6a93267d84eb5fa7b0988e60.85e4c18b9e4b400e5496.module.js" + <link rel="preload" href="/_next/static/chunks/675dc546479e8c4ce9452c252a0d3bd80eb81878.85e4c18b9e4b400e5496.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/f81eeNQapDBYoRgfJunjy/_buildManifest.module.js" + <link rel="preload" href="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/_buildManifest.module.js" as="script" crossorigin="anonymous" /> </head> @@ -26,40 +26,40 @@ <div id="__next">Hello world 👋</div> <script id="__NEXT_DATA__" type="application/json" crossorigin="anonymous"> - {"dataManager":"[]","props":{"pageProps":{}},"page":"/","query":{},"buildId":"f81eeNQapDBYoRgfJunjy"} + {"dataManager":"[]","props":{"pageProps":{}},"page":"/","query":{},"buildId":"Vvjxl1gqbxJ6vwdGd6g8y"} </script> <script crossorigin="anonymous" nomodule=""> !function(){var e=document,t=e.createElement("script");if(!("noModule"in t)&&"onbeforeload"in t){var n=!1;e.addEventListener("beforeload",function(e){if(e.target===t)n=!0;else if(!e.target.hasAttribute("nomodule")||!n)return;e.preventDefault()},!0),t.type="module",t.src=".",e.head.appendChild(t),t.remove()}}(); </script> - <script async="" data-next-page="/" src="/_next/static/f81eeNQapDBYoRgfJunjy/pages/index.js" + <script async="" data-next-page="/" src="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/pages/index.js" crossorigin="anonymous" nomodule=""></script> - <script async="" data-next-page="/" src="/_next/static/f81eeNQapDBYoRgfJunjy/pages/index.module.js" + <script async="" data-next-page="/" src="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/pages/index.module.js" crossorigin="anonymous" type="module"></script> - <script async="" data-next-page="/_app" src="/_next/static/f81eeNQapDBYoRgfJunjy/pages/_app.js" + <script async="" data-next-page="/_app" src="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/pages/_app.js" crossorigin="anonymous" nomodule=""></script> - <script async="" data-next-page="/_app" src="/_next/static/f81eeNQapDBYoRgfJunjy/pages/_app.module.js" + <script async="" data-next-page="/_app" src="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/pages/_app.module.js" crossorigin="anonymous" type="module"></script> <script src="/_next/static/runtime/webpack-a470c2a25bcb4d5a8ec0.js" async="" crossorigin="anonymous" nomodule=""></script> <script src="/_next/static/runtime/webpack-7928590be3ef2e55b835.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/runtime/main-b50e91af3fd1d8cb23a4.js" + <script src="/_next/static/runtime/main-ce1b9d885611679c636a.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/runtime/main-41b570be350e74cf32cb.module.js" + <script src="/_next/static/runtime/main-a4d17bae730952bcdd59.module.js" async="" crossorigin="anonymous" type="module"></script> <script src="/_next/static/chunks/framework.cdb73e402d876d4ac87f.js" async="" crossorigin="anonymous" nomodule=""></script> <script src="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/chunks/be7eaf383dded1981173b667852ca03647b7c0e2.155621535702fe040780.js" + <script src="/_next/static/chunks/bb4cdcb833f6e1e80eef220c059cb2be5a0b6eaf.155621535702fe040780.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/b62b7aef049a4daf6a93267d84eb5fa7b0988e60.474e0ebc58bce106266f.js" + <script src="/_next/static/chunks/675dc546479e8c4ce9452c252a0d3bd80eb81878.474e0ebc58bce106266f.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/b62b7aef049a4daf6a93267d84eb5fa7b0988e60.85e4c18b9e4b400e5496.module.js" + <script src="/_next/static/chunks/675dc546479e8c4ce9452c252a0d3bd80eb81878.85e4c18b9e4b400e5496.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/f81eeNQapDBYoRgfJunjy/_buildManifest.js" + <script src="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/_buildManifest.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/f81eeNQapDBYoRgfJunjy/_buildManifest.module.js" + <script src="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/_buildManifest.module.js" async="" crossorigin="anonymous" type="module"></script> </body> Diff for link.html @@ -6,19 +6,19 @@ <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1" /> <meta name="next-head-count" content="2" /> - <link rel="preload" href="/_next/static/f81eeNQapDBYoRgfJunjy/pages/link.module.js" + <link rel="preload" href="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/pages/link.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/f81eeNQapDBYoRgfJunjy/pages/_app.module.js" + <link rel="preload" href="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/pages/_app.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/runtime/webpack-7928590be3ef2e55b835.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/chunks/b62b7aef049a4daf6a93267d84eb5fa7b0988e60.85e4c18b9e4b400e5496.module.js" + <link rel="preload" href="/_next/static/chunks/675dc546479e8c4ce9452c252a0d3bd80eb81878.85e4c18b9e4b400e5496.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/runtime/main-41b570be350e74cf32cb.module.js" + <link rel="preload" href="/_next/static/runtime/main-a4d17bae730952bcdd59.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/f81eeNQapDBYoRgfJunjy/_buildManifest.module.js" + <link rel="preload" href="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/_buildManifest.module.js" as="script" crossorigin="anonymous" /> </head> @@ -29,18 +29,18 @@ </div> </div> <script id="__NEXT_DATA__" type="application/json" crossorigin="anonymous"> - {"dataManager":"[]","props":{"pageProps":{}},"page":"/link","query":{},"buildId":"f81eeNQapDBYoRgfJunjy"} + {"dataManager":"[]","props":{"pageProps":{}},"page":"/link","query":{},"buildId":"Vvjxl1gqbxJ6vwdGd6g8y"} </script> <script crossorigin="anonymous" nomodule=""> !function(){var e=document,t=e.createElement("script");if(!("noModule"in t)&&"onbeforeload"in t){var n=!1;e.addEventListener("beforeload",function(e){if(e.target===t)n=!0;else if(!e.target.hasAttribute("nomodule")||!n)return;e.preventDefault()},!0),t.type="module",t.src=".",e.head.appendChild(t),t.remove()}}(); </script> - <script async="" data-next-page="/link" src="/_next/static/f81eeNQapDBYoRgfJunjy/pages/link.js" + <script async="" data-next-page="/link" src="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/pages/link.js" crossorigin="anonymous" nomodule=""></script> - <script async="" data-next-page="/link" src="/_next/static/f81eeNQapDBYoRgfJunjy/pages/link.module.js" + <script async="" data-next-page="/link" src="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/pages/link.module.js" crossorigin="anonymous" type="module"></script> - <script async="" data-next-page="/_app" src="/_next/static/f81eeNQapDBYoRgfJunjy/pages/_app.js" + <script async="" data-next-page="/_app" src="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/pages/_app.js" crossorigin="anonymous" nomodule=""></script> - <script async="" data-next-page="/_app" src="/_next/static/f81eeNQapDBYoRgfJunjy/pages/_app.module.js" + <script async="" data-next-page="/_app" src="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/pages/_app.module.js" crossorigin="anonymous" type="module"></script> <script src="/_next/static/runtime/webpack-a470c2a25bcb4d5a8ec0.js" async="" crossorigin="anonymous" nomodule=""></script> @@ -50,19 +50,19 @@ async="" crossorigin="anonymous" nomodule=""></script> <script src="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/chunks/be7eaf383dded1981173b667852ca03647b7c0e2.155621535702fe040780.js" + <script src="/_next/static/chunks/bb4cdcb833f6e1e80eef220c059cb2be5a0b6eaf.155621535702fe040780.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/b62b7aef049a4daf6a93267d84eb5fa7b0988e60.474e0ebc58bce106266f.js" + <script src="/_next/static/chunks/675dc546479e8c4ce9452c252a0d3bd80eb81878.474e0ebc58bce106266f.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/b62b7aef049a4daf6a93267d84eb5fa7b0988e60.85e4c18b9e4b400e5496.module.js" + <script src="/_next/static/chunks/675dc546479e8c4ce9452c252a0d3bd80eb81878.85e4c18b9e4b400e5496.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/runtime/main-b50e91af3fd1d8cb23a4.js" + <script src="/_next/static/runtime/main-ce1b9d885611679c636a.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/runtime/main-41b570be350e74cf32cb.module.js" + <script src="/_next/static/runtime/main-a4d17bae730952bcdd59.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/f81eeNQapDBYoRgfJunjy/_buildManifest.js" + <script src="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/_buildManifest.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/f81eeNQapDBYoRgfJunjy/_buildManifest.module.js" + <script src="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/_buildManifest.module.js" async="" crossorigin="anonymous" type="module"></script> </body> Diff for withRouter.html @@ -6,19 +6,19 @@ <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1" /> <meta name="next-head-count" content="2" /> - <link rel="preload" href="/_next/static/f81eeNQapDBYoRgfJunjy/pages/withRouter.module.js" + <link rel="preload" href="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/pages/withRouter.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/f81eeNQapDBYoRgfJunjy/pages/_app.module.js" + <link rel="preload" href="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/pages/_app.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/runtime/webpack-7928590be3ef2e55b835.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/chunks/b62b7aef049a4daf6a93267d84eb5fa7b0988e60.85e4c18b9e4b400e5496.module.js" + <link rel="preload" href="/_next/static/chunks/675dc546479e8c4ce9452c252a0d3bd80eb81878.85e4c18b9e4b400e5496.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/runtime/main-41b570be350e74cf32cb.module.js" + <link rel="preload" href="/_next/static/runtime/main-a4d17bae730952bcdd59.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/f81eeNQapDBYoRgfJunjy/_buildManifest.module.js" + <link rel="preload" href="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/_buildManifest.module.js" as="script" crossorigin="anonymous" /> </head> @@ -27,18 +27,18 @@ <div>I use withRouter</div> </div> <script id="__NEXT_DATA__" type="application/json" crossorigin="anonymous"> - {"dataManager":"[]","props":{"pageProps":{}},"page":"/withRouter","query":{},"buildId":"f81eeNQapDBYoRgfJunjy"} + {"dataManager":"[]","props":{"pageProps":{}},"page":"/withRouter","query":{},"buildId":"Vvjxl1gqbxJ6vwdGd6g8y"} </script> <script crossorigin="anonymous" nomodule=""> !function(){var e=document,t=e.createElement("script");if(!("noModule"in t)&&"onbeforeload"in t){var n=!1;e.addEventListener("beforeload",function(e){if(e.target===t)n=!0;else if(!e.target.hasAttribute("nomodule")||!n)return;e.preventDefault()},!0),t.type="module",t.src=".",e.head.appendChild(t),t.remove()}}(); </script> - <script async="" data-next-page="/withRouter" src="/_next/static/f81eeNQapDBYoRgfJunjy/pages/withRouter.js" + <script async="" data-next-page="/withRouter" src="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/pages/withRouter.js" crossorigin="anonymous" nomodule=""></script> - <script async="" data-next-page="/withRouter" src="/_next/static/f81eeNQapDBYoRgfJunjy/pages/withRouter.module.js" + <script async="" data-next-page="/withRouter" src="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/pages/withRouter.module.js" crossorigin="anonymous" type="module"></script> - <script async="" data-next-page="/_app" src="/_next/static/f81eeNQapDBYoRgfJunjy/pages/_app.js" + <script async="" data-next-page="/_app" src="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/pages/_app.js" crossorigin="anonymous" nomodule=""></script> - <script async="" data-next-page="/_app" src="/_next/static/f81eeNQapDBYoRgfJunjy/pages/_app.module.js" + <script async="" data-next-page="/_app" src="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/pages/_app.module.js" crossorigin="anonymous" type="module"></script> <script src="/_next/static/runtime/webpack-a470c2a25bcb4d5a8ec0.js" async="" crossorigin="anonymous" nomodule=""></script> @@ -48,19 +48,19 @@ async="" crossorigin="anonymous" nomodule=""></script> <script src="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/chunks/be7eaf383dded1981173b667852ca03647b7c0e2.155621535702fe040780.js" + <script src="/_next/static/chunks/bb4cdcb833f6e1e80eef220c059cb2be5a0b6eaf.155621535702fe040780.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/b62b7aef049a4daf6a93267d84eb5fa7b0988e60.474e0ebc58bce106266f.js" + <script src="/_next/static/chunks/675dc546479e8c4ce9452c252a0d3bd80eb81878.474e0ebc58bce106266f.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/b62b7aef049a4daf6a93267d84eb5fa7b0988e60.85e4c18b9e4b400e5496.module.js" + <script src="/_next/static/chunks/675dc546479e8c4ce9452c252a0d3bd80eb81878.85e4c18b9e4b400e5496.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/runtime/main-b50e91af3fd1d8cb23a4.js" + <script src="/_next/static/runtime/main-ce1b9d885611679c636a.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/runtime/main-41b570be350e74cf32cb.module.js" + <script src="/_next/static/runtime/main-a4d17bae730952bcdd59.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/f81eeNQapDBYoRgfJunjy/_buildManifest.js" + <script src="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/_buildManifest.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/f81eeNQapDBYoRgfJunjy/_buildManifest.module.js" + <script src="/_next/static/Vvjxl1gqbxJ6vwdGd6g8y/_buildManifest.module.js" async="" crossorigin="anonymous" type="module"></script> </body> Serverless Mode (Increase detected ⚠️) General Overall increase ⚠️ zeit/next.js canary ijjk/next.js update/pages-loader Change buildDuration 22.2s 22.7s ⚠️ +490ms nodeModulesSize 42 MB 42 MB ⚠️ +4 B Client Bundles (main, webpack, commons) Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change main-HASH.js 18.2 kB 18.2 kB -21 B main-HASH.js gzip 6.64 kB 6.65 kB ⚠️ +4 B webpack-HASH.js 1.53 kB 1.53 kB ✓ webpack-HASH.js gzip 746 B 746 B ✓ 1ca161f58bf875e1b6dc17f0f4a82c1b1c536ddf.e2c00d0314f283e7a4a0.js 42.9 kB N/A N/A 1ca161f58bf875e1b6dc17f0f4a82c1b1c536ddf.e2c00d0314f283e7a4a0.js gzip 15.4 kB N/A N/A d5796b64a6dec88dd449806d2e35fccd858688c4.1f064d5355d2b8407376.js 21.9 kB N/A N/A d5796b64a6dec88dd449806d2e35fccd858688c4.1f064d5355d2b8407376.js gzip 7.81 kB N/A N/A framework.5b4f940f1eadbaff70d3.js 125 kB 125 kB ✓ framework.5b4f940f1eadbaff70d3.js gzip 39.4 kB 39.4 kB ✓ a9134376b88c27bc22e099ea64d61da7ae10db3e.1f064d5355d2b8407376.js N/A 21.9 kB N/A a9134376b88c27bc22e099ea64d61da7ae10db3e.1f064d5355d2b8407376.js gzip N/A 7.81 kB N/A d35d475f5f6e3c0e9b6e6b9bed56f4755213cb89.e2c00d0314f283e7a4a0.js N/A 42.9 kB N/A d35d475f5f6e3c0e9b6e6b9bed56f4755213cb89.e2c00d0314f283e7a4a0.js gzip N/A 15.4 kB N/A Overall change 210 kB 210 kB -21 B Client Bundles (main, webpack, commons) Modern Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change main-HASH.module.js 16.6 kB 16.5 kB -16 B main-HASH.module.js gzip 6.38 kB 6.39 kB ⚠️ +3 B webpack-HASH.module.js 1.53 kB 1.53 kB ✓ webpack-HASH.module.js gzip 746 B 746 B ✓ 1ca161f58bf875e1b6dc17f0f4a82c1b1c536ddf.36c6b20a7d953b3f28f0.module.js 45.5 kB N/A N/A 1ca161f58bf875e1b6dc17f0f4a82c1b1c536ddf.36c6b20a7d953b3f28f0.module.js gzip 16.5 kB N/A N/A framework.5b4f940f1eadbaff70d3.module.js 125 kB 125 kB ✓ framework.5b4f940f1eadbaff70d3.module.js gzip 39.4 kB 39.4 kB ✓ d35d475f5f6e3c0e9b6e6b9bed56f4755213cb89.36c6b20a7d953b3f28f0.module.js N/A 45.5 kB N/A d35d475f5f6e3c0e9b6e6b9bed56f4755213cb89.36c6b20a7d953b3f28f0.module.js gzip N/A 16.5 kB N/A Overall change 189 kB 189 kB -16 B Client Pages Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change _app.js 1.83 kB 1.81 kB -25 B _app.js gzip 883 B 873 B -10 B _error.js 12.1 kB 12 kB -25 B _error.js gzip 4.74 kB 4.73 kB -11 B hooks.js 12.7 kB 12.7 kB -25 B hooks.js gzip 4.81 kB 4.79 kB -16 B index.js 343 B 318 B -25 B index.js gzip 237 B 222 B -15 B link.js 8.14 kB 8.11 kB -25 B link.js gzip 3.49 kB 3.48 kB -15 B routerDirect.js 433 B 408 B -25 B routerDirect.js gzip 296 B 281 B -15 B withRouter.js 444 B 419 B -25 B withRouter.js gzip 294 B 280 B -14 B Overall change 36 kB 35.8 kB -175 B Client Pages Modern Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change _app.module.js 1.73 kB 1.7 kB -25 B _app.module.js gzip 841 B 832 B -9 B _error.module.js 23.3 kB 23.3 kB -25 B _error.module.js gzip 8.6 kB 8.59 kB -9 B hooks.module.js 1.55 kB 1.52 kB -25 B hooks.module.js gzip 804 B 793 B -11 B index.module.js 319 B 294 B -25 B index.module.js gzip 238 B 223 B -15 B link.module.js 8.52 kB 8.5 kB -25 B link.module.js gzip 3.67 kB 3.66 kB -12 B routerDirect.module.js 419 B 394 B -25 B routerDirect.module.js gzip 294 B 281 B -13 B withRouter.module.js 429 B 404 B -25 B withRouter.module.js gzip 293 B 278 B -15 B Overall change 36.2 kB 36.1 kB -175 B Client Build Manifests zeit/next.js canary ijjk/next.js update/pages-loader Change _buildManifest.js 81 B 81 B ✓ _buildManifest.js gzip 61 B 61 B ✓ _buildManifest.module.js 81 B 81 B ✓ _buildManifest.module.js gzip 61 B 61 B ✓ Overall change 162 B 162 B ✓ Serverless bundles zeit/next.js canary ijjk/next.js update/pages-loader Change _error.js 247 kB 247 kB ✓ _error.js gzip 66.2 kB 66.2 kB ⚠️ +26 B hooks.html 3.86 kB 3.86 kB ✓ hooks.html gzip 989 B 980 B -9 B index.js 248 kB 248 kB ✓ index.js gzip 66.4 kB 66.5 kB ⚠️ +13 B link.js 255 kB 255 kB ✓ link.js gzip 68.6 kB 68.5 kB -20 B routerDirect.js 249 kB 249 kB ✓ routerDirect.js gzip 66.6 kB 66.5 kB -109 B withRouter.js 249 kB 249 kB ✓ withRouter.js gzip 66.5 kB 66.5 kB ⚠️ +43 B Overall change 1.25 MB 1.25 MB ✓ Stats from current PR Default Server Mode (Increase detected ⚠️) General Overall increase ⚠️ zeit/next.js canary ijjk/next.js update/pages-loader Change buildDuration 21.1s 20.8s -278ms nodeModulesSize 42 MB 42 MB ⚠️ +4 B Client Bundles (main, webpack, commons) Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change main-HASH.js 18.2 kB 18.2 kB -21 B main-HASH.js gzip 6.64 kB 6.65 kB ⚠️ +4 B webpack-HASH.js 1.53 kB 1.53 kB ✓ webpack-HASH.js gzip 746 B 746 B ✓ 7273a7c7a1c61555d8c1ea490300b278701b0dd0.1f064d5355d2b8407376.js 21.9 kB N/A N/A 7273a7c7a1c61555d8c1ea490300b278701b0dd0.1f064d5355d2b8407376.js gzip 7.81 kB N/A N/A ee407be102971cb9270ed4cc7bba282449ed7ded.e2c00d0314f283e7a4a0.js 42.9 kB N/A N/A ee407be102971cb9270ed4cc7bba282449ed7ded.e2c00d0314f283e7a4a0.js gzip 15.4 kB N/A N/A framework.5b4f940f1eadbaff70d3.js 125 kB 125 kB ✓ framework.5b4f940f1eadbaff70d3.js gzip 39.4 kB 39.4 kB ✓ 6d860e35fffeae76e8caea32c638045ce0bf86c2.e2c00d0314f283e7a4a0.js N/A 42.9 kB N/A 6d860e35fffeae76e8caea32c638045ce0bf86c2.e2c00d0314f283e7a4a0.js gzip N/A 15.4 kB N/A b574f8e56b01f95b57ce03f3bb1ff2aef41f6bec.1f064d5355d2b8407376.js N/A 21.9 kB N/A b574f8e56b01f95b57ce03f3bb1ff2aef41f6bec.1f064d5355d2b8407376.js gzip N/A 7.81 kB N/A Overall change 210 kB 210 kB -21 B Client Bundles (main, webpack, commons) Modern Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change main-HASH.module.js 16.6 kB 16.5 kB -16 B main-HASH.module.js gzip 6.38 kB 6.39 kB ⚠️ +3 B webpack-HASH.module.js 1.53 kB 1.53 kB ✓ webpack-HASH.module.js gzip 746 B 746 B ✓ ee407be102971cb9270ed4cc7bba282449ed7ded.36c6b20a7d953b3f28f0.module.js 45.5 kB N/A N/A ee407be102971cb9270ed4cc7bba282449ed7ded.36c6b20a7d953b3f28f0.module.js gzip 16.5 kB N/A N/A framework.5b4f940f1eadbaff70d3.module.js 125 kB 125 kB ✓ framework.5b4f940f1eadbaff70d3.module.js gzip 39.4 kB 39.4 kB ✓ 6d860e35fffeae76e8caea32c638045ce0bf86c2.36c6b20a7d953b3f28f0.module.js N/A 45.5 kB N/A 6d860e35fffeae76e8caea32c638045ce0bf86c2.36c6b20a7d953b3f28f0.module.js gzip N/A 16.5 kB N/A Overall change 189 kB 189 kB -16 B Client Pages Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change _app.js 1.83 kB 1.81 kB -25 B _app.js gzip 883 B 873 B -10 B _error.js 12.1 kB 12 kB -25 B _error.js gzip 4.74 kB 4.73 kB -11 B hooks.js 12.7 kB 12.7 kB -25 B hooks.js gzip 4.81 kB 4.79 kB -16 B index.js 343 B 318 B -25 B index.js gzip 237 B 222 B -15 B link.js 8.14 kB 8.11 kB -25 B link.js gzip 3.49 kB 3.48 kB -15 B routerDirect.js 433 B 408 B -25 B routerDirect.js gzip 296 B 281 B -15 B withRouter.js 444 B 419 B -25 B withRouter.js gzip 294 B 280 B -14 B Overall change 36 kB 35.8 kB -175 B Client Pages Modern Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change _app.module.js 1.73 kB 1.7 kB -25 B _app.module.js gzip 841 B 832 B -9 B _error.module.js 23.3 kB 23.3 kB -25 B _error.module.js gzip 8.6 kB 8.59 kB -9 B hooks.module.js 1.55 kB 1.52 kB -25 B hooks.module.js gzip 804 B 793 B -11 B index.module.js 319 B 294 B -25 B index.module.js gzip 238 B 223 B -15 B link.module.js 8.52 kB 8.5 kB -25 B link.module.js gzip 3.67 kB 3.66 kB -12 B routerDirect.module.js 419 B 394 B -25 B routerDirect.module.js gzip 294 B 281 B -13 B withRouter.module.js 429 B 404 B -25 B withRouter.module.js gzip 293 B 278 B -15 B Overall change 36.2 kB 36.1 kB -175 B Client Build Manifests zeit/next.js canary ijjk/next.js update/pages-loader Change _buildManifest.js 81 B 81 B ✓ _buildManifest.js gzip 61 B 61 B ✓ _buildManifest.module.js 81 B 81 B ✓ _buildManifest.module.js gzip 61 B 61 B ✓ Overall change 162 B 162 B ✓ Rendered Page Sizes zeit/next.js canary ijjk/next.js update/pages-loader Change index.html 3.75 kB 3.75 kB ✓ index.html gzip 960 B 958 B -2 B link.html 3.79 kB 3.79 kB ✓ link.html gzip 969 B 967 B -2 B withRouter.html 3.8 kB 3.8 kB ✓ withRouter.html gzip 955 B 954 B -1 B Overall change 11.3 kB 11.3 kB ✓ Diffs Diff for main-HASH.js @@ -1592,19 +1592,14 @@ function () { var register = function register() { try { - var _regFn = regFn(), - error = _regFn.error, - page = _regFn.page; - - _this5.pageCache[route] = { - error: error, - page: page + var mod = regFn(); + var pageData = { + page: mod["default"] || mod, + mod: mod }; + _this5.pageCache[route] = pageData; - _this5.pageRegisterEvents.emit(route, { - error: error, - page: page - }); + _this5.pageRegisterEvents.emit(route, pageData); } catch (error) { _this5.pageCache[route] = { error: error Diff for main-HASH.module.js @@ -1466,18 +1466,13 @@ class PageLoader { registerPage(route, regFn) { const register = () => { try { - const { - error, - page - } = regFn(); - this.pageCache[route] = { - error, - page + const mod = regFn(); + const pageData = { + page: mod.default || mod, + mod }; - this.pageRegisterEvents.emit(route, { - error, - page - }); + this.pageCache[route] = pageData; + this.pageRegisterEvents.emit(route, pageData); } catch (error) { this.pageCache[route] = { error Diff for _app.js @@ -192,9 +192,9 @@ function createUrl(router) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/_app", function() { - var page = __webpack_require__("B5Ud") + var mod = __webpack_require__("B5Ud") if(false) {} - return { page: page.default || page } + return mod }]); Diff for _error.js @@ -187,9 +187,9 @@ var styles = { (window.__NEXT_P=window.__NEXT_P||[]).push(["/_error", function() { - var page = __webpack_require__("/a9y") + var mod = __webpack_require__("/a9y") if(false) {} - return { page: page.default || page } + return mod }]); Diff for hooks.js @@ -994,9 +994,9 @@ module.exports = __webpack_require__("jmDH") ? Object.defineProperties : functio (window.__NEXT_P=window.__NEXT_P||[]).push(["/hooks", function() { - var page = __webpack_require__("+MDD") + var mod = __webpack_require__("+MDD") if(false) {} - return { page: page.default || page } + return mod }]); Diff for index.js @@ -22,9 +22,9 @@ Page.getInitialProps = function () { (window.__NEXT_P=window.__NEXT_P||[]).push(["/", function() { - var page = __webpack_require__("RNiq") + var mod = __webpack_require__("RNiq") if(false) {} - return { page: page.default || page } + return mod }]); Diff for link.js @@ -167,9 +167,9 @@ module.exports = function (TYPE, $create) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/link", function() { - var page = __webpack_require__("ObF3") + var mod = __webpack_require__("ObF3") if(false) {} - return { page: page.default || page } + return mod }]); Diff for routerDirect.js @@ -5,9 +5,9 @@ (window.__NEXT_P=window.__NEXT_P||[]).push(["/routerDirect", function() { - var page = __webpack_require__("jSAA") + var mod = __webpack_require__("jSAA") if(false) {} - return { page: page.default || page } + return mod }]); Diff for withRouter.js @@ -30,9 +30,9 @@ useWithRouter.getInitialProps = function () { (window.__NEXT_P=window.__NEXT_P||[]).push(["/withRouter", function() { - var page = __webpack_require__("0Hlz") + var mod = __webpack_require__("0Hlz") if(false) {} - return { page: page.default || page } + return mod }]); Diff for _app.module.js @@ -197,9 +197,9 @@ function createUrl(router) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/_app", function() { - var page = __webpack_require__("B5Ud") + var mod = __webpack_require__("B5Ud") if(false) {} - return { page: page.default || page } + return mod }]); Diff for _error.module.js @@ -163,9 +163,9 @@ const styles = { (window.__NEXT_P=window.__NEXT_P||[]).push(["/_error", function() { - var page = __webpack_require__("/a9y") + var mod = __webpack_require__("/a9y") if(false) {} - return { page: page.default || page } + return mod }]); Diff for hooks.module.js @@ -133,9 +133,9 @@ module.exports = shouldUseNative() ? Object.assign : function (target, source) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/hooks", function() { - var page = __webpack_require__("+MDD") + var mod = __webpack_require__("+MDD") if(false) {} - return { page: page.default || page } + return mod }]); Diff for index.module.js @@ -18,9 +18,9 @@ Page.getInitialProps = () => ({}); (window.__NEXT_P=window.__NEXT_P||[]).push(["/", function() { - var page = __webpack_require__("RNiq") + var mod = __webpack_require__("RNiq") if(false) {} - return { page: page.default || page } + return mod }]); Diff for link.module.js @@ -225,9 +225,9 @@ module.exports = function (TYPE, $create) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/link", function() { - var page = __webpack_require__("ObF3") + var mod = __webpack_require__("ObF3") if(false) {} - return { page: page.default || page } + return mod }]); Diff for routerDirect.module.js @@ -5,9 +5,9 @@ (window.__NEXT_P=window.__NEXT_P||[]).push(["/routerDirect", function() { - var page = __webpack_require__("jSAA") + var mod = __webpack_require__("jSAA") if(false) {} - return { page: page.default || page } + return mod }]); Diff for withRouter.module.js @@ -28,9 +28,9 @@ useWithRouter.getInitialProps = () => ({}); (window.__NEXT_P=window.__NEXT_P||[]).push(["/withRouter", function() { - var page = __webpack_require__("0Hlz") + var mod = __webpack_require__("0Hlz") if(false) {} - return { page: page.default || page } + return mod }]); Diff for index.html @@ -6,19 +6,19 @@ <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1" /> <meta name="next-head-count" content="2" /> - <link rel="preload" href="/_next/static/fs1OZgEHPlfzB1euIrubY/pages/index.module.js" + <link rel="preload" href="/_next/static/FsuImEOYQl6WvZEKDYnhd/pages/index.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/fs1OZgEHPlfzB1euIrubY/pages/_app.module.js" + <link rel="preload" href="/_next/static/FsuImEOYQl6WvZEKDYnhd/pages/_app.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/runtime/webpack-7928590be3ef2e55b835.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/runtime/main-41b570be350e74cf32cb.module.js" + <link rel="preload" href="/_next/static/runtime/main-a4d17bae730952bcdd59.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/chunks/0f157703ca5e1975dd3f9b6e3d41cec2963cb97e.85e4c18b9e4b400e5496.module.js" + <link rel="preload" href="/_next/static/chunks/8958ae5c872524d389373ce3fa86cd26966be846.85e4c18b9e4b400e5496.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/fs1OZgEHPlfzB1euIrubY/_buildManifest.module.js" + <link rel="preload" href="/_next/static/FsuImEOYQl6WvZEKDYnhd/_buildManifest.module.js" as="script" crossorigin="anonymous" /> </head> @@ -26,40 +26,40 @@ <div id="__next">Hello world 👋</div> <script id="__NEXT_DATA__" type="application/json" crossorigin="anonymous"> - {"dataManager":"[]","props":{"pageProps":{}},"page":"/","query":{},"buildId":"fs1OZgEHPlfzB1euIrubY"} + {"dataManager":"[]","props":{"pageProps":{}},"page":"/","query":{},"buildId":"FsuImEOYQl6WvZEKDYnhd"} </script> <script crossorigin="anonymous" nomodule=""> !function(){var e=document,t=e.createElement("script");if(!("noModule"in t)&&"onbeforeload"in t){var n=!1;e.addEventListener("beforeload",function(e){if(e.target===t)n=!0;else if(!e.target.hasAttribute("nomodule")||!n)return;e.preventDefault()},!0),t.type="module",t.src=".",e.head.appendChild(t),t.remove()}}(); </script> - <script async="" data-next-page="/" src="/_next/static/fs1OZgEHPlfzB1euIrubY/pages/index.js" + <script async="" data-next-page="/" src="/_next/static/FsuImEOYQl6WvZEKDYnhd/pages/index.js" crossorigin="anonymous" nomodule=""></script> - <script async="" data-next-page="/" src="/_next/static/fs1OZgEHPlfzB1euIrubY/pages/index.module.js" + <script async="" data-next-page="/" src="/_next/static/FsuImEOYQl6WvZEKDYnhd/pages/index.module.js" crossorigin="anonymous" type="module"></script> - <script async="" data-next-page="/_app" src="/_next/static/fs1OZgEHPlfzB1euIrubY/pages/_app.js" + <script async="" data-next-page="/_app" src="/_next/static/FsuImEOYQl6WvZEKDYnhd/pages/_app.js" crossorigin="anonymous" nomodule=""></script> - <script async="" data-next-page="/_app" src="/_next/static/fs1OZgEHPlfzB1euIrubY/pages/_app.module.js" + <script async="" data-next-page="/_app" src="/_next/static/FsuImEOYQl6WvZEKDYnhd/pages/_app.module.js" crossorigin="anonymous" type="module"></script> <script src="/_next/static/runtime/webpack-a470c2a25bcb4d5a8ec0.js" async="" crossorigin="anonymous" nomodule=""></script> <script src="/_next/static/runtime/webpack-7928590be3ef2e55b835.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/runtime/main-b50e91af3fd1d8cb23a4.js" + <script src="/_next/static/runtime/main-ce1b9d885611679c636a.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/runtime/main-41b570be350e74cf32cb.module.js" + <script src="/_next/static/runtime/main-a4d17bae730952bcdd59.module.js" async="" crossorigin="anonymous" type="module"></script> <script src="/_next/static/chunks/framework.cdb73e402d876d4ac87f.js" async="" crossorigin="anonymous" nomodule=""></script> <script src="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/chunks/bf1819760a49119883cb6326c7a4ab13a4898650.155621535702fe040780.js" + <script src="/_next/static/chunks/4e1bea42e686f9e3298f3d1c94c40d7baa92cf04.155621535702fe040780.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/0f157703ca5e1975dd3f9b6e3d41cec2963cb97e.474e0ebc58bce106266f.js" + <script src="/_next/static/chunks/8958ae5c872524d389373ce3fa86cd26966be846.474e0ebc58bce106266f.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/0f157703ca5e1975dd3f9b6e3d41cec2963cb97e.85e4c18b9e4b400e5496.module.js" + <script src="/_next/static/chunks/8958ae5c872524d389373ce3fa86cd26966be846.85e4c18b9e4b400e5496.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/fs1OZgEHPlfzB1euIrubY/_buildManifest.js" + <script src="/_next/static/FsuImEOYQl6WvZEKDYnhd/_buildManifest.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/fs1OZgEHPlfzB1euIrubY/_buildManifest.module.js" + <script src="/_next/static/FsuImEOYQl6WvZEKDYnhd/_buildManifest.module.js" async="" crossorigin="anonymous" type="module"></script> </body> Diff for link.html @@ -6,19 +6,19 @@ <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1" /> <meta name="next-head-count" content="2" /> - <link rel="preload" href="/_next/static/fs1OZgEHPlfzB1euIrubY/pages/link.module.js" + <link rel="preload" href="/_next/static/FsuImEOYQl6WvZEKDYnhd/pages/link.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/fs1OZgEHPlfzB1euIrubY/pages/_app.module.js" + <link rel="preload" href="/_next/static/FsuImEOYQl6WvZEKDYnhd/pages/_app.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/runtime/webpack-7928590be3ef2e55b835.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/chunks/0f157703ca5e1975dd3f9b6e3d41cec2963cb97e.85e4c18b9e4b400e5496.module.js" + <link rel="preload" href="/_next/static/chunks/8958ae5c872524d389373ce3fa86cd26966be846.85e4c18b9e4b400e5496.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/runtime/main-41b570be350e74cf32cb.module.js" + <link rel="preload" href="/_next/static/runtime/main-a4d17bae730952bcdd59.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/fs1OZgEHPlfzB1euIrubY/_buildManifest.module.js" + <link rel="preload" href="/_next/static/FsuImEOYQl6WvZEKDYnhd/_buildManifest.module.js" as="script" crossorigin="anonymous" /> </head> @@ -29,18 +29,18 @@ </div> </div> <script id="__NEXT_DATA__" type="application/json" crossorigin="anonymous"> - {"dataManager":"[]","props":{"pageProps":{}},"page":"/link","query":{},"buildId":"fs1OZgEHPlfzB1euIrubY"} + {"dataManager":"[]","props":{"pageProps":{}},"page":"/link","query":{},"buildId":"FsuImEOYQl6WvZEKDYnhd"} </script> <script crossorigin="anonymous" nomodule=""> !function(){var e=document,t=e.createElement("script");if(!("noModule"in t)&&"onbeforeload"in t){var n=!1;e.addEventListener("beforeload",function(e){if(e.target===t)n=!0;else if(!e.target.hasAttribute("nomodule")||!n)return;e.preventDefault()},!0),t.type="module",t.src=".",e.head.appendChild(t),t.remove()}}(); </script> - <script async="" data-next-page="/link" src="/_next/static/fs1OZgEHPlfzB1euIrubY/pages/link.js" + <script async="" data-next-page="/link" src="/_next/static/FsuImEOYQl6WvZEKDYnhd/pages/link.js" crossorigin="anonymous" nomodule=""></script> - <script async="" data-next-page="/link" src="/_next/static/fs1OZgEHPlfzB1euIrubY/pages/link.module.js" + <script async="" data-next-page="/link" src="/_next/static/FsuImEOYQl6WvZEKDYnhd/pages/link.module.js" crossorigin="anonymous" type="module"></script> - <script async="" data-next-page="/_app" src="/_next/static/fs1OZgEHPlfzB1euIrubY/pages/_app.js" + <script async="" data-next-page="/_app" src="/_next/static/FsuImEOYQl6WvZEKDYnhd/pages/_app.js" crossorigin="anonymous" nomodule=""></script> - <script async="" data-next-page="/_app" src="/_next/static/fs1OZgEHPlfzB1euIrubY/pages/_app.module.js" + <script async="" data-next-page="/_app" src="/_next/static/FsuImEOYQl6WvZEKDYnhd/pages/_app.module.js" crossorigin="anonymous" type="module"></script> <script src="/_next/static/runtime/webpack-a470c2a25bcb4d5a8ec0.js" async="" crossorigin="anonymous" nomodule=""></script> @@ -50,19 +50,19 @@ async="" crossorigin="anonymous" nomodule=""></script> <script src="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/chunks/bf1819760a49119883cb6326c7a4ab13a4898650.155621535702fe040780.js" + <script src="/_next/static/chunks/4e1bea42e686f9e3298f3d1c94c40d7baa92cf04.155621535702fe040780.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/0f157703ca5e1975dd3f9b6e3d41cec2963cb97e.474e0ebc58bce106266f.js" + <script src="/_next/static/chunks/8958ae5c872524d389373ce3fa86cd26966be846.474e0ebc58bce106266f.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/0f157703ca5e1975dd3f9b6e3d41cec2963cb97e.85e4c18b9e4b400e5496.module.js" + <script src="/_next/static/chunks/8958ae5c872524d389373ce3fa86cd26966be846.85e4c18b9e4b400e5496.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/runtime/main-b50e91af3fd1d8cb23a4.js" + <script src="/_next/static/runtime/main-ce1b9d885611679c636a.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/runtime/main-41b570be350e74cf32cb.module.js" + <script src="/_next/static/runtime/main-a4d17bae730952bcdd59.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/fs1OZgEHPlfzB1euIrubY/_buildManifest.js" + <script src="/_next/static/FsuImEOYQl6WvZEKDYnhd/_buildManifest.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/fs1OZgEHPlfzB1euIrubY/_buildManifest.module.js" + <script src="/_next/static/FsuImEOYQl6WvZEKDYnhd/_buildManifest.module.js" async="" crossorigin="anonymous" type="module"></script> </body> Diff for withRouter.html @@ -6,19 +6,19 @@ <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1" /> <meta name="next-head-count" content="2" /> - <link rel="preload" href="/_next/static/fs1OZgEHPlfzB1euIrubY/pages/withRouter.module.js" + <link rel="preload" href="/_next/static/FsuImEOYQl6WvZEKDYnhd/pages/withRouter.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/fs1OZgEHPlfzB1euIrubY/pages/_app.module.js" + <link rel="preload" href="/_next/static/FsuImEOYQl6WvZEKDYnhd/pages/_app.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/runtime/webpack-7928590be3ef2e55b835.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/chunks/0f157703ca5e1975dd3f9b6e3d41cec2963cb97e.85e4c18b9e4b400e5496.module.js" + <link rel="preload" href="/_next/static/chunks/8958ae5c872524d389373ce3fa86cd26966be846.85e4c18b9e4b400e5496.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/runtime/main-41b570be350e74cf32cb.module.js" + <link rel="preload" href="/_next/static/runtime/main-a4d17bae730952bcdd59.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/fs1OZgEHPlfzB1euIrubY/_buildManifest.module.js" + <link rel="preload" href="/_next/static/FsuImEOYQl6WvZEKDYnhd/_buildManifest.module.js" as="script" crossorigin="anonymous" /> </head> @@ -27,18 +27,18 @@ <div>I use withRouter</div> </div> <script id="__NEXT_DATA__" type="application/json" crossorigin="anonymous"> - {"dataManager":"[]","props":{"pageProps":{}},"page":"/withRouter","query":{},"buildId":"fs1OZgEHPlfzB1euIrubY"} + {"dataManager":"[]","props":{"pageProps":{}},"page":"/withRouter","query":{},"buildId":"FsuImEOYQl6WvZEKDYnhd"} </script> <script crossorigin="anonymous" nomodule=""> !function(){var e=document,t=e.createElement("script");if(!("noModule"in t)&&"onbeforeload"in t){var n=!1;e.addEventListener("beforeload",function(e){if(e.target===t)n=!0;else if(!e.target.hasAttribute("nomodule")||!n)return;e.preventDefault()},!0),t.type="module",t.src=".",e.head.appendChild(t),t.remove()}}(); </script> - <script async="" data-next-page="/withRouter" src="/_next/static/fs1OZgEHPlfzB1euIrubY/pages/withRouter.js" + <script async="" data-next-page="/withRouter" src="/_next/static/FsuImEOYQl6WvZEKDYnhd/pages/withRouter.js" crossorigin="anonymous" nomodule=""></script> - <script async="" data-next-page="/withRouter" src="/_next/static/fs1OZgEHPlfzB1euIrubY/pages/withRouter.module.js" + <script async="" data-next-page="/withRouter" src="/_next/static/FsuImEOYQl6WvZEKDYnhd/pages/withRouter.module.js" crossorigin="anonymous" type="module"></script> - <script async="" data-next-page="/_app" src="/_next/static/fs1OZgEHPlfzB1euIrubY/pages/_app.js" + <script async="" data-next-page="/_app" src="/_next/static/FsuImEOYQl6WvZEKDYnhd/pages/_app.js" crossorigin="anonymous" nomodule=""></script> - <script async="" data-next-page="/_app" src="/_next/static/fs1OZgEHPlfzB1euIrubY/pages/_app.module.js" + <script async="" data-next-page="/_app" src="/_next/static/FsuImEOYQl6WvZEKDYnhd/pages/_app.module.js" crossorigin="anonymous" type="module"></script> <script src="/_next/static/runtime/webpack-a470c2a25bcb4d5a8ec0.js" async="" crossorigin="anonymous" nomodule=""></script> @@ -48,19 +48,19 @@ async="" crossorigin="anonymous" nomodule=""></script> <script src="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/chunks/bf1819760a49119883cb6326c7a4ab13a4898650.155621535702fe040780.js" + <script src="/_next/static/chunks/4e1bea42e686f9e3298f3d1c94c40d7baa92cf04.155621535702fe040780.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/0f157703ca5e1975dd3f9b6e3d41cec2963cb97e.474e0ebc58bce106266f.js" + <script src="/_next/static/chunks/8958ae5c872524d389373ce3fa86cd26966be846.474e0ebc58bce106266f.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/0f157703ca5e1975dd3f9b6e3d41cec2963cb97e.85e4c18b9e4b400e5496.module.js" + <script src="/_next/static/chunks/8958ae5c872524d389373ce3fa86cd26966be846.85e4c18b9e4b400e5496.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/runtime/main-b50e91af3fd1d8cb23a4.js" + <script src="/_next/static/runtime/main-ce1b9d885611679c636a.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/runtime/main-41b570be350e74cf32cb.module.js" + <script src="/_next/static/runtime/main-a4d17bae730952bcdd59.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/fs1OZgEHPlfzB1euIrubY/_buildManifest.js" + <script src="/_next/static/FsuImEOYQl6WvZEKDYnhd/_buildManifest.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/fs1OZgEHPlfzB1euIrubY/_buildManifest.module.js" + <script src="/_next/static/FsuImEOYQl6WvZEKDYnhd/_buildManifest.module.js" async="" crossorigin="anonymous" type="module"></script> </body> Serverless Mode (Increase detected ⚠️) General Overall increase ⚠️ zeit/next.js canary ijjk/next.js update/pages-loader Change buildDuration 21.3s 21s -282ms nodeModulesSize 42 MB 42 MB ⚠️ +4 B Client Bundles (main, webpack, commons) Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change main-HASH.js 18.2 kB 18.2 kB -21 B main-HASH.js gzip 6.64 kB 6.65 kB ⚠️ +4 B webpack-HASH.js 1.53 kB 1.53 kB ✓ webpack-HASH.js gzip 746 B 746 B ✓ 0b9c4090fb220e328c9651189d4dbf603b0d832b.1f064d5355d2b8407376.js 21.9 kB N/A N/A 0b9c4090fb220e328c9651189d4dbf603b0d832b.1f064d5355d2b8407376.js gzip 7.81 kB N/A N/A e7dc15d5ee88cff3bb39449b104a40519998dbf8.e2c00d0314f283e7a4a0.js 42.9 kB N/A N/A e7dc15d5ee88cff3bb39449b104a40519998dbf8.e2c00d0314f283e7a4a0.js gzip 15.4 kB N/A N/A framework.5b4f940f1eadbaff70d3.js 125 kB 125 kB ✓ framework.5b4f940f1eadbaff70d3.js gzip 39.4 kB 39.4 kB ✓ 614ada58a2ed02f7c22e6d496bb1f5e3e7767090.e2c00d0314f283e7a4a0.js N/A 42.9 kB N/A 614ada58a2ed02f7c22e6d496bb1f5e3e7767090.e2c00d0314f283e7a4a0.js gzip N/A 15.4 kB N/A 9adf8b109b2d0878b9ddcbd54475f68ad49267b8.1f064d5355d2b8407376.js N/A 21.9 kB N/A 9adf8b109b2d0878b9ddcbd54475f68ad49267b8.1f064d5355d2b8407376.js gzip N/A 7.81 kB N/A Overall change 210 kB 210 kB -21 B Client Bundles (main, webpack, commons) Modern Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change main-HASH.module.js 16.6 kB 16.5 kB -16 B main-HASH.module.js gzip 6.38 kB 6.39 kB ⚠️ +3 B webpack-HASH.module.js 1.53 kB 1.53 kB ✓ webpack-HASH.module.js gzip 746 B 746 B ✓ e7dc15d5ee88cff3bb39449b104a40519998dbf8.36c6b20a7d953b3f28f0.module.js 45.5 kB N/A N/A e7dc15d5ee88cff3bb39449b104a40519998dbf8.36c6b20a7d953b3f28f0.module.js gzip 16.5 kB N/A N/A framework.5b4f940f1eadbaff70d3.module.js 125 kB 125 kB ✓ framework.5b4f940f1eadbaff70d3.module.js gzip 39.4 kB 39.4 kB ✓ 614ada58a2ed02f7c22e6d496bb1f5e3e7767090.36c6b20a7d953b3f28f0.module.js N/A 45.5 kB N/A 614ada58a2ed02f7c22e6d496bb1f5e3e7767090.36c6b20a7d953b3f28f0.module.js gzip N/A 16.5 kB N/A Overall change 189 kB 189 kB -16 B Client Pages Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change _app.js 1.83 kB 1.81 kB -25 B _app.js gzip 883 B 873 B -10 B _error.js 12.1 kB 12 kB -25 B _error.js gzip 4.74 kB 4.73 kB -11 B hooks.js 12.7 kB 12.7 kB -25 B hooks.js gzip 4.81 kB 4.79 kB -16 B index.js 343 B 318 B -25 B index.js gzip 237 B 222 B -15 B link.js 8.14 kB 8.11 kB -25 B link.js gzip 3.49 kB 3.48 kB -15 B routerDirect.js 433 B 408 B -25 B routerDirect.js gzip 296 B 281 B -15 B withRouter.js 444 B 419 B -25 B withRouter.js gzip 294 B 280 B -14 B Overall change 36 kB 35.8 kB -175 B Client Pages Modern Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change _app.module.js 1.73 kB 1.7 kB -25 B _app.module.js gzip 841 B 832 B -9 B _error.module.js 23.3 kB 23.3 kB -25 B _error.module.js gzip 8.6 kB 8.59 kB -9 B hooks.module.js 1.55 kB 1.52 kB -25 B hooks.module.js gzip 804 B 793 B -11 B index.module.js 319 B 294 B -25 B index.module.js gzip 238 B 223 B -15 B link.module.js 8.52 kB 8.5 kB -25 B link.module.js gzip 3.67 kB 3.66 kB -12 B routerDirect.module.js 419 B 394 B -25 B routerDirect.module.js gzip 294 B 281 B -13 B withRouter.module.js 429 B 404 B -25 B withRouter.module.js gzip 293 B 278 B -15 B Overall change 36.2 kB 36.1 kB -175 B Client Build Manifests zeit/next.js canary ijjk/next.js update/pages-loader Change _buildManifest.js 81 B 81 B ✓ _buildManifest.js gzip 61 B 61 B ✓ _buildManifest.module.js 81 B 81 B ✓ _buildManifest.module.js gzip 61 B 61 B ✓ Overall change 162 B 162 B ✓ Serverless bundles zeit/next.js canary ijjk/next.js update/pages-loader Change _error.js 247 kB 247 kB ✓ _error.js gzip 66.1 kB 66.2 kB ⚠️ +49 B hooks.html 3.86 kB 3.86 kB ✓ hooks.html gzip 989 B 986 B -3 B index.js 248 kB 248 kB ✓ index.js gzip 66.5 kB 66.5 kB ✓ link.js 255 kB 255 kB ✓ link.js gzip 68.5 kB 68.6 kB ⚠️ +62 B routerDirect.js 249 kB 249 kB ✓ routerDirect.js gzip 66.5 kB 66.5 kB -36 B withRouter.js 249 kB 249 kB ✓ withRouter.js gzip 66.6 kB 66.6 kB ⚠️ +9 B Overall change 1.25 MB 1.25 MB ✓ Stats from current PR Default Server Mode (Increase detected ⚠️) General Overall increase ⚠️ zeit/next.js canary ijjk/next.js update/pages-loader Change buildDuration 20.8s 20.3s -540ms nodeModulesSize 42 MB 42 MB ⚠️ +22 B Client Bundles (main, webpack, commons) Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change main-HASH.js 18.2 kB 18.2 kB -21 B main-HASH.js gzip 6.64 kB 6.64 kB ⚠️ +3 B webpack-HASH.js 1.53 kB 1.53 kB ✓ webpack-HASH.js gzip 746 B 746 B ✓ 02e96bea6002b1e7e3b7ff1582e5e44afbb10312.1f064d5355d2b8407376.js 21.9 kB N/A N/A 02e96bea6002b1e7e3b7ff1582e5e44afbb10312.1f064d5355d2b8407376.js gzip 7.81 kB N/A N/A aa9e83ee4e27f4e074dbf2c0f4226f75c972a446.e2c00d0314f283e7a4a0.js 42.9 kB N/A N/A aa9e83ee4e27f4e074dbf2c0f4226f75c972a446.e2c00d0314f283e7a4a0.js gzip 15.4 kB N/A N/A framework.5b4f940f1eadbaff70d3.js 125 kB 125 kB ✓ framework.5b4f940f1eadbaff70d3.js gzip 39.4 kB 39.4 kB ✓ 07ce4002a054bad2ca1fe42e6f85b3f285920332.1f064d5355d2b8407376.js N/A 21.9 kB N/A 07ce4002a054bad2ca1fe42e6f85b3f285920332.1f064d5355d2b8407376.js gzip N/A 7.81 kB N/A 7d12ff410d2b5f204e647412fef88f2cbdf5f5eb.f25284f1b3c43dcf0c13.js N/A 42.9 kB N/A 7d12ff410d2b5f204e647412fef88f2cbdf5f5eb.f25284f1b3c43dcf0c13.js gzip N/A 15.4 kB N/A Overall change 210 kB 210 kB -21 B Client Bundles (main, webpack, commons) Modern Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change main-HASH.module.js 16.6 kB 16.5 kB -16 B main-HASH.module.js gzip 6.38 kB 6.39 kB ⚠️ +3 B webpack-HASH.module.js 1.53 kB 1.53 kB ✓ webpack-HASH.module.js gzip 746 B 746 B ✓ aa9e83ee4e27f4e074dbf2c0f4226f75c972a446.36c6b20a7d953b3f28f0.module.js 45.5 kB N/A N/A aa9e83ee4e27f4e074dbf2c0f4226f75c972a446.36c6b20a7d953b3f28f0.module.js gzip 16.5 kB N/A N/A framework.5b4f940f1eadbaff70d3.module.js 125 kB 125 kB ✓ framework.5b4f940f1eadbaff70d3.module.js gzip 39.4 kB 39.4 kB ✓ 7d12ff410d2b5f204e647412fef88f2cbdf5f5eb.cf6d931f31c40199c75f.module.js N/A 45.5 kB N/A 7d12ff410d2b5f204e647412fef88f2cbdf5f5eb.cf6d931f31c40199c75f.module.js gzip N/A 16.5 kB N/A Overall change 189 kB 189 kB -16 B Client Pages Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change _app.js 1.83 kB 1.81 kB -25 B _app.js gzip 883 B 873 B -10 B _error.js 12.1 kB 12 kB -25 B _error.js gzip 4.74 kB 4.73 kB -11 B hooks.js 12.7 kB 12.7 kB -25 B hooks.js gzip 4.81 kB 4.79 kB -16 B index.js 343 B 318 B -25 B index.js gzip 237 B 222 B -15 B link.js 8.14 kB 8.11 kB -25 B link.js gzip 3.49 kB 3.48 kB -15 B routerDirect.js 433 B 408 B -25 B routerDirect.js gzip 296 B 281 B -15 B withRouter.js 444 B 419 B -25 B withRouter.js gzip 294 B 280 B -14 B Overall change 36 kB 35.8 kB -175 B Client Pages Modern Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change _app.module.js 1.73 kB 1.7 kB -25 B _app.module.js gzip 841 B 832 B -9 B _error.module.js 23.3 kB 23.3 kB -25 B _error.module.js gzip 8.6 kB 8.59 kB -9 B hooks.module.js 1.55 kB 1.52 kB -25 B hooks.module.js gzip 804 B 793 B -11 B index.module.js 319 B 294 B -25 B index.module.js gzip 238 B 223 B -15 B link.module.js 8.52 kB 8.5 kB -25 B link.module.js gzip 3.67 kB 3.66 kB -12 B routerDirect.module.js 419 B 394 B -25 B routerDirect.module.js gzip 294 B 281 B -13 B withRouter.module.js 429 B 404 B -25 B withRouter.module.js gzip 293 B 278 B -15 B Overall change 36.2 kB 36.1 kB -175 B Client Build Manifests zeit/next.js canary ijjk/next.js update/pages-loader Change _buildManifest.js 81 B 81 B ✓ _buildManifest.js gzip 61 B 61 B ✓ _buildManifest.module.js 81 B 81 B ✓ _buildManifest.module.js gzip 61 B 61 B ✓ Overall change 162 B 162 B ✓ Rendered Page Sizes zeit/next.js canary ijjk/next.js update/pages-loader Change index.html 3.75 kB 3.75 kB ✓ index.html gzip 958 B 960 B ⚠️ +2 B link.html 3.79 kB 3.79 kB ✓ link.html gzip 966 B 968 B ⚠️ +2 B withRouter.html 3.8 kB 3.8 kB ✓ withRouter.html gzip 954 B 955 B ⚠️ +1 B Overall change 11.3 kB 11.3 kB ✓ Diffs Diff for main-HASH.js @@ -1592,19 +1592,14 @@ function () { var register = function register() { try { - var _regFn = regFn(), - error = _regFn.error, - page = _regFn.page; - - _this5.pageCache[route] = { - error: error, - page: page + var mod = regFn(); + var pageData = { + page: mod["default"] || mod, + mod: mod }; + _this5.pageCache[route] = pageData; - _this5.pageRegisterEvents.emit(route, { - error: error, - page: page - }); + _this5.pageRegisterEvents.emit(route, pageData); } catch (error) { _this5.pageCache[route] = { error: error Diff for main-HASH.module.js @@ -1466,18 +1466,13 @@ class PageLoader { registerPage(route, regFn) { const register = () => { try { - const { - error, - page - } = regFn(); - this.pageCache[route] = { - error, - page + const mod = regFn(); + const pageData = { + page: mod.default || mod, + mod }; - this.pageRegisterEvents.emit(route, { - error, - page - }); + this.pageCache[route] = pageData; + this.pageRegisterEvents.emit(route, pageData); } catch (error) { this.pageCache[route] = { error Diff for _app.js @@ -192,9 +192,9 @@ function createUrl(router) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/_app", function() { - var page = __webpack_require__("B5Ud") + var mod = __webpack_require__("B5Ud") if(false) {} - return { page: page.default || page } + return mod }]); Diff for _error.js @@ -187,9 +187,9 @@ var styles = { (window.__NEXT_P=window.__NEXT_P||[]).push(["/_error", function() { - var page = __webpack_require__("/a9y") + var mod = __webpack_require__("/a9y") if(false) {} - return { page: page.default || page } + return mod }]); Diff for hooks.js @@ -994,9 +994,9 @@ module.exports = __webpack_require__("jmDH") ? Object.defineProperties : functio (window.__NEXT_P=window.__NEXT_P||[]).push(["/hooks", function() { - var page = __webpack_require__("+MDD") + var mod = __webpack_require__("+MDD") if(false) {} - return { page: page.default || page } + return mod }]); Diff for index.js @@ -22,9 +22,9 @@ Page.getInitialProps = function () { (window.__NEXT_P=window.__NEXT_P||[]).push(["/", function() { - var page = __webpack_require__("RNiq") + var mod = __webpack_require__("RNiq") if(false) {} - return { page: page.default || page } + return mod }]); Diff for link.js @@ -167,9 +167,9 @@ module.exports = function (TYPE, $create) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/link", function() { - var page = __webpack_require__("ObF3") + var mod = __webpack_require__("ObF3") if(false) {} - return { page: page.default || page } + return mod }]); Diff for routerDirect.js @@ -5,9 +5,9 @@ (window.__NEXT_P=window.__NEXT_P||[]).push(["/routerDirect", function() { - var page = __webpack_require__("jSAA") + var mod = __webpack_require__("jSAA") if(false) {} - return { page: page.default || page } + return mod }]); Diff for withRouter.js @@ -30,9 +30,9 @@ useWithRouter.getInitialProps = function () { (window.__NEXT_P=window.__NEXT_P||[]).push(["/withRouter", function() { - var page = __webpack_require__("0Hlz") + var mod = __webpack_require__("0Hlz") if(false) {} - return { page: page.default || page } + return mod }]); Diff for _app.module.js @@ -197,9 +197,9 @@ function createUrl(router) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/_app", function() { - var page = __webpack_require__("B5Ud") + var mod = __webpack_require__("B5Ud") if(false) {} - return { page: page.default || page } + return mod }]); Diff for _error.module.js @@ -163,9 +163,9 @@ const styles = { (window.__NEXT_P=window.__NEXT_P||[]).push(["/_error", function() { - var page = __webpack_require__("/a9y") + var mod = __webpack_require__("/a9y") if(false) {} - return { page: page.default || page } + return mod }]); Diff for hooks.module.js @@ -133,9 +133,9 @@ module.exports = shouldUseNative() ? Object.assign : function (target, source) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/hooks", function() { - var page = __webpack_require__("+MDD") + var mod = __webpack_require__("+MDD") if(false) {} - return { page: page.default || page } + return mod }]); Diff for index.module.js @@ -18,9 +18,9 @@ Page.getInitialProps = () => ({}); (window.__NEXT_P=window.__NEXT_P||[]).push(["/", function() { - var page = __webpack_require__("RNiq") + var mod = __webpack_require__("RNiq") if(false) {} - return { page: page.default || page } + return mod }]); Diff for link.module.js @@ -225,9 +225,9 @@ module.exports = function (TYPE, $create) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/link", function() { - var page = __webpack_require__("ObF3") + var mod = __webpack_require__("ObF3") if(false) {} - return { page: page.default || page } + return mod }]); Diff for routerDirect.module.js @@ -5,9 +5,9 @@ (window.__NEXT_P=window.__NEXT_P||[]).push(["/routerDirect", function() { - var page = __webpack_require__("jSAA") + var mod = __webpack_require__("jSAA") if(false) {} - return { page: page.default || page } + return mod }]); Diff for withRouter.module.js @@ -28,9 +28,9 @@ useWithRouter.getInitialProps = () => ({}); (window.__NEXT_P=window.__NEXT_P||[]).push(["/withRouter", function() { - var page = __webpack_require__("0Hlz") + var mod = __webpack_require__("0Hlz") if(false) {} - return { page: page.default || page } + return mod }]); Diff for index.html @@ -6,19 +6,19 @@ <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1" /> <meta name="next-head-count" content="2" /> - <link rel="preload" href="/_next/static/p7_J87W0DtMxO4CAxEmE7/pages/index.module.js" + <link rel="preload" href="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/pages/index.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/p7_J87W0DtMxO4CAxEmE7/pages/_app.module.js" + <link rel="preload" href="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/pages/_app.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/runtime/webpack-7928590be3ef2e55b835.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/runtime/main-e3367c6cc0a826287f74.module.js" + <link rel="preload" href="/_next/static/runtime/main-92ec30fa72713e11d3f8.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/chunks/ffa04990267bd9c3196713452ab399b827611a5e.85e4c18b9e4b400e5496.module.js" + <link rel="preload" href="/_next/static/chunks/911d5a77a22ff0c372fad4bd041155b4fbc95719.148b9d567c5ec499c554.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/p7_J87W0DtMxO4CAxEmE7/_buildManifest.module.js" + <link rel="preload" href="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/_buildManifest.module.js" as="script" crossorigin="anonymous" /> </head> @@ -26,40 +26,40 @@ <div id="__next">Hello world 👋</div> <script id="__NEXT_DATA__" type="application/json" crossorigin="anonymous"> - {"dataManager":"[]","props":{"pageProps":{}},"page":"/","query":{},"buildId":"p7_J87W0DtMxO4CAxEmE7"} + {"dataManager":"[]","props":{"pageProps":{}},"page":"/","query":{},"buildId":"iJ-OhyXGH5qWcKR-4vhzD"} </script> <script crossorigin="anonymous" nomodule=""> !function(){var e=document,t=e.createElement("script");if(!("noModule"in t)&&"onbeforeload"in t){var n=!1;e.addEventListener("beforeload",function(e){if(e.target===t)n=!0;else if(!e.target.hasAttribute("nomodule")||!n)return;e.preventDefault()},!0),t.type="module",t.src=".",e.head.appendChild(t),t.remove()}}(); </script> - <script async="" data-next-page="/" src="/_next/static/p7_J87W0DtMxO4CAxEmE7/pages/index.js" + <script async="" data-next-page="/" src="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/pages/index.js" crossorigin="anonymous" nomodule=""></script> - <script async="" data-next-page="/" src="/_next/static/p7_J87W0DtMxO4CAxEmE7/pages/index.module.js" + <script async="" data-next-page="/" src="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/pages/index.module.js" crossorigin="anonymous" type="module"></script> - <script async="" data-next-page="/_app" src="/_next/static/p7_J87W0DtMxO4CAxEmE7/pages/_app.js" + <script async="" data-next-page="/_app" src="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/pages/_app.js" crossorigin="anonymous" nomodule=""></script> - <script async="" data-next-page="/_app" src="/_next/static/p7_J87W0DtMxO4CAxEmE7/pages/_app.module.js" + <script async="" data-next-page="/_app" src="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/pages/_app.module.js" crossorigin="anonymous" type="module"></script> <script src="/_next/static/runtime/webpack-a470c2a25bcb4d5a8ec0.js" async="" crossorigin="anonymous" nomodule=""></script> <script src="/_next/static/runtime/webpack-7928590be3ef2e55b835.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/runtime/main-26e9253859bbcb659328.js" + <script src="/_next/static/runtime/main-beb6b90fe8912bd625c7.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/runtime/main-e3367c6cc0a826287f74.module.js" + <script src="/_next/static/runtime/main-92ec30fa72713e11d3f8.module.js" async="" crossorigin="anonymous" type="module"></script> <script src="/_next/static/chunks/framework.cdb73e402d876d4ac87f.js" async="" crossorigin="anonymous" nomodule=""></script> <script src="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/chunks/701ddc129911d304584fde10aa4780764559d9e6.155621535702fe040780.js" + <script src="/_next/static/chunks/83c391899b7a81106c9d2af9129da70801099484.155621535702fe040780.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/ffa04990267bd9c3196713452ab399b827611a5e.474e0ebc58bce106266f.js" + <script src="/_next/static/chunks/911d5a77a22ff0c372fad4bd041155b4fbc95719.4bfb2de05fabca397883.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/ffa04990267bd9c3196713452ab399b827611a5e.85e4c18b9e4b400e5496.module.js" + <script src="/_next/static/chunks/911d5a77a22ff0c372fad4bd041155b4fbc95719.148b9d567c5ec499c554.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/p7_J87W0DtMxO4CAxEmE7/_buildManifest.js" + <script src="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/_buildManifest.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/p7_J87W0DtMxO4CAxEmE7/_buildManifest.module.js" + <script src="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/_buildManifest.module.js" async="" crossorigin="anonymous" type="module"></script> </body> Diff for link.html @@ -6,19 +6,19 @@ <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1" /> <meta name="next-head-count" content="2" /> - <link rel="preload" href="/_next/static/p7_J87W0DtMxO4CAxEmE7/pages/link.module.js" + <link rel="preload" href="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/pages/link.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/p7_J87W0DtMxO4CAxEmE7/pages/_app.module.js" + <link rel="preload" href="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/pages/_app.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/runtime/webpack-7928590be3ef2e55b835.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/chunks/ffa04990267bd9c3196713452ab399b827611a5e.85e4c18b9e4b400e5496.module.js" + <link rel="preload" href="/_next/static/chunks/911d5a77a22ff0c372fad4bd041155b4fbc95719.148b9d567c5ec499c554.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/runtime/main-e3367c6cc0a826287f74.module.js" + <link rel="preload" href="/_next/static/runtime/main-92ec30fa72713e11d3f8.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/p7_J87W0DtMxO4CAxEmE7/_buildManifest.module.js" + <link rel="preload" href="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/_buildManifest.module.js" as="script" crossorigin="anonymous" /> </head> @@ -29,18 +29,18 @@ </div> </div> <script id="__NEXT_DATA__" type="application/json" crossorigin="anonymous"> - {"dataManager":"[]","props":{"pageProps":{}},"page":"/link","query":{},"buildId":"p7_J87W0DtMxO4CAxEmE7"} + {"dataManager":"[]","props":{"pageProps":{}},"page":"/link","query":{},"buildId":"iJ-OhyXGH5qWcKR-4vhzD"} </script> <script crossorigin="anonymous" nomodule=""> !function(){var e=document,t=e.createElement("script");if(!("noModule"in t)&&"onbeforeload"in t){var n=!1;e.addEventListener("beforeload",function(e){if(e.target===t)n=!0;else if(!e.target.hasAttribute("nomodule")||!n)return;e.preventDefault()},!0),t.type="module",t.src=".",e.head.appendChild(t),t.remove()}}(); </script> - <script async="" data-next-page="/link" src="/_next/static/p7_J87W0DtMxO4CAxEmE7/pages/link.js" + <script async="" data-next-page="/link" src="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/pages/link.js" crossorigin="anonymous" nomodule=""></script> - <script async="" data-next-page="/link" src="/_next/static/p7_J87W0DtMxO4CAxEmE7/pages/link.module.js" + <script async="" data-next-page="/link" src="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/pages/link.module.js" crossorigin="anonymous" type="module"></script> - <script async="" data-next-page="/_app" src="/_next/static/p7_J87W0DtMxO4CAxEmE7/pages/_app.js" + <script async="" data-next-page="/_app" src="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/pages/_app.js" crossorigin="anonymous" nomodule=""></script> - <script async="" data-next-page="/_app" src="/_next/static/p7_J87W0DtMxO4CAxEmE7/pages/_app.module.js" + <script async="" data-next-page="/_app" src="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/pages/_app.module.js" crossorigin="anonymous" type="module"></script> <script src="/_next/static/runtime/webpack-a470c2a25bcb4d5a8ec0.js" async="" crossorigin="anonymous" nomodule=""></script> @@ -50,19 +50,19 @@ async="" crossorigin="anonymous" nomodule=""></script> <script src="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/chunks/701ddc129911d304584fde10aa4780764559d9e6.155621535702fe040780.js" + <script src="/_next/static/chunks/83c391899b7a81106c9d2af9129da70801099484.155621535702fe040780.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/ffa04990267bd9c3196713452ab399b827611a5e.474e0ebc58bce106266f.js" + <script src="/_next/static/chunks/911d5a77a22ff0c372fad4bd041155b4fbc95719.4bfb2de05fabca397883.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/ffa04990267bd9c3196713452ab399b827611a5e.85e4c18b9e4b400e5496.module.js" + <script src="/_next/static/chunks/911d5a77a22ff0c372fad4bd041155b4fbc95719.148b9d567c5ec499c554.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/runtime/main-26e9253859bbcb659328.js" + <script src="/_next/static/runtime/main-beb6b90fe8912bd625c7.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/runtime/main-e3367c6cc0a826287f74.module.js" + <script src="/_next/static/runtime/main-92ec30fa72713e11d3f8.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/p7_J87W0DtMxO4CAxEmE7/_buildManifest.js" + <script src="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/_buildManifest.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/p7_J87W0DtMxO4CAxEmE7/_buildManifest.module.js" + <script src="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/_buildManifest.module.js" async="" crossorigin="anonymous" type="module"></script> </body> Diff for withRouter.html @@ -6,19 +6,19 @@ <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1" /> <meta name="next-head-count" content="2" /> - <link rel="preload" href="/_next/static/p7_J87W0DtMxO4CAxEmE7/pages/withRouter.module.js" + <link rel="preload" href="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/pages/withRouter.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/p7_J87W0DtMxO4CAxEmE7/pages/_app.module.js" + <link rel="preload" href="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/pages/_app.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/runtime/webpack-7928590be3ef2e55b835.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/chunks/ffa04990267bd9c3196713452ab399b827611a5e.85e4c18b9e4b400e5496.module.js" + <link rel="preload" href="/_next/static/chunks/911d5a77a22ff0c372fad4bd041155b4fbc95719.148b9d567c5ec499c554.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/runtime/main-e3367c6cc0a826287f74.module.js" + <link rel="preload" href="/_next/static/runtime/main-92ec30fa72713e11d3f8.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/p7_J87W0DtMxO4CAxEmE7/_buildManifest.module.js" + <link rel="preload" href="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/_buildManifest.module.js" as="script" crossorigin="anonymous" /> </head> @@ -27,18 +27,18 @@ <div>I use withRouter</div> </div> <script id="__NEXT_DATA__" type="application/json" crossorigin="anonymous"> - {"dataManager":"[]","props":{"pageProps":{}},"page":"/withRouter","query":{},"buildId":"p7_J87W0DtMxO4CAxEmE7"} + {"dataManager":"[]","props":{"pageProps":{}},"page":"/withRouter","query":{},"buildId":"iJ-OhyXGH5qWcKR-4vhzD"} </script> <script crossorigin="anonymous" nomodule=""> !function(){var e=document,t=e.createElement("script");if(!("noModule"in t)&&"onbeforeload"in t){var n=!1;e.addEventListener("beforeload",function(e){if(e.target===t)n=!0;else if(!e.target.hasAttribute("nomodule")||!n)return;e.preventDefault()},!0),t.type="module",t.src=".",e.head.appendChild(t),t.remove()}}(); </script> - <script async="" data-next-page="/withRouter" src="/_next/static/p7_J87W0DtMxO4CAxEmE7/pages/withRouter.js" + <script async="" data-next-page="/withRouter" src="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/pages/withRouter.js" crossorigin="anonymous" nomodule=""></script> - <script async="" data-next-page="/withRouter" src="/_next/static/p7_J87W0DtMxO4CAxEmE7/pages/withRouter.module.js" + <script async="" data-next-page="/withRouter" src="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/pages/withRouter.module.js" crossorigin="anonymous" type="module"></script> - <script async="" data-next-page="/_app" src="/_next/static/p7_J87W0DtMxO4CAxEmE7/pages/_app.js" + <script async="" data-next-page="/_app" src="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/pages/_app.js" crossorigin="anonymous" nomodule=""></script> - <script async="" data-next-page="/_app" src="/_next/static/p7_J87W0DtMxO4CAxEmE7/pages/_app.module.js" + <script async="" data-next-page="/_app" src="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/pages/_app.module.js" crossorigin="anonymous" type="module"></script> <script src="/_next/static/runtime/webpack-a470c2a25bcb4d5a8ec0.js" async="" crossorigin="anonymous" nomodule=""></script> @@ -48,19 +48,19 @@ async="" crossorigin="anonymous" nomodule=""></script> <script src="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/chunks/701ddc129911d304584fde10aa4780764559d9e6.155621535702fe040780.js" + <script src="/_next/static/chunks/83c391899b7a81106c9d2af9129da70801099484.155621535702fe040780.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/ffa04990267bd9c3196713452ab399b827611a5e.474e0ebc58bce106266f.js" + <script src="/_next/static/chunks/911d5a77a22ff0c372fad4bd041155b4fbc95719.4bfb2de05fabca397883.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/ffa04990267bd9c3196713452ab399b827611a5e.85e4c18b9e4b400e5496.module.js" + <script src="/_next/static/chunks/911d5a77a22ff0c372fad4bd041155b4fbc95719.148b9d567c5ec499c554.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/runtime/main-26e9253859bbcb659328.js" + <script src="/_next/static/runtime/main-beb6b90fe8912bd625c7.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/runtime/main-e3367c6cc0a826287f74.module.js" + <script src="/_next/static/runtime/main-92ec30fa72713e11d3f8.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/p7_J87W0DtMxO4CAxEmE7/_buildManifest.js" + <script src="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/_buildManifest.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/p7_J87W0DtMxO4CAxEmE7/_buildManifest.module.js" + <script src="/_next/static/iJ-OhyXGH5qWcKR-4vhzD/_buildManifest.module.js" async="" crossorigin="anonymous" type="module"></script> </body> Serverless Mode (Increase detected ⚠️) General Overall increase ⚠️ zeit/next.js canary ijjk/next.js update/pages-loader Change buildDuration 21.2s 21.1s -150ms nodeModulesSize 42 MB 42 MB ⚠️ +22 B Client Bundles (main, webpack, commons) Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change main-HASH.js 18.2 kB 18.2 kB -20 B main-HASH.js gzip 6.64 kB 6.64 kB ⚠️ +4 B webpack-HASH.js 1.53 kB 1.53 kB ✓ webpack-HASH.js gzip 746 B 746 B ✓ 0ccaa0591816d7729904be5f82d9ecd305afdf96.e2c00d0314f283e7a4a0.js 42.9 kB N/A N/A 0ccaa0591816d7729904be5f82d9ecd305afdf96.e2c00d0314f283e7a4a0.js gzip 15.4 kB N/A N/A 3325c5131096668f19e242d97fb789664f2a4517.1f064d5355d2b8407376.js 21.9 kB N/A N/A 3325c5131096668f19e242d97fb789664f2a4517.1f064d5355d2b8407376.js gzip 7.81 kB N/A N/A framework.5b4f940f1eadbaff70d3.js 125 kB 125 kB ✓ framework.5b4f940f1eadbaff70d3.js gzip 39.4 kB 39.4 kB ✓ 7127ca0f12410e1e57e604b1cddd1d0842d862ff.1f064d5355d2b8407376.js N/A 21.9 kB N/A 7127ca0f12410e1e57e604b1cddd1d0842d862ff.1f064d5355d2b8407376.js gzip N/A 7.81 kB N/A ceafb22c175d86e052c921c4d28983d97752a59f.f25284f1b3c43dcf0c13.js N/A 42.9 kB N/A ceafb22c175d86e052c921c4d28983d97752a59f.f25284f1b3c43dcf0c13.js gzip N/A 15.4 kB N/A Overall change 210 kB 210 kB -20 B Client Bundles (main, webpack, commons) Modern Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change main-HASH.module.js 16.6 kB 16.5 kB -15 B main-HASH.module.js gzip 6.38 kB 6.39 kB ⚠️ +3 B webpack-HASH.module.js 1.53 kB 1.53 kB ✓ webpack-HASH.module.js gzip 746 B 746 B ✓ 0ccaa0591816d7729904be5f82d9ecd305afdf96.36c6b20a7d953b3f28f0.module.js 45.5 kB N/A N/A 0ccaa0591816d7729904be5f82d9ecd305afdf96.36c6b20a7d953b3f28f0.module.js gzip 16.5 kB N/A N/A framework.5b4f940f1eadbaff70d3.module.js 125 kB 125 kB ✓ framework.5b4f940f1eadbaff70d3.module.js gzip 39.4 kB 39.4 kB ✓ ceafb22c175d86e052c921c4d28983d97752a59f.cf6d931f31c40199c75f.module.js N/A 45.5 kB N/A ceafb22c175d86e052c921c4d28983d97752a59f.cf6d931f31c40199c75f.module.js gzip N/A 16.5 kB N/A Overall change 189 kB 189 kB -15 B Client Pages Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change _app.js 1.83 kB 1.81 kB -25 B _app.js gzip 883 B 873 B -10 B _error.js 12.1 kB 12 kB -25 B _error.js gzip 4.74 kB 4.73 kB -11 B hooks.js 12.7 kB 12.7 kB -25 B hooks.js gzip 4.81 kB 4.79 kB -16 B index.js 343 B 318 B -25 B index.js gzip 237 B 222 B -15 B link.js 8.14 kB 8.11 kB -25 B link.js gzip 3.49 kB 3.48 kB -16 B routerDirect.js 434 B 408 B -26 B routerDirect.js gzip 296 B 281 B -15 B withRouter.js 444 B 419 B -25 B withRouter.js gzip 294 B 280 B -14 B Overall change 36 kB 35.8 kB -176 B Client Pages Modern Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change _app.module.js 1.73 kB 1.7 kB -25 B _app.module.js gzip 840 B 832 B -8 B _error.module.js 23.3 kB 23.3 kB -25 B _error.module.js gzip 8.6 kB 8.59 kB -9 B hooks.module.js 1.55 kB 1.52 kB -25 B hooks.module.js gzip 805 B 793 B -12 B index.module.js 319 B 294 B -25 B index.module.js gzip 238 B 223 B -15 B link.module.js 8.52 kB 8.5 kB -25 B link.module.js gzip 3.67 kB 3.66 kB -12 B routerDirect.module.js 419 B 394 B -25 B routerDirect.module.js gzip 294 B 281 B -13 B withRouter.module.js 430 B 404 B -26 B withRouter.module.js gzip 293 B 278 B -15 B Overall change 36.2 kB 36.1 kB -176 B Client Build Manifests zeit/next.js canary ijjk/next.js update/pages-loader Change _buildManifest.js 81 B 81 B ✓ _buildManifest.js gzip 61 B 61 B ✓ _buildManifest.module.js 81 B 81 B ✓ _buildManifest.module.js gzip 61 B 61 B ✓ Overall change 162 B 162 B ✓ Serverless bundles Overall increase ⚠️ zeit/next.js canary ijjk/next.js update/pages-loader Change _error.js 247 kB 247 kB ⚠️ +36 B _error.js gzip 66.2 kB 66.2 kB ⚠️ +11 B hooks.html 3.86 kB 3.86 kB ✓ hooks.html gzip 986 B 986 B ✓ index.js 248 kB 248 kB ⚠️ +31 B index.js gzip 66.5 kB 66.6 kB ⚠️ +85 B link.js 255 kB 256 kB ⚠️ +31 B link.js gzip 68.5 kB 68.5 kB -30 B routerDirect.js 249 kB 249 kB ⚠️ +31 B routerDirect.js gzip 66.6 kB 66.6 kB -18 B withRouter.js 249 kB 249 kB ⚠️ +31 B withRouter.js gzip 66.6 kB 66.6 kB ⚠️ +1 B Overall change 1.25 MB 1.25 MB ⚠️ +160 B Stats from current PR Default Server Mode (Increase detected ⚠️) General Overall increase ⚠️ zeit/next.js canary ijjk/next.js update/pages-loader Change buildDuration 22.3s 22.3s -24ms nodeModulesSize 42.4 MB 42.4 MB ⚠️ +22 B Client Bundles (main, webpack, commons) Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change main-HASH.js 18.3 kB 18.2 kB -21 B main-HASH.js gzip 6.65 kB 6.66 kB ⚠️ +4 B webpack-HASH.js 1.53 kB 1.53 kB ✓ webpack-HASH.js gzip 746 B 746 B ✓ 4952ddcd88e7..2b8407376.js 21.9 kB 21.9 kB ✓ 4952ddcd88e7..7376.js gzip 7.81 kB 7.81 kB ✓ de003c3a9d30..799a4e38e.js 43.1 kB N/A N/A de003c3a9d30..e38e.js gzip 15.4 kB N/A N/A framework.5b..dbaff70d3.js 125 kB 125 kB ✓ framework.5b..70d3.js gzip 39.4 kB 39.4 kB ✓ de003c3a9d30..1c5d17695.js N/A 43.1 kB N/A de003c3a9d30..7695.js gzip N/A 15.4 kB N/A Overall change 210 kB 210 kB -21 B Client Bundles (main, webpack, commons) Modern Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change main-HASH.module.js 16.6 kB 16.6 kB -16 B main-HASH.module.js gzip 6.4 kB 6.4 kB ⚠️ +3 B webpack-HASH.module.js 1.53 kB 1.53 kB ✓ webpack-HASH..dule.js gzip 746 B 746 B ✓ de003c3a9d30..f0.module.js 45.5 kB N/A N/A de003c3a9d30..dule.js gzip 16.5 kB N/A N/A framework.5b..d3.module.js 125 kB 125 kB ✓ framework.5b..dule.js gzip 39.4 kB 39.4 kB ✓ de003c3a9d30..5f.module.js N/A 45.5 kB N/A de003c3a9d30..dule.js gzip N/A 16.5 kB N/A Overall change 189 kB 189 kB -16 B Client Pages Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change _app.js 1.83 kB 1.81 kB -25 B _app.js gzip 883 B 873 B -10 B _error.js 12.1 kB 12 kB -25 B _error.js gzip 4.74 kB 4.73 kB -11 B hooks.js 12.7 kB 12.7 kB -25 B hooks.js gzip 4.81 kB 4.79 kB -16 B index.js 343 B 318 B -25 B index.js gzip 237 B 222 B -15 B link.js 8.14 kB 8.11 kB -25 B link.js gzip 3.49 kB 3.48 kB -15 B routerDirect.js 433 B 408 B -25 B routerDirect.js gzip 296 B 281 B -15 B withRouter.js 444 B 419 B -25 B withRouter.js gzip 294 B 280 B -14 B Overall change 36 kB 35.8 kB -175 B Client Pages Modern Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change _app.module.js 1.73 kB 1.7 kB -25 B _app.module.js gzip 841 B 832 B -9 B _error.module.js 23.3 kB 23.3 kB -25 B _error.module.js gzip 8.6 kB 8.59 kB -9 B hooks.module.js 1.55 kB 1.52 kB -25 B hooks.module.js gzip 804 B 793 B -11 B index.module.js 319 B 294 B -25 B index.module.js gzip 238 B 223 B -15 B link.module.js 8.52 kB 8.5 kB -25 B link.module.js gzip 3.67 kB 3.66 kB -12 B routerDirect.module.js 419 B 394 B -25 B routerDirect..dule.js gzip 294 B 281 B -13 B withRouter.module.js 429 B 404 B -25 B withRouter.m..dule.js gzip 293 B 278 B -15 B Overall change 36.2 kB 36.1 kB -175 B Client Build Manifests zeit/next.js canary ijjk/next.js update/pages-loader Change _buildManifest.js 81 B 81 B ✓ _buildManifest.js gzip 61 B 61 B ✓ _buildManifest.module.js 81 B 81 B ✓ _buildManife..dule.js gzip 61 B 61 B ✓ Overall change 162 B 162 B ✓ Rendered Page Sizes zeit/next.js canary ijjk/next.js update/pages-loader Change index.html 3.62 kB 3.62 kB ✓ index.html gzip 947 B 945 B -2 B link.html 3.66 kB 3.66 kB ✓ link.html gzip 956 B 953 B -3 B withRouter.html 3.67 kB 3.67 kB ✓ withRouter.html gzip 943 B 941 B -2 B Overall change 10.9 kB 10.9 kB ✓ Diffs Diff for main-HASH.js @@ -1595,19 +1595,14 @@ function () { var register = function register() { try { - var _regFn = regFn(), - error = _regFn.error, - page = _regFn.page; - - _this5.pageCache[route] = { - error: error, - page: page + var mod = regFn(); + var pageData = { + page: mod["default"] || mod, + mod: mod }; + _this5.pageCache[route] = pageData; - _this5.pageRegisterEvents.emit(route, { - error: error, - page: page - }); + _this5.pageRegisterEvents.emit(route, pageData); } catch (error) { _this5.pageCache[route] = { error: error Diff for main-HASH.module.js @@ -1469,18 +1469,13 @@ class PageLoader { registerPage(route, regFn) { const register = () => { try { - const { - error, - page - } = regFn(); - this.pageCache[route] = { - error, - page + const mod = regFn(); + const pageData = { + page: mod.default || mod, + mod }; - this.pageRegisterEvents.emit(route, { - error, - page - }); + this.pageCache[route] = pageData; + this.pageRegisterEvents.emit(route, pageData); } catch (error) { this.pageCache[route] = { error Diff for _app.js @@ -192,9 +192,9 @@ function createUrl(router) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/_app", function() { - var page = __webpack_require__("B5Ud") + var mod = __webpack_require__("B5Ud") if(false) {} - return { page: page.default || page } + return mod }]); Diff for _error.js @@ -187,9 +187,9 @@ var styles = { (window.__NEXT_P=window.__NEXT_P||[]).push(["/_error", function() { - var page = __webpack_require__("/a9y") + var mod = __webpack_require__("/a9y") if(false) {} - return { page: page.default || page } + return mod }]); Diff for hooks.js @@ -994,9 +994,9 @@ module.exports = __webpack_require__("jmDH") ? Object.defineProperties : functio (window.__NEXT_P=window.__NEXT_P||[]).push(["/hooks", function() { - var page = __webpack_require__("+MDD") + var mod = __webpack_require__("+MDD") if(false) {} - return { page: page.default || page } + return mod }]); Diff for index.js @@ -22,9 +22,9 @@ Page.getInitialProps = function () { (window.__NEXT_P=window.__NEXT_P||[]).push(["/", function() { - var page = __webpack_require__("RNiq") + var mod = __webpack_require__("RNiq") if(false) {} - return { page: page.default || page } + return mod }]); Diff for link.js @@ -167,9 +167,9 @@ module.exports = function (TYPE, $create) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/link", function() { - var page = __webpack_require__("ObF3") + var mod = __webpack_require__("ObF3") if(false) {} - return { page: page.default || page } + return mod }]); Diff for routerDirect.js @@ -5,9 +5,9 @@ (window.__NEXT_P=window.__NEXT_P||[]).push(["/routerDirect", function() { - var page = __webpack_require__("jSAA") + var mod = __webpack_require__("jSAA") if(false) {} - return { page: page.default || page } + return mod }]); Diff for withRouter.js @@ -30,9 +30,9 @@ useWithRouter.getInitialProps = function () { (window.__NEXT_P=window.__NEXT_P||[]).push(["/withRouter", function() { - var page = __webpack_require__("0Hlz") + var mod = __webpack_require__("0Hlz") if(false) {} - return { page: page.default || page } + return mod }]); Diff for _app.module.js @@ -197,9 +197,9 @@ function createUrl(router) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/_app", function() { - var page = __webpack_require__("B5Ud") + var mod = __webpack_require__("B5Ud") if(false) {} - return { page: page.default || page } + return mod }]); Diff for _error.module.js @@ -163,9 +163,9 @@ const styles = { (window.__NEXT_P=window.__NEXT_P||[]).push(["/_error", function() { - var page = __webpack_require__("/a9y") + var mod = __webpack_require__("/a9y") if(false) {} - return { page: page.default || page } + return mod }]); Diff for hooks.module.js @@ -133,9 +133,9 @@ module.exports = shouldUseNative() ? Object.assign : function (target, source) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/hooks", function() { - var page = __webpack_require__("+MDD") + var mod = __webpack_require__("+MDD") if(false) {} - return { page: page.default || page } + return mod }]); Diff for index.module.js @@ -18,9 +18,9 @@ Page.getInitialProps = () => ({}); (window.__NEXT_P=window.__NEXT_P||[]).push(["/", function() { - var page = __webpack_require__("RNiq") + var mod = __webpack_require__("RNiq") if(false) {} - return { page: page.default || page } + return mod }]); Diff for link.module.js @@ -225,9 +225,9 @@ module.exports = function (TYPE, $create) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/link", function() { - var page = __webpack_require__("ObF3") + var mod = __webpack_require__("ObF3") if(false) {} - return { page: page.default || page } + return mod }]); Diff for routerDirect.module.js @@ -5,9 +5,9 @@ (window.__NEXT_P=window.__NEXT_P||[]).push(["/routerDirect", function() { - var page = __webpack_require__("jSAA") + var mod = __webpack_require__("jSAA") if(false) {} - return { page: page.default || page } + return mod }]); Diff for withRouter.module.js @@ -28,9 +28,9 @@ useWithRouter.getInitialProps = () => ({}); (window.__NEXT_P=window.__NEXT_P||[]).push(["/withRouter", function() { - var page = __webpack_require__("0Hlz") + var mod = __webpack_require__("0Hlz") if(false) {} - return { page: page.default || page } + return mod }]); Diff for index.html @@ -12,11 +12,11 @@ as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/runtime/webpack-7928590be3ef2e55b835.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/runtime/main-0d26b819b58d326b70e7.module.js" + <link rel="preload" href="/_next/static/runtime/main-1859294639ae2cfa2504.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.85e4c18b9e4b400e5496.module.js" + <link rel="preload" href="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.148b9d567c5ec499c554.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/BUILD_ID/_buildManifest.module.js" as="script" crossorigin="anonymous" /> @@ -43,9 +43,9 @@ async="" crossorigin="anonymous" nomodule=""></script> <script src="/_next/static/runtime/webpack-7928590be3ef2e55b835.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/runtime/main-55b45fe5fab1b051a823.js" + <script src="/_next/static/runtime/main-a43d147de8a126344709.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/runtime/main-0d26b819b58d326b70e7.module.js" + <script src="/_next/static/runtime/main-1859294639ae2cfa2504.module.js" async="" crossorigin="anonymous" type="module"></script> <script src="/_next/static/chunks/framework.cdb73e402d876d4ac87f.js" async="" crossorigin="anonymous" nomodule=""></script> @@ -53,9 +53,9 @@ async="" crossorigin="anonymous" type="module"></script> <script src="/_next/static/chunks/4952ddcd88e7185e66c9cf40e2d848b7e27f1574.155621535702fe040780.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.b3f63bf01308f3d17f5c.js" + <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.884fe048044e62151ce8.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.85e4c18b9e4b400e5496.module.js" + <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.148b9d567c5ec499c554.module.js" async="" crossorigin="anonymous" type="module"></script> <script src="/_next/static/BUILD_ID/_buildManifest.js" async="" crossorigin="anonymous" nomodule=""></script> Diff for link.html @@ -14,9 +14,9 @@ as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.85e4c18b9e4b400e5496.module.js" + <link rel="preload" href="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.148b9d567c5ec499c554.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/runtime/main-0d26b819b58d326b70e7.module.js" + <link rel="preload" href="/_next/static/runtime/main-1859294639ae2cfa2504.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/BUILD_ID/_buildManifest.module.js" as="script" crossorigin="anonymous" /> @@ -52,13 +52,13 @@ async="" crossorigin="anonymous" type="module"></script> <script src="/_next/static/chunks/4952ddcd88e7185e66c9cf40e2d848b7e27f1574.155621535702fe040780.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.b3f63bf01308f3d17f5c.js" + <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.884fe048044e62151ce8.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.85e4c18b9e4b400e5496.module.js" + <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.148b9d567c5ec499c554.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/runtime/main-55b45fe5fab1b051a823.js" + <script src="/_next/static/runtime/main-a43d147de8a126344709.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/runtime/main-0d26b819b58d326b70e7.module.js" + <script src="/_next/static/runtime/main-1859294639ae2cfa2504.module.js" async="" crossorigin="anonymous" type="module"></script> <script src="/_next/static/BUILD_ID/_buildManifest.js" async="" crossorigin="anonymous" nomodule=""></script> Diff for withRouter.html @@ -14,9 +14,9 @@ as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.85e4c18b9e4b400e5496.module.js" + <link rel="preload" href="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.148b9d567c5ec499c554.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/runtime/main-0d26b819b58d326b70e7.module.js" + <link rel="preload" href="/_next/static/runtime/main-1859294639ae2cfa2504.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/BUILD_ID/_buildManifest.module.js" as="script" crossorigin="anonymous" /> @@ -50,13 +50,13 @@ async="" crossorigin="anonymous" type="module"></script> <script src="/_next/static/chunks/4952ddcd88e7185e66c9cf40e2d848b7e27f1574.155621535702fe040780.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.b3f63bf01308f3d17f5c.js" + <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.884fe048044e62151ce8.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.85e4c18b9e4b400e5496.module.js" + <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.148b9d567c5ec499c554.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/runtime/main-55b45fe5fab1b051a823.js" + <script src="/_next/static/runtime/main-a43d147de8a126344709.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/runtime/main-0d26b819b58d326b70e7.module.js" + <script src="/_next/static/runtime/main-1859294639ae2cfa2504.module.js" async="" crossorigin="anonymous" type="module"></script> <script src="/_next/static/BUILD_ID/_buildManifest.js" async="" crossorigin="anonymous" nomodule=""></script> Serverless Mode (Increase detected ⚠️) General Overall increase ⚠️ zeit/next.js canary ijjk/next.js update/pages-loader Change buildDuration 21.7s 22.1s ⚠️ +352ms nodeModulesSize 42.4 MB 42.4 MB ⚠️ +22 B Client Bundles (main, webpack, commons) Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change main-HASH.js 18.3 kB 18.2 kB -21 B main-HASH.js gzip 6.65 kB 6.66 kB ⚠️ +4 B webpack-HASH.js 1.53 kB 1.53 kB ✓ webpack-HASH.js gzip 746 B 746 B ✓ 4952ddcd88e7..2b8407376.js 21.9 kB 21.9 kB ✓ 4952ddcd88e7..7376.js gzip 7.81 kB 7.81 kB ✓ de003c3a9d30..799a4e38e.js 43.1 kB N/A N/A de003c3a9d30..e38e.js gzip 15.4 kB N/A N/A framework.5b..dbaff70d3.js 125 kB 125 kB ✓ framework.5b..70d3.js gzip 39.4 kB 39.4 kB ✓ de003c3a9d30..1c5d17695.js N/A 43.1 kB N/A de003c3a9d30..7695.js gzip N/A 15.4 kB N/A Overall change 210 kB 210 kB -21 B Client Bundles (main, webpack, commons) Modern Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change main-HASH.module.js 16.6 kB 16.6 kB -16 B main-HASH.module.js gzip 6.4 kB 6.4 kB ⚠️ +3 B webpack-HASH.module.js 1.53 kB 1.53 kB ✓ webpack-HASH..dule.js gzip 746 B 746 B ✓ de003c3a9d30..f0.module.js 45.5 kB N/A N/A de003c3a9d30..dule.js gzip 16.5 kB N/A N/A framework.5b..d3.module.js 125 kB 125 kB ✓ framework.5b..dule.js gzip 39.4 kB 39.4 kB ✓ de003c3a9d30..5f.module.js N/A 45.5 kB N/A de003c3a9d30..dule.js gzip N/A 16.5 kB N/A Overall change 189 kB 189 kB -16 B Client Pages Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change _app.js 1.83 kB 1.81 kB -25 B _app.js gzip 883 B 873 B -10 B _error.js 12.1 kB 12 kB -25 B _error.js gzip 4.74 kB 4.73 kB -11 B hooks.js 12.7 kB 12.7 kB -25 B hooks.js gzip 4.81 kB 4.79 kB -16 B index.js 343 B 318 B -25 B index.js gzip 237 B 222 B -15 B link.js 8.14 kB 8.11 kB -25 B link.js gzip 3.49 kB 3.48 kB -15 B routerDirect.js 433 B 408 B -25 B routerDirect.js gzip 296 B 281 B -15 B withRouter.js 444 B 419 B -25 B withRouter.js gzip 294 B 280 B -14 B Overall change 36 kB 35.8 kB -175 B Client Pages Modern Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change _app.module.js 1.73 kB 1.7 kB -25 B _app.module.js gzip 841 B 832 B -9 B _error.module.js 23.3 kB 23.3 kB -25 B _error.module.js gzip 8.6 kB 8.59 kB -9 B hooks.module.js 1.55 kB 1.52 kB -25 B hooks.module.js gzip 804 B 793 B -11 B index.module.js 319 B 294 B -25 B index.module.js gzip 238 B 223 B -15 B link.module.js 8.52 kB 8.5 kB -25 B link.module.js gzip 3.67 kB 3.66 kB -12 B routerDirect.module.js 419 B 394 B -25 B routerDirect..dule.js gzip 294 B 281 B -13 B withRouter.module.js 429 B 404 B -25 B withRouter.m..dule.js gzip 293 B 278 B -15 B Overall change 36.2 kB 36.1 kB -175 B Client Build Manifests zeit/next.js canary ijjk/next.js update/pages-loader Change _buildManifest.js 81 B 81 B ✓ _buildManifest.js gzip 61 B 61 B ✓ _buildManifest.module.js 81 B 81 B ✓ _buildManife..dule.js gzip 61 B 61 B ✓ Overall change 162 B 162 B ✓ Serverless bundles Overall increase ⚠️ zeit/next.js canary ijjk/next.js update/pages-loader Change _error.js 247 kB 247 kB ⚠️ +36 B _error.js gzip 66.1 kB 66.2 kB ⚠️ +7 B hooks.html 3.73 kB 3.73 kB ✓ hooks.html gzip 973 B 972 B -1 B index.js 248 kB 248 kB ⚠️ +36 B index.js gzip 66.5 kB 66.5 kB ⚠️ +10 B link.js 255 kB 255 kB ⚠️ +36 B link.js gzip 68.5 kB 68.5 kB ⚠️ +6 B routerDirect.js 249 kB 249 kB ⚠️ +36 B routerDirect.js gzip 66.5 kB 66.5 kB ⚠️ +10 B withRouter.js 248 kB 248 kB ⚠️ +36 B withRouter.js gzip 66.6 kB 66.6 kB ⚠️ +9 B Overall change 1.25 MB 1.25 MB ⚠️ +180 B Stats from current PR Default Server Mode (Increase detected ⚠️) General Overall increase ⚠️ zeit/next.js canary ijjk/next.js update/pages-loader Change buildDuration 21.7s 21.8s ⚠️ +25ms nodeModulesSize 42.4 MB 42.4 MB ⚠️ +22 B Client Bundles (main, webpack, commons) Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change main-HASH.js 18.3 kB 18.2 kB -21 B main-HASH.js gzip 6.65 kB 6.66 kB ⚠️ +4 B webpack-HASH.js 1.53 kB 1.53 kB ✓ webpack-HASH.js gzip 746 B 746 B ✓ 4952ddcd88e7..2b8407376.js 21.9 kB 21.9 kB ✓ 4952ddcd88e7..7376.js gzip 7.81 kB 7.81 kB ✓ de003c3a9d30..799a4e38e.js 43.1 kB N/A N/A de003c3a9d30..e38e.js gzip 15.4 kB N/A N/A framework.5b..dbaff70d3.js 125 kB 125 kB ✓ framework.5b..70d3.js gzip 39.4 kB 39.4 kB ✓ de003c3a9d30..1c5d17695.js N/A 43.1 kB N/A de003c3a9d30..7695.js gzip N/A 15.4 kB N/A Overall change 210 kB 210 kB -21 B Client Bundles (main, webpack, commons) Modern Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change main-HASH.module.js 16.6 kB 16.6 kB -16 B main-HASH.module.js gzip 6.4 kB 6.4 kB ⚠️ +3 B webpack-HASH.module.js 1.53 kB 1.53 kB ✓ webpack-HASH..dule.js gzip 746 B 746 B ✓ de003c3a9d30..f0.module.js 45.5 kB N/A N/A de003c3a9d30..dule.js gzip 16.5 kB N/A N/A framework.5b..d3.module.js 125 kB 125 kB ✓ framework.5b..dule.js gzip 39.4 kB 39.4 kB ✓ de003c3a9d30..5f.module.js N/A 45.5 kB N/A de003c3a9d30..dule.js gzip N/A 16.5 kB N/A Overall change 189 kB 189 kB -16 B Client Pages Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change _app.js 1.83 kB 1.81 kB -25 B _app.js gzip 883 B 873 B -10 B _error.js 12.1 kB 12 kB -25 B _error.js gzip 4.74 kB 4.73 kB -11 B hooks.js 12.7 kB 12.7 kB -25 B hooks.js gzip 4.81 kB 4.79 kB -16 B index.js 343 B 318 B -25 B index.js gzip 237 B 222 B -15 B link.js 8.14 kB 8.11 kB -25 B link.js gzip 3.49 kB 3.48 kB -15 B routerDirect.js 433 B 408 B -25 B routerDirect.js gzip 296 B 281 B -15 B withRouter.js 444 B 419 B -25 B withRouter.js gzip 294 B 280 B -14 B Overall change 36 kB 35.8 kB -175 B Client Pages Modern Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change _app.module.js 1.73 kB 1.7 kB -25 B _app.module.js gzip 841 B 832 B -9 B _error.module.js 23.3 kB 23.3 kB -25 B _error.module.js gzip 8.6 kB 8.59 kB -9 B hooks.module.js 1.55 kB 1.52 kB -25 B hooks.module.js gzip 804 B 793 B -11 B index.module.js 319 B 294 B -25 B index.module.js gzip 238 B 223 B -15 B link.module.js 8.52 kB 8.5 kB -25 B link.module.js gzip 3.67 kB 3.66 kB -12 B routerDirect.module.js 419 B 394 B -25 B routerDirect..dule.js gzip 294 B 281 B -13 B withRouter.module.js 429 B 404 B -25 B withRouter.m..dule.js gzip 293 B 278 B -15 B Overall change 36.2 kB 36.1 kB -175 B Client Build Manifests zeit/next.js canary ijjk/next.js update/pages-loader Change _buildManifest.js 81 B 81 B ✓ _buildManifest.js gzip 61 B 61 B ✓ _buildManifest.module.js 81 B 81 B ✓ _buildManife..dule.js gzip 61 B 61 B ✓ Overall change 162 B 162 B ✓ Rendered Page Sizes zeit/next.js canary ijjk/next.js update/pages-loader Change index.html 3.62 kB 3.62 kB ✓ index.html gzip 947 B 945 B -2 B link.html 3.66 kB 3.66 kB ✓ link.html gzip 956 B 953 B -3 B withRouter.html 3.67 kB 3.67 kB ✓ withRouter.html gzip 943 B 941 B -2 B Overall change 10.9 kB 10.9 kB ✓ Diffs Diff for main-HASH.js @@ -1595,19 +1595,14 @@ function () { var register = function register() { try { - var _regFn = regFn(), - error = _regFn.error, - page = _regFn.page; - - _this5.pageCache[route] = { - error: error, - page: page + var mod = regFn(); + var pageData = { + page: mod["default"] || mod, + mod: mod }; + _this5.pageCache[route] = pageData; - _this5.pageRegisterEvents.emit(route, { - error: error, - page: page - }); + _this5.pageRegisterEvents.emit(route, pageData); } catch (error) { _this5.pageCache[route] = { error: error Diff for main-HASH.module.js @@ -1469,18 +1469,13 @@ class PageLoader { registerPage(route, regFn) { const register = () => { try { - const { - error, - page - } = regFn(); - this.pageCache[route] = { - error, - page + const mod = regFn(); + const pageData = { + page: mod.default || mod, + mod }; - this.pageRegisterEvents.emit(route, { - error, - page - }); + this.pageCache[route] = pageData; + this.pageRegisterEvents.emit(route, pageData); } catch (error) { this.pageCache[route] = { error Diff for _app.js @@ -192,9 +192,9 @@ function createUrl(router) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/_app", function() { - var page = __webpack_require__("B5Ud") + var mod = __webpack_require__("B5Ud") if(false) {} - return { page: page.default || page } + return mod }]); Diff for _error.js @@ -187,9 +187,9 @@ var styles = { (window.__NEXT_P=window.__NEXT_P||[]).push(["/_error", function() { - var page = __webpack_require__("/a9y") + var mod = __webpack_require__("/a9y") if(false) {} - return { page: page.default || page } + return mod }]); Diff for hooks.js @@ -994,9 +994,9 @@ module.exports = __webpack_require__("jmDH") ? Object.defineProperties : functio (window.__NEXT_P=window.__NEXT_P||[]).push(["/hooks", function() { - var page = __webpack_require__("+MDD") + var mod = __webpack_require__("+MDD") if(false) {} - return { page: page.default || page } + return mod }]); Diff for index.js @@ -22,9 +22,9 @@ Page.getInitialProps = function () { (window.__NEXT_P=window.__NEXT_P||[]).push(["/", function() { - var page = __webpack_require__("RNiq") + var mod = __webpack_require__("RNiq") if(false) {} - return { page: page.default || page } + return mod }]); Diff for link.js @@ -167,9 +167,9 @@ module.exports = function (TYPE, $create) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/link", function() { - var page = __webpack_require__("ObF3") + var mod = __webpack_require__("ObF3") if(false) {} - return { page: page.default || page } + return mod }]); Diff for routerDirect.js @@ -5,9 +5,9 @@ (window.__NEXT_P=window.__NEXT_P||[]).push(["/routerDirect", function() { - var page = __webpack_require__("jSAA") + var mod = __webpack_require__("jSAA") if(false) {} - return { page: page.default || page } + return mod }]); Diff for withRouter.js @@ -30,9 +30,9 @@ useWithRouter.getInitialProps = function () { (window.__NEXT_P=window.__NEXT_P||[]).push(["/withRouter", function() { - var page = __webpack_require__("0Hlz") + var mod = __webpack_require__("0Hlz") if(false) {} - return { page: page.default || page } + return mod }]); Diff for _app.module.js @@ -197,9 +197,9 @@ function createUrl(router) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/_app", function() { - var page = __webpack_require__("B5Ud") + var mod = __webpack_require__("B5Ud") if(false) {} - return { page: page.default || page } + return mod }]); Diff for _error.module.js @@ -163,9 +163,9 @@ const styles = { (window.__NEXT_P=window.__NEXT_P||[]).push(["/_error", function() { - var page = __webpack_require__("/a9y") + var mod = __webpack_require__("/a9y") if(false) {} - return { page: page.default || page } + return mod }]); Diff for hooks.module.js @@ -133,9 +133,9 @@ module.exports = shouldUseNative() ? Object.assign : function (target, source) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/hooks", function() { - var page = __webpack_require__("+MDD") + var mod = __webpack_require__("+MDD") if(false) {} - return { page: page.default || page } + return mod }]); Diff for index.module.js @@ -18,9 +18,9 @@ Page.getInitialProps = () => ({}); (window.__NEXT_P=window.__NEXT_P||[]).push(["/", function() { - var page = __webpack_require__("RNiq") + var mod = __webpack_require__("RNiq") if(false) {} - return { page: page.default || page } + return mod }]); Diff for link.module.js @@ -225,9 +225,9 @@ module.exports = function (TYPE, $create) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/link", function() { - var page = __webpack_require__("ObF3") + var mod = __webpack_require__("ObF3") if(false) {} - return { page: page.default || page } + return mod }]); Diff for routerDirect.module.js @@ -5,9 +5,9 @@ (window.__NEXT_P=window.__NEXT_P||[]).push(["/routerDirect", function() { - var page = __webpack_require__("jSAA") + var mod = __webpack_require__("jSAA") if(false) {} - return { page: page.default || page } + return mod }]); Diff for withRouter.module.js @@ -28,9 +28,9 @@ useWithRouter.getInitialProps = () => ({}); (window.__NEXT_P=window.__NEXT_P||[]).push(["/withRouter", function() { - var page = __webpack_require__("0Hlz") + var mod = __webpack_require__("0Hlz") if(false) {} - return { page: page.default || page } + return mod }]); Diff for index.html @@ -12,11 +12,11 @@ as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/runtime/webpack-7928590be3ef2e55b835.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/runtime/main-0d26b819b58d326b70e7.module.js" + <link rel="preload" href="/_next/static/runtime/main-1859294639ae2cfa2504.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.85e4c18b9e4b400e5496.module.js" + <link rel="preload" href="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.148b9d567c5ec499c554.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/BUILD_ID/_buildManifest.module.js" as="script" crossorigin="anonymous" /> @@ -43,9 +43,9 @@ async="" crossorigin="anonymous" nomodule=""></script> <script src="/_next/static/runtime/webpack-7928590be3ef2e55b835.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/runtime/main-55b45fe5fab1b051a823.js" + <script src="/_next/static/runtime/main-a43d147de8a126344709.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/runtime/main-0d26b819b58d326b70e7.module.js" + <script src="/_next/static/runtime/main-1859294639ae2cfa2504.module.js" async="" crossorigin="anonymous" type="module"></script> <script src="/_next/static/chunks/framework.cdb73e402d876d4ac87f.js" async="" crossorigin="anonymous" nomodule=""></script> @@ -53,9 +53,9 @@ async="" crossorigin="anonymous" type="module"></script> <script src="/_next/static/chunks/4952ddcd88e7185e66c9cf40e2d848b7e27f1574.155621535702fe040780.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.b3f63bf01308f3d17f5c.js" + <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.884fe048044e62151ce8.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.85e4c18b9e4b400e5496.module.js" + <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.148b9d567c5ec499c554.module.js" async="" crossorigin="anonymous" type="module"></script> <script src="/_next/static/BUILD_ID/_buildManifest.js" async="" crossorigin="anonymous" nomodule=""></script> Diff for link.html @@ -14,9 +14,9 @@ as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.85e4c18b9e4b400e5496.module.js" + <link rel="preload" href="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.148b9d567c5ec499c554.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/runtime/main-0d26b819b58d326b70e7.module.js" + <link rel="preload" href="/_next/static/runtime/main-1859294639ae2cfa2504.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/BUILD_ID/_buildManifest.module.js" as="script" crossorigin="anonymous" /> @@ -52,13 +52,13 @@ async="" crossorigin="anonymous" type="module"></script> <script src="/_next/static/chunks/4952ddcd88e7185e66c9cf40e2d848b7e27f1574.155621535702fe040780.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.b3f63bf01308f3d17f5c.js" + <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.884fe048044e62151ce8.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.85e4c18b9e4b400e5496.module.js" + <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.148b9d567c5ec499c554.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/runtime/main-55b45fe5fab1b051a823.js" + <script src="/_next/static/runtime/main-a43d147de8a126344709.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/runtime/main-0d26b819b58d326b70e7.module.js" + <script src="/_next/static/runtime/main-1859294639ae2cfa2504.module.js" async="" crossorigin="anonymous" type="module"></script> <script src="/_next/static/BUILD_ID/_buildManifest.js" async="" crossorigin="anonymous" nomodule=""></script> Diff for withRouter.html @@ -14,9 +14,9 @@ as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.85e4c18b9e4b400e5496.module.js" + <link rel="preload" href="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.148b9d567c5ec499c554.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/runtime/main-0d26b819b58d326b70e7.module.js" + <link rel="preload" href="/_next/static/runtime/main-1859294639ae2cfa2504.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/BUILD_ID/_buildManifest.module.js" as="script" crossorigin="anonymous" /> @@ -50,13 +50,13 @@ async="" crossorigin="anonymous" type="module"></script> <script src="/_next/static/chunks/4952ddcd88e7185e66c9cf40e2d848b7e27f1574.155621535702fe040780.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.b3f63bf01308f3d17f5c.js" + <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.884fe048044e62151ce8.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.85e4c18b9e4b400e5496.module.js" + <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.148b9d567c5ec499c554.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/runtime/main-55b45fe5fab1b051a823.js" + <script src="/_next/static/runtime/main-a43d147de8a126344709.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/runtime/main-0d26b819b58d326b70e7.module.js" + <script src="/_next/static/runtime/main-1859294639ae2cfa2504.module.js" async="" crossorigin="anonymous" type="module"></script> <script src="/_next/static/BUILD_ID/_buildManifest.js" async="" crossorigin="anonymous" nomodule=""></script> Serverless Mode (Increase detected ⚠️) General Overall increase ⚠️ zeit/next.js canary ijjk/next.js update/pages-loader Change buildDuration 21.5s 21.6s ⚠️ +162ms nodeModulesSize 42.4 MB 42.4 MB ⚠️ +22 B Client Bundles (main, webpack, commons) Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change main-HASH.js 18.3 kB 18.2 kB -21 B main-HASH.js gzip 6.65 kB 6.66 kB ⚠️ +4 B webpack-HASH.js 1.53 kB 1.53 kB ✓ webpack-HASH.js gzip 746 B 746 B ✓ 4952ddcd88e7..2b8407376.js 21.9 kB 21.9 kB ✓ 4952ddcd88e7..7376.js gzip 7.81 kB 7.81 kB ✓ de003c3a9d30..799a4e38e.js 43.1 kB N/A N/A de003c3a9d30..e38e.js gzip 15.4 kB N/A N/A framework.5b..dbaff70d3.js 125 kB 125 kB ✓ framework.5b..70d3.js gzip 39.4 kB 39.4 kB ✓ de003c3a9d30..1c5d17695.js N/A 43.1 kB N/A de003c3a9d30..7695.js gzip N/A 15.4 kB N/A Overall change 210 kB 210 kB -21 B Client Bundles (main, webpack, commons) Modern Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change main-HASH.module.js 16.6 kB 16.6 kB -16 B main-HASH.module.js gzip 6.4 kB 6.4 kB ⚠️ +3 B webpack-HASH.module.js 1.53 kB 1.53 kB ✓ webpack-HASH..dule.js gzip 746 B 746 B ✓ de003c3a9d30..f0.module.js 45.5 kB N/A N/A de003c3a9d30..dule.js gzip 16.5 kB N/A N/A framework.5b..d3.module.js 125 kB 125 kB ✓ framework.5b..dule.js gzip 39.4 kB 39.4 kB ✓ de003c3a9d30..5f.module.js N/A 45.5 kB N/A de003c3a9d30..dule.js gzip N/A 16.5 kB N/A Overall change 189 kB 189 kB -16 B Client Pages Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change _app.js 1.83 kB 1.81 kB -25 B _app.js gzip 883 B 873 B -10 B _error.js 12.1 kB 12 kB -25 B _error.js gzip 4.74 kB 4.73 kB -11 B hooks.js 12.7 kB 12.7 kB -25 B hooks.js gzip 4.81 kB 4.79 kB -16 B index.js 343 B 318 B -25 B index.js gzip 237 B 222 B -15 B link.js 8.14 kB 8.11 kB -25 B link.js gzip 3.49 kB 3.48 kB -15 B routerDirect.js 433 B 408 B -25 B routerDirect.js gzip 296 B 281 B -15 B withRouter.js 444 B 419 B -25 B withRouter.js gzip 294 B 280 B -14 B Overall change 36 kB 35.8 kB -175 B Client Pages Modern Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change _app.module.js 1.73 kB 1.7 kB -25 B _app.module.js gzip 841 B 832 B -9 B _error.module.js 23.3 kB 23.3 kB -25 B _error.module.js gzip 8.6 kB 8.59 kB -9 B hooks.module.js 1.55 kB 1.52 kB -25 B hooks.module.js gzip 804 B 793 B -11 B index.module.js 319 B 294 B -25 B index.module.js gzip 238 B 223 B -15 B link.module.js 8.52 kB 8.5 kB -25 B link.module.js gzip 3.67 kB 3.66 kB -12 B routerDirect.module.js 419 B 394 B -25 B routerDirect..dule.js gzip 294 B 281 B -13 B withRouter.module.js 429 B 404 B -25 B withRouter.m..dule.js gzip 293 B 278 B -15 B Overall change 36.2 kB 36.1 kB -175 B Client Build Manifests zeit/next.js canary ijjk/next.js update/pages-loader Change _buildManifest.js 81 B 81 B ✓ _buildManifest.js gzip 61 B 61 B ✓ _buildManifest.module.js 81 B 81 B ✓ _buildManife..dule.js gzip 61 B 61 B ✓ Overall change 162 B 162 B ✓ Serverless bundles Overall increase ⚠️ zeit/next.js canary ijjk/next.js update/pages-loader Change _error.js 247 kB 247 kB ⚠️ +36 B _error.js gzip 66.1 kB 66.2 kB ⚠️ +7 B hooks.html 3.73 kB 3.73 kB ✓ hooks.html gzip 973 B 972 B -1 B index.js 248 kB 248 kB ⚠️ +36 B index.js gzip 66.5 kB 66.5 kB ⚠️ +10 B link.js 255 kB 255 kB ⚠️ +36 B link.js gzip 68.5 kB 68.5 kB ⚠️ +6 B routerDirect.js 249 kB 249 kB ⚠️ +36 B routerDirect.js gzip 66.5 kB 66.5 kB ⚠️ +10 B withRouter.js 248 kB 248 kB ⚠️ +36 B withRouter.js gzip 66.6 kB 66.6 kB ⚠️ +9 B Overall change 1.25 MB 1.25 MB ⚠️ +180 B Stats from current PR Default Server Mode (Increase detected ⚠️) General Overall increase ⚠️ zeit/next.js canary ijjk/next.js update/pages-loader Change buildDuration 22.8s 25.5s ⚠️ +2.7s nodeModulesSize 42.4 MB 42.4 MB ⚠️ +22 B Client Bundles (main, webpack, commons) Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change main-HASH.js 18.3 kB 18.2 kB -21 B main-HASH.js gzip 6.65 kB 6.66 kB ⚠️ +4 B webpack-HASH.js 1.53 kB 1.53 kB ✓ webpack-HASH.js gzip 746 B 746 B ✓ 4952ddcd88e7..2b8407376.js 21.9 kB 21.9 kB ✓ 4952ddcd88e7..7376.js gzip 7.81 kB 7.81 kB ✓ de003c3a9d30..799a4e38e.js 43.1 kB N/A N/A de003c3a9d30..e38e.js gzip 15.4 kB N/A N/A framework.5b..dbaff70d3.js 125 kB 125 kB ✓ framework.5b..70d3.js gzip 39.4 kB 39.4 kB ✓ de003c3a9d30..1c5d17695.js N/A 43.1 kB N/A de003c3a9d30..7695.js gzip N/A 15.4 kB N/A Overall change 210 kB 210 kB -21 B Client Bundles (main, webpack, commons) Modern Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change main-HASH.module.js 16.6 kB 16.6 kB -16 B main-HASH.module.js gzip 6.4 kB 6.4 kB ⚠️ +3 B webpack-HASH.module.js 1.53 kB 1.53 kB ✓ webpack-HASH..dule.js gzip 746 B 746 B ✓ de003c3a9d30..f0.module.js 45.5 kB N/A N/A de003c3a9d30..dule.js gzip 16.5 kB N/A N/A framework.5b..d3.module.js 125 kB 125 kB ✓ framework.5b..dule.js gzip 39.4 kB 39.4 kB ✓ de003c3a9d30..5f.module.js N/A 45.5 kB N/A de003c3a9d30..dule.js gzip N/A 16.5 kB N/A Overall change 189 kB 189 kB -16 B Client Pages Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change _app.js 1.83 kB 1.81 kB -25 B _app.js gzip 883 B 873 B -10 B _error.js 12.1 kB 12 kB -25 B _error.js gzip 4.74 kB 4.73 kB -11 B hooks.js 12.7 kB 12.7 kB -25 B hooks.js gzip 4.81 kB 4.79 kB -16 B index.js 343 B 318 B -25 B index.js gzip 237 B 222 B -15 B link.js 8.14 kB 8.11 kB -25 B link.js gzip 3.49 kB 3.48 kB -15 B routerDirect.js 433 B 408 B -25 B routerDirect.js gzip 296 B 281 B -15 B withRouter.js 444 B 419 B -25 B withRouter.js gzip 294 B 280 B -14 B Overall change 36 kB 35.8 kB -175 B Client Pages Modern Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change _app.module.js 1.73 kB 1.7 kB -25 B _app.module.js gzip 841 B 832 B -9 B _error.module.js 23.3 kB 23.3 kB -25 B _error.module.js gzip 8.6 kB 8.59 kB -9 B hooks.module.js 1.55 kB 1.52 kB -25 B hooks.module.js gzip 804 B 793 B -11 B index.module.js 319 B 294 B -25 B index.module.js gzip 238 B 223 B -15 B link.module.js 8.52 kB 8.5 kB -25 B link.module.js gzip 3.67 kB 3.66 kB -12 B routerDirect.module.js 419 B 394 B -25 B routerDirect..dule.js gzip 294 B 281 B -13 B withRouter.module.js 429 B 404 B -25 B withRouter.m..dule.js gzip 293 B 278 B -15 B Overall change 36.2 kB 36.1 kB -175 B Client Build Manifests zeit/next.js canary ijjk/next.js update/pages-loader Change _buildManifest.js 81 B 81 B ✓ _buildManifest.js gzip 61 B 61 B ✓ _buildManifest.module.js 81 B 81 B ✓ _buildManife..dule.js gzip 61 B 61 B ✓ Overall change 162 B 162 B ✓ Rendered Page Sizes zeit/next.js canary ijjk/next.js update/pages-loader Change index.html 3.62 kB 3.62 kB ✓ index.html gzip 947 B 945 B -2 B link.html 3.66 kB 3.66 kB ✓ link.html gzip 956 B 953 B -3 B withRouter.html 3.67 kB 3.67 kB ✓ withRouter.html gzip 943 B 941 B -2 B Overall change 10.9 kB 10.9 kB ✓ Diffs Diff for main-HASH.js @@ -1595,19 +1595,14 @@ function () { var register = function register() { try { - var _regFn = regFn(), - error = _regFn.error, - page = _regFn.page; - - _this5.pageCache[route] = { - error: error, - page: page + var mod = regFn(); + var pageData = { + page: mod["default"] || mod, + mod: mod }; + _this5.pageCache[route] = pageData; - _this5.pageRegisterEvents.emit(route, { - error: error, - page: page - }); + _this5.pageRegisterEvents.emit(route, pageData); } catch (error) { _this5.pageCache[route] = { error: error Diff for main-HASH.module.js @@ -1469,18 +1469,13 @@ class PageLoader { registerPage(route, regFn) { const register = () => { try { - const { - error, - page - } = regFn(); - this.pageCache[route] = { - error, - page + const mod = regFn(); + const pageData = { + page: mod.default || mod, + mod }; - this.pageRegisterEvents.emit(route, { - error, - page - }); + this.pageCache[route] = pageData; + this.pageRegisterEvents.emit(route, pageData); } catch (error) { this.pageCache[route] = { error Diff for _app.js @@ -192,9 +192,9 @@ function createUrl(router) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/_app", function() { - var page = __webpack_require__("B5Ud") + var mod = __webpack_require__("B5Ud") if(false) {} - return { page: page.default || page } + return mod }]); Diff for _error.js @@ -187,9 +187,9 @@ var styles = { (window.__NEXT_P=window.__NEXT_P||[]).push(["/_error", function() { - var page = __webpack_require__("/a9y") + var mod = __webpack_require__("/a9y") if(false) {} - return { page: page.default || page } + return mod }]); Diff for hooks.js @@ -994,9 +994,9 @@ module.exports = __webpack_require__("jmDH") ? Object.defineProperties : functio (window.__NEXT_P=window.__NEXT_P||[]).push(["/hooks", function() { - var page = __webpack_require__("+MDD") + var mod = __webpack_require__("+MDD") if(false) {} - return { page: page.default || page } + return mod }]); Diff for index.js @@ -22,9 +22,9 @@ Page.getInitialProps = function () { (window.__NEXT_P=window.__NEXT_P||[]).push(["/", function() { - var page = __webpack_require__("RNiq") + var mod = __webpack_require__("RNiq") if(false) {} - return { page: page.default || page } + return mod }]); Diff for link.js @@ -167,9 +167,9 @@ module.exports = function (TYPE, $create) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/link", function() { - var page = __webpack_require__("ObF3") + var mod = __webpack_require__("ObF3") if(false) {} - return { page: page.default || page } + return mod }]); Diff for routerDirect.js @@ -5,9 +5,9 @@ (window.__NEXT_P=window.__NEXT_P||[]).push(["/routerDirect", function() { - var page = __webpack_require__("jSAA") + var mod = __webpack_require__("jSAA") if(false) {} - return { page: page.default || page } + return mod }]); Diff for withRouter.js @@ -30,9 +30,9 @@ useWithRouter.getInitialProps = function () { (window.__NEXT_P=window.__NEXT_P||[]).push(["/withRouter", function() { - var page = __webpack_require__("0Hlz") + var mod = __webpack_require__("0Hlz") if(false) {} - return { page: page.default || page } + return mod }]); Diff for _app.module.js @@ -197,9 +197,9 @@ function createUrl(router) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/_app", function() { - var page = __webpack_require__("B5Ud") + var mod = __webpack_require__("B5Ud") if(false) {} - return { page: page.default || page } + return mod }]); Diff for _error.module.js @@ -163,9 +163,9 @@ const styles = { (window.__NEXT_P=window.__NEXT_P||[]).push(["/_error", function() { - var page = __webpack_require__("/a9y") + var mod = __webpack_require__("/a9y") if(false) {} - return { page: page.default || page } + return mod }]); Diff for hooks.module.js @@ -133,9 +133,9 @@ module.exports = shouldUseNative() ? Object.assign : function (target, source) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/hooks", function() { - var page = __webpack_require__("+MDD") + var mod = __webpack_require__("+MDD") if(false) {} - return { page: page.default || page } + return mod }]); Diff for index.module.js @@ -18,9 +18,9 @@ Page.getInitialProps = () => ({}); (window.__NEXT_P=window.__NEXT_P||[]).push(["/", function() { - var page = __webpack_require__("RNiq") + var mod = __webpack_require__("RNiq") if(false) {} - return { page: page.default || page } + return mod }]); Diff for link.module.js @@ -225,9 +225,9 @@ module.exports = function (TYPE, $create) { (window.__NEXT_P=window.__NEXT_P||[]).push(["/link", function() { - var page = __webpack_require__("ObF3") + var mod = __webpack_require__("ObF3") if(false) {} - return { page: page.default || page } + return mod }]); Diff for routerDirect.module.js @@ -5,9 +5,9 @@ (window.__NEXT_P=window.__NEXT_P||[]).push(["/routerDirect", function() { - var page = __webpack_require__("jSAA") + var mod = __webpack_require__("jSAA") if(false) {} - return { page: page.default || page } + return mod }]); Diff for withRouter.module.js @@ -28,9 +28,9 @@ useWithRouter.getInitialProps = () => ({}); (window.__NEXT_P=window.__NEXT_P||[]).push(["/withRouter", function() { - var page = __webpack_require__("0Hlz") + var mod = __webpack_require__("0Hlz") if(false) {} - return { page: page.default || page } + return mod }]); Diff for index.html @@ -12,11 +12,11 @@ as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/runtime/webpack-7928590be3ef2e55b835.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/runtime/main-0d26b819b58d326b70e7.module.js" + <link rel="preload" href="/_next/static/runtime/main-1859294639ae2cfa2504.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.85e4c18b9e4b400e5496.module.js" + <link rel="preload" href="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.148b9d567c5ec499c554.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/BUILD_ID/_buildManifest.module.js" as="script" crossorigin="anonymous" /> @@ -43,9 +43,9 @@ async="" crossorigin="anonymous" nomodule=""></script> <script src="/_next/static/runtime/webpack-7928590be3ef2e55b835.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/runtime/main-55b45fe5fab1b051a823.js" + <script src="/_next/static/runtime/main-a43d147de8a126344709.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/runtime/main-0d26b819b58d326b70e7.module.js" + <script src="/_next/static/runtime/main-1859294639ae2cfa2504.module.js" async="" crossorigin="anonymous" type="module"></script> <script src="/_next/static/chunks/framework.cdb73e402d876d4ac87f.js" async="" crossorigin="anonymous" nomodule=""></script> @@ -53,9 +53,9 @@ async="" crossorigin="anonymous" type="module"></script> <script src="/_next/static/chunks/4952ddcd88e7185e66c9cf40e2d848b7e27f1574.155621535702fe040780.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.b3f63bf01308f3d17f5c.js" + <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.884fe048044e62151ce8.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.85e4c18b9e4b400e5496.module.js" + <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.148b9d567c5ec499c554.module.js" async="" crossorigin="anonymous" type="module"></script> <script src="/_next/static/BUILD_ID/_buildManifest.js" async="" crossorigin="anonymous" nomodule=""></script> Diff for link.html @@ -14,9 +14,9 @@ as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.85e4c18b9e4b400e5496.module.js" + <link rel="preload" href="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.148b9d567c5ec499c554.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/runtime/main-0d26b819b58d326b70e7.module.js" + <link rel="preload" href="/_next/static/runtime/main-1859294639ae2cfa2504.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/BUILD_ID/_buildManifest.module.js" as="script" crossorigin="anonymous" /> @@ -52,13 +52,13 @@ async="" crossorigin="anonymous" type="module"></script> <script src="/_next/static/chunks/4952ddcd88e7185e66c9cf40e2d848b7e27f1574.155621535702fe040780.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.b3f63bf01308f3d17f5c.js" + <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.884fe048044e62151ce8.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.85e4c18b9e4b400e5496.module.js" + <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.148b9d567c5ec499c554.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/runtime/main-55b45fe5fab1b051a823.js" + <script src="/_next/static/runtime/main-a43d147de8a126344709.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/runtime/main-0d26b819b58d326b70e7.module.js" + <script src="/_next/static/runtime/main-1859294639ae2cfa2504.module.js" async="" crossorigin="anonymous" type="module"></script> <script src="/_next/static/BUILD_ID/_buildManifest.js" async="" crossorigin="anonymous" nomodule=""></script> Diff for withRouter.html @@ -14,9 +14,9 @@ as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/chunks/framework.cdb73e402d876d4ac87f.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.85e4c18b9e4b400e5496.module.js" + <link rel="preload" href="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.148b9d567c5ec499c554.module.js" as="script" crossorigin="anonymous" /> - <link rel="preload" href="/_next/static/runtime/main-0d26b819b58d326b70e7.module.js" + <link rel="preload" href="/_next/static/runtime/main-1859294639ae2cfa2504.module.js" as="script" crossorigin="anonymous" /> <link rel="preload" href="/_next/static/BUILD_ID/_buildManifest.module.js" as="script" crossorigin="anonymous" /> @@ -50,13 +50,13 @@ async="" crossorigin="anonymous" type="module"></script> <script src="/_next/static/chunks/4952ddcd88e7185e66c9cf40e2d848b7e27f1574.155621535702fe040780.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.b3f63bf01308f3d17f5c.js" + <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.884fe048044e62151ce8.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.85e4c18b9e4b400e5496.module.js" + <script src="/_next/static/chunks/de003c3a9d308750aa009870a5926f9b18ab31f4.148b9d567c5ec499c554.module.js" async="" crossorigin="anonymous" type="module"></script> - <script src="/_next/static/runtime/main-55b45fe5fab1b051a823.js" + <script src="/_next/static/runtime/main-a43d147de8a126344709.js" async="" crossorigin="anonymous" nomodule=""></script> - <script src="/_next/static/runtime/main-0d26b819b58d326b70e7.module.js" + <script src="/_next/static/runtime/main-1859294639ae2cfa2504.module.js" async="" crossorigin="anonymous" type="module"></script> <script src="/_next/static/BUILD_ID/_buildManifest.js" async="" crossorigin="anonymous" nomodule=""></script> Serverless Mode (Increase detected ⚠️) General Overall increase ⚠️ zeit/next.js canary ijjk/next.js update/pages-loader Change buildDuration 23.5s 25.8s ⚠️ +2.3s nodeModulesSize 42.4 MB 42.4 MB ⚠️ +22 B Client Bundles (main, webpack, commons) Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change main-HASH.js 18.3 kB 18.2 kB -21 B main-HASH.js gzip 6.65 kB 6.66 kB ⚠️ +4 B webpack-HASH.js 1.53 kB 1.53 kB ✓ webpack-HASH.js gzip 746 B 746 B ✓ 4952ddcd88e7..2b8407376.js 21.9 kB 21.9 kB ✓ 4952ddcd88e7..7376.js gzip 7.81 kB 7.81 kB ✓ de003c3a9d30..799a4e38e.js 43.1 kB N/A N/A de003c3a9d30..e38e.js gzip 15.4 kB N/A N/A framework.5b..dbaff70d3.js 125 kB 125 kB ✓ framework.5b..70d3.js gzip 39.4 kB 39.4 kB ✓ de003c3a9d30..1c5d17695.js N/A 43.1 kB N/A de003c3a9d30..7695.js gzip N/A 15.4 kB N/A Overall change 210 kB 210 kB -21 B Client Bundles (main, webpack, commons) Modern Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change main-HASH.module.js 16.6 kB 16.6 kB -16 B main-HASH.module.js gzip 6.4 kB 6.4 kB ⚠️ +3 B webpack-HASH.module.js 1.53 kB 1.53 kB ✓ webpack-HASH..dule.js gzip 746 B 746 B ✓ de003c3a9d30..f0.module.js 45.5 kB N/A N/A de003c3a9d30..dule.js gzip 16.5 kB N/A N/A framework.5b..d3.module.js 125 kB 125 kB ✓ framework.5b..dule.js gzip 39.4 kB 39.4 kB ✓ de003c3a9d30..5f.module.js N/A 45.5 kB N/A de003c3a9d30..dule.js gzip N/A 16.5 kB N/A Overall change 189 kB 189 kB -16 B Client Pages Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change _app.js 1.83 kB 1.81 kB -25 B _app.js gzip 883 B 873 B -10 B _error.js 12.1 kB 12 kB -25 B _error.js gzip 4.74 kB 4.73 kB -11 B hooks.js 12.7 kB 12.7 kB -25 B hooks.js gzip 4.81 kB 4.79 kB -16 B index.js 343 B 318 B -25 B index.js gzip 237 B 222 B -15 B link.js 8.14 kB 8.11 kB -25 B link.js gzip 3.49 kB 3.48 kB -15 B routerDirect.js 433 B 408 B -25 B routerDirect.js gzip 296 B 281 B -15 B withRouter.js 444 B 419 B -25 B withRouter.js gzip 294 B 280 B -14 B Overall change 36 kB 35.8 kB -175 B Client Pages Modern Overall decrease ✓ zeit/next.js canary ijjk/next.js update/pages-loader Change _app.module.js 1.73 kB 1.7 kB -25 B _app.module.js gzip 841 B 832 B -9 B _error.module.js 23.3 kB 23.3 kB -25 B _error.module.js gzip 8.6 kB 8.59 kB -9 B hooks.module.js 1.55 kB 1.52 kB -25 B hooks.module.js gzip 804 B 793 B -11 B index.module.js 319 B 294 B -25 B index.module.js gzip 238 B 223 B -15 B link.module.js 8.52 kB 8.5 kB -25 B link.module.js gzip 3.67 kB 3.66 kB -12 B routerDirect.module.js 419 B 394 B -25 B routerDirect..dule.js gzip 294 B 281 B -13 B withRouter.module.js 429 B 404 B -25 B withRouter.m..dule.js gzip 293 B 278 B -15 B Overall change 36.2 kB 36.1 kB -175 B Client Build Manifests zeit/next.js canary ijjk/next.js update/pages-loader Change _buildManifest.js 81 B 81 B ✓ _buildManifest.js gzip 61 B 61 B ✓ _buildManifest.module.js 81 B 81 B ✓ _buildManife..dule.js gzip 61 B 61 B ✓ Overall change 162 B 162 B ✓ Serverless bundles Overall increase ⚠️ zeit/next.js canary ijjk/next.js update/pages-loader Change _error.js 247 kB 247 kB ⚠️ +36 B _error.js gzip 66.1 kB 66.2 kB ⚠️ +7 B hooks.html 3.73 kB 3.73 kB ✓ hooks.html gzip 973 B 972 B -1 B index.js 248 kB 248 kB ⚠️ +36 B index.js gzip 66.5 kB 66.5 kB ⚠️ +10 B link.js 255 kB 255 kB ⚠️ +36 B link.js gzip 68.5 kB 68.5 kB ⚠️ +6 B routerDirect.js 249 kB 249 kB ⚠️ +36 B routerDirect.js gzip 66.5 kB 66.5 kB ⚠️ +10 B withRouter.js 248 kB 248 kB ⚠️ +36 B withRouter.js gzip 66.6 kB 66.6 kB ⚠️ +9 B Overall change 1.25 MB 1.25 MB ⚠️ +180 B
gharchive/pull-request
2019-09-05T00:24:24
2025-04-01T06:41:00.754705
{ "authors": [ "ijjk" ], "repo": "zeit/next.js", "url": "https://github.com/zeit/next.js/pull/8629", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
217206099
Can't run now-cli on PC I installed now on my windows 10 pc and after an update, it always say OS: Windows 10 Node Version: v6.9.5 now is bundled from now-desktop for windows Is your Windows version 32 bit or 64? https://www.microsoft.com/en-us/download/details.aspx?id=11533 Also please run fciv.exe -both now.exe against now executable that causes that error message. No answer for 15 days I'm also getting the message This app can't run on your PC Versions: OS: Windows 10 pro 64 bit Now: 1.2.3 Node: v6.9.5 Ran this: certutil -hashfile now.exe SHA1 hash of file now.exe: fb ff 64 3c 3e 46 70 a8 c7 d2 3d e5 c3 85 d9 5c df dd 29 6e CertUtil: -hashfile command completed successfully. @leo Please open this issue ....I too have got the same error...I downloaded Now Desktop 2.3.5 and I'm getting the following error on my Win 10 Pro 64 bit Node version : 7.4.0 λ certutil -hashfile now.exe SHA1 hash of file now.exe: d17c6509c92822121abcd37b799e675e0b32d330 Is there any way we can gets logs of now? Have you installed the binary through Now Desktop or did you just download Now Desktop expecting it to replace the binary automatically? 😊 Here's the thing @leo . As @hutch120 mentioned when we click on the Now Desktop , we get that error...no interface is even presented to us to download ....we just get that Win10 error message. Oh. So Now Desktop doesn't work? Not Now CLI. Actually both....even typing cli in the terminal gives the same issue Also running into this issue. @Esslamb I had to redo npm global install of now for the problem to go away. YMMV. @indcoder I just tried to remove it, it gave me some trouble so I removed it manually and re installed but still the same. The prompt just launches and then it prints access is denied. Any ideas ? @Esslamb which version are you running? I have got 7.3.1 but this issue cannot be resolved till we know what the logs are saying @leo Where does now-cli log to default when initializing? I tried installing the CLI alone without the desktop app but I still run into the same smart screen issue. Same issue, can't run now from CLI I'm running Win7 32-bit Can someone confirm if this is still broken or fixed? I will DL the latest version and try tonight @leo I uninstalled the CLI my windows machine due to the problems and just used my mac so hopefully, it's fixed. @leo This seems fixed for me mate no more smart screen warnings. Thanks! Going to optimistically close then, then :) Thanks for the confirmation @Esslamb! https://user-images.githubusercontent.com/15871340/31042210-2de75320-a5c0-11e7-83bb-048524348e5b.png Same issue, can't run now from CLI. I'm running Win7 32-bit.
gharchive/issue
2017-03-27T10:46:09
2025-04-01T06:41:00.772855
{ "authors": [ "Esslamb", "Qix-", "fallen90", "hutch120", "igorklopov", "indcoder", "itaditya", "leo", "sonyapax" ], "repo": "zeit/now-cli", "url": "https://github.com/zeit/now-cli/issues/406", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
306989016
Rewrite styled-jsx/css Since when we introduced it in v1 tagging a string with css would generate both scoped and global styles because there was no way for us to guess what were the user intentions. This sucks because you'd get twice as much code in your bundles (ok gzip probably made this suck less but still it is not optimal). I rewrote the entire external and outside of component styles plugin to finally generate only scoped or global styles based on how the css string is tagged. Basically now css by default generates scoped styles and global styles can be created using css.global: import css from 'styled-jsx/css' // Scoped styles export const button = css`button { color: hotpink; }` // Global styles export const body = css.global`body { margin: 0; }` // Works also with default exports export default css`div { color: green; }` In addition to reduce the bundle size this change allows for one awesome thing that is... we could write a Webpack loader or use an existing one (I can talk to this guy) to let people write CSS in external .css files. This means that they'd get all the tools they are used to and they could do all the kind of transformations they want before running the styled-jsx transformation. This branch introduces another neat feature that is a style resolver: css.resolve yields an object that contains the scoped className and the scoped styles (a react element): import css from 'styled-jsx/css' // Resolved styles export const link = css.resolve`a { color: green; }` // link.className -> scoped className to apply to `a` elements e.g. jsx-123 // link.styles -> styles element to render inside of your component This solution was basically already possible in user land but now we have a proper API for it, and it can also work with dynamic styles: function getStyles(color) { return css.resolve` a { color: ${color} } ` } Final bonus. I created a Babel macro for resolve which should allow people to use this last feature in Create React App. Since these are breaking changes, I'd say we release v3. For more details take a look at the README.md, I am not expecting you to review this all :) @giuseppeg Question about this PR. Does css.resolve still have the same behavior where nested selectors are prefixed? Use case question I have is when passing a className to a third-party component, and I want only the top-level selector prefixed and everything within it not prefixed. @jadengore yes every selector in the css string is scoped. Use case question I have is when passing a className to a third-party component, and I want only the top-level selector prefixed and everything within it not prefixed. For this you don't need styled-jsx I guess. You can just generate a unique classname that you would use like in ID to style the third party component with global styles we could write a Webpack loader or use an existing one (I can talk to this guy) to let people write CSS in external .css files. cc @hanford is currently using https://github.com/traveloka/styled-modules Awesome! When will this be released? we are kinda blocked by https://github.com/thysultan/stylis.js/issues/101
gharchive/pull-request
2018-03-20T18:34:22
2025-04-01T06:41:00.781570
{ "authors": [ "giuseppeg", "jadengore", "timneutkens" ], "repo": "zeit/styled-jsx", "url": "https://github.com/zeit/styled-jsx/pull/422", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
362309567
Add styled-jsx/babel-test plugin Adds styled-jsx/babel-test plugin as per discussion with @giuseppeg. The readme entry feels a bit long, but I think it's necessary to give some background to explain why you might (or might not) want to use it. Closes #459. @callumlocke is it ok if we release next week? or do you need this asap? next week is good 👍
gharchive/pull-request
2018-09-20T18:31:21
2025-04-01T06:41:00.783476
{ "authors": [ "callumlocke", "giuseppeg" ], "repo": "zeit/styled-jsx", "url": "https://github.com/zeit/styled-jsx/pull/493", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
2580026283
How can I test the preferences.json file I'm working on? I'm trying to add a preferences.json file to my theme (better active tab) to allow the user to select whether the active tab indicator is on the right or on the left. I'm testing it with a preferences.json file that I add to my folder in .config/zen/chrome/zen-themes/... but I don't see the option when I open the browser, not even the gear icon. The preferences file looks like this: { "property": "theme.better-active-tab.on-right", "label": "Move tha active tab indicator to the right", "type": "checkbox" } Should I just create a pull request to the theme-store with the changes? I'd like to test that it works before that. Make sure you encase it again with another curlies {}, I've made a mistake of not doing that { { "property": "theme.better-active-tab.on-right", "label": "Move tha active tab indicator to the right", "type": "checkbox" } } Thanks, that was one piece of the puzzle. To get the options on the browser though, I had to edit the zen-themes.json file in ~/.config/zen and manually add the preferences file to the respective entry in the json.
gharchive/issue
2024-10-10T23:13:38
2025-04-01T06:41:00.842868
{ "authors": [ "Dinno-DEV", "HliasOuzounis" ], "repo": "zen-browser/theme-store", "url": "https://github.com/zen-browser/theme-store/issues/554", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
298422591
storage.get returns "null" on IOS Chrome When I am on desktop browser I can retrieve the key from the hub correctly but when I open the web page on IOS Chrome it returns "null". It also works on IOS Safari. The compatibility section says that iOS is not supported. @fernando-gl Check Notes on Safari 7+ (OSX, iOS) under Compatibility in the readme. Since all browsers on IOS use the Apple provided browser engine, its likely the local storage restrictions apply in this case. Can you guys recommend any workarounds for iOS Chrome? @ViieeS yeah I had the same problem and ended up using cookies
gharchive/issue
2018-02-19T22:57:22
2025-04-01T06:41:00.866671
{ "authors": [ "NukaPunk", "ViieeS", "christian-schulze", "ferezoz" ], "repo": "zendesk/cross-storage", "url": "https://github.com/zendesk/cross-storage/issues/47", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
158500648
Update the CSS and JS assets The assets for CSS and JS are a little outdated. Should be updated to newer versions, shouldn't they? Also "jQuery", "Respond.js" and "HTML5 Shiv" should be removed. @RalfEggert Any chance you'd be willing to provide the updated versions? :grin: Looks like #309 will do this for us!
gharchive/issue
2016-06-04T11:30:34
2025-04-01T06:41:00.868193
{ "authors": [ "RalfEggert", "froschdesign", "weierophinney" ], "repo": "zendframework/ZendSkeletonApplication", "url": "https://github.com/zendframework/ZendSkeletonApplication/issues/333", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
134684009
Zend Data Cache: Add capability for the "lock-on-expire" feature https://support.zend.com/hc/en-us/articles/203995253-Expired-data-cache-can-be-read-by-subsequent-scripts-for-a-time Found in #61 Closed by a0f45af into develop (#80)
gharchive/issue
2016-02-18T20:18:24
2025-04-01T06:41:00.869458
{ "authors": [ "marc-mabe" ], "repo": "zendframework/zend-cache", "url": "https://github.com/zendframework/zend-cache/issues/79", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
403576671
MVC InputFilterPluginManager missing InputFilterAbstractFactory config InputFilterPluginManager in MVC environment does not create input filter defined in config. Code to reproduce the issue $config = [ 'input_filter_specs' => [ MyInput::class => [ //... ], ], ]; $inputFilter = $container->get(InputFilter\InputFilterPluginManager::class)->get(MyInput::class); Expected results InputFilterPluginManager creates defined InputFilter Actual results Exception thrown Plugin of type MyInput is invalid; must implement Zend\InputFilter\InputFilterInterface or Zend\InputFilter\InputInterface Imho this happens because Module.php provide incomplete config. public function getConfig() { $provider = new ConfigProvider(); return [ 'service_manager' => $provider->getDependencyConfig(), 'input_filters' => $provider->getInputFilterConfig(), // this line is missing ]; } @weierophinney do you think it is a bug? Should I create PR? @vaclavvanik Please look at: https://github.com/zendframework/zend-inputfilter/blob/a23e67d41de09bbc325543acb756ba448f182c20/src/Module.php#L30-L42 ...and you will find input_filters. Or do you try to add the entire specification as array in the configuration and not the factories? Doesn't it say the problem right here: Plugin of type MyInput is invalid; must implement Zend\InputFilter\InputFilterInterface or Zend\InputFilter\InputInterface https://github.com/zendframework/zend-inputfilter/blob/a23e67d41de09bbc325543acb756ba448f182c20/src/InputFilterPluginManager.php#L125-L143 your MyInput class does not implement those interfaces or extend other class that does @Xerkus I think @vaclavvanik wants to insert the input-filter specification as an array into the configuration and for this the InputFilterAbstractFactory must be added manually as described in the documentation: Setup When using zend-mvc version 2 releases, this functionality is disabled by default. To enable it, you must add the Zend\InputFilter\InputFilterAbstractServiceFactory abstract factory to the Zend\InputFilter\InputFilterPluginManager configuration, which is under the input_filters configuration key. https://docs.zendframework.com/zend-inputfilter/specs/#setup @froschdesign I see, $autoAddInvokableClass = true masked the problem. @froschdesign as I wrote above I think, that it is a bug, that in Module.php is missing config line with input_filters. Which causes that InputFilterAbstractFactory is not registered in InputFilterPluginManager. In ConfigProvider is InputFilterAbstractFactory registered. @vaclavvanik Did you see the hint in the documentation? By the way, this is the same behaviour as in zend-form. The abstract factory FormAbstractServiceFactory is not registered by default. You must add the factory to your configuration and then you can use the configuration key forms.. In the docs is: For Expressive when using the configuration manager, and for zend-mvc v3 releases, the functionality is enabled by default, assuming you are using the component installer. I am using mvc v3 and InputFilterAbstractFactory is not registered... :-/ Just checked, docs are indeed wrong. It is not registered for any mvc version by default. @vaclavvanik I'm confused, unfortunately. If you use version v3 then you should have also the last version of zend-inputfilter! And the latest of version of zend-inputfilter contains the InputFilterAbstractFactory! See: https://github.com/zendframework/zend-inputfilter/releases/tag/release-2.8.2 @vaclavvanik I will create a pull request when I'm back on my computer and will ping you for testing. @froschdesign #162 fixed InputFilterAbstractFactory registration in ConfigProvider (Expressive). MVC v3 uses Module and in this class has not 'input_filters' config key in getConfig() which causes that InputFilterAbstractFactory is not registered... (really confusing) @vaclavvanik really confusing Right, because in zend-form is the behaviour different. :confused:
gharchive/issue
2019-01-27T17:50:52
2025-04-01T06:41:00.883177
{ "authors": [ "Xerkus", "froschdesign", "vaclavvanik" ], "repo": "zendframework/zend-inputfilter", "url": "https://github.com/zendframework/zend-inputfilter/issues/177", "license": "bsd-3-clause", "license_type": "permissive", "license_source": "bigquery" }
232455822
mail is going into spam and taking too long to deliver. Hi, I have written mail fuctionality like below and the mail is going to spam always and it is taking too long to deliver the mail. $message = new Message(); $message->setTo( 'abc@xyz.com', 'user name' ); $message->setFrom("admin@xyz.com", "xyz"); $message->setSubject("subject"); $message->setReplyTo('admin@xyz.com', 'xyz'); $message->setBody("sample email"); $mail = new Mail(); $mail->send($message); i tried adding the headers like below but no luck. $message = new Message(); $message->setTo( 'abc@xyz.com', 'user name' ); $message->getHeaders()->addHeaderLine('MIME-Version', '1.0'); $message->getHeaders()->addHeaderLine('Content-Type', 'text/html'); $message->getHeaders()->addHeaderLine('Content-Transfer-Encoding', '8bit'); $message->getHeaders()->addHeaderLine('X-Mailer:', 'PHP/'.phpversion()); $message->setFrom("admin@xyz.com", "xyz"); $message->setSubject("subject"); $message->setReplyTo('admin@xyz.com', 'xyz'); $message->setBody("sample email"); $mail = new Mail(); $mail->send($message); Please suggest me what i am doing wrong here and how to fix it to send the email to inbox instead of spam. The reason messages are marked as spam generally have to do with configuration of the mail transport server via which the email is sent. Based on your above example, you're likely using the default transport, which send via the system "sendmail" binary; this could be sendmail, postfix, ssmtp, or one of a dozen other MTAs depending on what OS you use. You will need to research what MTA your system uses to send emails, and how to configure it correctly so as to avoid other servers from flagging mail from it as spam. This is a complex subject, and difficult to get right. As such, the better solution is to use known good providers such as Gmail, or commercial transactional email providers that use SMTP.
gharchive/issue
2017-05-31T05:16:31
2025-04-01T06:41:00.886649
{ "authors": [ "srivi1225", "weierophinney" ], "repo": "zendframework/zend-mail", "url": "https://github.com/zendframework/zend-mail/issues/152", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
308848840
AbstractControllerTestCase's count not compatible with PHP 7.2 This line and similar: https://github.com/zendframework/zend-test/blob/master/src/PHPUnit/Controller/AbstractControllerTestCase.php#L252 Rely on count, whose behavior has changed in PHP 7.2: http://php.net/manual/en/migration72.incompatible.php#migration72.incompatible.warn-on-non-countable-types I think the fix is a simple boolean, taking advantage of short-circuit and behavior: $params_exist = ( (null !==$params) && (count($params) > 0)); Will make that a PR if I'm not off the mark. @bitwombat In case $params can be only array|null and we check count($params) != 0 we can replace if with simply if ($params) and it will give us exactly the same result. PR is very welcome ! 👍 Fixed in #63 Beat me to it! Good work.
gharchive/issue
2018-03-27T07:17:56
2025-04-01T06:41:00.890114
{ "authors": [ "bitwombat", "webimpress" ], "repo": "zendframework/zend-test", "url": "https://github.com/zendframework/zend-test/issues/62", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
43640716
Update Fieldset.php See: https://github.com/zendframework/zf2/issues/6143#issuecomment-56533308 @jiromm I'd like to include this in 2.4, but: I need unit tests demonstrating usage of the feature, and these (and existing tests) need to pass your branch needs to be rebased against current master If you can do these in the next two weeks, I'll add it to the 2.4 milestone. @weierophinney That was already fixed in 2.3.4 Thanks. Closed, per request from author.
gharchive/pull-request
2014-09-23T15:04:57
2025-04-01T06:41:00.892748
{ "authors": [ "jiromm", "weierophinney" ], "repo": "zendframework/zf2", "url": "https://github.com/zendframework/zf2/pull/6690", "license": "bsd-3-clause", "license_type": "permissive", "license_source": "bigquery" }
146509467
Add some extensions Merge đi anh :D Sorry em mấy cái này ít dùng quá, em nên tách riêng ra, đẩy lên pod vd như BadgeButton Còn mấy acis alert thì răng anh :(
gharchive/pull-request
2016-04-07T04:52:22
2025-04-01T06:41:00.893867
{ "authors": [ "Stjng", "zendobk" ], "repo": "zendobk/SwiftUtils", "url": "https://github.com/zendobk/SwiftUtils/pull/1", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
1195625843
Consider unifying the terminology collection_id / CONCEPT_RECORD_ID Currently (0.11.0), the documentation of the CLI uses the term "collection" as well as the termn "concept" to describe the same thing. It may be better to pick one and stick with it (probably "concept", as that is what zenodo themselves use). Note there is also $DRAFT_ID and $LATEST_ID, maybe these should both be renamed to $RECORD_ID for consistency. this also affects the terms used in zenodraft-autocomplete, maybe id should be record_id and collection_id should be concept_id Fixed in 298cf28314d9158e4d0cc569801a59c09216be5a, closing this issue
gharchive/issue
2022-04-07T07:23:17
2025-04-01T06:41:00.901757
{ "authors": [ "jspaaks" ], "repo": "zenodraft/zenodraft", "url": "https://github.com/zenodraft/zenodraft/issues/59", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
161245810
Input focus/click does not copy to clipboard in Firefox. Minimal example https://jsfiddle.net/1u3xwnLh/ Expected behaviour In most browsers, clicking (focusing into) the input field will successfully copy the input value to the clipboard. Actual behaviour Instead of copying input value to clipboard, despite hitting the success callback, the clipboard does not actually contain the input value. Browsers affected Firefox (45) does not work, but does in most other modern browsers like Chrome. Hey @zackgilbert, the JSFiddle you shared is incomplete. Can you provide one that reproduces the error you're describing? I made a small update to your example and everything seems to be working fine: https://jsfiddle.net/1u3xwnLh/1/ I also noticed you also loaded the file from GitHub Raw which doesn't contain the proper MIME types. Try using one of our CDN providers: https://github.com/zenorocha/clipboard.js/wiki/CDN-Providers Your update (adding the button to click), while totally fixing the issue (and what I've had to do to fix the issue in my project), defeats the issue. I'll try to get the jsfiddle working (had it working from a standard html file). On Mon, Jun 20, 2016 at 12:17 PM, Zeno Rocha notifications@github.com wrote: I made a small update to your example and everything seems to be working fine: https://jsfiddle.net/1u3xwnLh/1/ — You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/zenorocha/clipboard.js/issues/265#issuecomment-227208205, or mute the thread https://github.com/notifications/unsubscribe/AAaZjqFf2iOTWmpnWr5eYU-PQsH-mQOOks5qNstDgaJpZM4I56l1 . Ok, I'll wait for the updated jsfiddle but I don't think it's possible to copy the input value to the clipboard when focusing on the input field. Man. Well, got the fiddles to work as intended (https://jsfiddle.net/1u3xwnLh/4/), but of course now I can't reproduce the error in Firefox. Not sure why its not working in my app but not in the example. Computers are fun. I'll just close this for now until I can more accurately reproduce the issue. Cool! Are you using the script from GitHub Raw locally? Maybe that was the problem. Nope. I have a locally saved filed for that. Probably just conflicts with other js code.
gharchive/issue
2016-06-20T17:08:42
2025-04-01T06:41:00.910013
{ "authors": [ "zackgilbert", "zenorocha" ], "repo": "zenorocha/clipboard.js", "url": "https://github.com/zenorocha/clipboard.js/issues/265", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1649617158
OpenAPI security Is your feature request related to a problem? Please describe. As I'm transitioning from FastAPI to Zenstack, I'm used to have the generated Swagger UI with authentication built-in. For endpoints requiring auth, there is a padlock to identify them. I would love to have the same within Zenstack. Describe the solution you'd like Ideally, I would like an automatic addition of an empty security field in the generated schema when the model/operation (endpoint) doesn't require any authentication (e.g. for a model with the @@allow('create', true) attribute). Describe alternatives you've considered Add manually a security field in @@openapi.meta attribute. E.g: @@openapi.meta({ description: 'A user of the pet store', create: { description: 'I would like to disable Swagger UI authentication for this operation', security: [] <--- here }, }) Additional context When I add this in the generated specification : It removes the authentication check : Working example : https://github.com/Azzerty23/petstore-openapi-zenstack Thanks for the proposal @Azzerty23 ! Yes, security settings are missing right now. Following the specification, I believe we need to add three things: A way to express security scheme Maybe just extend the plugin options: plugin openapi { ... securityScheme = [ { myBearer: { type: 'http', scheme: 'bearer' } }, { myApiKey: { type: 'apiKey', in: 'header', name: 'X-API-KEY' } } ] } These can just be dumped into the 'components' section in the spec as is. Generate spec using the scheme By default, if "securityScheme" is configured, a root-level "security" setting will be added to the spec, including all schemes, security: - myBearer: [] - myApiKey: [] On the route level, as you suggested, we can statically analyze if an operation is fully open, and if so, generate an override with security: []. Explicitly customize route-level security As you suggested, we can allow further customization of security for a route using @@openapi.meta, either setting it to empty or some specific scheme. Does this generally look good to you? Yes, that's the perfect solution ! I updated the exemple for reference if that helps: https://github.com/Azzerty23/petstore-openapi-zenstack And while I'm at it, it would have been nice to be able to customize the tags description: [ModelName] operations by default. Maybe like this: @@openapi.meta({ description: 'A user of the pet store', // to replace User operations create: { ... }, }) Got it. We'll try to incorporate these in the next release. Again, sorry for that, it would be nice to be able to deprecate an endpoint. Yes, we can use this issue to keep collecting missing features around openapi. Fixed by #340 and #342
gharchive/issue
2023-03-31T15:50:55
2025-04-01T06:41:00.924188
{ "authors": [ "Azzerty23", "ymc9" ], "repo": "zenstackhq/zenstack", "url": "https://github.com/zenstackhq/zenstack/issues/321", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
113850555
Ability to add breadcrumbs via module Ability to add breadcrumbs via module @TheMaaarc use $links->teardown();
gharchive/issue
2015-10-28T15:39:16
2025-04-01T06:41:00.966180
{ "authors": [ "nadar" ], "repo": "zephir/luya", "url": "https://github.com/zephir/luya/issues/420", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
608782438
Implement Microchip SAM family CAN controller driver Summary A number of Microchip (formerly, Atmel) SAM family SoCs include a CAN 2.0A/B and CAN-FD capable host controller peripheral. In order to take advantage of this, it is necessary to implement a driver for it, that can interface to the existing Zephyr CAN protocol stack. Target Devices The following Microchip SAM family devices implement the "Microchip CAN Controller" peripheral: SAM C21 SAM E51/E54 SAM E70 SAM V70/V71 Note that the following (old generation) Atmel SAM family devices also include a CAN controller peripheral, but this is completely different from the "Microchip CAN Controller" and therefore incompatible; this issue does not propose to support them: SAM 3X SAM 4E Is anyone already working on this by any chance? cc @benpicco @nandojve @mnkp @aurel32 @karstenkoenig @alexanderwachter Not that I know off. Do you plan to work on that driver by any chance? Not that I know off. Do you plan to work on that driver by any chance? Not anytime soon, but it is in my long-term backlog for now. I'm not working...happy to read that! FYI: those Microchip (formerly Atmel) products implement Bosch M_CAN IP. The same IP is used by ST (FDCAN) and TI (TCAN4550) so there may be value in having a generic driver. I just implemented the driver for STM32G4 (FDCAN) #22832 FYI: those Microchip (formerly Atmel) products implement Bosch M_CAN IP. The same IP is used by ST (FDCAN) and TI (TCAN4550) so there may be value in having a generic driver. @DarrylGamroth Comparing the CAN FD register maps of the SAM and STM32 SoCs, I can see that is indeed the case. Thanks for the very useful info! I just implemented the driver for STM32G4 (FDCAN) #22832 @alexanderwachter It looks like it would be possible to support the Atmel SAM series just by refactoring your "STM32" CAN FD driver in that PR :) Not working on any CAN drivers lately :-( @DarrylGamroth Oh wow thanks for pointing that out! I knew the TCAN4550 standalone controller had a bosch m_can ip but not that it's also what's in the STs FDCAN. The TCAN4550 looked really sweet, but the price of that evaluation board is just a bit much... @DarrylGamroth thanks for pointing this out! I‘ll rename the driver then! I separated the generic part of the can_m module. Some functions need to be implemented for every platform, like all clock related stuff. Unfortunately, the STM FDCAN is not 100% compatible with can_m. It misses some registers, and the size of the message RAM differs. There will be some #ifdefs in the code. Nice! Could the message RAM definition be defined in Devicetree similar to the Linux dts then use DT_REG_ADDR_BY_NAME(DT_INST(0, bosch_m_can), message_ram) to get the base and DT_REG_SIZE_BY_NAME(DT_INST(0, bosch_m_can), message_ram) for the size? I might be wrong with the correct DT macro usage but you get the general idea. Sure, it is not finished yet. There are some other things, especially in the init, that need to be changed. I am currently working on a M_CAN driver specialization for the SAMV71 series. My current progress can be found here: https://github.com/Urist-McGit/zephyr/commits/can_mcan_samv71_driver The work is done for the most part. I am unfortunately stuck on a problem very likely related to the message ram. To summarize the current progress: the driver sends and receives messages on the right pins, with the correct bitrate etc. But unfortunately I receive and send somewhat random messages, sometimes all zero, sometimes random garbage, sometimes the right message. All testing is currently done in normal, not CANFD mode, since I only have a USB2CAN dongle. I would be very glad to accept some guidance with my problem. I think it would be useful to have the collaboration in a WIP PR or something like that, where I could also lay out the exact way I test the driver, what hardware I test on etc. I am open to any other suggestions though. Thanks in advance! @Urist-McGit can you write a message in the canbus slack channel? Michael Albrechr, @legoabram and me already solved this problem. It is the cache! You need to invalidate the caches after a write and before a read of the msg_sram @Urist-McGit The cache invalidation fix for the common M_CAN driver code is in the main tree now. Do you plan on picking up your work on the Atmel SAMV71 M_CAN driver front-end? After a discussion on the zephyr slack channel, I found out that @legoabram and Michael Albrecht had already implementented a prototype of the specialization before me. They did not mention it anywhere here so I unfortunately redid their work for the most part. Have you tried pinging them? They should be able to help you :) It has been quite some time since I touched the code, but if I remember correctly, my code works for the samv71 revision B board and support for revision A was in the works. My company has since moved on from the project and I dont have the hardware at hand anymore. I won't be able to finish it, but maybe someone can pick up the work. incoming... #41674
gharchive/issue
2020-04-29T05:11:24
2025-04-01T06:41:00.983568
{ "authors": [ "DarrylGamroth", "Urist-McGit", "alexanderwachter", "henrikbrixandersen", "karstenkoenig", "nandojve", "stephanosio" ], "repo": "zephyrproject-rtos/zephyr", "url": "https://github.com/zephyrproject-rtos/zephyr/issues/24802", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
676145908
Cannot build samples/net/sockets/echo for cc3220sf_launchxl Describe the bug Cannot build samples/net/sockets/echo for cc3220sf_launchxl To Reproduce Steps to reproduce the behavior: build samples/net/sockets/echo for cc3220sf_launchxl Expected behavior build should succeed Impact Annoyance. Logs and console output In file included from /workdir/zephyr/subsys/net/ip/net_context.c:40: /workdir/zephyr/subsys/net/ip/tcp2.h:120:1: error: useless type name in empty declaration [-Werror] void net_tcp_init(void); Environment (please complete the following information): OS: Linux Toolchain: (Zephyr SDK Latest master Additional context It showed up in CI through PR #24873 I have put up a fix in #27476. It is concerning however that CI didn't try to build for platforms using non-native stack when the tcp2 PR was submitted. Is this a gap that can be addressed for the future? Is this a gap that can be addressed for the future? This should be addressed for sure. We seem to be missing tests that would validate that non-native stacks can be compiled properly. Would you be able to propose something for this? Is this a gap that can be addressed for the future? This should be addressed for sure. We seem to be missing tests that would validate that non-native stacks can be compiled properly. Would you be able to propose something for this? @jukkar I am not familiar with how CI determines which test to build given a PR, hence my question. Is this documented somewhere?
gharchive/issue
2020-08-10T13:41:04
2025-04-01T06:41:00.989567
{ "authors": [ "jukkar", "tbursztyka", "vanti" ], "repo": "zephyrproject-rtos/zephyr", "url": "https://github.com/zephyrproject-rtos/zephyr/issues/27463", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
264780335
kconfig warning are being ignored by sanitycheck Sanitycheck should report failure when kconfig has warnings, for example on the regular sanitycheck run we get the following: sanity-out/bbc_microbit/tests/power/power_states/test_socwatch/config-sanitycheck.log:warning: (UART_NRF5) selects GPIO_NRF5 which has unmet direct dependencies (GPIO && SOC_FAMILY_NRF5 || SOC_FAMILY_NRF5 && GPIO || BOARD_96B_CARBON_NRF51 && UART_NRF5 || BOARD_ARDUINO_101_BLE && UART_NRF5 || BOARD_CURIE_BLE && UART_NRF5 || BOARD_QUARK_SE_C1000_BLE && UART_NRF5) sanity-out/bbc_microbit/tests/power/power_states/test_socwatch/config-sanitycheck.log:warning: (UART_NRF5) selects GPIO_NRF5 which has unmet direct dependencies (GPIO && SOC_FAMILY_NRF5 || SOC_FAMILY_NRF5 && GPIO || BOARD_96B_CARBON_NRF51 && UART_NRF5 || BOARD_ARDUINO_101_BLE && UART_NRF5 || BOARD_CURIE_BLE && UART_NRF5 || BOARD_QUARK_SE_C1000_BLE && UART_NRF5) sanity-out/bbc_microbit/tests/power/power_states/test_socwatch/config-sanitycheck.log:warning: (UART_NRF5) selects GPIO_NRF5 which has unmet direct dependencies (GPIO && SOC_FAMILY_NRF5 || SOC_FAMILY_NRF5 && GPIO || BOARD_96B_CARBON_NRF51 && UART_NRF5 || BOARD_ARDUINO_101_BLE && UART_NRF5 || BOARD_CURIE_BLE && UART_NRF5 || BOARD_QUARK_SE_C1000_BLE && UART_NRF5) sanity-out/bbc_microbit/tests/power/power_states/test/config-sanitycheck.log:warning: (UART_NRF5) selects GPIO_NRF5 which has unmet direct dependencies (GPIO && SOC_FAMILY_NRF5 || SOC_FAMILY_NRF5 && GPIO || BOARD_96B_CARBON_NRF51 && UART_NRF5 || BOARD_ARDUINO_101_BLE && UART_NRF5 || BOARD_CURIE_BLE && UART_NRF5 || BOARD_QUARK_SE_C1000_BLE && UART_NRF5) sanity-out/bbc_microbit/tests/power/power_states/test/config-sanitycheck.log:warning: (UART_NRF5) selects GPIO_NRF5 which has unmet direct dependencies (GPIO && SOC_FAMILY_NRF5 || SOC_FAMILY_NRF5 && GPIO || BOARD_96B_CARBON_NRF51 && UART_NRF5 || BOARD_ARDUINO_101_BLE && UART_NRF5 || BOARD_CURIE_BLE && UART_NRF5 || BOARD_QUARK_SE_C1000_BLE && UART_NRF5) sanity-out/bbc_microbit/tests/power/power_states/test/config-sanitycheck.log:warning: (UART_NRF5) selects GPIO_NRF5 which has unmet direct dependencies (GPIO && SOC_FAMILY_NRF5 || SOC_FAMILY_NRF5 && GPIO || BOARD_96B_CARBON_NRF51 && UART_NRF5 || BOARD_ARDUINO_101_BLE && UART_NRF5 || BOARD_CURIE_BLE && UART_NRF5 || BOARD_QUARK_SE_C1000_BLE && UART_NRF5) sanity-out/qemu_nios2/tests/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/tests/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/tests/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/tests/drivers/build_all/test_build_ethernet/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/tests/drivers/build_all/test_build_ethernet/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/tests/drivers/build_all/test_build_ethernet/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/shell/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/shell/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/shell/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/getchar/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/getchar/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/getchar/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/echo/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/echo/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/echo/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/getline/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/getline/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/getline/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/tests/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/tests/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/tests/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/tests/drivers/build_all/test_build_ethernet/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/tests/drivers/build_all/test_build_ethernet/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/tests/drivers/build_all/test_build_ethernet/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/samples/subsys/shell/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/samples/subsys/shell/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/samples/subsys/shell/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/samples/subsys/console/getchar/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/samples/subsys/console/getchar/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/samples/subsys/console/getchar/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/samples/subsys/console/echo/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/samples/subsys/console/echo/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/samples/subsys/console/echo/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/samples/subsys/console/getline/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/samples/subsys/console/getline/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/samples/subsys/console/getline/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/quark_se_c1000_devboard/samples/net/wpan_serial/test_x86/build.log:warning: (NET_L2_BT && NET_L2_IEEE802154) selects NET_6LO which has unmet direct dependencies (NETWORKING && !NET_L2_RAW_CHANNEL && NET_IPV6) sanity-out/quark_se_c1000_devboard/samples/net/wpan_serial/test_x86/build.log:warning: (NET_L2_BT && NET_L2_IEEE802154) selects NET_6LO which has unmet direct dependencies (NETWORKING && !NET_L2_RAW_CHANNEL && NET_IPV6) sanity-out/quark_se_c1000_devboard/samples/net/wpan_serial/test_x86/build.log:warning: (NET_L2_BT && NET_L2_IEEE802154) selects NET_6LO which has unmet direct dependencies (NETWORKING && !NET_L2_RAW_CHANNEL && NET_IPV6) sanity-out/qemu_xtensa/tests/shell/test/config-sanitycheck.log:warning: (CONSOLE_SHELL && CONSOLE_GETCHAR && CONSOLE_GETLINE) selects CONSOLE_HANDLER which has unmet direct dependencies (CONSOLE && UART_CONSOLE) sanity-out/qemu_xtensa/tests/shell/test/config-sanitycheck.log:warning: (CONSOLE_SHELL && CONSOLE_GETCHAR && CONSOLE_GETLINE) selects CONSOLE_HANDLER which has unmet direct dependencies (CONSOLE && UART_CONSOLE) sanity-out/qemu_xtensa/tests/shell/test/config-sanitycheck.log:warning: (CONSOLE_SHELL && CONSOLE_GETCHAR && CONSOLE_GETLINE) selects CONSOLE_HANDLER which has unmet direct dependencies (CONSOLE && UART_CONSOLE) sanity-out/qemu_xtensa/tests/drivers/build_all/test_build_ethernet/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_xtensa/tests/drivers/build_all/test_build_ethernet/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_xtensa/tests/drivers/build_all/test_build_ethernet/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) ^C sky:zephyr(fix_shippable): grep -r "warning" sanity-out/ | grep select sanity-out/bbc_microbit/tests/power/power_states/test_socwatch/config-sanitycheck.log:warning: (UART_NRF5) selects GPIO_NRF5 which has unmet direct dependencies (GPIO && SOC_FAMILY_NRF5 || SOC_FAMILY_NRF5 && GPIO || BOARD_96B_CARBON_NRF51 && UART_NRF5 || BOARD_ARDUINO_101_BLE && UART_NRF5 || BOARD_CURIE_BLE && UART_NRF5 || BOARD_QUARK_SE_C1000_BLE && UART_NRF5) sanity-out/bbc_microbit/tests/power/power_states/test_socwatch/config-sanitycheck.log:warning: (UART_NRF5) selects GPIO_NRF5 which has unmet direct dependencies (GPIO && SOC_FAMILY_NRF5 || SOC_FAMILY_NRF5 && GPIO || BOARD_96B_CARBON_NRF51 && UART_NRF5 || BOARD_ARDUINO_101_BLE && UART_NRF5 || BOARD_CURIE_BLE && UART_NRF5 || BOARD_QUARK_SE_C1000_BLE && UART_NRF5) sanity-out/bbc_microbit/tests/power/power_states/test_socwatch/config-sanitycheck.log:warning: (UART_NRF5) selects GPIO_NRF5 which has unmet direct dependencies (GPIO && SOC_FAMILY_NRF5 || SOC_FAMILY_NRF5 && GPIO || BOARD_96B_CARBON_NRF51 && UART_NRF5 || BOARD_ARDUINO_101_BLE && UART_NRF5 || BOARD_CURIE_BLE && UART_NRF5 || BOARD_QUARK_SE_C1000_BLE && UART_NRF5) sanity-out/bbc_microbit/tests/power/power_states/test/config-sanitycheck.log:warning: (UART_NRF5) selects GPIO_NRF5 which has unmet direct dependencies (GPIO && SOC_FAMILY_NRF5 || SOC_FAMILY_NRF5 && GPIO || BOARD_96B_CARBON_NRF51 && UART_NRF5 || BOARD_ARDUINO_101_BLE && UART_NRF5 || BOARD_CURIE_BLE && UART_NRF5 || BOARD_QUARK_SE_C1000_BLE && UART_NRF5) sanity-out/bbc_microbit/tests/power/power_states/test/config-sanitycheck.log:warning: (UART_NRF5) selects GPIO_NRF5 which has unmet direct dependencies (GPIO && SOC_FAMILY_NRF5 || SOC_FAMILY_NRF5 && GPIO || BOARD_96B_CARBON_NRF51 && UART_NRF5 || BOARD_ARDUINO_101_BLE && UART_NRF5 || BOARD_CURIE_BLE && UART_NRF5 || BOARD_QUARK_SE_C1000_BLE && UART_NRF5) sanity-out/bbc_microbit/tests/power/power_states/test/config-sanitycheck.log:warning: (UART_NRF5) selects GPIO_NRF5 which has unmet direct dependencies (GPIO && SOC_FAMILY_NRF5 || SOC_FAMILY_NRF5 && GPIO || BOARD_96B_CARBON_NRF51 && UART_NRF5 || BOARD_ARDUINO_101_BLE && UART_NRF5 || BOARD_CURIE_BLE && UART_NRF5 || BOARD_QUARK_SE_C1000_BLE && UART_NRF5) sanity-out/qemu_nios2/tests/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/tests/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/tests/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/tests/drivers/build_all/test_build_ethernet/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/tests/drivers/build_all/test_build_ethernet/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/tests/drivers/build_all/test_build_ethernet/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/shell/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/shell/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/shell/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/getchar/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/getchar/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/getchar/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/echo/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/echo/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/echo/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/getline/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/getline/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/getline/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) ^C sky:zephyr(fix_shippable): grep -r "warning" sanity-out/ | grep select sanity-out/bbc_microbit/tests/power/power_states/test_socwatch/config-sanitycheck.log:warning: (UART_NRF5) selects GPIO_NRF5 which has unmet direct dependencies (GPIO && SOC_FAMILY_NRF5 || SOC_FAMILY_NRF5 && GPIO || BOARD_96B_CARBON_NRF51 && UART_NRF5 || BOARD_ARDUINO_101_BLE && UART_NRF5 || BOARD_CURIE_BLE && UART_NRF5 || BOARD_QUARK_SE_C1000_BLE && UART_NRF5) sanity-out/bbc_microbit/tests/power/power_states/test_socwatch/config-sanitycheck.log:warning: (UART_NRF5) selects GPIO_NRF5 which has unmet direct dependencies (GPIO && SOC_FAMILY_NRF5 || SOC_FAMILY_NRF5 && GPIO || BOARD_96B_CARBON_NRF51 && UART_NRF5 || BOARD_ARDUINO_101_BLE && UART_NRF5 || BOARD_CURIE_BLE && UART_NRF5 || BOARD_QUARK_SE_C1000_BLE && UART_NRF5) sanity-out/bbc_microbit/tests/power/power_states/test_socwatch/config-sanitycheck.log:warning: (UART_NRF5) selects GPIO_NRF5 which has unmet direct dependencies (GPIO && SOC_FAMILY_NRF5 || SOC_FAMILY_NRF5 && GPIO || BOARD_96B_CARBON_NRF51 && UART_NRF5 || BOARD_ARDUINO_101_BLE && UART_NRF5 || BOARD_CURIE_BLE && UART_NRF5 || BOARD_QUARK_SE_C1000_BLE && UART_NRF5) sanity-out/bbc_microbit/tests/power/power_states/test/config-sanitycheck.log:warning: (UART_NRF5) selects GPIO_NRF5 which has unmet direct dependencies (GPIO && SOC_FAMILY_NRF5 || SOC_FAMILY_NRF5 && GPIO || BOARD_96B_CARBON_NRF51 && UART_NRF5 || BOARD_ARDUINO_101_BLE && UART_NRF5 || BOARD_CURIE_BLE && UART_NRF5 || BOARD_QUARK_SE_C1000_BLE && UART_NRF5) sanity-out/bbc_microbit/tests/power/power_states/test/config-sanitycheck.log:warning: (UART_NRF5) selects GPIO_NRF5 which has unmet direct dependencies (GPIO && SOC_FAMILY_NRF5 || SOC_FAMILY_NRF5 && GPIO || BOARD_96B_CARBON_NRF51 && UART_NRF5 || BOARD_ARDUINO_101_BLE && UART_NRF5 || BOARD_CURIE_BLE && UART_NRF5 || BOARD_QUARK_SE_C1000_BLE && UART_NRF5) sanity-out/bbc_microbit/tests/power/power_states/test/config-sanitycheck.log:warning: (UART_NRF5) selects GPIO_NRF5 which has unmet direct dependencies (GPIO && SOC_FAMILY_NRF5 || SOC_FAMILY_NRF5 && GPIO || BOARD_96B_CARBON_NRF51 && UART_NRF5 || BOARD_ARDUINO_101_BLE && UART_NRF5 || BOARD_CURIE_BLE && UART_NRF5 || BOARD_QUARK_SE_C1000_BLE && UART_NRF5) sanity-out/qemu_nios2/tests/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/tests/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/tests/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/tests/drivers/build_all/test_build_ethernet/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/tests/drivers/build_all/test_build_ethernet/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/tests/drivers/build_all/test_build_ethernet/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/shell/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/shell/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/shell/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/getchar/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/getchar/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/getchar/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/echo/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/echo/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/echo/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/getline/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/getline/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_nios2/samples/subsys/console/getline/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/tests/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/tests/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/tests/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/tests/drivers/build_all/test_build_ethernet/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/tests/drivers/build_all/test_build_ethernet/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/tests/drivers/build_all/test_build_ethernet/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/samples/subsys/shell/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/samples/subsys/shell/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/samples/subsys/shell/shell/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/samples/subsys/console/getchar/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/samples/subsys/console/getchar/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/samples/subsys/console/getchar/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/samples/subsys/console/echo/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/samples/subsys/console/echo/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/samples/subsys/console/echo/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/samples/subsys/console/getline/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/samples/subsys/console/getline/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_riscv32/samples/subsys/console/getline/test/config-sanitycheck.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/quark_se_c1000_devboard/samples/net/wpan_serial/test_x86/build.log:warning: (NET_L2_BT && NET_L2_IEEE802154) selects NET_6LO which has unmet direct dependencies (NETWORKING && !NET_L2_RAW_CHANNEL && NET_IPV6) sanity-out/quark_se_c1000_devboard/samples/net/wpan_serial/test_x86/build.log:warning: (NET_L2_BT && NET_L2_IEEE802154) selects NET_6LO which has unmet direct dependencies (NETWORKING && !NET_L2_RAW_CHANNEL && NET_IPV6) sanity-out/quark_se_c1000_devboard/samples/net/wpan_serial/test_x86/build.log:warning: (NET_L2_BT && NET_L2_IEEE802154) selects NET_6LO which has unmet direct dependencies (NETWORKING && !NET_L2_RAW_CHANNEL && NET_IPV6) sanity-out/qemu_xtensa/tests/shell/test/config-sanitycheck.log:warning: (CONSOLE_SHELL && CONSOLE_GETCHAR && CONSOLE_GETLINE) selects CONSOLE_HANDLER which has unmet direct dependencies (CONSOLE && UART_CONSOLE) sanity-out/qemu_xtensa/tests/shell/test/config-sanitycheck.log:warning: (CONSOLE_SHELL && CONSOLE_GETCHAR && CONSOLE_GETLINE) selects CONSOLE_HANDLER which has unmet direct dependencies (CONSOLE && UART_CONSOLE) sanity-out/qemu_xtensa/tests/shell/test/config-sanitycheck.log:warning: (CONSOLE_SHELL && CONSOLE_GETCHAR && CONSOLE_GETLINE) selects CONSOLE_HANDLER which has unmet direct dependencies (CONSOLE && UART_CONSOLE) sanity-out/qemu_xtensa/tests/drivers/build_all/test_build_ethernet/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_xtensa/tests/drivers/build_all/test_build_ethernet/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_xtensa/tests/drivers/build_all/test_build_ethernet/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_xtensa/tests/net/lib/mqtt_subscriber/test/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_xtensa/tests/net/lib/mqtt_subscriber/test/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_xtensa/tests/net/lib/mqtt_subscriber/test/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_xtensa/tests/net/lib/mqtt_publisher/test/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_xtensa/tests/net/lib/mqtt_publisher/test/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_xtensa/tests/net/lib/mqtt_publisher/test/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_xtensa/tests/net/socket/udp/test/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_xtensa/tests/net/socket/udp/test/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_xtensa/tests/net/socket/udp/test/build.log:warning: (SLIP && BT_H4 && BT_H5 && CONSOLE_HANDLER && UART_PIPE && NET_SLIP_TAP) selects UART_INTERRUPT_DRIVEN which has unmet direct dependencies (SERIAL && SERIAL_SUPPORT_INTERRUPT || BOARD_MPS2_AN385 && SERIAL || BOARD_V2M_BEETLE && SERIAL || BOARD_TINYTILE && USB && USB_UART_CONSOLE) sanity-out/qemu_xtensa/samples/subsys/shell/shell/test/config-sanitycheck.log:warning: (CONSOLE_SHELL && CONSOLE_GETCHAR && CONSOLE_GETLINE) selects CONSOLE_HANDLER which has unmet direct dependencies (CONSOLE && UART_CONSOLE) sanity-out/qemu_xtensa/samples/subsys/shell/shell/test/config-sanitycheck.log:warning: (CONSOLE_SHELL && CONSOLE_GETCHAR && CONSOLE_GETLINE) selects CONSOLE_HANDLER which has unmet direct dependencies (CONSOLE && UART_CONSOLE) sanity-out/qemu_xtensa/samples/subsys/shell/shell/test/config-sanitycheck.log:warning: (CONSOLE_SHELL && CONSOLE_GETCHAR && CONSOLE_GETLINE) selects CONSOLE_HANDLER which has unmet direct dependencies (CONSOLE && UART_CONSOLE) sanity-out/qemu_xtensa/samples/subsys/console/getchar/test/config-sanitycheck.log:warning: (CONSOLE_SHELL && CONSOLE_GETCHAR && CONSOLE_GETLINE) selects CONSOLE_HANDLER which has unmet direct dependencies (CONSOLE && UART_CONSOLE) sanity-out/qemu_xtensa/samples/subsys/console/getchar/test/config-sanitycheck.log:warning: (CONSOLE_GETCHAR) selects UART_CONSOLE_DEBUG_SERVER_HOOKS which has unmet direct dependencies (CONSOLE && UART_CONSOLE) sanity-out/qemu_xtensa/samples/subsys/console/getchar/test/config-sanitycheck.log:warning: (CONSOLE_SHELL && CONSOLE_GETCHAR && CONSOLE_GETLINE) selects CONSOLE_HANDLER which has unmet direct dependencies (CONSOLE && UART_CONSOLE) sanity-out/qemu_xtensa/samples/subsys/console/getchar/test/config-sanitycheck.log:warning: (CONSOLE_GETCHAR) selects UART_CONSOLE_DEBUG_SERVER_HOOKS which has unmet direct dependencies (CONSOLE && UART_CONSOLE) sanity-out/qemu_xtensa/samples/subsys/console/getchar/test/config-sanitycheck.log:warning: (CONSOLE_SHELL && CONSOLE_GETCHAR && CONSOLE_GETLINE) selects CONSOLE_HANDLER which has unmet direct dependencies (CONSOLE && UART_CONSOLE) sanity-out/qemu_xtensa/samples/subsys/console/getchar/test/config-sanitycheck.log:warning: (CONSOLE_GETCHAR) selects UART_CONSOLE_DEBUG_SERVER_HOOKS which has unmet direct dependencies (CONSOLE && UART_CONSOLE) sanity-out/qemu_xtensa/samples/subsys/console/echo/test/config-sanitycheck.log:warning: (CONSOLE_SHELL && CONSOLE_GETCHAR && CONSOLE_GETLINE) selects CONSOLE_HANDLER which has unmet direct dependencies (CONSOLE && UART_CONSOLE) sanity-out/qemu_xtensa/samples/subsys/console/echo/test/config-sanitycheck.log:warning: (CONSOLE_GETCHAR) selects UART_CONSOLE_DEBUG_SERVER_HOOKS which has unmet direct dependencies (CONSOLE && UART_CONSOLE) sanity-out/qemu_xtensa/samples/subsys/console/echo/test/config-sanitycheck.log:warning: (CONSOLE_SHELL && CONSOLE_GETCHAR && CONSOLE_GETLINE) selects CONSOLE_HANDLER which has unmet direct dependencies (CONSOLE && UART_CONSOLE) sanity-out/qemu_xtensa/samples/subsys/console/echo/test/config-sanitycheck.log:warning: (CONSOLE_GETCHAR) selects UART_CONSOLE_DEBUG_SERVER_HOOKS which has unmet direct dependencies (CONSOLE && UART_CONSOLE) sanity-out/qemu_xtensa/samples/subsys/console/echo/test/config-sanitycheck.log:warning: (CONSOLE_SHELL && CONSOLE_GETCHAR && CONSOLE_GETLINE) selects CONSOLE_HANDLER which has unmet direct dependencies (CONSOLE && UART_CONSOLE) sanity-out/qemu_xtensa/samples/subsys/console/echo/test/config-sanitycheck.log:warning: (CONSOLE_GETCHAR) selects UART_CONSOLE_DEBUG_SERVER_HOOKS which has unmet direct dependencies (CONSOLE && UART_CONSOLE) sanity-out/qemu_xtensa/samples/subsys/console/getline/test/config-sanitycheck.log:warning: (CONSOLE_SHELL && CONSOLE_GETCHAR && CONSOLE_GETLINE) selects CONSOLE_HANDLER which has unmet direct dependencies (CONSOLE && UART_CONSOLE) sanity-out/qemu_xtensa/samples/subsys/console/getline/test/config-sanitycheck.log:warning: (CONSOLE_SHELL && CONSOLE_GETCHAR && CONSOLE_GETLINE) selects CONSOLE_HANDLER which has unmet direct dependencies (CONSOLE && UART_CONSOLE) sanity-out/qemu_xtensa/samples/subsys/console/getline/test/config-sanitycheck.log:warning: (CONSOLE_SHELL && CONSOLE_GETCHAR && CONSOLE_GETLINE) selects CONSOLE_HANDLER which has unmet direct dependencies (CONSOLE && UART_CONSOLE) @ulfalizer this is a rather old bug, I get some of it was already addressed, anything remaining we should take care of? addressed in many Kconfig enhancements recently.
gharchive/issue
2017-10-12T00:48:10
2025-04-01T06:41:01.014661
{ "authors": [ "nashif" ], "repo": "zephyrproject-rtos/zephyr", "url": "https://github.com/zephyrproject-rtos/zephyr/issues/4283", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1360378177
zperf: Add support to stop/start download If by mistake we issue zperf download with wrong port, then we cannot re-issue the command as server is already started. We need a command to stop the server and start with proper port. @rlubos https://github.com/zephyrproject-rtos/zephyr/pull/52684/ solves this.
gharchive/issue
2022-09-02T16:03:55
2025-04-01T06:41:01.017235
{ "authors": [ "krish2718" ], "repo": "zephyrproject-rtos/zephyr", "url": "https://github.com/zephyrproject-rtos/zephyr/issues/49871", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1615524341
Intel CAVS 15/18/25: tests/subsys/input/api/ crashing board Describe the bug After calling tests/subsys/input/api/ all other tests failing. For run other tests need to restart board. 67ccf6d this commit add tests that failing on cavs To Reproduce twister -W --hardware-map /home/ztest/cavs/cavs.map --device-testing -T tests/subsys/input/api/ -x=CONFIG_BOOT_DELAY=500 -v --no-skipped-report Expected behavior Tests pass. Logs and console output INFO - 1/2 intel_adsp_cavs25 tests/subsys/input/api/subsys.input.api.synchronous ERROR Device issue (Flash error?) (device 0.587s) INFO - 2/2 intel_adsp_cavs25 tests/subsys/input/api/subsys.input.api.thread ERROR Device issue (Flash error?) (device 0.589s) Environment (please complete the following information): OS: Linux Toolchain: Zephyr SDK Latest main (419dda3) Hey tried to run this on a board: $ west build -p -b nrf52dk_nrf52832 tests/subsys/input/api $ west flash seems to run fine. The test should only require the iterable sections stuff to work, is that platform doing something odd with the linker? Could you try to see if this fixes the problem by any chance? https://github.com/zephyrproject-rtos/zephyr/pull/55967 @majunkier is this still an issue? tests/subsys/input/api/subsys.input.api.synchronous - it's working. tests/subsys/input/api/input.api.thread - building is fine, when we execute : START - test_sequence_thread report: 0 report: 1 input_cb_unfiltered: 0 report: 2 input_cb_filtered: 0 report: 3 ... report: 15 Assertion failed at WEST_TOPDIR/zephyr/tests/subsys/input/api/src/main.c:75: input_api_test_sequence_thread: (ret not equal to -ENOMSG) ret: 0 FAIL - test_sequence_thread in 0.002 seconds ) Toolchain: Zephyr 0.16.0 OS: Ubuntu 20.04.6 LTS Hi @majunkier any update on this? more readable output of the failure: *** Booting Zephyr OS build zephyr-v3.3.0-4093-g5781478fd5c4 *** Running TESTSUITE input_api =================================================================== START - test_sequence_thread report: 0 report: 1 input_cb_unfiltered: 0 report: 2 input_cb_filtered: 0 report: 3 report: 4 report: 5 report: 6 report: 7 report: 8 report: 9 report: 10 report: 11 report: 12 report: 13 report: 14 report: 15 Assertion failed at WEST_TOPDIR/zephyr/tests/subsys/input/api/src/main.c:75: input_api_test_sequence_thread: (ret not equal to -ENOMSG) ret: 0 FAIL - test_sequence_thread in 0.002 seconds =================================================================== TESTSUITE input_api failed. ------ TESTSUITE SUMMARY START ------ SUITE FAIL - 0.00% [input_api]: pass = 0, fail = 1, skip = 0, total = 1 duration = 0.002 seconds - FAIL - [input_api.test_sequence_thread] duration = 0.002 seconds ------ TESTSUITE SUMMARY END ------ =================================================================== RunID: 4453d3d0b465075ce77101694eb64bf0 PROJECT EXECUTION FAILED so, it it is not crashing, is it? This is just a test failing. test passes if we just use one core (i.e. CONFIG_SMP=n)
gharchive/issue
2023-03-08T16:03:37
2025-04-01T06:41:01.024032
{ "authors": [ "AmberHibberd", "fabiobaltieri", "majunkier", "nashif" ], "repo": "zephyrproject-rtos/zephyr", "url": "https://github.com/zephyrproject-rtos/zephyr/issues/55605", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1732461594
sockets: offloaded: modem not connecting ESP-AT modem fails to send data After downloading the latest updates the ESP-AT modem no longer send data over IP4 network. The device connects to the network and appears to have address assigned but is unable to connect to other services; eg SNTP or MQTT. ESP32-AT Modem Have attempted to find change that is effecting connection, have been rolling but not found specific commit? ... To Reproduce Steps to reproduce the behavior: mkdir build; cd build cmake -DBOARD=board_xyz make See error Expected behavior A clear and concise description of what you expected to happen. Impact Showstopper Logs and console output The target stopped in MemManage exception state. Reason: Unknown at 0x00000000. For more information about analyzing faults on Cortex-M, refer to: https://wiki.segger.com/Cortex-M_Fault. Environment (please complete the following information): OS: Windows CMake version: 3.25.0-rc2 west version "1.0.0" Zephyr version: 3.4.0-rc1 (build: v3.4.0-rc1-50-g147d4067e6de) Question: why is this listed under 'Platform ESP32' if most likely it will be used with other chips than ESP32? ESP-AT is actually an ESP-IDF application. Question: why is this listed under 'Platform ESP32' if most likely it will be used with other chips than ESP32? ESP-AT is actually an ESP-IDF application. You're right nothing to do with ESP32 specifically it's a general networking issue. I'm frustrated with the lack of hardware testing. It should in fact be before the recv not after: SET_ERRNO(net_context_connect(ctx, addr, addrlen, cb, timeout, ctx->user_data)); SET_ERRNO(net_context_recv(ctx, zsock_received_cb, K_NO_WAIT, ctx->user_data)); No, it should not. This was a conscious change, to prevent race condition between connect/recv - see https://github.com/zephyrproject-rtos/zephyr/issues/58084 for the details about the problem. Native IP stack allows to register recv callback before connection - offloaded implementations should comply with this behavior. Seems to be solved in #59857 Fixed.
gharchive/issue
2023-05-30T15:02:32
2025-04-01T06:41:01.033821
{ "authors": [ "RomainPelletant", "WilliamGFish", "carlescufi", "rftafas", "rlubos" ], "repo": "zephyrproject-rtos/zephyr", "url": "https://github.com/zephyrproject-rtos/zephyr/issues/58435", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2041022770
twister code coverage report base directory not setting Describe the bug passing in --coverage-basedir ../XXX/src/ leads to Traceback (most recent call last): File "/opt/nordic/ncs/v2.4.0/zephyr/./scripts/twister", line 201, in <module> ret = main(options) File "/opt/nordic/ncs/v2.4.0/zephyr/scripts/pylib/twister/twisterlib/twister_main.py", line 212, in main run_coverage(tplan, options) File "/opt/nordic/ncs/v2.4.0/zephyr/scripts/pylib/twister/twisterlib/coverage.py", line 278, in run_coverage coverage_tool.generate(options.outdir) File "/opt/nordic/ncs/v2.4.0/zephyr/scripts/pylib/twister/twisterlib/coverage.py", line 101, in generate ret = self._generate(outdir, coveragelog) File "/opt/nordic/ncs/v2.4.0/zephyr/scripts/pylib/twister/twisterlib/coverage.py", line 208, in _generate subprocess.call(["gcovr", "-r", self.base_dir, "--gcov-executable", File "/usr/local/Cellar/python@3.10/3.10.13/Frameworks/Python.framework/Versions/3.10/lib/python3.10/subprocess.py", line 345, in call with Popen(*popenargs, **kwargs) as p: File "/usr/local/Cellar/python@3.10/3.10.13/Frameworks/Python.framework/Versions/3.10/lib/python3.10/subprocess.py", line 971, in __init__ self._execute_child(args, executable, preexec_fn, close_fds, File "/usr/local/Cellar/python@3.10/3.10.13/Frameworks/Python.framework/Versions/3.10/lib/python3.10/subprocess.py", line 1796, in _execute_child self.pid = _posixsubprocess.fork_exec( TypeError: expected str, bytes or os.PathLike object, not NoneType Please also mention any information which could help others to understand the problem you're facing: What target platform are you using? qemu_cortex_m3 What have you tried to diagnose or workaround this issue? I edited coverage.py to check if self.base_dir == None and it is none though even i set it in the python script or pass it through calling twister To Reproduce Steps to reproduce the behavior: ./scripts/twister --coverage --coverage-basedir ../XXX/src/ -p qemu_cortex_m3 -c --coverage-tool gcovr -T ../XXX/tests Expected behavior code coverage report should generate Environment (please complete the following information): OS: Mac Toolchain zephyr sdk 0.16.3 Commit SHA or Version used Additional context Add any other context that could be relevant to your issue, such as pin setting, target configuration, ... not able to reproduce does --coverage-basedir need to be in quotes? seems like passing --gcov-tool gcov does the trick, but coverage report is blank base directory still not setting. showing as '.' Sorry, I still can't reproduce this, please provide exact steps which lead to this error i9:zephyr(topic/twister/predicate): ./scripts/twister --coverage --coverage-basedir tests/kernel/threads/thread_init/src/ -p qemu_cortex_m3 -c --coverage-tool gcovr -T tests/kernel/threads/thread_init/ Deleting output directory /home/nashif/zephyrproject/zephyr/twister-out INFO - Using Ninja.. INFO - Zephyr version: zephyr-v3.5.0-4936-gc84df7ded81a INFO - Using 'zephyr' toolchain. INFO - Building initial testsuite list... INFO - Writing JSON report /home/nashif/zephyrproject/zephyr/twister-out/testplan.json INFO - JOBS: 20 INFO - Adding tasks to the queue... INFO - Added initial list of jobs to queue INFO - Total complete: 1/ 1 100% skipped: 0, failed: 0, error: 0 INFO - 1 test scenarios (1 test instances) selected, 0 configurations skipped (0 by static filter, 0 at runtime). INFO - 1 of 1 test configurations passed (100.00%), 0 failed, 0 errored, 0 skipped with 0 warnings in 10.17 seconds INFO - In total 3 test cases were executed, 1 skipped on 1 out of total 675 platforms (0.15%) INFO - 1 test configurations executed on platforms, 0 test configurations were only built. INFO - Generating coverage files... INFO - Using gcov tool: /home/nashif/bin/zephyr-sdk-0.16.4/x86_64-zephyr-elf/bin/x86_64-zephyr-elf-gcov INFO - HTML report generated: /home/nashif/zephyrproject/zephyr/twister-out/coverage/index.html INFO - Saving reports... INFO - Writing JSON report /home/nashif/zephyrproject/zephyr/twister-out/twister.json INFO - Writing xunit report /home/nashif/zephyrproject/zephyr/twister-out/twister.xml... INFO - Writing xunit report /home/nashif/zephyrproject/zephyr/twister-out/twister_report.xml... INFO - Run completed reopen with how you get the issue with the upstream tree please.
gharchive/issue
2023-12-14T06:44:31
2025-04-01T06:41:01.040866
{ "authors": [ "carriegong", "nashif" ], "repo": "zephyrproject-rtos/zephyr", "url": "https://github.com/zephyrproject-rtos/zephyr/issues/66512", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2568193246
tests: posix: common: separate into smaller testsuites Is your enhancement proposal related to a problem? Please describe. The posix.common testsuite contains a lot of mostly unrelated testsuites. As a result, the code size is large, but mostly the data size is extremely large. It would require less variation from default settings, and would reduce ram requirements to split that testsuite into smaller groups of more closely related testsuites. Describe the solution you'd like The obvious way to group related testsuites is by Option Group. E.g. POSIX_RW_LOCKS POSIX_SEMAPHORES POSIX_SIGNALS POSIX_SINGLE_PROCESS POSIX_SPIN_LOCKS POSIX_THREADS_BASE POSIX_THREADS_EXT POSIX_TIMERS XSI_SYSTEM_LOGGING and potentially others. testcase.yaml permutations can be designed to enable or disable features specific to one Option Group, like TSS, TSA, TSH (see Codes). Additionally, such a grouping would theoretically improve bug attribution capabilities; if an error was traced (either via stacktrace or bug description) to a certain posix function, there would be a 1:1 correspondance to an Option Group, so typically, only that testsuite would need to be executed. Describe alternatives you've considered The way the testsuite has been designed historically. Additional context This came up in the context of #79443 but it was already thought of as a nice-to-have. Can I take a stab at this one please, if it's ok could it be assigned to me? @zacck - please do! @cfriedt I'm new to Zephyr and while I have looked at the links and docs supplied above I believe I need an example to start breaking this down would you be able to assist with some information that would help here? @zacck If you have just started with Zephyr, I think you will need to be familiarized with Twister and the different KV pairs in the testcase.yaml, see Test Runner (Twister) @cfriedt do you expect the zephyr/tests/posix/common test to be broken down into multiple tests? Because while we can break the test into multiple sub-tests within the tests/posix/common/testcase.yaml, the existing testcase.yaml would be pretty big when we want to make sure that each sub-test are tested with different configurations (different C libs, spin validation, tls, ...) that we have: (<number of option group sub-test> x <number of configurations>) @cfriedt do you expect the zephyr/tests/posix/common test to be broken down into multiple tests? They should be broken down into separate app directories. That's mainly because the single application is getting quite large, and the configuration requirements are not always clear. It would be better if the prj.conf and memory requirements were minimal. It could be good to split this into smaller commits / a task list. @cfriedt yeah breaking this down would be awesome, I am going to do that once I have a solid plan ahead which should be around tomorrow 16th OCT 24. @cfriedt yeah breaking this down would be awesome, I am going to do that once I have a solid plan ahead which should be around tomorrow 16th OCT 24. Cool - it can be separate PRs, which should simplify things. I'll do pthteads, because it is likely the most confusing.
gharchive/issue
2024-10-05T15:52:46
2025-04-01T06:41:01.051676
{ "authors": [ "cfriedt", "ycsin", "zacck" ], "repo": "zephyrproject-rtos/zephyr", "url": "https://github.com/zephyrproject-rtos/zephyr/issues/79454", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2572232906
Multiple BT Mesh tests are failing in main Describe the bug Multiple BT Mesh tests are failing in main To Reproduce For ex. tests/bsim/compile.sh tests/bsim/bluetooth/mesh/tests_scripts/dfu/dfu_cli_all_targets_lost_on_caps_get.sh See error Expected behavior No failing tests Impact Blocked CI in PRs Logs and console output https://github.com/zephyrproject-rtos/zephyr/actions/runs/11220193326/job/31201648682?pr=79262 Environment (please complete the following information): OS: Ubuntu 22.04 (CI) Toolchain (e.g Zephyr SDK, ...): Host gcc 11/12 Commit SHA or Version used: main as of now: 318b49570a77ce631dc3d97ad7e7a05df5459d8e Additional context CC @PavelVPV @alxelax I will have a look Just took a quick look, it seems import of keys is broken. I suspect some PSA related changes were committed without running mesh tests. This commit broke mesh: https://github.com/zephyrproject-rtos/zephyr/commit/4b479016a792a24704352566bdbf726493dd08ae This commit broke mesh: 4b47901 I wonder if this adds PSA ITS for posix platforms, or it still requires using files. CC @tomi-font Seems adding select SECURE_STORAGE to config BT_MESH_USES_MBEDTLS_PSA made it working. Checked on one test, checking other mesh tests now. Seems adding select SECURE_STORAGE to config BT_MESH_USES_MBEDTLS_PSA made it working. Checked on one test, checking other mesh tests now. I corrected a bit my comment above. Do we need my workaround at all after this commit? Hey. The secure storage subsystem supports native platforms. I have tested with native_sim, but I think it has run in CI on native_posix as well. I encourage you to switch to using it, and remove your custom implementation. @tomi-font , it forces SETTINGS option: https://github.com/zephyrproject-rtos/zephyr/blob/318b49570a77ce631dc3d97ad7e7a05df5459d8e/subsys/secure_storage/Kconfig.its_store#L15. How can I use Secure Storage without Settings? @tomi-font , we need some kind of this: https://github.com/zephyrproject-rtos/zephyr/blob/main/tests/subsys/secure_storage/psa/its/src/custom_store.c as one of Secure Storage ITS module implementation (call it SECURE_STORAGE_ITS_STORE_IMPLEMENTATION_RAM). @tomi-font , it forces SETTINGS option: https://github.com/zephyrproject-rtos/zephyr/blob/318b49570a77ce631dc3d97ad7e7a05df5459d8e/subsys/secure_storage/Kconfig.its_store#L15 How can I use Secure Storage without Settings? You cannot do with settings enabled? @tomi-font , we need some kind of this: https://github.com/zephyrproject-rtos/zephyr/blob/main/tests/subsys/secure_storage/psa/its/src/custom_store.c as one of Secure Storage ITS module implementation (call it SECURE_STORAGE_ITS_STORE_IMPLEMENTATION_RAM). Yeah, not using settings would require providing an alternate ITS store module implementation. But why can't you do with an actual storage solution in the first place? I want to keep an option to build mesh without settings. Which prevents me adding select/depends on SECURE_STORAGE to config BT_MESH_USES_MBEDTLS_PSA. Neither I get an error or warning that running a firmware without SECURE_STORAGE but with SETTINGS enabled won't work because ITS implementation is missing. I have to add an assertion into mesh code to enable SECURE_STORAGE when SETTINGS is enabled by user which is not super convenient. It seems that your ITS implementation is only to run some tests. I don't exactly get why you'd want an option to build without settings. But if this is breaking CI in PRs, maybe at least for now the best is to adjust what was done to config-tls-generic.h to revert the behavior change for Bsim. Also, FYI, in the (hopefully near) future an alternative ITS store implementation than settings will be provided, some time after ZMS has made it into Zephyr. It seems that your ITS implementation is only to run some tests. I don't exactly get why you'd want an option to build without settings. For testing purposes, we do build and run mesh on devices without Settings SS. Having settings enabled is sure way to kill the flash while performing some large scale tests with hundreds of thousands of messages getting processed on a node and each message potentially triggering a write operation. It is also possible to build a fully functional mesh application that pre-provisions itself and becomes functional at power-on - this does not Settings SS. If the end-product/system is designed in such a way that it never encounters power-cycle, it never needs Settings SS. It seems that your ITS implementation is only to run some tests. I don't exactly get why you'd want an option to build without settings. For testing purposes, we do build and run mesh on devices without Settings SS. Having settings enabled is sure way to kill the flash while performing some large scale tests with hundreds of thousands of messages getting processed on a node and each message potentially triggering a write operation. Have you considered using the flash simulator, with a small flash partition simulated in RAM? Have you considered using the flash simulator, with a small flash partition simulated in RAM? IIRC there was some discussion about it but it has never been prioritized.
gharchive/issue
2024-10-08T06:40:18
2025-04-01T06:41:01.069145
{ "authors": [ "PavelVPV", "aescolar", "alxelax", "omkar3141", "tomi-font" ], "repo": "zephyrproject-rtos/zephyr", "url": "https://github.com/zephyrproject-rtos/zephyr/issues/79533", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2605805508
infineon hal whd_chip.c warning Describe the bug When compiling modules/hal/infineon/wifi-host-driver/WiFi_Host_Driver/src/whd_chip.c with CONFIG_SPEED_OPTIMIZATIONS=y the compiler creates warnings: modules/hal/infineon/wifi-host-driver/WiFi_Host_Driver/src/whd_chip.c: In function 'whd_ioctl_print': modules/hal/infineon/wifi-host-driver/WiFi_Host_Driver/src/whd_chip.c:688:17: warning: 'strncpy' output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] 688 | strncpy(iovar, (char *)data, strlen( (char *)data ) ); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ modules/hal/infineon/wifi-host-driver/WiFi_Host_Driver/src/whd_chip.c:687:17: note: length computed here 687 | if (strlen( (char *)data ) <= WHD_IOVAR_STRING_SIZE) | ^~~~~~~~~~~~~~~~~~~~~~ [248/301] Building C object modules/hal_infineon/CMakeFiles/modules_hal_infineon.dir/home/brandon/fork/modules/hal/infineon/wifi-host-driver/WiFi_Host_Driver/src/whd_wifi_api.c.obj In function 'whd_iovar_mkbuf', inlined from 'whd_wifi_get_iovar_buffer_with_param' at /home/brandon/fork/modules/hal/infineon/wifi-host-driver/WiFi_Host_Driver/src/whd_wifi_api.c:3739:14: modules/hal/infineon/wifi-host-driver/WiFi_Host_Driver/src/whd_wifi_api.c:3715:5: warning: 'strncpy' output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] 3715 | strncpy(iovar_buf, name, (iovar_len - 1) ); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ modules/hal/infineon/wifi-host-driver/WiFi_Host_Driver/src/whd_wifi_api.c:3702:17: note: length computed here 3702 | iovar_len = strlen(name) + 1; To Reproduce cd samples/net/wifi west build -p -b cy8cproto_062_4343w -- -DCONFIG_SPEED_OPTIMIZATIONS=y Environment (please complete the following information): main @brandon-exact, thank you for the bug submission. I have filed a ticket with our internal team that owns the WHD. Ian
gharchive/issue
2024-10-22T15:33:26
2025-04-01T06:41:01.072687
{ "authors": [ "brandon-exact", "ifyall" ], "repo": "zephyrproject-rtos/zephyr", "url": "https://github.com/zephyrproject-rtos/zephyr/issues/80240", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
381604936
logging: refactor log_filter_set to set existing log level Modified log_filter_set function to limit level if requested level is not compiled in. Additionally, extended function to return actually set level. Removed redundant code from log_cmds. Change fixes shell log backend initialization which was setting log levels without taking into account compiled in limits (like log enable command was doing). Signed-off-by: Krzysztof Chruscinski krzysztof.chruscinski@nordicsemi.no Codecov Report :exclamation: No coverage uploaded for pull request base (master@18f9bb0). Click here to learn what that means. The diff coverage is 100%. @@ Coverage Diff @@ ## master #11436 +/- ## ========================================= Coverage ? 48.38% ========================================= Files ? 265 Lines ? 42197 Branches ? 10137 ========================================= Hits ? 20418 Misses ? 17703 Partials ? 4076 Impacted Files Coverage Δ subsys/logging/log_core.c 75.53% <100%> (ø) Continue to review full report at Codecov. Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 18f9bb0...13161db. Read the comment docs.
gharchive/pull-request
2018-11-16T13:43:25
2025-04-01T06:41:01.080515
{ "authors": [ "codecov-io", "nordic-krch" ], "repo": "zephyrproject-rtos/zephyr", "url": "https://github.com/zephyrproject-rtos/zephyr/pull/11436", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
423438831
Bluetooth: Fix missing return statement in le_conn_param_req() The le_conn_param_req() function was missing a return statement in case of a failed connection lookup. This could lead to replying to the connection parameter request twice as well as passing NULL to bt_conn_unref(). The latter issue also triggered a Coverity warning. Fixes CID 196638 Signed-off-by: Johan Hedberg johan.hedberg@intel.com Codecov Report Merging #14757 into master will decrease coverage by <.01%. The diff coverage is 0%. @@ Coverage Diff @@ ## master #14757 +/- ## ========================================== - Coverage 52.5% 52.5% -0.01% ========================================== Files 309 309 Lines 45047 45047 Branches 10418 10418 ========================================== - Hits 23654 23653 -1 - Misses 16586 16587 +1 Partials 4807 4807 Impacted Files Coverage Δ subsys/bluetooth/host/hci_core.c 44.14% <0%> (-0.06%) :arrow_down: Continue to review full report at Codecov. Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 3f34fea...b563bab. Read the comment docs.
gharchive/pull-request
2019-03-20T19:42:41
2025-04-01T06:41:01.088649
{ "authors": [ "codecov-io", "jhedberg" ], "repo": "zephyrproject-rtos/zephyr", "url": "https://github.com/zephyrproject-rtos/zephyr/pull/14757", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
424373107
samples: net: can: initialize the variables Initialize the variables. Fix Bug: #14819 Coverity CID: 196637 Signed-off-by: Tedd Ho-Jeong An tedd.an@intel.com Codecov Report Merging #14850 into master will not change coverage. The diff coverage is n/a. @@ Coverage Diff @@ ## master #14850 +/- ## ======================================= Coverage 52.49% 52.49% ======================================= Files 309 309 Lines 45060 45060 Branches 10431 10431 ======================================= Hits 23656 23656 Misses 16592 16592 Partials 4812 4812 Continue to review full report at Codecov. Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 22cf6d9...239e767. Read the comment docs.
gharchive/pull-request
2019-03-22T19:46:07
2025-04-01T06:41:01.094508
{ "authors": [ "codecov-io", "tedd-an" ], "repo": "zephyrproject-rtos/zephyr", "url": "https://github.com/zephyrproject-rtos/zephyr/pull/14850", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
542453416
Bluetooth:RFCOMM: Fix length errors when payload exceeds 127 hdr->length is the length of the payload, it should be buf->len - sizeof(*hdr) - 1 or buf->len - (sizeof(*hdr) + 1) Signed-off-by: ZhongYao Luo LuoZhongYao@gmail.com PS: When using zephry to implement the iap2 protocol, when iOS sends RequestAuthenticationCertificate, zephry responds to AuthenticationCertificate, iOS will no longer send new data, and AuthenticationCertificate exceeds 127. After using this patch, it works fine. Fix looks ok, but could you please fix the typo in the commit message. It's RFCOMM and not RFOCOMM 😄 Also (minor): there should be a space character after Bluetooth: Is this a fix for https://github.com/zephyrproject-rtos/zephyr/issues/18386? @LuoZhongYao I see you've fixed the PR title, but you also have to fix the commit message @LuoZhongYao I see you've fixed the PR title, but you also have to fix the commit message sorry, Was using a non-work computer Is this a fix for #18386? I did n’t verify it because your project testing is really slow I did n’t verify it because your project testing is really slow You mean coverity? We can leave that issue open. Johan mentioned that he saw several things that looked suspicious. So if you are familiar with the RFCOMM spec you might want to have a look for more issues, as there is not really anybody maintaining the BR/EDR part of zephyr at the moment. I did n’t verify it because your project testing is really slow You mean coverity? We can leave that issue open. Johan mentioned that he saw several things that looked suspicious. So if you are familiar with the RFCOMM spec you might want to have a look for more issues, as there is not really anybody maintaining the BR/EDR part of zephyr at the moment. OK
gharchive/pull-request
2019-12-26T06:43:49
2025-04-01T06:41:01.100394
{ "authors": [ "LuoZhongYao", "jhedberg", "joerchan" ], "repo": "zephyrproject-rtos/zephyr", "url": "https://github.com/zephyrproject-rtos/zephyr/pull/21589", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
555523291
drivers: modem: ublox-sara-r4: fix modem reset This fixes two problems in modem_reset(): mdata.net_iface is used without checking that it is valid. Now, we validate mdata_net_iface before usage, and give a warning if it was not set. if the modem does not perform network registration within the given time of 20s, in the previous implementation the driver gave up. Now, the driver disables RF for a second, enables it again and gives the modem another 20s to register. This has been seen to help in roaming situations. Tested on Sara R4. Signed-off-by: Hans Wilmers hans@wilmers.no (closed via #22149)
gharchive/pull-request
2020-01-27T11:48:33
2025-04-01T06:41:01.103323
{ "authors": [ "hwilmers" ], "repo": "zephyrproject-rtos/zephyr", "url": "https://github.com/zephyrproject-rtos/zephyr/pull/22233", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
917166974
samples: net: sockets: big_http_download: Fix DHCP configuration Current IP configuration of the big_http_download sample, where we condfigure IP addresses both statically and with DHCP does not work. Regardles of whether DHCP server is avaialbe or not, if the static IP configuration allowed to establish the connection, the DHCP client procedure that kicks in after a random backoff impacts the connection negatively. As the DHCP client clears the active gateway when it starts the Discovery operation, the networking stack is no longer able to send packets to the ouside network in case there no DHCP server around. And if there is a DHCP server avaialble, the sample application stops to recieve packets anyway, as the IP address likely changes after the DHCP procedure. Fix this problem, by providing a separate overlay for the DHCP configuration, that clears the statically-configured IP addresses. This way, if the static configuration is used (by default) it's not impacted by the DHCP procedure. And if DHCP is inended to use, the sample will not start until the IP address is obtained from the DHCP server. Signed-off-by: Robert Lubos robert.lubos@nordicsemi.no @jukkar I was not sure if this should be rather fixed at the DHCP level (i.e. clearing the GW address) or the sample level, but I didn't find a good way to address the issue in that area (i. e. after successfull DHCP the IP address will likely change anyway, so there's little use to configure address statically first). Therefore I figured this should be rather addressed in the sample (configuring address both statically and with DHCP doesn't sound right in the first place to me). So, let me be explicitly -1 on it, and suggest to make a bisect to find what broke the correct behavior and look into fixing it. The problem I faced (no DHCP server) was introduced by this change specifically: https://github.com/zephyrproject-rtos/zephyr/commit/d44b4252b7fbfe8e02c807d2a6b3baf66876d8e2 (which came as a part of a larger rework https://github.com/zephyrproject-rtos/zephyr/pull/30995). The exact problem is that GW address is cleared on an interface on DHCP startup, so it's no longer possible to send packets to the outside network (we can discuss whether it's correct or not). But, even with a DHCP server around (I've tested this scenario as well), I'm still not convinced if setting a static address first is a right approach. In my case, the sample established TCP connection, downloaded some data, and then after DHCP kicked in (it starts after a random backoff now), my device got assigned a new IP address, which became a problem. No more packets from the previously established connection could reach the device, so the open socket just kept hanging on the recv() call waiting for data that'd never come. I'm not sure what Linux does in this case, but maybe a correct way would be to invalidate the socket if the IP address it was bound to was removed from the system? Another point is whether the statically configured IP address should be removed in that case, probably not. Having both static and dynamic (DHCP) address set to the interface can lead to these weird connectivity issues. Most likely the addresses are allocated from different subnets and we are not able to use the static addresses after the DHCP has managed to allocate an address. Then we are left with system that might not be able to communicate anywhere without first closing the sockets. @rlubos : The problem I faced (no DHCP server) was introduced by this change specifically: d44b425 (which came as a part of a larger rework #30995). The exact problem is that GW address is cleared on an interface on DHCP startup, Thanks for bisecting and finding the culprit commit. So, apparently clearing should happen not on "DHCP startup", but only when a valid IP address (and other config) was received/confirmed over DHCP. But, even with a DHCP server around (I've tested this scenario as well), I'm still not convinced if setting a static address first is a right approach. I'm not sure the word "right" is the right one to use here. It should be possible to have both static IP config and DHCP enabled, and it should work as described above (and as Linux solutions work) - static IP config should be used until DHCP config is fully received and confirmed, and switchover should happen in as atomic way as realistically possible. What we have now is effectively a race condition between static config and DHCP, when just enabling DHCP leads to conflict with static config, even if DHCP won't really be used (i.e. when there's no DHCP server around, and DHCP requests sent from a Zephyr device won't be responded to). In my case, the sample established TCP connection, downloaded some data, and then after DHCP kicked in (it starts after a random backoff now), my device got assigned a new IP address, which became a problem. And in my case (I usually run with direct device-host connection, i.e. without DHCP), the app downloaded some data, then DHCP kicked in and overthrown the proper config, and everything hanged. And the only solution is to disable DHCP in the config. That's why I say we have been having a regression for some time now, and why I say this patch just masks the issue instead of properly resolving it. (Again, this sample specifically had this configuration to ensure that static IP + DHCP works in an expected way - failing us to have a proper unit test for that.) No more packets from the previously established connection could reach the device, so the open socket just kept hanging on the recv() call waiting for data that'd never come. That's orthogonal issue. It's quite well-known that one can't write real-world robust applications without timeouts for I/O (in particular, networking) operations. This sample was intended to be a simple one, and was written before we had timeout support for recv/send. We now have it (TODO: check that we actually have support for both by now), so if you'd like to add timeout for recv() here, I'm +1. Note that IP may change under app's feet at any time. For example, DHCP has lease time, when it ends, a device should query again and may get a different IP address, and lease time may be 5min or so. That's again why I say that this patch just masks the issue, and that instead we should value this sample's config as something which exposes the issue and allows us to manage it (hopefully even improve over time). Finally, we have had https://github.com/zephyrproject-rtos/zephyr/issues/7630 for quite some time, raising attention to these issues. That's why I'm keen to at least preserve/recover previous state of affairs, and not mask/deteriorate it. I'm not sure what Linux does in this case, but maybe a correct way would be to invalidate the socket if the IP address it was bound to was removed from the system? These ideas is what's #7630 dedicated to. But those are outside BSD Sockets API, and the baseline is that interface vs sockets layers are separate in the network stack, and each works independently, and there's a generic timeout mechanism available for apps to catch any connectivity issues on the socket level - timeout. Another point is whether the statically configured IP address should be removed in that case, probably not. I see no ambiguity here (taking Linux experience as the baseline) - if DHCP is enabled on/for interface, it overrides interface's IP address - once the address is successfully received. From Linux PoV, if I'd like to have both static and DHCP address on the same interface, I'd need to create a virtual sub-interface (e.g. eth0.1), and have static IP on eth0 and run DHCP on eth0.1. (Other trickier option may be to settle that DHCP overrides if's first IP address, so way to have both DHCP and static is to configure the latter as 2nd). @jukkar Having both static and dynamic (DHCP) address set to the interface can lead to these weird connectivity issues. The talk is more about co-existence of static and DHCP configuration on the interface, where static is the default/fallback, and DHCP overrides it, once successfully received - without race conditions. Most likely the addresses are allocated from different subnets and we are not able to use the static addresses after the DHCP has managed to allocate an address. Then we are left with system that might not be able to communicate anywhere without first closing the sockets. That's realistic situation anyway (any network connection may break/stall for many reasons, including those beyond IP addresses being changed behind app's back), so an app should be ready to deal with those (standard generic means for that is having timeouts on I/O operations, and when those fail, retry the entire connection attempt). The talk is more about co-existence of static and DHCP configuration on the interface, where static is the default/fallback, and DHCP overrides it, once successfully received - without race conditions. I was just wondering the way we have this working atm, does it make actually sense to have this kind of "fallback" as it can/is causing issues when running in real life environment. @jukkar I was just wondering the way we have this working atm, does it make actually sense to have this kind of "fallback" as it can/is causing issues when running in real life environment. We have had that fallback all the time, and it didn't cause any issues in real life environment, I specifically verified and tested it with this sample, that's why these options are enabled in it. Until it regressed before 2.5 (apparently with the commit https://github.com/zephyrproject-rtos/zephyr/commit/d44b4252b7fbfe8e02c807d2a6b3baf66876d8e2, as pointed by @rlubos). And I think we should recover that behavior, rather than mask the issue. Thank you for all the feedback. Please correct me if I misunderstood something, but the way to go for now is to restore the original behavior by: Sorting out the DHCPv4 client behaviour, which clears the gateway configuration on init (which should fix the scenario where no DHCP server is available). Configuring timeout on a socket with SO_RCVTIMEO/SO_SNDTIMEO so that the sample no longer stalls after the IP address configured on an interface changes. I'll try to propose something soon(ish). @jukkar @pfalcon I've pushed new commits, as discussed above, and updated the PR description. As for the DHCP, the gateway IP address is updated when Router option is detected in a DHCP message. In my setup, the option was present in both, DHCP OFFER and DHCP ACK messages. however I didn't find any information in the RFC that the option is mandatory (and likely isn't since it's listed in the "Vendor extensions" section). Therefore I've kept the gateway clearing but only in a case, when there is no Router option in the DHCP OFFER message sent by the DHCP server. @rlubos: Sorting out the DHCPv4 client behaviour, which clears the gateway configuration on init (which should fix the scenario where no DHCP server is available). Configuring timeout on a socket with SO_RCVTIMEO/SO_SNDTIMEO so that the sample no longer stalls after the IP address configured on an interface changes. Sorry for the delay with response, and yes, that's what I meant. These 2 things are of course orthogonal and could be done separately (e.g. if DHCP issue turns out to take more time), but I appreciate give a try to both. Testing on my side...
gharchive/pull-request
2021-06-10T10:11:33
2025-04-01T06:41:01.124845
{ "authors": [ "jukkar", "pfalcon", "rlubos" ], "repo": "zephyrproject-rtos/zephyr", "url": "https://github.com/zephyrproject-rtos/zephyr/pull/36129", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
264494867
Nucleo f030r8 Fixes #3923 boards: provide support for Nucleo-64 F030R8 This PR is an updated version of #1103 since @MaciejDebski won't have time to maintain this PR, authorship of the patches has been preserved. This PR contains a fix to solve the missing memory issues on the automated build test suite. I'm going to close #1103 since this takes it over. Can you guys explain 'arch: arm: core: fix vector table relocate write to flash' to me a bit more. @galak On Cortex-M0, you cannot change the vector table pointer in the CPU registers, you need to have them at address 0 in physical memory, but on STM32 address 0 can be remapped on flash or whatever, so if we need to relocate the pointers we must be sure the DRAM is mapped here and reserve the memory in the binary ram sections If you can rebase and take of the conflict, I'll merge after that. Ok I’ll do it ASAP Oh, forgot to mention that we need to look at tests/kernel/common/test, fails due to needing a few more bytes of SRAM.
gharchive/pull-request
2017-10-11T08:15:50
2025-04-01T06:41:01.128760
{ "authors": [ "galak", "superna9999" ], "repo": "zephyrproject-rtos/zephyr", "url": "https://github.com/zephyrproject-rtos/zephyr/pull/4260", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1194929142
Z_POW2_CEIL: simplify implementation Avoid potentially calling __builtin_clz() twice with non-constant values. Also add a test for it. Signed-off-by: Nicolas Pitre npitre@baylibre.com @npitre, there are unresolved conflicts in include/toolchain/gcc.h. That shall be resolved, then the review shall be re-requested.
gharchive/pull-request
2022-04-06T17:42:34
2025-04-01T06:41:01.130796
{ "authors": [ "GeorgeCGV", "npitre" ], "repo": "zephyrproject-rtos/zephyr", "url": "https://github.com/zephyrproject-rtos/zephyr/pull/44603", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1281325535
tests: Enable sbs_gauge driver testing with native_posix This part of the work for adding a battery API. See https://github.com/zephyrproject-rtos/zephyr/pull/47118 Had to recreate PR due to new fork...
gharchive/pull-request
2022-06-23T00:02:01
2025-04-01T06:41:01.132449
{ "authors": [ "aaronemassey" ], "repo": "zephyrproject-rtos/zephyr", "url": "https://github.com/zephyrproject-rtos/zephyr/pull/46819", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1643509096
stm32 qspi driver support sfdp parameters Add the support of the jedec SFDP parameter read command to the quadNOR flash of the stm32 driver This PR gives the stm32 QSPI driver the access to the jedec SFDP table given by the external quad-flash and read with the JESD216_CMD_READ_ID (opcode = 0x9F). This is demonstrated by the samples/drivers/jesd216/ running on a stm32 target board with quad-NOR flash device. Also run the samples/drivers/spi_flash on stm32h747i_disco_m7 disco_l475_iot1 stm32l496g_disco Signed-off-by: Francois Ramu francois.ramu@st.com Running the west build -p auto -b stm32h747i_disco_m7 samples/drivers/jesd216/samples/drivers/jesd216/ Booting Zephyr OS build zephyr-v3.3.0-1723-g228a5100f747 *** qspi-nor-flash-1@0: SFDP v 1.6 AP ff with 2 PH PH0: ff00 rev 1.6: 16 DW @ 30 Summary of BFP content: DTR Clocking supported Addressing: 3- or 4-Byte 4-KiBy erase: uniform Support QSPI XIP Support 1-1-1 Support 1-1-2: instr 3Bh, 1 mode clocks, 7 waits Support 1-1-4: instr 6Bh, 1 mode clocks, 7 waits Support 1-2-2: instr BBh, 1 mode clocks, 7 waits Support 1-4-4: instr EBh, 1 mode clocks, 9 waits Support 2-2-2: instr BBh, 1 mode clocks, 7 waits Support 4-4-4: instr EBh, 1 mode clocks, 9 waits Flash density: 67108864 bytes ET1: instr 20h for 4096 By; typ 48 ms, max 480 ms ET2: instr D8h for 65536 By; typ 160 ms, max 1600 ms ET3: instr 52h for 32768 By; typ 112 ms, max 1120 ms Chip erase: typ 62464 ms, max 1499136 ms Byte program: type 15 + 1 * B us, max 360 + 24 * B us Page program: typ 120 us, max 2880 us Page size: 256 By Suspend: 75h ; Resume: 7Ah DPD: Enter B9h, exit ABh ; delay 30000 ns ; poll 0x3e HOLD or RESET Disable: supported QER: 0 0-4-4 Mode methods: entry 0x2 ; exit 0x03 4-4-4 Mode sequences: enable 0x14 ; disable 0xa 4-byte addressing support: enter 0x36, exit 0x0f6 Soft Reset and Rescue Sequence support: 0x3d Status Register 1 support: 0x01 size = <536870912>; sfdp-bfp = [ e5 20 fb ff ff ff ff 1f 29 eb 27 6b 27 3b 27 bb ff ff ff ff ff ff 27 bb ff ff 29 eb 0c 20 10 d8 0f 52 00 00 24 4a 99 00 8b 8e 03 e1 ac 01 27 38 7a 75 7a 75 fb bd d5 5c 4a 0f 82 ff 81 bd 3d 36 ]; PH1: ff84 rev 1.0: 2 DW @ 80 sfdp-ff84 = [ ff e7 ff ff 21 dc ff ff ]; jedec-id = [32 31 20]; jesd216 of the disco_l475_iot1 (west build -p auto -b disco_l475_iot1 samples/drivers/jesd216/) gives: *** Booting Zephyr OS build zephyr-v3.3.0-1723-g228a5100f747 *** qspi-nor-flash@0: SFDP v 1.6 AP ff with 3 PH PH0: ff00 rev 1.6: 16 DW @ 30 Summary of BFP content: DTR Clocking not supported Addressing: 3-Byte only 4-KiBy erase: uniform Support QSPI XIP Support 1-1-1 Support 1-1-2: instr 3Bh, 0 mode clocks, 8 waits Support 1-1-4: instr 6Bh, 0 mode clocks, 8 waits Support 1-2-2: instr BBh, 0 mode clocks, 4 waits Support 1-4-4: instr EBh, 2 mode clocks, 4 waits Flash density: 8388608 bytes ET1: instr 20h for 4096 By; typ 48 ms, max 384 ms ET2: instr 52h for 32768 By; typ 240 ms, max 1920 ms ET3: instr D8h for 65536 By; typ 480 ms, max 3840 ms Chip erase: typ 52000 ms, max 312000 ms Byte program: type 32 + 1 * B us, max 192 + 6 * B us Page program: typ 896 us, max 5376 us Page size: 256 By Suspend: B0h ; Resume: 30h DPD: Enter B9h, exit ABh ; delay 40000 ns ; poll 0x3d HOLD or RESET Disable: unsupported QER: 2 0-4-4 Mode methods: entry 0x9 ; exit 0x2f 4-4-4 Mode sequences: enable 0x00 ; disable 0x0 Soft Reset and Rescue Sequence support: 0x10 Status Register 1 support: 0x70 size = <67108864>; sfdp-bfp = [ e5 20 f1 ff ff ff ff 03 44 eb 08 6b 08 3b 04 bb ee ff ff ff ff ff 00 ff ff ff 00 ff 0c 20 0f 52 10 d8 00 ff 23 72 f5 00 82 ed 04 cc 44 83 48 44 30 b0 30 b0 f7 c4 d5 5c 00 be 29 ff f0 d0 ff ff ]; PH1: ffc2 rev 1.0: 4 DW @ 110 sfdp-ffc2 = [ 00 36 50 16 9d f9 c0 64 fe cf ff ff ff ff ff ff ]; PH2: ff84 rev 1.0: 2 DW @ c0 sfdp-ff84 = [ 00 00 f0 ff ff ff ff ff ]; jedec-id = [66 66 20]; running the samples/drivers/spi_flash: qspi-nor-flash-1@0 SPI flash testing ========================== Perform test on single sector Test 1: Flash erase Flash erase succeeded! Test 2: Flash write Attempting to write 4 bytes Data read matches data written. Good!! Perform test on multiple consequtive sectors Test 1: Flash erase Flash erase succeeded! Test 2: Flash write Attempting to write 4 bytes at offset 0xff000 Data read matches data written. Good!! Attempting to write 4 bytes at offset 0x100000 Data read matches data written. Good!! @erwango @de-nordic please revisit @FRASTM Please rebase. Rebase 3bef10f39804e74d9220f3296a156ed90aba2117 Adapt after merge of the https://github.com/zephyrproject-rtos/zephyr/pull/55824
gharchive/pull-request
2023-03-28T09:03:12
2025-04-01T06:41:01.138914
{ "authors": [ "FRASTM", "MaureenHelm", "de-nordic" ], "repo": "zephyrproject-rtos/zephyr", "url": "https://github.com/zephyrproject-rtos/zephyr/pull/56279", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1920178867
tests bsim: Limit parallel build The compile script had been modified to fully parallelize all images builds in 1de363d9d5279e2c3d6021fecad41ffca96e09f1 And has been kept building everything in parallel since then. Over time we have seen an increase in the number of hangs for this job in CI. This is understood as being the result of the number of images having increased, leading to a too high load on the worker machines which cause them to timeout their connection to the github CI scheduler. In b83a82882559f0c4a6bc0a64f83be06cdbdf79c1 these jobs priority was lowered to alleviate this issue, but again we see an increased number of CI runner disconnects. Let's parallelize this compile jobs a bit less. With this change, we do not build anymore the sets of host, ll and mesh test images in parallel but sequentially. On a local test with a clean ccache this reduces the peak 1 average load from ~1700 to ~700, and eliminates issues with system unresponsiveness; while there is no statistically measurable increase in overall build time. Note that the single audio image is still built in parallel to the other 3 sets, as this was seen to improve total build time by 2 seconds out of 1m51s. Context: The rate of this type of hangs is still relatively low: A quick check showed 2 connection losses in the last 150 runs. These build and run scripts are meant to go away, as we plan to add support to twister for this type of tests, so this kind of quick solution should be more than good enough as a stop gap. Note that the single audio image is still built in parallel to the other 3 sets, as this was seen to improve total build time by 2 seconds out of 1m51s. I think perhaps it would be worth adding a comment in the script to mention this, otherwise it just kind of looks... Odd :D If it's just a matter of 2 seconds, then we may also consider just building audio in the same way as the others. I guess it isn't faster to build in parallel because the compile itself it done in parallel, and the only part that could benefit from parallelism is the linking? Note that the single audio image is still built in parallel to the other 3 sets, as this was seen to improve total build time by 2 seconds out of 1m51s. I think perhaps it would be worth adding a comment in the script to mention this, otherwise it just kind of looks... Odd :D I can certainly do that :) If it's just a matter of 2 seconds, then we may also consider just building audio in the same way as the others. I did consider doing so, but then I expected somebody may get annoyed by the increase :) I guess it isn't faster to build in parallel because the compile itself it done in parallel, and the only part that could benefit from parallelism is the linking? I think cmake is the main issue here. I did consider doing so, but then I expected somebody may get annoyed by the increase :) Alright :) We may at some point consider separate binaries for each audio test (like we have for the host), at which point we may want to apply sequential compiling to it, but it is fine for now (or at least you have my permission to make it sequential ;) ) @aescolar is this something that'd make sense to merge before 3.5? (the milestone isn't set and there's no "Fixes: ..." entry, so it's not clear to me) @aescolar is this something that'd make sense to merge before 3.5? (the milestone isn't set and there's no "Fixes: ..." entry, so it's not clear to me) Let's better get it in. I will add a bug and a "Fixes" :)
gharchive/pull-request
2023-09-30T08:47:36
2025-04-01T06:41:01.147608
{ "authors": [ "Thalley", "aescolar", "jhedberg" ], "repo": "zephyrproject-rtos/zephyr", "url": "https://github.com/zephyrproject-rtos/zephyr/pull/63338", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
307151835
doc: Supplement list of implemented socket operations Add sendto() and recvfrom() to the list of implemented operations in BSD Socket API. Signed-off-by: Stig Bjørlykke stig.bjorlykke@nordicsemi.no Codecov Report Merging #6728 into master will increase coverage by <.01%. The diff coverage is n/a. @@ Coverage Diff @@ ## master #6728 +/- ## ========================================== + Coverage 54.31% 54.32% +<.01% ========================================== Files 444 444 Lines 42179 42179 Branches 7995 7995 ========================================== + Hits 22911 22912 +1 + Misses 16060 16059 -1 Partials 3208 3208 Impacted Files Coverage Δ kernel/posix/pthread.c 69.5% <0%> (+0.5%) :arrow_up: Continue to review full report at Codecov. Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 5f42a26...bfc9649. Read the comment docs.
gharchive/pull-request
2018-03-21T08:18:15
2025-04-01T06:41:01.155189
{ "authors": [ "codecov-io", "stig-bjorlykke" ], "repo": "zephyrproject-rtos/zephyr", "url": "https://github.com/zephyrproject-rtos/zephyr/pull/6728", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2299632115
samples: sensor: Enable bme280 sensor using I2C driver Added overlay to enable bme280 sensor using i2c on esp32_devkitc_wroom board. It is connected manually, @MaureenHelm any comment on this changes please. It is connected manually Then the value of adding this overlay to the source tree is probably very limited. We certainly don't want / can't have upstream all the overlays possible for any combination of sensors people may attach to their dev kits :) I will close this PR if that's ok with you. Let me know if you have questions or concerns
gharchive/pull-request
2024-05-16T07:52:16
2025-04-01T06:41:01.157809
{ "authors": [ "kartben", "srinivas-aerlync" ], "repo": "zephyrproject-rtos/zephyr", "url": "https://github.com/zephyrproject-rtos/zephyr/pull/72848", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2367620884
everywhere: replace double words import os import re common_words = set([ 'a', 'about', 'after', 'all', 'also', 'an', 'and', 'any', 'are', 'as', 'at', 'be', 'because', 'but', 'by', 'can', 'come', 'could', 'day', 'do', 'even', 'first', 'for', 'from', 'get', 'give', 'go', 'has', 'have', 'he', 'her', 'him', 'his', 'how', 'I', 'if', 'in', 'into', 'is', 'it', 'its', 'just', 'know', 'like', 'look', 'make', 'man', 'many', 'me', 'more', 'my', 'new', 'no', 'not', 'now', 'of', 'on', 'one', 'only', 'or', 'other', 'our', 'out', 'over', 'people', 'say', 'see', 'she', 'so', 'some', 'take', 'tell', 'than', 'that', 'the', 'their', 'them', 'then', 'there', 'these', 'they', 'think', 'this', 'time', 'to', 'two', 'up', 'use', 'very', 'want', 'was', 'way', 'we', 'well', 'what', 'when', 'which', 'who', 'will', 'with', 'would', 'year', 'you', 'your' ]) valid_extensions = set([ 'c', 'h', 'yaml', 'cmake', 'conf', 'txt', 'overlay', 'rst', 'dtsi', 'Kconfig', 'dts', 'defconfig', 'yml', 'ld', 'sh', 'py', 'soc', 'cfg' ]) def filter_repeated_words(text): # Split the text into lines lines = text.split('\n') # Combine lines into a single string with unique separator combined_text = '/*sep*/'.join(lines) # Replace repeated words within a line def replace_within_line(match): return match.group(1) # Regex for matching repeated words within a line within_line_pattern = re.compile(r'\b(' + '|'.join(map(re.escape, common_words)) + r')\b\s+\b\1\b') combined_text = within_line_pattern.sub(replace_within_line, combined_text) # Replace repeated words across line boundaries def replace_across_lines(match): return match.group(1) + match.group(2) # Regex for matching repeated words across line boundaries across_lines_pattern = re.compile(r'\b(' + '|'.join(map(re.escape, common_words)) + r')\b(\s*[*\/\n\s]*)\b\1\b') combined_text = across_lines_pattern.sub(replace_across_lines, combined_text) # Split the text back into lines filtered_text = combined_text.split('/*sep*/') return '\n'.join(filtered_text) def process_file(file_path): with open(file_path, 'r', encoding='utf-8') as file: text = file.read() new_text = filter_repeated_words(text) with open(file_path, 'w', encoding='utf-8') as file: file.write(new_text) def process_directory(directory_path): for root, dirs, files in os.walk(directory_path): dirs[:] = [d for d in dirs if not d.startswith('.')] for file in files: # Filter out hidden files if file.startswith('.'): continue file_extension = file.split('.')[-1] if file_extension in valid_extensions: # 只处理指定后缀的文件 file_path = os.path.join(root, file) print(f"Processed file: {file_path}") process_file(file_path) directory_to_process = "/home/mi/works/github/zephyrproject/zephyr" process_directory(directory_to_process) As a supplement to this PR:https://github.com/zephyrproject-rtos/zephyr/pull/74650 @kartben Please take a look, tks.
gharchive/pull-request
2024-06-22T06:32:20
2025-04-01T06:41:01.161143
{ "authors": [ "LingaoM" ], "repo": "zephyrproject-rtos/zephyr", "url": "https://github.com/zephyrproject-rtos/zephyr/pull/74706", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
515219784
Switch to the latest release of jsoniter-scala ...with more efficient parsing and serialization of Base16 representation: [info] Benchmark Mode Cnt Score Error Units [info] z.p.data.Decode.jsoniter_scala thrpt 2 452137.824 ops/s [info] z.p.data.Encode.jsoniter_scala thrpt 2 1074555.397 ops/s [info] z.p.msg.Decode.jsoniter_scala thrpt 2 4341021.472 ops/s [info] z.p.msg.Encode.jsoniter_scala thrpt 2 8486618.088 ops/s CAUTION: The latest microcode update from Intel brings up to 30% slowdown for the most optimized code with deep inlining, loop unrolling, and vectorization. So, the current results for same benchmarks on the same CPU but with the latest microcode are: [info] Benchmark Mode Cnt Score Error Units [info] z.p.data.Decode.jsoniter_scala thrpt 2 393800.502 ops/s [info] z.p.data.Encode.jsoniter_scala thrpt 2 943211.139 ops/s [info] z.p.msg.Decode.jsoniter_scala thrpt 2 3888296.318 ops/s [info] z.p.msg.Encode.jsoniter_scala thrpt 2 6624891.402 ops/s
gharchive/pull-request
2019-10-31T07:22:21
2025-04-01T06:41:01.168926
{ "authors": [ "plokhotnyuk" ], "repo": "zero-deps/protobuf-scala-macros", "url": "https://github.com/zero-deps/protobuf-scala-macros/pull/13", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2438570450
[Bug]: ControlNet breaks outpainting real images What happened? working on a project with the imagenet dataset, where I try to collage them next to one another and inpaint in the gaps, so as to make it sort of believable. It kind of works with the standard stable diffusion inpainting model, where the constraints set by the original image are kind of respected. But once I try to use ControlNet with a model like "epicrealism" for example, the outpointing gets completely broken. The ControlNet model I'm using is Kataragi_inpaintXL-fp16 [d20c87b4] with inpaint_only+lama set as the preprocessor. It doesn't seem to work with outpainting a generated dream either. Or am I doing something wrong? Please let me know. Steps to reproduce the problem if you want to reproduce it download the Kataragi_inpaintXL-fp16 [d20c87b4] ControlNet model with realisticVisionV60B1_v51HyperVAE.safetensors as the base stable diffusion model and try to make a dream and then extend it with ControlNet outpainting. What should have happened? ControlNet should extend the original image/dream by outpainting, yet it completely ignores it. It crates a harsh divide, which is basically a new image with no relation to the previous one. Commit where the problem happens latest main branch What platforms do you use to access openOutpaint? MacOS What browsers do you use to access the UI ? Google Chrome Browser Extensions/Addons grammarly, my bib AUTOMATIC1111 webUI Commandline Arguments --api --cors-allow-origins=https://zero01101.github.io Additional information No response hey, sorry for the delay; check https://github.com/zero01101/openOutpaint/issues/291 to see if that's what you're experiencing - basically controlnet deprecated an API parameter and i missed it, but if it's the same thing then it should be all fixed up now - apologies
gharchive/issue
2024-07-30T19:53:35
2025-04-01T06:41:01.186337
{ "authors": [ "tianBreznik", "zero01101" ], "repo": "zero01101/openOutpaint", "url": "https://github.com/zero01101/openOutpaint/issues/290", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
318084469
Variety field is mandatory. Please update documentation order_id = kite.place_order(tradingsymbol="INFY", exchange=kite.EXCHANGE_NSE, transaction_type=kite.TRANSACTION_TYPE_BUY, quantity=1, order_type=kite.ORDER_TYPE_MARKET, product=kite.PRODUCT_NRML) closed
gharchive/issue
2018-04-26T15:33:45
2025-04-01T06:41:01.201506
{ "authors": [ "Girish400" ], "repo": "zerodhatech/pykiteconnect", "url": "https://github.com/zerodhatech/pykiteconnect/issues/43", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1967760161
Add on paint and on erase background to common controls Issue #15 Hmm... It looks like I made a big mess in my repo branches. There are things I still don't understand with Git/Github. Now, there are 2 Background_Color procedures. One for Status_Bar_Type and one for Common_Control_Type. The one for Status_Bar_Type is a system (Windows) one. I have not seen any effect using it. The one for Common_Control_Type effectively paints the background with the chosen color. Hmm... It looks like I made a big mess in my repo branches. There are things I still don't understand with Git/Github. It seems to be easy to mess things with GitHub - see for instance this recent pull request: https://github.com/zertovitch/gwindows/pull/13#issuecomment-1657075405 About messing & git, but perhaps unrelated to the current topic, there is a good help here: https://deepbluecap.com/git-recover-from-messy-situations/
gharchive/pull-request
2023-10-30T08:14:19
2025-04-01T06:41:01.278508
{ "authors": [ "NicoPy", "zertovitch" ], "repo": "zertovitch/gwindows", "url": "https://github.com/zertovitch/gwindows/pull/17", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1486298412
unittests: the deprecation of ZetaConversionRate RPC & state variable breaks unit tests ref: #355 Closing as it seems no longer relevant with the current state of the project. Feel free to reopen it.
gharchive/issue
2022-12-09T08:19:35
2025-04-01T06:41:01.292419
{ "authors": [ "brewmaster012", "lumtis" ], "repo": "zeta-chain/node", "url": "https://github.com/zeta-chain/node/issues/356", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
816135653
autpoi 2.0.1版本导出报错 版本号:autpoi 2.0.1版本 问题描述: 该版本导出有遇到如下报错 2021-02-24 22:20:07.155 [http-nio-9999-exec-1] ERROR o.a.c.c.C.[.[.[/yuns].[dispatcherServlet]:175 - Servlet.service() for servlet [dispatcherServlet] in context with path [/yuns] threw exception [Request processing failed; nested exception is org.jeecgframework.poi.exception.excel.ExcelExportException: Excel导出错误] with root cause 切换回1.2.2却没有问题 截图&代码: 友情提示: 未按格式要求发帖,会直接删掉。 什么功能?请补充issue描述 什么功能?请补充issue描述 ModelAndView mv = new ModelAndView(new JeecgEntityExcelView()); mv.addObject(NormalExcelConstants.FILE_NAME, title); mv.addObject(NormalExcelConstants.CLASS, pojoClass); mv.addObject(NormalExcelConstants.PARAMS, new ExportParams(title, "导出人:" + sysUser.getRealname(), "导出信息")); mv.addObject(NormalExcelConstants.DATA_LIST, array); 在使用导出autopoi导出功能的时候 采用@Excel标注字段的方式 在2.0.1就会出现上述报错信息 但是切换回1.2.2却没有这个问题 收录 测试未重现你说的问题,请描述一下你重现问题的整个流程步骤,方便的话,建议把相关代码或者实体配置贴出来 测试未重现你说的问题,请描述一下你重现问题的整个流程步骤,方便的话,建议把相关代码或者实体配置贴出来 我也不知道还能怎么描述,就是单纯的excel导出。在字段类对字段使用@Excel注解标记我需要导出的字段。完全是按照官方文档的教程使用来使用autopoi导出功能; 没有像其中一个issues那样有自己重写过里面相关内容。 把请把详细的错误日志帖一下
gharchive/issue
2021-02-25T06:37:48
2025-04-01T06:41:01.339762
{ "authors": [ "Fnckerpoi", "lsqGitHub716", "zhangdaiscott" ], "repo": "zhangdaiscott/jeecg-boot", "url": "https://github.com/zhangdaiscott/jeecg-boot/issues/2303", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
1694674817
🛑 ZY is down In 11b1cd2, ZY (https://ziyuan.baidu.com) was down: HTTP code: 0 Response time: 0 ms Resolved: ZY is back up in 03c110f.
gharchive/issue
2023-05-03T19:32:30
2025-04-01T06:41:01.382157
{ "authors": [ "zhaodylan" ], "repo": "zhaodylan/uptime-ziyuan", "url": "https://github.com/zhaodylan/uptime-ziyuan/issues/1798", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1719305302
🛑 ZY is down In 354a381, ZY (https://ziyuan.baidu.com) was down: HTTP code: 0 Response time: 0 ms Resolved: ZY is back up in 655f316.
gharchive/issue
2023-05-22T09:37:50
2025-04-01T06:41:01.384467
{ "authors": [ "zhaodylan" ], "repo": "zhaodylan/uptime-ziyuan", "url": "https://github.com/zhaodylan/uptime-ziyuan/issues/1885", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1740281914
🛑 ZY is down In 68c098d, ZY (https://ziyuan.baidu.com) was down: HTTP code: 0 Response time: 0 ms Resolved: ZY is back up in 93d7802.
gharchive/issue
2023-06-04T10:10:47
2025-04-01T06:41:01.386746
{ "authors": [ "zhaodylan" ], "repo": "zhaodylan/uptime-ziyuan", "url": "https://github.com/zhaodylan/uptime-ziyuan/issues/1946", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
487164353
Init node conv1/kernel/Assign doesn't exist in graph when freezing a model Hey, I'm getting this error: Init node conv1/kernel/Assign doesn't exist in graph When trying to freeze a model using your library and guide. This happens even on the asset/yolo-model... Any idea what might be the issue? I'm using tensorflow with GPU.. This error does not affect the model freeze @yakeer I have the same error message here, but I have tested that the generated tflite model does not have a loss of precision.
gharchive/issue
2019-08-29T20:36:56
2025-04-01T06:41:01.394715
{ "authors": [ "yakeer", "zhen8838" ], "repo": "zhen8838/K210_Yolo_framework", "url": "https://github.com/zhen8838/K210_Yolo_framework/issues/2", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1292481274
Feature sequences Hello, I'm confused about token size because it's square(8x8 or 16x16) on ViT. As I understand, feature sequence means 256 tokens with 1024 dimension vector. And $N/N_w(=256/16)$ window feature sequences of Window Block means that there're 16 partitions with 16 sequences per partition. Then 4 partitions of this figure is just for simplification? Or did I get it wrong? Yes, for simplicity, this figure shows the case of $N_w=N/4$. @zhigangjiang Thanks for your reply!
gharchive/issue
2022-07-04T01:07:52
2025-04-01T06:41:01.420508
{ "authors": [ "kimkj38", "zhigangjiang" ], "repo": "zhigangjiang/LGT-Net", "url": "https://github.com/zhigangjiang/LGT-Net/issues/4", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
745656741
Migrating from keras to tf.keras I'm using tf.keras (with TF2), instead of keras standalone library since TF2 integrates better. So I had to make a few fixes: import keras.foo becomes import tf.keras.foo and Model(input = my_input, output = my_output) becomes Model(inputs = my_input, outputs = my_output) Otherwise, it's a great implementation. Many thanks 非常谢! I'm using tf.keras (with TF2), instead of keras standalone library since TF2 integrates better. So I had to make a few fixes: import keras.foo becomes import tf.keras.foo and Model(input = my_input, output = my_output) becomes Model(inputs = my_input, outputs = my_output) Otherwise, it's a great implementation. Many thanks 非常谢! 我也发现了这个问题,在model.py脚本56行处,需要更正为 model = Model(inputs = inputs, outputs = conv10) 这样才运行正确。 感谢
gharchive/issue
2020-11-18T13:23:32
2025-04-01T06:41:01.424225
{ "authors": [ "Asuna88", "annanurov" ], "repo": "zhixuhao/unet", "url": "https://github.com/zhixuhao/unet/issues/211", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2216834308
1.10: Fixed missing deps of typer package Rolls back PR #593 into 1.10.1. coverage: 37.115%. remained the same when pulling a5ca919b49fbc1f1e4cde779fd77c25d6bdcb1c2 on 1.10/andy/fix-missing-deps-typer into 40c5b5b62f8587d1b56e8be4e08b71e07fac0679 on stable_1.10.
gharchive/pull-request
2024-03-31T07:54:46
2025-04-01T06:41:01.426454
{ "authors": [ "andy-maier", "coveralls" ], "repo": "zhmcclient/zhmccli", "url": "https://github.com/zhmcclient/zhmccli/pull/594", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
623042867
Migrate to dotnet core This is an initial attempt to migrate the whole project onto dotnet core. The project can be successfully run by dotnet run --project qpmodel with the following output: select tumble_start(a0, interval '10' second), tumble_end(a0, interval '10' second), count(*) from ast group by tumble(a0, interval '10' second) ***************** raw plan ************* LogicAgg Group by: tumble(a0[0],10second) -> LogicScanTable ast ***************** optimized plan ************* LogicAgg Group by: tumble(a0[0],10second) -> LogicScanTable ast Memo: 0: 1, 1, [42292240][NaN]: ast,PScan(ast: 1) *1: 1, 1, [-1941974609][NaN]: Agg(0),PHashAgg(0: 3) --------------------------- Summary: 2,2 Memo: 0: 1, 1, [42292240][1]: ast,PScan(ast: 1) *1: 1, 1, [-1941974609][4]: Agg(ast),PHashAgg($PScan(ast: 1): 3) --------------------------- Summary: 2,2 ***************** Memo plan ************* Total cost: 4 PhysicHashAgg (inccost=4, cost=3, rows=1) (actual rows=0) Output: {tumble_start(a0,10second)}[1],{tumble_end(a0,10second)}[2],{count(*)(0)}[3] Aggregates: tumble_start(a0[0],10second), tumble_end(a0[0],10second), count(*)(0) Group by: tumble(a0[0],10second) -> PhysicScanTable ast (inccost=1, cost=1, rows=1) (actual rows=0) Output: a0[0],10second -- profiling plan -- Total cost: 4 PhysicHashAgg (inccost=4, cost=3, rows=1) (actual rows=0) Output: {tumble_start(a0,10second)}[1],{tumble_end(a0,10second)}[2],{count(*)(0)}[3] Aggregates: tumble_start(a0[0],10second), tumble_end(a0[0],10second), count(*)(0) Group by: tumble(a0[0],10second) -> PhysicScanTable ast (inccost=1, cost=1, rows=1) (actual rows=0) Output: a0[0],10second RunTime: 00:00:00.0559630 However there are several things I want to resolve before this can be merged. Although this project can be successfully run now, it will output some warnings: /home/youngw/projects/qpmodel/qpmodel/qpmodel.csproj : warning NU1701: Package 'Microsoft.CodeDom.Providers.DotNetCompilerPlatform 3.5.0-preview1' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of the project target framework '.NETCoreApp,Version=v3.1'. This package may not be fully compatible with your project. I did a search and it says this warning doesn't affect the actual functionalities. I guess we need to somehow suppress this warning in the csproj file to make things tidier. A bunch of dependencies are commented out in qpmodel.csproj. Although they are commented out, it seems like the library just works fine. Maybe we can safely remove these unused dependencies? Or can anyone explain to me what are these commented out dependencies used for? The app.config files are not used seemingly. Maybe we can also remove them? For the ANTLR4 package I commented out <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> but I'm not sure what's this IncludeAssets for. With this line included the compiler complains cannot find ANTLR. Weiyun, Thanks for the patch. Project configuration: most likely they are automatically generated with VS studio. Have you run unittest and make sure it passes? Some of your questions might be answered by it. Program.Main() is mostly served as an entrance for debugging specific queries. There are 12 out of 42 tests failed. There is another issue happens pervasively: the table name in the physical plan somehow is removed while the expected output preserves it. For example, with an expected plan like this: PhysicNLJoin (actual rows=3) Output: a.a2[0],a.a3[1],a.a1[2]+b.b2[3] Filter: a.a1[2]+b.b3[4]>2 -> PhysicScanTable a (actual rows=1) Output: a.a2[1],a.a3[2],a.a1[0] Filter: a.a1[0]>1 -> PhysicScanTable b (actual rows=3) Output: b.b2[1],b.b3[2] the assertion failed with: Assert.AreEqual failed. Expected:<a.a2[0],a.a3[1],a.a1[2]+b.b2[3]>. Actual:<a2[0],a3[1],a1[2]+b2[3]>. Assert.AreEqual failed. Expected:<a.a2[0],a.a3[1],a.a1[2]+b.b2[3]>. Actual:<a2[0],a3[1],a1[2]+b2[3]>. The behavior is controlled by static ExplainOption.show_tablename_ - it can cause issues as it is global. The reason it is global because I need to use it deep in stack and passing it via global is the easiest way. The problem might be due to how/the order we set this variable in unittest. You can set running order in "Test Explorer" window by click "Test" column and make it alphabet sorted to see if the issue went away. Wait for me to investigate why test/regress/expect/tpch0001/q06.txt changed.
gharchive/pull-request
2020-05-22T08:24:04
2025-04-01T06:41:01.437915
{ "authors": [ "dovahcrow", "zhouqingqing" ], "repo": "zhouqingqing/qpmodel", "url": "https://github.com/zhouqingqing/qpmodel/pull/103", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
120581778
Blocklauncher Pro crashing when importing textures - 13.0 blocklauncher_crash_1449344068.txt When importing textures on a Kindle Fire HD7 4 running Fire OS 4.5.5, Blocklauncher Pro will either crash or go into safe mode. Upon attempting to leave safe mode, it crashes again. I've tried clearing the cache and reinstalling several times. EDIT: When I get it to work, the textures are corrupt. It's every texture pack. One of your texture packs has an old terrain.meta that's not compatible with 0.13.1. Please make sure that your texture packs are compatible.
gharchive/issue
2015-12-05T19:29:48
2025-04-01T06:41:01.441383
{ "authors": [ "Dankscrub", "zhuowei" ], "repo": "zhuowei/MCPELauncher", "url": "https://github.com/zhuowei/MCPELauncher/issues/386", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
831199274
Add Tuya dimmable LED controller quirk (TS0501B) The Tuya dimmable LED controller (TS0501B) has a Color cluster but doesn't report any color capabilities: the RGB wheel is shown in Home Assistant. This quirk overrides the color capabilities to 0. Tested and working. Signature: https://paste.ubuntu.com/p/ZqbRwZfxqT/ Codecov Report Merging #818 (4bcab87) into dev (5ef6918) will increase coverage by 0.04%. The diff coverage is 100.00%. @@ Coverage Diff @@ ## dev #818 +/- ## ========================================== + Coverage 83.14% 83.18% +0.04% ========================================== Files 181 182 +1 Lines 4426 4437 +11 ========================================== + Hits 3680 3691 +11 Misses 746 746 Impacted Files Coverage Δ zhaquirks/tuya/ts0501b.py 100.00% <100.00%> (ø) Continue to review full report at Codecov. Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 5ef6918...4bcab87. Read the comment docs. Pull Request Test Coverage Report for Build 651728859 11 of 11 (100.0%) changed or added relevant lines in 1 file are covered. No unchanged relevant lines lost coverage. Overall coverage increased (+0.04%) to 83.187% Totals Change from base Build 646589804: 0.04% Covered Lines: 3691 Relevant Lines: 4437 💛 - Coveralls
gharchive/pull-request
2021-03-14T16:31:29
2025-04-01T06:41:01.553832
{ "authors": [ "TheJulianJES", "codecov-io", "coveralls" ], "repo": "zigpy/zha-device-handlers", "url": "https://github.com/zigpy/zha-device-handlers/pull/818", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
213012303
createAccount example Is it possible to get a little createAccount example. I read "CreateAccount SOAP Command" doc in zimbra docs, but still have some trouble to apllicate it. Thank you very much. Ok, finally I found how to did it : $create_account_res = $api->createAccount("testuser@domain.com", "secret"); Now the problems are : How to check if user already exists? Or how to intercept an Exception that will be thrown because the user exists. How to print (or analyse) the return of command, i.e. $create_account_res I saw that $create_account_res has a type of object. It was an Xml that was converted into Object (there is a method toObject() for this). But I have somedifficulties to work with this object... how to do it? Or is it possible to get directly an Xml and not an object ? I will try to help for you with your first question. You can try to add, if it's exists, already exists will be return. Or if you want to only check, you can try to get account details with GetAccount. if it's exists account details will return. if it's not, not found will be return. I hope understand your question. Thank you kazimc. But my issue is more concern about lack of documentation and/or examples for this project. And it's complicated by fact that I have not experience/knowledge in php development. Probably for php developers it should seem obvious how to use this library, but not for me. So my question was most about code example, not the algorithm. Now, to get the things more concrete. This code is very ugly, but is it correct on the idea level? I know I do twice almost the same check. But it better check twice than zero... $account_name='testuser@domain.com'; $account = new \Zimbra\Struct\AccountSelector(\Zimbra\Enum\AccountBy::NAME(), $account_name); try { $accountInfo = $api->getAccountInfo($account); echo "Some problem!<br/>"; echo "This account is probably exist already!<br/>"; echo $accountInfo->name."<br/>"; print_r($accountInfo); exit(1); } catch (GuzzleHttp\Exception\ServerException $e) { /* Ok, server throw an Exception, so account probably does not exist. echo print_r($e); */ } echo "Trying to create account : ".$account_name."<br/>"; try { $createAccountRes = $api->createAccount($account_name, "secret"); } catch (GuzzleHttp\Exception\ServerException $e) { echo "Some problem!<br/>"; echo "Account was NOT created!<br/>"; echo "Server thrown an Error, so may be this account already exist?<br/>"; echo "<br/>"; // echo print_r($e); } There are some things that make me unhappy... Solution with exit(-1) seems be VERY ugly. But I don't know how to do it otherwise. If server thrown an Exception for some other reason, not because account exists already... I do not know, for example if the server is under maintenance mode. I will not know this reason. I will still think that the problem is that the account exists.
gharchive/issue
2017-03-09T11:41:21
2025-04-01T06:41:01.652941
{ "authors": [ "kazimc", "paulz1" ], "repo": "zimbra-api/zimbra-api", "url": "https://github.com/zimbra-api/zimbra-api/issues/17", "license": "bsd-3-clause", "license_type": "permissive", "license_source": "bigquery" }
307492657
Update Zim Logo and Plugin Loading Updated the Zim logo in the README, feel free to use it. Along with that, I updated the plugin loading system to load plugins with {plugin name}.plugin.zsh and {plugin name}.zsh in order to improve compatibility. @Brottweiler Sorry! Working on it right now! Fixed it! Sorry! @ericbn @Eriner Ping I would not merge the logo. I like the idea for the init code. Actually I was working on something similar: for zmodule_file (${zmodule_dir}/${zmodule}.zsh-theme ${zmodule_dir}/init.zsh ${zmodule_dir}/${zmodule}.zsh ${zmodule_dir}/${zmodule}.sh ${zmodule_dir}/${zmodule}.plugin.zsh); do [[ -f ${zmodule_file} ]] && source ${zmodule_file} && break done @Eriner, thoughts? @ericbn Just made some changes to prioritize .plugin.zsh. And prepend zsh- to the plugin script if all else fails. From a performance perspective, due to the structuring of the conditionals, this won't cause any unecessary disk I/O. I haven't read over the code maticuliously and I'll wait to see what @ericbn says, but the concept and basic structure has a :+1: from me. @ericbn @Eriner Would it be ok to replace the last elif with an else, I think it would be better to tell people if a plugin isn't being loaded rather than if a plugin's directory doesn't exist. Closes #135 @Eriner, I'm more in favor of the for notation, as we can take advantage of globs and it also looks more concise. What do you think? I like the idea of trying to match a zsh- prefix too. This is what I suggest: local zmodule_dir # ... zmodule_dir=${ZIMFW_HOME}/modules/${zmodule} if [[ ! -d ${zmodule_dir} ]]; then print "No such module \"${zmodule}\"." >&2 else for zmodule_file (${zmodule_dir}/{,zsh-}${zmodule}.zsh-theme \ ${zmodule_dir}/init.zsh \ ${zmodule_dir}/{,zsh-}${zmodule}.{z,}sh \ ${zmodule_dir}/{,zsh-}${zmodule}.plugin.zsh); do if [[ -f ${zmodule_file} ]]; then source ${zmodule_file} break fi done fi @AtomicCoding, it is valid to have for example a module with just a functions subdir, but no init script, so that's why we don't fail if that case. @Eriner, a side note partially related to this change: I've been actually working on the "distributed modules" loading mechanism for zim, and I extracted the code above from that. Maybe I should push that to a develop branch so we can start looking at it together... @ericbn I changed some of the priorities and had zmodule_dir be immediately set after being declared because (this might just be me) ZSH echoing the value of it for some reason when it wasn't set like that, either way, here it is: local zmodule_dir=${ZIM_HOME}/modules/${zmodule} if [[ ! -d ${zmodule_dir} ]]; then print "No such module \"${zmodule}\"." >&2 else for zmodule_file (${zmodule_dir}/init.zsh \ ${zmodule_dir}/{,zsh-}${zmodule}.plugin.zsh \ ${zmodule_dir}/{,zsh-}${zmodule}.zsh-theme \ ${zmodule_dir}/{,zsh-}${zmodule}.{z,}sh); do if [[ -f ${zmodule_file} ]]; then source ${zmodule_file} break fi done fi
gharchive/pull-request
2018-03-22T03:22:58
2025-04-01T06:41:01.659895
{ "authors": [ "AtomicCoding", "Eriner", "ericbn" ], "repo": "zimfw/zimfw", "url": "https://github.com/zimfw/zimfw/pull/250", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
259629090
set lib target for tests This makes it possible to fully typecheck, even declaration files in node_modules... Without this we'll get a Set/Map not defined error. Codecov Report Merging #53 into master will not change coverage. The diff coverage is n/a. @@ Coverage Diff @@ ## master #53 +/- ## ======================================= Coverage 92.99% 92.99% ======================================= Files 9 9 Lines 357 357 Branches 46 46 ======================================= Hits 332 332 Misses 25 25 Continue to review full report at Codecov. Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update bd5caed...0459791. Read the comment docs.
gharchive/pull-request
2017-09-21T20:53:35
2025-04-01T06:41:01.667665
{ "authors": [ "codecov-io", "zinserjan" ], "repo": "zinserjan/ts-checker-webpack-plugin", "url": "https://github.com/zinserjan/ts-checker-webpack-plugin/pull/53", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
354725904
Add support for webdriver.io v5 At this stage I'm not sure what the necessary changes to make this compatible with with wdio v5 (http://beta.webdriver.io/). @zinserjan Would you be happy to have a look? +1 ! +1
gharchive/issue
2018-08-28T13:14:48
2025-04-01T06:41:01.669567
{ "authors": [ "TwoLaid", "anto-ac", "batuwka" ], "repo": "zinserjan/wdio-screenshot", "url": "https://github.com/zinserjan/wdio-screenshot/issues/89", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1447338665
Update cats-effect to 3.4.0 Updates org.typelevel:cats-effect from 3.3.14 to 3.4.0. GitHub Release Notes - Version Diff I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd like to skip this version, you can just close this PR. If you have any feedback, just mention me in the comments below. Configure Scala Steward for your repository with a .scala-steward.conf file. Have a fantastic day writing Scala! Adjust future updates Add this to your .scala-steward.conf file to ignore future updates of this dependency: updates.ignore = [ { groupId = "org.typelevel", artifactId = "cats-effect" } ] Or, add this to slow down future updates of this dependency: dependencyOverrides = [{ pullRequests = { frequency = "@monthly" }, dependency = { groupId = "org.typelevel", artifactId = "cats-effect" } }] labels: library-update, early-semver-minor, semver-spec-minor, commit-count:1 Superseded by #1024.
gharchive/pull-request
2022-11-14T03:58:07
2025-04-01T06:41:01.673373
{ "authors": [ "vigoo" ], "repo": "zio/zio-aws", "url": "https://github.com/zio/zio-aws/pull/1017", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2617571147
Fix ZIO AWS breaking changes in latest release There are breaking changes such as TableArn replaces TableName closed by https://github.com/zio/zio-dynamodb/pull/517
gharchive/issue
2024-10-28T07:37:06
2025-04-01T06:41:01.678234
{ "authors": [ "googley42" ], "repo": "zio/zio-dynamodb", "url": "https://github.com/zio/zio-dynamodb/issues/516", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2314112781
Update sbt-bloop to 1.5.18 About this PR 📦 Updates ch.epfl.scala:sbt-bloop from 1.4.2 to 1.5.18 📜 GitHub Release Notes - Version Diff Usage ✅ Please merge! I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd like to skip this version, you can just close this PR. If you have any feedback, just mention me in the comments below. Configure Scala Steward for your repository with a .scala-steward.conf file. Have a fantastic day writing Scala! ⚙ Adjust future updates Add this to your .scala-steward.conf file to ignore future updates of this dependency: updates.ignore = [ { groupId = "ch.epfl.scala", artifactId = "sbt-bloop" } ] Or, add this to slow down future updates of this dependency: dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "ch.epfl.scala", artifactId = "sbt-bloop" } }] labels: sbt-plugin-update, early-semver-minor, semver-spec-minor, commit-count:1 Superseded by #411.
gharchive/pull-request
2024-05-24T01:13:21
2025-04-01T06:41:01.682608
{ "authors": [ "scala-steward" ], "repo": "zio/zio-gcp", "url": "https://github.com/zio/zio-gcp/pull/404", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1717109547
Fix compilation of Recursive GADT schema derivation /claim #547 @zio/zio-schema @jdegoes gentle reminder that this needs review, thanks!
gharchive/pull-request
2023-05-19T11:39:44
2025-04-01T06:41:01.693894
{ "authors": [ "Jesse-Bakker" ], "repo": "zio/zio-schema", "url": "https://github.com/zio/zio-schema/pull/561", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2351586392
New Contribution Contributor: cbnoi SSH Public key: ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOmsjki7VLan3/Lk43YX5co30PxympMAYkBBAWiuLop1 Attestation: [any form of attestation for contribution (e.g., signature) - Optional] I'm ready I'm ready
gharchive/issue
2024-06-13T16:35:41
2025-04-01T06:41:01.715634
{ "authors": [ "cbnoi" ], "repo": "zircuit-labs/ceremony", "url": "https://github.com/zircuit-labs/ceremony/issues/507", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1225956023
Helm Chart We should provide a helm chart for version 2 to make using ZITADEL on K8s a straight and easy process. Acceptance criteria [ ] Provide helm chart with the necessary fields exposed (config, secrets) @fgerschwiler we should plan that ahead due to feedback from reddit Who has already some knowledge around this? @eliobischof, @stebenz or @thesephirot ?
gharchive/issue
2022-05-04T20:47:56
2025-04-01T06:41:01.717719
{ "authors": [ "fforootd" ], "repo": "zitadel/zitadel", "url": "https://github.com/zitadel/zitadel/issues/3597", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2134342787
Integrate frameworks in console As a user of console I want to see predefined configurations of popular frameworks during app creation. As soon as I click on one of the predefined configurations console skips the the configuration steps and allows me to directly set the redirect uris. the redirect uris should be pre filled with the localhost defaults of the framework or according to our docs. analog to: https://zitadel.com/docs/sdk-examples/introduction ### Tasks - [ ] design app creation flow - [ ] implement frameworks (list analog docs) - [ ] implement flow info if possible reuse docs code so that we can manage the data at a single place ref https://github.com/zitadel/zitadel/pull/7417
gharchive/issue
2024-02-14T13:23:08
2025-04-01T06:41:01.720482
{ "authors": [ "adlerhurst", "peintnermax" ], "repo": "zitadel/zitadel", "url": "https://github.com/zitadel/zitadel/issues/7389", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1622197088
chore: improve ci ### Definition of Ready - [ ] I am happy with the code - [ ] Short description of the feature/issue is added in the pr description - [ ] PR is linked to the corresponding user story - [ ] Acceptance criteria are met - [ ] All open todos and follow ups are defined in a new ticket and justified - [ ] Deviations from the acceptance criteria and design are agreed with the PO and documented. - [ ] No debug or dead code - [ ] Critical parts are tested automatically - [ ] Where possible E2E tests are implemented - [ ] Documentation/examples are up-to-date - [ ] All non-functional requirements are met - [ ] Functionality of the acceptance criteria is checked manually on the dev system. Should we also move lint and build to the Makefile? And add a Dockerfile so Windows users and users who don't want to install all build dependencies can also use the Makefile? replaced by https://github.com/zitadel/zitadel/pull/5953
gharchive/pull-request
2023-03-13T20:16:37
2025-04-01T06:41:01.722020
{ "authors": [ "adlerhurst", "eliobischof", "fforootd" ], "repo": "zitadel/zitadel", "url": "https://github.com/zitadel/zitadel/pull/5442", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1886633136
fix(account-selection): #5505 use font color as color for labels Definition of Ready [ X] I am happy with the code [X] Short description of the feature/issue is added in the pr description [x] PR is linked to the corresponding user story [X] Acceptance criteria are met [X] All open todos and follow ups are defined in a new ticket and justified [X] Deviations from the acceptance criteria and design are agreed with the PO and documented. [X] No debug or dead code [X] My code has no repetitions [X] Critical parts are tested automatically [X] Where possible E2E tests are implemented [X] Documentation/examples are up-to-date [X] All non-functional requirements are met [X] Functionality of the acceptance criteria is checked manually on the dev system. The colors configured in the instance resp. project settings for the font were not used for labels. See #5505 for more infos. Hei @dsiscout I quickly had a look, and from my perspective it doesn't look like the issue #5505 gets fixed by this. Can you please add a short description in your PR what the issue is about to solve? Hello @hifabienne The issue is, that for labels, the font color in the settings is not taken (https://github.com/zitadel/zitadel/issues/5505). In our case, we do not want to differentiate between light and dark mode, so we use the same configs on both. But the label color is not configurable, which is why on our account selection the username is white: In this PR, what I am basically doing is, setting the label color same as the font color, and now when I test locally it looks like this: Let me know if you need further information or anything I should adjust in the PR. Best regards I think the initial idea was to distinguish the color of labels and texts. This change would get rid of this, which i'm fine as it solves at least some part of the light / dark problems mentioned in the issue. It will obviously have an impact on developers, resp. their design as soon as the change something and would also get another color for their labels. IMO we should move forward as this solves more problems than it could potentially cause. @hifabienne any objections? @livio-a Yes I am with you. @dsiscout thanks for this contribution 😃 If you'd like to have a small gift in return, please send us a mail to hi@zitadel.com. We will send you a form with questions about your address and shirt size.
gharchive/pull-request
2023-09-07T22:29:48
2025-04-01T06:41:01.730426
{ "authors": [ "dsiscout", "hifabienne", "livio-a" ], "repo": "zitadel/zitadel", "url": "https://github.com/zitadel/zitadel/pull/6518", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
282647392
loss never decreasing 查看了EMBEDDING部分应该没有问题,但是输入到LSTMP layer和LSTMO layer之后对每句话的输出分布极为相似,导致后面对每个单词的标签预测都是同一个值,因此LOSS不降。标准LSTM的LOSS也不降,且标准LSTM layer1对每句话的输出分布不同,到标准LSTM layer2对每句话的输出分布就很相似了 epoch : 0 batch : 0 current loss : 154.5876 [torch.FloatTensor of size 1] batch : 1 current loss : 142.3224 [torch.FloatTensor of size 1] batch : 2 current loss : 126.7297 [torch.FloatTensor of size 1] batch : 3 current loss : 106.5865 [torch.FloatTensor of size 1] batch : 4 current loss : 60.0537 [torch.FloatTensor of size 1] batch : 5 current loss : 66.7900 [torch.FloatTensor of size 1] batch : 6 current loss : 44.6394 [torch.FloatTensor of size 1] batch : 7 current loss : 42.1091 [torch.FloatTensor of size 1] batch : 8 current loss : 41.0118 [torch.FloatTensor of size 1] batch : 9 current loss : 40.1179 [torch.FloatTensor of size 1] What changed: use optim.SGD() instead of optim.RMSprop() add optimizer.step() after loss.backward() Please close this issue if you think it had resolved. Thanks! :)
gharchive/issue
2017-12-16T20:13:06
2025-04-01T06:41:01.733523
{ "authors": [ "zixia" ], "repo": "zixia/xi-lstm", "url": "https://github.com/zixia/xi-lstm/issues/8", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
733581647
Loot not spawning in structures generated by plugins like Custom Structures and Oh The Dungeons You'll Go. I am currently using the plugins, Custom Structures (https://www.spigotmc.org/resources/custom-structures.38249/) and Oh The Dungeons You'll Go (https://www.spigotmc.org/resources/oh-the-dungeons-youll-go.76437/). For some reason, the chests within these generated structures do not contain any of the Acute Loot items. What qualifies as a naturally spawned chest, and is there a way to fix this? Hi @browloga490, this is a great question. At a technical level, AcuteLoot is checking chests to see if they have a valid lootTable. Chests spawned by the vanilla world generator have lootTables. Conveniently, the lootTable is removed as soon as the chest is opened for the first time. In this way, the lootTable is a good proxy for an "unopened, naturally spawned" chest. It appears that the plugins above don't give their chests lootTables through the Spigot/Bukkit API which would explain why they are ignored by AcuteLoot. As the plugin was originally designed to work in a relatively vanilla manner, we never considered handling it in any other way. I think it is worth at least looking into alternatives so that plugins like the ones you're running can work with AcuteLoot's generators. However it will require some thought and testing to design a system that works in the most general cases and maintains effortless compatibility with the vanilla game. Sorry for the late replay. Thank you for the explanation! @browloga490 Just wanted to let you know, the latest update includes a command to designate AcuteLoot chests. You can also make them auto-refilling over time. I know this won't help with automatically creating new chests in new chunks, but hopefully you can still find it useful! Hop in the Discord if you have any questions or other ideas.
gharchive/issue
2020-10-31T00:01:54
2025-04-01T06:41:01.737309
{ "authors": [ "browloga490", "zizmax" ], "repo": "zizmax/AcuteLoot", "url": "https://github.com/zizmax/AcuteLoot/issues/5", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1305521775
FileNotFoundError: [Errno 2] No such file or directory: './meta/rel2id.json' 当我跑ner任务的时候报错FileNotFoundError: [Errno 2] No such file or directory: './meta/rel2id.json',请问怎么解决? 是standard NER?数据集应该放在data文件夹下,直接按README下载解压即可。 是的,是standard NER,数据集也在data文件夹里面,运行Python run.py报错ileNotFoundError: [Errno 2] No such file or directory: './meta/rel2id.json' data是放在standard下面,但是standard NER数据集里没有rel2id.json这个文件,这是用在关系抽取的。 可以截图报错信息发一下吗? 您好,谢谢,这个问题解决了,出现了新的问题,是这个:ModuleNotFoundError: No module named 'transformers.configuration_bart' 我已经安装了transformers的包了 transformers版本降到3.4.0 好的谢谢,之前的报错是这样的,您可以看看 transformers版本降到3.4.0 transformers的版本是3.4.0 data是放在standard下面,但是standard NER数据集里没有rel2id.json这个文件,这是用在关系抽取的。 可以截图报错信息发一下吗? 好的谢谢,之前的报错是这样的,您可以看看 你好🙋‍♂️,你说的问题在之前版本的deepke包中存在,也就是https://github.com/zjunlp/DeepKE/commit/ab6b52c4733fc8b0a36bbb5944309f1b23ce9345 版本的deepke/relation_extraction/document/evaluation.py文件存在这样的问题。如果你需要保留你目前对deepke其他部分的修改,可以clone一下新版的DeepKE并替换一下deepke/relation_extraction或者deepke/relation_extraction/document目录来解决这个错误。 data是放在standard下面,但是standard NER数据集里没有rel2id.json这个文件,这是用在关系抽取的。 可以截图报错信息发一下吗? 好的谢谢,之前的报错是这样的,您可以看看 你好🙋‍♂️,你说的问题在之前版本的deepke包中存在,也就是ab6b52c 版本的deepke/relation_extraction/document/evaluation.py文件存在这样的问题。你可以把deepke更新到最新版本,如果你需要保留你目前对deepke其他部分的修改,可以clone一下新版的DeepKE并替换一下deepke/relation_extraction或者deepke/relation_extraction/document目录来解决这个错误。 好的,谢谢,麻烦您了,那我的另一个错误能帮忙看看么? pip install deepke --upgrade试试 将deepke更新到最新版本试试 pip install deepke --upgrade 您好,我已经更新了deepke最新版本,然后出现了新的问题 这个我应该选择什么呢? 如果你不想可视化运行结果,就输入3并回车,这个是wandb包的用法,可以搜索一下一下 如果你不想可视化运行结果,就输入3并回车,这个是wandb包的用法,可以搜索一下一下 pytorch GPU没有安装成功,或者CUDA版本不对,检查一下 pip install deepke --upgrade 您好,我已经更新了deepke最新版本,然后出现了新的问题 这个我应该选择什么呢? 建议1,会有操作提示,按照提示操作即可。 如果你不想可视化运行结果,就输入3并回车,这个是wandb包的用法,可以搜索一下一下 pytorch GPU没有安装成功,或者CUDA版本不对,检查一下 你或许没有安装pytorch配套的cuda,参考一下这个文档试试,https://blog.csdn.net/HPGaa/article/details/117230868 。 pytorch 1.11.0即可 pytorch 1.11.0即可 好的谢谢 请问一下这个ner的基础模型就使用了bert直接做ner是么? 请问一下这个ner的基础模型就使用了bert直接做ner是么? 是 请问一下这个ner的基础模型就使用了bert直接做ner是么? 是 训练的时候如何看训练效果呢? 训练后会显示eval的结果 训练后会显示eval的结果 那是只训练3个epoch就可以了么?还是说需要根据数据来增加epoch的数量? 训练后会显示eval的结果 那是只训练3个epoch就可以了么?还是说需要根据数据来增加epoch的数量? 可以根据结果f1-score大小来调整epoch 训练后会显示eval的结果 那是只训练3个epoch就可以了么?还是说需要根据数据来增加epoch的数量? 可以根据结果f1-score大小来调整epoch OK,好的谢谢,非常感谢 请问我如何修改batch size呢?在配置文件中没有看到batch size 请问我如何修改batch size呢?在配置文件中没有看到batch size https://github.com/zjunlp/DeepKE/blob/main/example/ner/standard/conf/train.yaml 有的 https://github.com/zjunlp/DeepKE/blob/main/example/ner/standard/conf/train.yaml eval_batch_size是这个值? 请问我如何修改batch size呢?在配置文件中没有看到batch size https://github.com/zjunlp/DeepKE/blob/main/example/ner/standard/conf/train.yaml 有的 train_batch_size是这个值? training时候的batch_size是train_batch_size,train之后eval的batch_size是eval_batch_size
gharchive/issue
2022-07-15T03:14:22
2025-04-01T06:41:01.760820
{ "authors": [ "JxuHenry", "TimelordRi", "xxupiano" ], "repo": "zjunlp/DeepKE", "url": "https://github.com/zjunlp/DeepKE/issues/125", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1525221880
torch模块找不到 请问这是什么问题,始终找不到这个包。提示的是大于等于1.5,小于等于1.10,但是已经特意安装到1.10版本还是不行 可以通过pip list命令查看一下当前环境中有没有安装torch包,有的话可以去pytorch官网按照对应命令来重新进行安装 刚刚又换了1.7.1版本的试了,还是不行,在pip list中也是有的,可以看图 新写的python文件只写了一行import torch,运行起来也是找不到,这应该是我本地的问题了吧 在conda中的python交互环境还是可以导入的 要不重新安装环境试试? 重新安装环境后依旧有这个问题,步骤如下: windows conda 创建 python 3.8.15 环境 根据源码安装,先后分别执行py setup.py install ; py setup.py develop(setup.py文件第20行被我设置成空字符串了) pip install -r requirement.txt 再回来py predicate.py 报错如下: 从报错路径可以看出目前环境在\dev\source_code xxx,不是conda环境。 请用'python'而不是'py'执行python脚本,例如python predict.py 这个问题解决了,又跑出来下一个问题,算了
gharchive/issue
2023-01-09T09:27:40
2025-04-01T06:41:01.766536
{ "authors": [ "EightMonth", "tlk1997", "xxupiano" ], "repo": "zjunlp/DeepKE", "url": "https://github.com/zjunlp/DeepKE/issues/214", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2356572147
When the parameter changes, public_inputs remain unchanged BASEDIR=test-vectors RUST_LOG=info ELF_PATH=/mnt/data/xander/test/test_proof/hello_world_mips1.22 SEG_OUTPUT=/tmp/output SEG_SIZE=262144 ARGS="123456 321" cargo run --release --example zkmips split warning: `/mnt/data/.cargo/config` is deprecated in favor of `config.toml` note: if you need to support cargo 1.38 or earlier, you can symlink `config` to `config.toml` Finished `release` profile [optimized] target(s) in 0.25s Running `target/release/examples/zkmips split` []string{"123456", "321"} result 39629376 BASEDIR=test-vectors RUST_LOG=info SEG_FILE_NUM=2 SEG_FILE_DIR=/tmp/output SEG_SIZE=262144 cargo run --release --example zkmips aggregate_proof_all warning: `/mnt/data/.cargo/config` is deprecated in favor of `config.toml` note: if you need to support cargo 1.38 or earlier, you can symlink `config` to `config.toml` Finished `release` profile [optimized] target(s) in 0.25s Running `target/release/examples/zkmips aggregate_proof_all` [2024-06-17T07:01:19Z INFO zkmips] Process segment 0 [2024-06-17T07:01:22Z INFO zkm::cpu::bootstrap_kernel] Bootstrapping took 21030 cycles [2024-06-17T07:01:23Z INFO zkm::generation] CPU halted after 283174 cycles [2024-06-17T07:01:24Z INFO zkm::generation] CPU trace padded to 524288 cycles [2024-06-17T07:01:24Z INFO zkm::generation] Trace lengths (before padding): TraceCheckpoint { arithmetic_len: 141876, cpu_len: 524288, poseidon_len: 42058, poseidon_sponge_len: 42058, logic_len: 17928, memory_len: 2714935 } [2024-06-17T07:02:41Z INFO plonky2::util::timing] 81.7848s to prove root first [2024-06-17T07:02:41Z INFO zkmips] Process segment 1 [2024-06-17T07:02:44Z INFO zkm::cpu::bootstrap_kernel] Bootstrapping took 27222 cycles [2024-06-17T07:02:44Z INFO zkm::generation] CPU halted after 131428 cycles [2024-06-17T07:02:45Z INFO zkm::generation] CPU trace padded to 262144 cycles [2024-06-17T07:02:45Z INFO zkm::generation] Trace lengths (before padding): TraceCheckpoint { arithmetic_len: 41320, cpu_len: 262144, poseidon_len: 54442, poseidon_sponge_len: 54442, logic_len: 4941, memory_len: 2427913 } [2024-06-17T07:03:43Z INFO plonky2::util::timing] 62.6836s to prove root second [2024-06-17T07:03:45Z INFO plonky2::util::timing] 1.2870s to prove aggression [2024-06-17T07:03:47Z INFO zkmips] proof size: 412845 [2024-06-17T07:03:50Z INFO zkmips] build finish [2024-06-17T07:03:55Z INFO plonky2x::backend::wrapper::wrap] Succesfully wrote common circuit data to common_circuit_data.json [2024-06-17T07:03:55Z INFO plonky2x::backend::wrapper::wrap] Succesfully wrote verifier data to verifier_only_circuit_data.json [2024-06-17T07:03:55Z INFO plonky2x::backend::wrapper::wrap] Succesfully wrote proof to proof_with_public_inputs.json [2024-06-17T07:03:55Z INFO plonky2::util::timing] 204.8115s to prove total time public_inputs in proof_with_public_inputs.json "public_inputs":[3,176,196,66,152,252,28,20,154,251,244,200,153,111,185,36,39,174,65,228,100,155,147,76,164,149,153,27,120,82,184,85,3,176,196,66,152,252,28,20,154,251,244,200,153,111,185,36,39,174,65,228,100,155,147,76,164,149,153,27,120,82,184,85]} BASEDIR=test-vectors RUST_LOG=info ELF_PATH=/mnt/data/xander/test/test_proof/hello_world_mips1.22 SEG_OUTPUT=/tmp/output SEG_SIZE=262144 ARGS="123 321" cargo run --release --example zkmips split warning: `/mnt/data/.cargo/config` is deprecated in favor of `config.toml` note: if you need to support cargo 1.38 or earlier, you can symlink `config` to `config.toml` Finished `release` profile [optimized] target(s) in 0.27s Running `target/release/examples/zkmips split` []string{"123", "321"} result 39483 [2024-06-17T07:09:36Z INFO zkmips] Split done 365745 BASEDIR=test-vectors RUST_LOG=info SEG_FILE_NUM=2 SEG_FILE_DIR=/tmp/output SEG_SIZE=262144 cargo run --release --example zkmips aggregate_proof_all warning: `/mnt/data/.cargo/config` is deprecated in favor of `config.toml` note: if you need to support cargo 1.38 or earlier, you can symlink `config` to `config.toml` Finished `release` profile [optimized] target(s) in 0.24s Running `target/release/examples/zkmips aggregate_proof_all` [2024-06-17T07:10:52Z INFO zkmips] Process segment 0 [2024-06-17T07:10:56Z INFO zkm::cpu::bootstrap_kernel] Bootstrapping took 21030 cycles [2024-06-17T07:10:56Z INFO zkm::generation] CPU halted after 283174 cycles [2024-06-17T07:10:57Z INFO zkm::generation] CPU trace padded to 524288 cycles [2024-06-17T07:10:57Z INFO zkm::generation] Trace lengths (before padding): TraceCheckpoint { arithmetic_len: 141871, cpu_len: 524288, poseidon_len: 42058, poseidon_sponge_len: 42058, logic_len: 17928, memory_len: 2714924 } [2024-06-17T07:12:15Z INFO plonky2::util::timing] 82.6788s to prove root first [2024-06-17T07:12:15Z INFO zkmips] Process segment 1 [2024-06-17T07:12:18Z INFO zkm::cpu::bootstrap_kernel] Bootstrapping took 27222 cycles [2024-06-17T07:12:18Z INFO zkm::generation] CPU halted after 130823 cycles [2024-06-17T07:12:20Z INFO zkm::generation] CPU trace padded to 262144 cycles [2024-06-17T07:12:20Z INFO zkm::generation] Trace lengths (before padding): TraceCheckpoint { arithmetic_len: 41008, cpu_len: 262144, poseidon_len: 54442, poseidon_sponge_len: 54442, logic_len: 4923, memory_len: 2425143 } [2024-06-17T07:13:18Z INFO plonky2::util::timing] 62.9830s to prove root second [2024-06-17T07:13:19Z INFO plonky2::util::timing] 1.2882s to prove aggression [2024-06-17T07:13:21Z INFO zkmips] proof size: 412855 [2024-06-17T07:13:25Z INFO zkmips] build finish [2024-06-17T07:13:29Z INFO plonky2x::backend::wrapper::wrap] Succesfully wrote common circuit data to common_circuit_data.json [2024-06-17T07:13:29Z INFO plonky2x::backend::wrapper::wrap] Succesfully wrote verifier data to verifier_only_circuit_data.json [2024-06-17T07:13:29Z INFO plonky2x::backend::wrapper::wrap] Succesfully wrote proof to proof_with_public_inputs.json [2024-06-17T07:13:29Z INFO plonky2::util::timing] 205.9857s to prove total time public_inputs in proof_with_public_inputs.json "public_inputs":[3,176,196,66,152,252,28,20,154,251,244,200,153,111,185,36,39,174,65,228,100,155,147,76,164,149,153,27,120,82,184,85,3,176,196,66,152,252,28,20,154,251,244,200,153,111,185,36,39,174,65,228,100,155,147,76,164,149,153,27,120,82,184,85]} fixed by https://github.com/zkMIPS/succinctx/commit/885530166fa5895dbcd7e2db57a72e1f2c982c0d
gharchive/issue
2024-06-17T07:15:21
2025-04-01T06:41:01.771387
{ "authors": [ "eigmax", "xander42280" ], "repo": "zkMIPS/zkm", "url": "https://github.com/zkMIPS/zkm/issues/137", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
907607199
Experiment: backport ff_derive x86_64 assembly from fff crate This is an experimental backport of the changes from https://github.com/filecoin-project/ff (published as the fff crate). I've opened this as a draft PR for discussion. I see two main additions: ASM for modular multiplication. This is specific to BLS12-381, and is probably unlikely to be beneficial here. When the fff fork was created, the main BLS12-381 implementation was in pairing::bls12_381, and it used ff_derive for its field logic. That implementation has been removed from pairing, and replaced with the bls12_381 crate which implements field logic directly. So we might want to consider potentially adding assembly optimisations there. ASM to use _addcarry_u64 and _subborrow_u64 explicitly on x86_64. I'm surprised that Rust doesn't figure this out itself; it seems like we should be able to rework ff_derive to encourage LLVM to lower to this directly. ASM to use _addcarry_u64 and _subborrow_u64 explicitly on x86_64. I'm surprised that Rust doesn't figure this out itself; it seems like we should be able to rework ff_derive to encourage LLVM to lower to this directly. This was definitely working at one point. Did something change? IDK. @dignifiedquire implemented that in January 2020 so it's "relatively" recent; they might have more information about what they were seeing that motivated the change. Here's a Godbolt example which shows adc lowering: https://godbolt.org/z/rq7xTsvx6 Taken from the crypto-bigint crate just to cross-check what it's doing, although the implementation is ultimately derived from and quite similar to what's in this crate (but amended to be const-friendly) For add I don't remember the exact assembly difference, but back then the intrinsic implementation ended up being faster than the non intrinsic version, at least all the ones we tried.
gharchive/pull-request
2021-05-31T16:45:31
2025-04-01T06:41:01.800135
{ "authors": [ "dignifiedquire", "str4d", "tarcieri" ], "repo": "zkcrypto/ff", "url": "https://github.com/zkcrypto/ff/pull/58", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2313579142
Simplify inflate window checks Based on PR #1713, needs rebase when that has gone in. Didn't want to add it to that PR this late, although it really belongs there. Since there is no need to worry about alloc calls failing after init has been done, we can simplify the initialization and error checking of windows. Optimization wasn't the purpose here, but in my preliminary tests, this improved inflate speed on big files by ~0.4-0.67%, so that is looking pretty good too. PS: inflateReset2 is called during init and whenever the windows needs a reset and its size set to 0. According to codecov, this and #1713 together remove 26 branches, that is nearly 1% of the branches in the whole codebase (including tests). That doesn't necessarily mean much, it was just an interesting tidbit I noticed 😃 Rebased.
gharchive/pull-request
2024-05-23T18:25:15
2025-04-01T06:41:01.803275
{ "authors": [ "Dead2" ], "repo": "zlib-ng/zlib-ng", "url": "https://github.com/zlib-ng/zlib-ng/pull/1734", "license": "Zlib", "license_type": "permissive", "license_source": "github-api" }
877029229
Change bi_reverse to use a byte table. bi_reverse old versus new table method sees 240x improvement according to Quick C++ Benchmark. You can see minor improvements to both speed and size to the library itself. Two benchmark runs included below. ZLIB-NG (DEVELOP) Tool: minigzip-ng.exe Levels: 1-9 Runs: 70 Trim worst: 40 Level Comp Comptime min/avg/max/stddev Compressed size 1 48.014% 1.106/1.125/1.135/0.008 111,512,026 2 35.391% 1.812/1.840/1.851/0.009 82,195,416 3 34.039% 2.243/2.260/2.271/0.008 79,055,001 4 32.751% 2.662/2.691/2.704/0.011 76,065,070 5 32.484% 2.892/2.911/2.921/0.008 75,443,521 6 32.318% 3.496/3.526/3.544/0.013 75,057,363 7 32.061% 4.727/4.743/4.753/0.007 74,461,300 8 31.978% 7.225/7.259/7.279/0.014 74,269,032 9 31.961% 9.807/9.843/9.867/0.015 74,230,342 avg1 34.555% 4.022 tot 1085.923 722,289,071 Tool: minigzip-ng.exe Levels: 1-9 Runs: 70 Trim worst: 40 Level Comp Comptime min/avg/max/stddev Compressed size 1 48.014% 1.066/1.078/1.095/0.009 111,512,026 2 35.391% 1.786/1.816/1.833/0.012 82,195,416 3 34.039% 2.217/2.237/2.260/0.011 79,055,001 4 32.751% 2.642/2.675/2.694/0.014 76,065,070 5 32.484% 2.855/2.893/2.918/0.015 75,443,521 6 32.318% 3.472/3.500/3.529/0.017 75,057,363 7 32.061% 4.685/4.728/4.751/0.018 74,461,300 8 31.978% 7.209/7.243/7.290/0.023 74,269,032 9 31.961% 9.777/9.825/9.889/0.035 74,230,342 avg1 34.555% 3.999 tot 1079.856 722,289,071 ZLIB-NG (BI-REVERSE) Runs: 70 Trim worst: 40 Level Comp Comptime min/avg/max/stddev Compressed size 1 48.014% 1.128/1.144/1.153/0.007 111,512,026 2 35.391% 1.779/1.798/1.813/0.009 82,195,418 3 34.039% 2.192/2.211/2.226/0.007 79,055,000 4 32.751% 2.618/2.638/2.658/0.012 76,065,071 5 32.484% 2.823/2.854/2.872/0.011 75,443,519 6 32.318% 3.435/3.459/3.476/0.010 75,057,362 7 32.061% 4.746/4.773/4.788/0.012 74,461,288 8 31.978% 7.257/7.291/7.307/0.012 74,268,981 9 31.961% 9.846/9.872/9.894/0.014 74,230,313 avg1 34.555% 4.005 tot 1081.243 722,288,978 Tool: minigzip-ng-bi-reverse.exe Levels: 1-9 Runs: 70 Trim worst: 40 Level Comp Comptime min/avg/max/stddev Compressed size 1 48.014% 1.095/1.109/1.116/0.005 111,512,026 2 35.391% 1.773/1.785/1.794/0.007 82,195,418 3 34.039% 2.186/2.196/2.203/0.005 79,055,000 4 32.751% 2.598/2.612/2.621/0.007 76,065,071 5 32.484% 2.809/2.826/2.835/0.007 75,443,519 6 32.318% 3.419/3.435/3.443/0.006 75,057,362 7 32.061% 4.735/4.747/4.757/0.007 74,461,288 8 31.978% 7.242/7.264/7.276/0.011 74,268,981 9 31.961% 9.811/9.840/9.852/0.011 74,230,313 avg1 34.555% 3.979 tot 1074.405 722,288,978 Here is my test code: https://gist.github.com/nmoinvaz/ac30fc08f19488e4efa38707d5004291 Did you experiment with using a 16-bit and full 32-bit table too? Just curious. The results looks great, but I am unclear on how this changes the output, and that makes me nervous. I think I did experiment with larger tables months ago but the size of the tables increases the code size by too much. I didn't do any performance testing at the time but just abandoned it. Even if things get a lot faster, we have to really limit the increase of memory usage of zlib-ng, otherwise it will become pretty much unusable on devices (and with software) with limited memory space. Of course, I was just curious whether there was any perf difference with those. But what about the difference in output? I would have thought there would be no difference in output by using a pre-calculated table, so how did that happen? @Dead2 I'm pretty sure it shouldn't change the output, so there is obviously some hidden bug in either new or old version... We may be able to get away with only 16 bits because the assertion about len in the comments but I haven't tested it. When changing it to the code below the compression stays the same as before: Z_INTERNAL unsigned bi_reverse(unsigned code, int len) { /* code: the value to invert */ /* len: its bit length */ return ((unsigned)bi_reverse_table[code & 0xff] << 8 | (unsigned)bi_reverse_table[(code >> 8) & 0xff]) >> (16 - len); } @nmoinvaz As the return value of bi_reverseis cast to uint16_t anything more than 16 bits will get truncated... In that case, would it perhaps be a good idea to change the return type of bi_reverse to uint16_t at the same time, I think that would make it easier to understand the function without needing to look up that context? And uint16_t should be big enough since that is what it would have been on 16-bit platforms anyway. Adding the assert can also help static code analysis as it then knows the required bounds of len. Btw, looked into non-table alternatives to bit-shifting a bit: Obviously the old loop-style bit shifting will be very slow, but did you compare this with solutions like this? http://graphics.stanford.edu/~seander/bithacks.html#ReverseByteWith64Bits I'm assuming indexed load doesn't have high penalty on most systems as long as the whole array can fit in cache. There is still bit manipulation due to zero extending, shifting and ORing the two values together, but most processors can do it with two general purpose registers. Using 16-bit array (65536 entries) would avoid the penalty on bit manipulation, but I'm not sure if all processors can do that large indexed load without penalty. In worst case it would require "load effective address" followed by regular load. Reducing the amount of dead data in the cache is also worth considering, if it can be done in a way that is not too expensive, hence my suggestion above. This is not as important/visible for a single-threaded benchmark, but for an actual running system doing a multitude of things, that can still end up faster because of all the competing load on the cache. This is very relevant for for example busy webservers running php applications where zlib-ng is compressing the data sent to the browser. In those cases, the OS/PHP/webserver/etc will probably be the main load on the cpu and the caches, and the zlib-ng data structures will have a hard time competing to stay in the caches and might end up pushed to slow ram more often than we'd prefer. Please rebase, for CI Rebased. Fixed the comment. Baseline c475ec95525ac4bbf4838a6943ebd2c88c1fb5a1 x86-64 text data bss dec hex filename 111488 1296 32 112816 1b8b0 libz-ng.so.2 Level Comp Comptime min/avg/max/stddev Decomptime min/avg/max/stddev Compressed size 1 57.780% 1.889/1.905/1.911/0.006 1.275/1.285/1.292/0.005 90,924,650 2 43.876% 2.022/2.044/2.052/0.008 0.774/0.825/0.837/0.014 41,427,218 3 42.490% 2.092/2.109/2.117/0.008 0.669/0.679/0.686/0.005 33,432,016 4 41.467% 2.014/2.041/2.053/0.009 0.518/0.527/0.532/0.004 26,101,482 5 41.212% 2.178/2.196/2.206/0.007 0.513/0.525/0.531/0.005 25,940,920 6 41.039% 1.925/1.933/1.939/0.004 0.385/0.394/0.397/0.003 19,374,021 7 40.781% 1.662/1.669/1.674/0.004 0.255/0.260/0.263/0.003 12,834,980 8 40.706% 2.073/2.088/2.095/0.006 0.252/0.258/0.261/0.003 12,811,166 9 40.695% 2.265/2.281/2.288/0.007 0.252/0.258/0.262/0.003 12,807,941 avg1 43.339% 2.029 0.557 tot 365.303 100.206 275,654,394 PR #948 36fd045e238e61c9c27494126b4b65359abca460 x86-64 text data bss dec hex filename 111624 1296 32 112952 1b938 libz-ng.so.2 Level Comp Comptime min/avg/max/stddev Decomptime min/avg/max/stddev Compressed size 1 57.780% 1.891/1.899/1.908/0.004 1.267/1.281/1.291/0.008 90,924,650 2 43.876% 2.029/2.040/2.046/0.005 0.821/0.832/0.838/0.005 41,427,218 3 42.490% 2.085/2.103/2.112/0.008 0.666/0.679/0.684/0.004 33,432,016 4 41.467% 2.004/2.031/2.040/0.009 0.522/0.529/0.533/0.003 26,101,482 5 41.212% 2.172/2.191/2.200/0.007 0.519/0.527/0.532/0.003 25,940,920 6 41.039% 1.902/1.922/1.931/0.008 0.389/0.395/0.398/0.002 19,374,021 7 40.781% 1.648/1.664/1.671/0.007 0.254/0.260/0.263/0.002 12,834,980 8 40.706% 2.068/2.079/2.088/0.007 0.249/0.259/0.262/0.003 12,811,166 9 40.695% 2.260/2.271/2.280/0.006 0.254/0.258/0.261/0.002 12,807,941 avg1 43.339% 2.022 0.558 tot 363.992 100.376 275,654,394 Bigger compiled size. Small speed improvement in all compression levels, averaging at ~0.35% faster. Baseline c475ec95525ac4bbf4838a6943ebd2c88c1fb5a1 aarch64 text data bss dec hex filename 103138 1504 16 104658 198d2 libz-ng.so.2 Level Comp Comptime min/avg/max/stddev Decomptime min/avg/max/stddev Compressed size 1 57.784% 3.002/3.030/3.050/0.016 0.939/0.995/1.008/0.017 45,465,419 2 43.879% 2.775/2.805/2.832/0.018 0.583/0.616/0.637/0.015 20,714,938 3 42.489% 3.422/3.454/3.472/0.016 0.567/0.593/0.615/0.015 20,058,827 4 41.468% 2.732/2.757/2.773/0.011 0.366/0.380/0.388/0.008 13,050,960 5 41.218% 2.916/2.980/3.003/0.027 0.340/0.380/0.396/0.014 12,972,368 6 41.040% 3.453/3.479/3.495/0.013 0.361/0.382/0.393/0.009 12,916,434 7 40.778% 2.234/2.254/2.270/0.011 0.160/0.178/0.190/0.009 6,416,924 8 40.704% 2.759/2.782/2.798/0.013 0.155/0.176/0.191/0.012 6,405,244 9 40.696% 2.947/3.001/3.016/0.018 0.169/0.177/0.185/0.005 6,404,084 avg1 43.340% 2.949 0.431 tot 398.134 58.159 144,405,198 PR #948 36fd045e238e61c9c27494126b4b65359abca460 aarch64 text data bss dec hex filename 103266 1504 16 104786 19952 libz-ng.so.2 Level Comp Comptime min/avg/max/stddev Decomptime min/avg/max/stddev Compressed size 1 57.784% 2.970/3.021/3.049/0.023 0.945/0.984/1.003/0.015 45,465,419 2 43.879% 2.758/2.792/2.814/0.019 0.591/0.614/0.629/0.010 20,714,938 3 42.489% 3.412/3.459/3.473/0.016 0.543/0.595/0.611/0.018 20,058,827 4 41.468% 2.735/2.755/2.772/0.010 0.359/0.382/0.395/0.011 13,050,960 5 41.218% 2.947/2.980/2.996/0.016 0.344/0.379/0.392/0.013 12,972,368 6 41.040% 3.452/3.486/3.509/0.018 0.360/0.379/0.389/0.009 12,916,434 7 40.778% 2.234/2.253/2.268/0.011 0.171/0.181/0.189/0.006 6,416,924 8 40.704% 2.773/2.791/2.804/0.009 0.143/0.175/0.193/0.016 6,405,244 9 40.696% 2.987/3.003/3.015/0.008 0.170/0.184/0.195/0.009 6,404,084 avg1 43.340% 2.949 0.430 tot 398.119 58.100 144,405,198 Bigger compiled size. Speeds are within margin of error.
gharchive/pull-request
2021-05-06T03:07:51
2025-04-01T06:41:01.816458
{ "authors": [ "Dead2", "mtl1979", "nmoinvaz" ], "repo": "zlib-ng/zlib-ng", "url": "https://github.com/zlib-ng/zlib-ng/pull/948", "license": "Zlib", "license_type": "permissive", "license_source": "github-api" }
218797229
Fatal Error Connecting Updating existing world from AR 1.1.1 to 1.1.2 (LibVulpes 0.2.0 to 0.2.1) Get a fatal error when connecting to the server. Error begins at line 18112 in client log. Full logs attached: client latest.txt server latest.txt [16:54:38] [Netty Client IO #1/ERROR]: There was a critical exception handling a packet on channel libVulpes io.netty.handler.codec.DecoderException: java.lang.NullPointerException at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:99) ~[netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.handler.codec.MessageToMessageCodec.channelRead(MessageToMessageCodec.java:111) ~[netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) ~[netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) ~[netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:787) ~[netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.channel.embedded.EmbeddedChannel.writeInbound(EmbeddedChannel.java:169) ~[netty-all-4.0.23.Final.jar:4.0.23.Final] at net.minecraftforge.fml.common.network.internal.FMLProxyPacket.func_148833_a(FMLProxyPacket.java:100) [FMLProxyPacket.class:?] at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:149) [eo.class:?] at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:51) [eo.class:?] at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [netty-all-4.0.23.Final.jar:4.0.23.Final] at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.handleClientSideCustomPacket(NetworkDispatcher.java:407) [NetworkDispatcher.class:?] at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:273) [NetworkDispatcher.class:?] at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:73) [NetworkDispatcher.class:?] at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:163) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:163) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:163) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.handler.timeout.ReadTimeoutHandler.channelRead(ReadTimeoutHandler.java:150) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:787) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:130) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:511) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:468) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:382) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:354) [netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116) [netty-all-4.0.23.Final.jar:4.0.23.Final] at java.lang.Thread.run(Thread.java:745) [?:1.8.0_25] Caused by: java.lang.NullPointerException at zmaster587.advancedRocketry.dimension.DimensionProperties.setStar(DimensionProperties.java:317) ~[DimensionProperties.class:?] at zmaster587.advancedRocketry.dimension.DimensionProperties.readFromNBT(DimensionProperties.java:1074) ~[DimensionProperties.class:?] at zmaster587.advancedRocketry.network.PacketDimInfo.readClient(PacketDimInfo.java:75) ~[PacketDimInfo.class:?] at zmaster587.libVulpes.network.PacketHandler$Codec.decodeInto(PacketHandler.java:210) ~[PacketHandler$Codec.class:unspecified] at zmaster587.libVulpes.network.PacketHandler$Codec.decodeInto(PacketHandler.java:192) ~[PacketHandler$Codec.class:unspecified] at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:103) ~[FMLIndexedMessageToMessageCodec.class:?] at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:40) ~[FMLIndexedMessageToMessageCodec.class:?] at io.netty.handler.codec.MessageToMessageCodec$2.decode(MessageToMessageCodec.java:81) ~[netty-all-4.0.23.Final.jar:4.0.23.Final] at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:89) ~[netty-all-4.0.23.Final.jar:4.0.23.Final] ... 40 more Would you be able to send a copy of the server's advRocketry/temp.dat file? And the planet XML configs if there are any? No planets as of yet, here's the temp.dat though. https://drive.google.com/open?id=0B4UhGIFXzCO6dDlLVzAyYlN0eGM There's an astroid xml though, would that work? The asteriod XML i don't think is related, if you don't have a planet XML file then it'll use internal so I can work with that. I'll try it in a second I can confirm an replicate the issue, I'll have a build up in 10 to 30 minutes Fixed build should be up, only the client really needs it though. Overworld and Sol had been being treated as a special case up until the last build. Sounds great, thanks! We are also running into this exact same issue on AR 1.2.2 and LibVules 0.2.5
gharchive/issue
2017-04-02T22:03:10
2025-04-01T06:41:01.823823
{ "authors": [ "Towsty", "Yorkforce", "zmaster587" ], "repo": "zmaster587/AdvancedRocketry", "url": "https://github.com/zmaster587/AdvancedRocketry/issues/503", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
895931399
refactor: move credentials into workflow env This is a simpler and cleaner approach than previous implementations. Testing I checked and cleared the registry cache ... docker.io/innovaker/zmk-docker-cache:dev docker.io/innovaker/zmk-docker-cache:build ... before running each scenario. all username/token secrets available Candidate: https://github.com/innovaker/zmk-docker/actions/runs/858222844 Release: https://github.com/innovaker/zmk-docker/actions/runs/858238858 Registry cache created! without DOCKER_HUB_USERNAME Candidate: https://github.com/innovaker/zmk-docker/actions/runs/858251641 Release: https://github.com/innovaker/zmk-docker/actions/runs/858262343 Registry cache not created. without DOCKER_HUB_TOKEN Candidate: https://github.com/innovaker/zmk-docker/actions/runs/858264793 Release: https://github.com/innovaker/zmk-docker/actions/runs/858275558 Registry cache not created. without GHCR_USERNAME Candidate: https://github.com/innovaker/zmk-docker/actions/runs/858280000 Release: https://github.com/innovaker/zmk-docker/actions/runs/858303291 Registry cache created! without GHCR_TOKEN Candidate: https://github.com/innovaker/zmk-docker/actions/runs/858310990 Release: https://github.com/innovaker/zmk-docker/actions/runs/858326688 Registry cache created! all username/token secrets available (check new tokens) Candidate: https://github.com/innovaker/zmk-docker/actions/runs/858330919 Release: https://github.com/innovaker/zmk-docker/actions/runs/858344241 Registry cache created!
gharchive/pull-request
2021-05-19T21:31:06
2025-04-01T06:41:01.841090
{ "authors": [ "innovaker" ], "repo": "zmkfirmware/zmk-docker", "url": "https://github.com/zmkfirmware/zmk-docker/pull/49", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
109845121
Asynchronous Adapter Dispatch I believe putting each adapter's dispatch into an async job queue would be best; but, I'm not sure how to best go about this in the idiomatic way (GenServer/GenEvent?, External Job Queue Module?, Something like Resque?). I've outlined a few desirable aspects: Goals Ideally do this without any external (to elixir) dependencies (ex. Running a Redis server, RabbitMQ stack, etc. -- I'm not closed to this, but I'd love to keep it simple) The ability to incorporate retries, back-offs, etc, and log when all tries exhausted Persistence so that jobs don't disappear on App restart/server reboot Not incorporate all the async code directly into echo, but have it easily pluggable. Wow, it's been a long time... So I think mnesia should fit the bill. [x] no dependencies [x] persistence Although something that handles the rest of the code would be really nice, like jobs - erlang , honeydew or perhaps just bite the bullet and look at rabbitmq.
gharchive/issue
2015-10-05T17:21:27
2025-04-01T06:41:01.844975
{ "authors": [ "zmoshansky" ], "repo": "zmoshansky/echo", "url": "https://github.com/zmoshansky/echo/issues/2", "license": "bsd-3-clause", "license_type": "permissive", "license_source": "bigquery" }
95519205
Uploading subjects barfs on manifest text containing umlauts I'm uploading a subject that has in its manifest the field "Location name" for which the value is "Marktplatz Tübingen, Germany". I get an Error 500 back, "We're sorry, but something went wrong" Am I really limited to the 128-ASCII table?! (Also, poor error response...) No we should support the full utf-8 character set. I do have an error in our logger about malformed utf-8 error values. You're using Python 2.7 right? I know it has some weird hangups about utf characters and strings. I'll see if I can find some documentation about it. Oh, hmm... okay, I'll look into it, too. There's this page which is the main one https://docs.python.org/2/howto/unicode.html The JSON looks okay when I print it: Tried to pass data: { "subjects": { "locations": [ "image/jpeg" ], "metadata": { "Filename": "cam3397_20150213_090946.jpg", "Webcam": "3397", "Location Name": "Marktplatz Tübingen, Germany", "Latitute": "48.52126", "Longitude": "9.05311" }, "links": { "project": "348" } } } But I'll check out that page. (...started reading...) Oh, right. I remember reading about this once. Okay, let's see if I can properly encode everything. -sigh- (PS, uploading has been great so far. I've been uploading a group of about 10,000 images. It had been chunking along quickly for 5254 images until it hit my mis-encoded umlaut.) Argh! I want to gauge my eyes out. Why is this so hard? (I can't figure out what encoding I'm reading in, so can't convert it to anything. It's not utf-8 or latin-1 or ...) Yeah it's hard because computers are terribad. Is there anyway your script would work in Python 3? That has default unicode support. Are you on windows? It uses a different weird encoding system. It's a Windows encoding. I'm pretty sure of it. I think I need to just figure out how to convert my text file to another encoding... may be the easiest? @edpaget I've made some progress. I can actually properly encode/decode my file now. (That only took 3 hours). But I'm still having trouble passing the data to the Panoptes API. What format does Panoptes expect the payload to be in? This doesn't seem to work, for example: Tried to pass data: { "subjects": { "locations": [ "image/jpeg" ], "metadata": { "Filename": "cam3397_20150213_090946.jpg", "Webcam": "3397", "Location Name": ""Marktplatz T&#252;bingen", "Latitute": " Germany"", "Longitude": "48.52126" }, "links": { "project": "348" } } } OMG. That only took 5 hours to figure out. -bangs-head-on-table- -passes out- @mkosmala it'd be nice if you outline the solution here for future users. Hmmm... Okay, @camallen Step 1: Read the webpage @edpaget referenced above. Step 2: Also read this webpage: https://pythonhosted.org/kitchen/unicode-frustrations.html Step 3: Realize that in Python, 'decode' means to go from ascii to unicode, and 'encode' means to go from unicode to ascii. Which seems backwards, but there you have it. Step 4: Realize that there is no reliable way to know what @#$! codec your text file is in. Step 4.5: Realize that you're on a Windows machine and so your codec is probably some weird thing that no unix-based machine can hope to read. And files may have BOMs at the beginning. And all sorts of craziness. Decide to abandon Windows. Step 5: Borrow husband's Mac, transfer file, and replace all the messed-up-looking characters with the correct ones using find-replace-all. Importantly: save as UTF-8. Transfer file directly to remote linux machine where the images are. Step 6: Find this little piece of magic: top answer of http://stackoverflow.com/questions/904041/reading-a-utf8-csv-file-with-python . Step 7: Steal Borrow code from awesome StackOverflow answer to finally read file in successfully. Step 8: Become desolate because code still crashes. Step 9: Eat chocolate. Rally. Step 10: Figure out that this unicode(str(project_id)) is a functional way to turn an integer into unicode. Step 11: Figure out how to properly encode metadata text as ascii using XML encodings for non-128-ascii characters: strvalues = values.encode('ascii','xmlcharrefreplace') Step 12: Watch code run successfully. Yawn. Go to bed because it's past midnight and you have to nurse the baby when he wakes up at 6:30am. (YMMV) Thanks - I especially like Step 9!
gharchive/issue
2015-07-16T20:21:45
2025-04-01T06:41:01.969544
{ "authors": [ "camallen", "edpaget", "mkosmala" ], "repo": "zooniverse/Panoptes", "url": "https://github.com/zooniverse/Panoptes/issues/1140", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
647135354
Permission popup appears during app startup on ios I used this library to get the notification permission on device but every time i install the app or rebuild it, permission popup appears automatically on app startup, however it was not happening when i was on version 1.1.1 . can anyone shed some light on this? React native version: 0.59.4 ios device: iOS 12.4.5 (ipod touch) Development Versions: macOS Catalina 10.15.4 React Native Permissions: "^2.0.0" Where do you trigger the permissions request? Provides some code or this issue will be closed. @zoontek Thanks for reply. Here is the wrapper around the lib functions according to need. import {checkNotifications, requestNotifications, openSettings} from 'react-native-permissions'; import Log from './log'; module.exports = { requestPermissions() { return new Promise(resolve => { requestNotifications(['alert', 'sound', 'badge']).then(response => { let permission = false if (response.status === 'granted') { permission = true } const logData = { title: 'App asked for notification', message: { notificationStatus: permission } } Log.save(logData); if (permission) { resolve('Allowed'); } else { resolve('Not Allowed'); } }) }); } } and i call the function requestPermissions when user press on the permission dialogues delivered from the server and then this function call open the permission popup. here the things are working fine. no complaints at all!! here is the function call: (this will be called when user press on particular dialogues for the permission) if (inputRequest.type === 'permission_popup_open') { const response = await Permission.requestPermissions(); this.handleActionPermissionButton(response); this.resetExecutionTime(); } but the problem is when i reinstall the app(by uninstalling) or update the app, then permission popup appears regardless the requestPermissions function call. here is the pods: pod 'RNPermissions', :path => '../node_modules/react-native-permissions' permissions_path = '../node_modules/react-native-permissions/ios' pod 'Permission-Notifications', :path => "#{permissions_path}/Notifications.podspec" However, it was working before when i was on version 1.1.1 but after upgrading to 2.0.0 i'm facing this. I reckon, this is not the problem with the code. this is more with the delegates or pods.Thanks!!! @zoontek I just came across this a swell. I'm not calling requestNotifications or even checkNotifications() anywhere. The popup comes up every time i delete the app and reinstall "react-native-permissions": "3.6.1" "react-native": "0.70.4" device is iOS 16.1
gharchive/issue
2020-06-29T05:54:09
2025-04-01T06:41:01.984741
{ "authors": [ "ketan-kumar", "kg-currenxie", "zoontek" ], "repo": "zoontek/react-native-permissions", "url": "https://github.com/zoontek/react-native-permissions/issues/480", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1514411785
🛑 AI For Admin is down In a5f3e3b, AI For Admin (https://armyignited.army.mil/admin/) was down: HTTP code: 0 Response time: 0 ms Resolved: AI For Admin is back up in e4e62ec.
gharchive/issue
2022-12-30T10:21:35
2025-04-01T06:41:01.987677
{ "authors": [ "zootsewt" ], "repo": "zootsewt/aistatus", "url": "https://github.com/zootsewt/aistatus/issues/377", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1261779366
Add theming to button The challenge 🍿 Add theming to Button component The solution 💯 Actual JL component: Sketch designs: https://www.sketch.com/s/f4ac3b8e-aac1-4279-af42-10e8ef86643d/p/C01C36D2-4C4C-4C71-ADAB-90A622DE31C8 :tada: This PR is included in version 5.16.0 :tada: The release is available on: npm package (@latest dist-tag) GitHub release Your semantic-release bot :package::rocket:
gharchive/pull-request
2022-06-06T12:30:59
2025-04-01T06:41:01.991085
{ "authors": [ "calvin-fung-zopa", "poteirard" ], "repo": "zopaUK/react-components", "url": "https://github.com/zopaUK/react-components/pull/785", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }