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
2330220099
[CupertinoActionSheet] Match colors to native This PR matches the various colors of CupertinoActionSheet more closely with the native one. The following colors are changed. Sheet background color Pressed button color Cancel button color Pressed cancel button color Divider color Content text color The resulting colors match with native one with deviation of at most 1 (in terms of 0~255 RGB). The following are comparison (left to right: Native, Flutter after PR, Flutter current) Note: The divider thickness is adjusted to 1/dpr instead of 0.3 in both Flutter version to make them look more native, as will be proposed in https://github.com/flutter/flutter/pull/149636. Derivation All the colors are derived through color picker and calculation. The algorithm is as followed: Assume all colors are translucent grey colors, i.e. having the same value x for R, G, and B, with an alpha a. Given the barrier color is x_B1=0 when the background is black, and x_B2=204 when the background is white. Pick the target color x_t1 when the background is black, and x_t2 when the background is white Solve the following equations for x and a a * x + (1-a) * x_B1 = x_t1 a * x + (1-a) * x_B2 = x_t2 a = 1 - (x_t1 - x_t2) / (x_B1 - x_B2) x = (x_t1 - (1-a) * x_B1) / a These equations use a linear model for color composition, which might not be exact, but is close enough for an accuracy of (1/255). The full table is as follows: The first two columns are colors picked from XCode. The 3~4 columns are the colors picked from the current Flutter. Notice the deviation, which is sometimes drastic. The 5~6 columns are the colors picked from Flutter after this PR. The deviation is at most 1. The last few columns are calculation. There are two rows whose calculation is based on adjusted numbers, since the original results are not accurate enough, possibly due to the linear composition. During the calculation, I assumed these colors vary between light and dark modes, but it turns out that both modes use the same set of colors. Screenshots Pre-launch Checklist [ ] I read the Contributor Guide and followed the process outlined there for submitting PRs. [ ] I read the Tree Hygiene wiki page, which explains my responsibilities. [ ] I read and followed the Flutter Style Guide, including Features we expect every widget to implement. [ ] I signed the CLA. [ ] I listed at least one issue that this PR fixes in the description above. [ ] I updated/added relevant documentation (doc comments with ///). [ ] I added new tests to check the change I am making, or this PR is test-exempt. [ ] I followed the breaking change policy and added Data Driven Fixes where supported. [ ] All existing and new tests are passing. If you need help, consider asking for advice on the #hackers-new channel on Discord. Reason for revert: Appears to be failing tests in tree 01:48 +2991 ~18: /Volumes/Work/s/w/ir/x/w/flutter/packages/flutter/test/cupertino/action_sheet_test.dart: Taps on a button can be slided to other buttons ══╡ EXCEPTION CAUGHT BY FLUTTER TEST FRAMEWORK ╞════════════════════════════════════════════════════ The following SkiaException was thrown while running async test code: Skia Gold received an unapproved image in post-submit testing. Golden file images in flutter/flutter are triaged in pre-submit during code review for the given PR. Visit https://flutter-gold.skia.org/ to view and approve the image(s), or revert the associated change. For more information, visit the wiki: https://github.com/flutter/flutter/wiki/Writing-a-golden-file-test-for-package:flutter Debug information for Gold -------------------------------- stdout: Given image with hash 601f421e3bb643f437cc12395de96152 for test cupertino.cupertinoActionSheet.press-drag Expectation for test: ce8ef79c146857d162663b1161fd6d5c (positive) Expectation for test: 3bb57a8782f67836c6ad3ece7f00729a (positive) Expectation for test: 3f8c592774caf3c760fbbd318a7dc5af (positive) Expectation for test: 61863f38217aa3349c239eeb49b84930 (positive) Expectation for test: 98af16e9b7eb3fb810b44c74bb18ffb9 (positive) Untriaged or negative image: https://flutter-gold.skia.org//detail?grouping=name%3Dcupertino.cupertinoActionSheet.press-drag%26source_type%3Dflutter&digest=601f421e3bb643f437cc12395de96152 stderr: Test: cupertino.cupertinoActionSheet.press-drag FAIL result-state.json: No result file found. PR to manual revert: https://github.com/flutter/flutter/pull/149998 @dkwingsmt I have problems with the colors in dark mode, I suspect this PR has broken something. @dkwingsmt I have problems with the colors in dark mode, I suspect this PR has broken something. I see some colors are not resolved by CupertinoDynamicColor.resolve, maybe thats the issue. Can you provide me with screenshots and code to reproduce? I might have used the wrong method to test. Hi @dkwingsmt, I´m using this code to reproduce: void main() { runApp(TestScaffoldApp( theme: const CupertinoThemeData(brightness: Brightness.dark), actionSheet: CupertinoActionSheet( actions: [ CupertinoActionSheetAction( onPressed: () {}, child: Text('Button'), ), CupertinoActionSheetAction( onPressed: () {}, child: Text('Button'), ), ], cancelButton: CupertinoActionSheetAction( isDefaultAction: true, child: Text("Cancel"), onPressed: () {}, ), ), )); } // Shows an app that has a button with text "Go", and clicking this button // displays the `actionSheet` and hides the button. // // The `theme` will be applied to the app and determines the background. class TestScaffoldApp extends StatefulWidget { const TestScaffoldApp( {super.key, required this.theme, required this.actionSheet}); final CupertinoThemeData theme; final Widget actionSheet; @override TestScaffoldAppState createState() => TestScaffoldAppState(); } class TestScaffoldAppState extends State<TestScaffoldApp> { bool _pressedButton = false; @override Widget build(BuildContext context) { return CupertinoApp( theme: widget.theme, home: Builder( builder: (BuildContext context) => CupertinoPageScaffold( child: Center( child: _pressedButton ? Container() : CupertinoButton( onPressed: () { setState(() { _pressedButton = true; }); showCupertinoModalPopup<void>( context: context, builder: (BuildContext context) { return widget.actionSheet; }, ); }, child: const Text('Go'), ), ), ), ), ); } } This is where I use your PR using Dark Mode: This is running the latest master (still not correct, so maybe some other PR has broken this behavior): The first screenshot is exactly what I observed on an Xcode native app when the dark mode toggle on the status bar is on. Did I do it wrong? Can you show me what color it should be? Maybe this is a bug in Xcode itself, I can't reproduce it myself in Xcode right now, but this is what a native action sheet looks like in dark mode in the Contacts app. If I use CupertinoDynamicColors.resolve for all colors in _ActionSheetButtonBackground (currently _kPressed, _kActionSheetCancelPressedColor and secondarySystemGroupedBackground Color are not resolved), then I get these colors (matching native) Thanks you very much! Yeah I couldn't believe it either when I saw that the colors were the same in dark mode. I'll do more research (probably by running the native app on my phone).
gharchive/pull-request
2024-06-03T05:41:42
2025-04-01T06:38:42.647259
{ "authors": [ "b3nni97", "dkwingsmt", "vashworth" ], "repo": "flutter/flutter", "url": "https://github.com/flutter/flutter/pull/149568", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
305693425
Traverse dependencies and dev dependencies separately Note: not quite ready, still verifying correctness Fixes #15080 Currently, flutter update-packages --force-upgrade will combine the dependencies and dev_dependencies sections of a pubspec before retrieving the set of transitive dependencies. All of the resulting deps are then added to the dev dependency section. This behavior is not quite correct, as documented in #14992. The transitive dependencies of the package direct dependencies must be included in the dependencies section. For example, the main flutter package (currently) has a dep on http. We should expect the pubspec to look something like this: dependencies: http: 0.11.3+16 ... async: 2.0.6 # TRANSITIVE DEPENDENCY charcode: 1.1.1 # TRANSITIVE DEPENDENCY http_parser: 3.1.1 # TRANSITIVE DEPENDENCY path: 1.5.1 # TRANSITIVE DEPENDENCY source_span: 1.4.0 # TRANSITIVE DEPENDENCY string_scanner: 1.0.2 # TRANSITIVE DEPENDENCY Instead It looks something like the following, with the transitive deps of package:http added in dev_dependencies: dependencies: http: 0.11.3+16 ... dev_dependencies: async: 2.0.6 # TRANSITIVE DEPENDENCY charcode: 1.1.1 # TRANSITIVE DEPENDENCY http_parser: 3.1.1 # TRANSITIVE DEPENDENCY path: 1.5.1 # TRANSITIVE DEPENDENCY source_span: 1.4.0 # TRANSITIVE DEPENDENCY string_scanner: 1.0.2 # TRANSITIVE DEPENDENCY To correct this process, I've updated the flutter update-packages command to separate the dependencies and dev_dependenices, then to do two traversals of the resulting transitive deps. The same seen set is used between both traversals to prevent repeats, since any package in the dependencies section is implicitly a dev dependency too. Furthermore, when determining the dependencies of a PubspecYaml, we need to distinguish between regular and dev deps too I also ran the updated command on the flutter repos The use of package:intl_translation seems to be adding a lot of unfortunate dependencies While you're here, can you do me a favour and change the text "TRANSITIVE DEPENDENCY" to something like THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade ? It might reduce the number of times that people try to manually update these lines. For super duper bonus points (not at all required for this PR unless you feel motivated to do it), what you could do to REALLY stop people from hand-editing these is include a value at the bottom of each list which is some sort of hash of the values above, along with a comment saying to run the script to update it, and then add a test that opens each pubspec.yaml and verifies that the hashes match the currently listed dependencies. This is fantastic, thanks. I didn't check the comments that aren't mentioned in the diff, but I recommend doing one last scan through the file to make sure all the comments still make sense. @Hixie I added an initial implementation of a simple checksum over the package names + versions, and updated the magic string. Also addressed comment comments.
gharchive/pull-request
2018-03-15T19:41:21
2025-04-01T06:38:42.653683
{ "authors": [ "Hixie", "jonahwilliams" ], "repo": "flutter/flutter", "url": "https://github.com/flutter/flutter/pull/15581", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
336394251
Mark flutter_gallery_instrumentation_test as flaky See #18879. Please merge for me if you're happy with this; it's getting late here so I'll be off v. soon. Windows Cirrus failure is "Agent is not responding!", so I've restarted it. This test doesn't seem flaky. I think we can unmark it. You jinxed it :( Yellow 3 times in the last 6 runs. https://flutter-dashboard.appspot.com/api/get-log?ownerKey=ahNzfmZsdXR0ZXItZGFzaGJvYXJkclgLEglDaGVja2xpc3QiOGZsdXR0ZXIvZmx1dHRlci9lZTM5NjI3MmQzMjYzZWVjNDZjOTRiYjFmYTAwY2QyY2E3MmRkMWU3DAsSBFRhc2sYgICAgICA1AgM https://flutter-dashboard.appspot.com/api/get-log?ownerKey=ahNzfmZsdXR0ZXItZGFzaGJvYXJkclgLEglDaGVja2xpc3QiOGZsdXR0ZXIvZmx1dHRlci9hY2Y0YjZjMWFhNjMxZTVmYTYyOTliYTdlZjZkZmRmZTFmYTdkNmFiDAsSBFRhc2sYgICAgICAiAoM https://flutter-dashboard.appspot.com/api/get-log?ownerKey=ahNzfmZsdXR0ZXItZGFzaGJvYXJkclgLEglDaGVja2xpc3QiOGZsdXR0ZXIvZmx1dHRlci81YjMwYjM5M2E4Y2Y3ZjAwOTJmMTcyNmM1YThmNzk4MzJiMGFkMGY4DAsSBFRhc2sYgICAgICAuAkM
gharchive/pull-request
2018-06-27T21:30:01
2025-04-01T06:38:42.657924
{ "authors": [ "DanTup", "Hixie", "yjbanov" ], "repo": "flutter/flutter", "url": "https://github.com/flutter/flutter/pull/18887", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
364978251
Use mixin syntax for Flutter's super-mixins Convert all super-mixins to the new mixin syntax. This brings new versions of the analyzer, linter, and dartdoc that support the new syntax. @stereotype441 @JekCharlsonYu @leafpetersen In general it is not easy to spot a class that may or may not be used as a super-mixin @yjbanov You know that if you remove enableSuperMixins: true from analysis_options.yaml you'll get errors on anything that mixes in an old-style super-mixin right? Assuming so, presumably the issue is things that client code might mix in but nothing in the framework mixes in? You could check with @keertip about possibly doing a presubmit on google code with enableSuperMixins disabled which might give you better coverage.
gharchive/pull-request
2018-09-28T17:33:03
2025-04-01T06:38:42.660645
{ "authors": [ "gspencergoog", "leafpetersen", "yjbanov" ], "repo": "flutter/flutter", "url": "https://github.com/flutter/flutter/pull/22435", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
412870720
Roll engine 6d7eb52185b1..293b3de986d4 (12 commits) https://github.com/flutter/engine/compare/6d7eb52185b1...293b3de986d4 git log 6d7eb52185b117a3972cac4e23625f97198114d9..293b3de986d42fd67b4e69475f6dbefb7ad55bda --no-merges --oneline 293b3de98 Roll src/third_party/skia 20ebd0cb3882..348227b89430 (4 commits) (flutter/engine#7900) 6e6020d29 Eliminate .member = foo struct initialization (flutter/engine#7899) 6d8bd99af Revert "Reland PerformanceOverlayLayer golden test (#7863)" (flutter/engine#7895) 39f7066b6 Test profile and release build and unit tests (flutter/engine#7880) abe9826a9 Add accessibility semantics support to embedder (flutter/engine#7891) ce7016e1f Roll src/third_party/skia e471c05f92e8..20ebd0cb3882 (4 commits) (flutter/engine#7894) 684c9394c Respect the custom GL proc table when creating the resource context on the IO thread. (flutter/engine#7893) e11d0e96f Android embedding refactor pr5 add flutterengine impl (flutter/engine#7878) 2f4a38dbd Android embedding refactor pr3 add remaining systemchannels (flutter/engine#7892) 8427d73c8 Reland PerformanceOverlayLayer golden test (flutter/engine#7863) 61fc1786f Roll src/third_party/dart c92d5ca288..5ddd157809 (153 commits) b0671145a Roll src/third_party/skia 7738736f9622..e471c05f92e8 (23 commits) (flutter/engine#7889) The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff (amirha@google.com), and stop the roller if necessary. Trybots failed. These were the failed builds: https://cirrus-ci.com/task/4835952255041536 Commit queue failed; closing this roll.
gharchive/pull-request
2019-02-21T11:10:39
2025-04-01T06:38:42.666099
{ "authors": [ "engine-flutter-autoroll" ], "repo": "flutter/flutter", "url": "https://github.com/flutter/flutter/pull/28253", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
466617356
Roll engine 75387dbc147d..089c740841e8 (29 commits) https://github.com/flutter/engine/compare/75387dbc147d...089c740841e8 git log 75387dbc147d1cee8164f5d61582eab8ba1e5058..089c740841e8f9f43cfbe9cd119a228da5fbe4d1 --no-merges --oneline 089c74084 Roll fuchsia/sdk/core/mac-amd64 from lCQWEeR_Ert7t_qAbMRycwrRyZC-dIprYPyPJzwPmg4C to EYnRdXFT9l-d8Qkz4zeTRXnqfV3KQzpQhoPs1r0-740C (flutter/engine#9759) b22410ef6 Include SkParagraph headers only when the enable-skshaper flag is on (flutter/engine#9758) 2cd650d26 Minimal integration with the Skia text shaper module (flutter/engine#9556) f775f5e4d Re-enable the Wuffs GIF decoder (flutter/engine#9466) aca048236 Make all shell unit tests use the OpenGL rasterizer. (flutter/engine#9746) bc57291ff Make FLEViewController's view an internal detail (flutter/engine#9741) 9776043ea Synchronize main thread and gpu thread for first render frame (flutter/engine#9506) f600ae830 Use libc++ variant of string view and remove the FML variant. (flutter/engine#9737) 564f53f0a Revert "Improve caching limits for Skia (#9503)" (flutter/engine#9740) b453d3c3d libtxt: fix reference counting of SkFontStyleSets held by font asset providers (flutter/engine#9561) fa7627d17 Fix backspace crash on Chinese devices (flutter/engine#9734) 56885f79b Let pushColorFilter accept all types of ColorFilters (flutter/engine#9641) 6dccb21e6 Roll src/third_party/skia 96fdfe0fe88e..af4e7b6cf616 (1 commits) (flutter/engine#9735) 8511d9b47 Roll fuchsia/sdk/core/mac-amd64 from byM-kyxL4bemlTYNqhKUfJfZoIUrCSzS6XzsFr4n9-MC to lCQWEeR_Ert7t_qAbMRycwrRyZC-dIprYPyPJzwPmg4C (flutter/engine#9742) b3bf0a182 Roll fuchsia/sdk/core/linux-amd64 from I2Qe1zxgckzIzMBTztvzeWYsDgcb9Fw-idSI16oIlx8C to KGmm_RIJoXS19zTm2crjM3RYpmp5Y03-fLUeVdylbTYC (flutter/engine#9743) 7e568232a Fix windows test by not attempting to open a directory as a file. (flutter/engine#9745) 6cf0d1350 Roll src/third_party/skia a3ffaabcc4f2..96fdfe0fe88e (5 commits) (flutter/engine#9731) 49a00aed8 Fix Fuchsia build. (flutter/engine#9730) b3bb39b0b Roll src/third_party/dart 06c3d7ad3a...09fc76bc51 (flutter/engine#9728) 2284210f4 Make the license script compatible with recently changed Dart I/O stream APIs (flutter/engine#9725) ad582b508 Rework image & texture management to use concurrent message queues. (flutter/engine#9486) 1dcd5f52b Roll src/third_party/skia 6b82cf638682..a3ffaabcc4f2 (24 commits) (flutter/engine#9726) 129979cab Revert "Roll src/third_party/dart 06c3d7ad3a..7acecda2cc (12 commits)" (flutter/engine#9724) 8020d7e43 Roll src/third_party/skia 56065d9b875f..6b82cf638682 (3 commits) (flutter/engine#9718) e24bd7846 Roll src/third_party/dart 06c3d7ad3a..7acecda2cc (12 commits) 3d2668c35 Reland isolate group changes 802bd1518 iOS platform view opacity (flutter/engine#9667) 3b6265b74 Roll src/third_party/dart b5aeaa6796..06c3d7ad3a (44 commits) 887e05233 Refactor ColorFilter to have a native wrapper (flutter/engine#9668) The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff (garyq@google.com), and stop the roller if necessary. Trybots failed. These were the failed builds: https://cirrus-ci.com/task/6324628232863744 Commit queue failed; closing this roll.
gharchive/pull-request
2019-07-11T02:02:33
2025-04-01T06:38:42.674873
{ "authors": [ "engine-flutter-autoroll" ], "repo": "flutter/flutter", "url": "https://github.com/flutter/flutter/pull/35947", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
484627961
Fid app bundle in Gradle 3.5 Description The Android Gradle plugin 3.5.0 generates the following app bundle: app(-<flavor>)?-<build-type>.aab. Related Issues Fixes https://github.com/flutter/flutter/issues/38934 Tests I added the following tests: Unit tests in gradle_test.dart Checklist Before you create this PR confirm that it meets all requirements listed below by checking the relevant checkboxes ([x]). This will ensure a smooth and quick review process. [x] I read the Contributor Guide and followed the process outlined there for submitting PRs. [x] I signed the CLA. [x] I read and followed the Flutter Style Guide, including Features we expect every widget to implement. [x] I updated/added relevant documentation (doc comments with ///). [x] All existing and new tests are passing. [x] The analyzer (flutter analyze --flutter-repo) does not report any problems on my PR. [x] I am willing to follow-up on review comments in a timely manner. Breaking Change Does your PR require Flutter developers to manually update their apps to accommodate your change? [ ] Yes, this is a breaking change (Please read Handling breaking changes). Replace this with a link to the e-mail where you asked for input on this proposed change. [x] No, this is not a breaking change. https://codecov.io/gh/flutter/flutter/pull/39126/diff?src=pr&el=tree#diff-cGFja2FnZXMvZmx1dHRlcl90b29scy9saWIvc3JjL2FuZHJvaWQvZ3JhZGxlLmRhcnQ= doesn't seem right So does this mean that we just need the master to be pushed to Stable to start using 3.5.0? When can we get this update? So if using Cloud based CI/CD tools, if we can't change to the master branch of Flutter we have to wait? So if using Cloud based CI/CD tools, if we can't change to the master branch of Flutter we have to wait? Not really, if youjust put the option you want to use in the Gradle, you should be ok. However, this should be supported soon. Hi @elmariocarlos , I'm not exactly an expert in Gradle but is there a quick switch param on flutter build command to set this up? Not really, if youjust put the option you want to use in the Gradle, you should be ok. Hi @elmariocarlos , I'm not exactly an expert in Gradle but is there a quick switch param on flutter build command to set this up? Not really, if youjust put the option you want to use in the Gradle, you should be ok. Go to your android/build.gradle file, and change the version there, for example: dependencies { classpath 'com.android.tools.build:gradle:3.4.1'
gharchive/pull-request
2019-08-23T17:07:55
2025-04-01T06:38:42.686178
{ "authors": [ "bangonkali", "blasten", "elmariocarlos", "workerbee22" ], "repo": "flutter/flutter", "url": "https://github.com/flutter/flutter/pull/39126", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
836853731
Roll Plugins from d7125cdb91c0 to 7b9ac6b0c20d (11 revisions) https://github.com/flutter/plugins/compare/d7125cdb91c0...7b9ac6b0c20d 2021-03-20 32639467+danielroek@users.noreply.github.com [quick_actions] 2/3 Quick actions federated platform interface (flutter/plugins#3735) 2021-03-19 ditman@gmail.com [ci] Run more web tests (flutter/plugins#3739) 2021-03-19 stuartmorgan@google.com Enable web integration tests in CI (flutter/plugins#3738) 2021-03-19 stuartmorgan@google.com Standardize copyright year (flutter/plugins#3737) 2021-03-19 32639467+danielroek@users.noreply.github.com Moved quickactions to a subfolder (flutter/plugins#3734) 2021-03-19 stuartmorgan@google.com [integration_test] Deprecate, and stop using in this repository (flutter/plugins#3723) 2021-03-18 stuartmorgan@google.com Standardize Copyrights: Chromium->Flutter (flutter/plugins#2996) 2021-03-18 stuartmorgan@google.com Fix cosmetic variations in copyrights and license files (flutter/plugins#3730) 2021-03-18 stuartmorgan@google.com Add an AUTHORS file to each plugin (flutter/plugins#3725) 2021-03-18 guiga741@gmail.com [google_sign_in] Adds support to send clientId as a parameter (flutter/plugins#3640) 2021-03-17 stuartmorgan@google.com Prep for alignment with Flutter analysis options (flutter/plugins#3703) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-plugins-flutter-autoroll Please CC flutter-ecosystem@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/master/autoroll/README.md Commit queue failed; closing this roll.
gharchive/pull-request
2021-03-20T16:30:37
2025-04-01T06:38:42.695740
{ "authors": [ "engine-flutter-autoroll" ], "repo": "flutter/flutter", "url": "https://github.com/flutter/flutter/pull/78699", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
219989146
TextField should update IME when controller changes Fixes #9246 @Hixie
gharchive/pull-request
2017-04-06T18:23:29
2025-04-01T06:38:42.697091
{ "authors": [ "Hixie", "abarth" ], "repo": "flutter/flutter", "url": "https://github.com/flutter/flutter/pull/9261", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
425822426
[firebase_crashlytics] Update README code example Seems like the API has changed but not the code example. reportInDevMode -> enableInDevMode Description README change. Code example Related Issues Checklist Before you create this PR confirm that it meets all requirements listed below by checking the relevant checkboxes ([x]). This will ensure a smooth and quick review process. [ ] I read the Contributor Guide and followed the process outlined there for submitting PRs. [ ] My PR includes unit or integration tests for all changed/updated/fixed behaviors (See Contributor Guide). [ ] All existing and new tests are passing. [ ] I updated/added relevant documentation (doc comments with ///). [ ] The analyzer (flutter analyze) does not report any problems on my PR. [ ] I read and followed the Flutter Style Guide. [ ] The title of the PR starts with the name of the plugin surrounded by square brackets, e.g. [shared_preferences] [ ] I updated pubspec.yaml with an appropriate new version according to the pub versioning philosophy. [ ] I updated CHANGELOG.md to add a description of the change. [ ] I signed the CLA. [ ] I am willing to follow-up on review comments in a timely manner. Breaking Change Does your PR require plugin users to manually update their apps to accommodate your change? [ ] Yes, this is a breaking change (please indicate a breaking change in CHANGELOG.md and increment major revision). [x ] No, this is not a breaking change. I signed it!
gharchive/pull-request
2019-03-27T08:26:02
2025-04-01T06:38:42.760166
{ "authors": [ "ninnepinne" ], "repo": "flutter/plugins", "url": "https://github.com/flutter/plugins/pull/1407", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
755565657
[video_player] Adding a fix for video player alignment issues on iPhone 12Pro Description Video player was experiencing alignment issues on iPhone12 Pro device Checklist Before you create this PR confirm that it meets all requirements listed below by checking the relevant checkboxes ([x]). This will ensure a smooth and quick review process. [x] I read the Contributor Guide and followed the process outlined there for submitting PRs. [ ] My PR includes unit or integration tests for all changed/updated/fixed behaviors (See Contributor Guide). [ ] All existing and new tests are passing. [ ] I updated/added relevant documentation (doc comments with ///). [ ] The analyzer (flutter analyze) does not report any problems on my PR. [ ] I read and followed the Flutter Style Guide. [ ] The title of the PR starts with the name of the plugin surrounded by square brackets, e.g. [shared_preferences] [ ] I updated pubspec.yaml with an appropriate new version according to the pub versioning philosophy. [ ] I updated CHANGELOG.md to add a description of the change. [x] I signed the CLA. [x] I am willing to follow-up on review comments in a timely manner. Breaking Change Does your PR require plugin users to manually update their apps to accommodate your change? [ ] Yes, this is a breaking change (please indicate a breaking change in CHANGELOG.md and increment major revision). [x] No, this is not a breaking change. @googlebot I signed it! I'm going to close the PR because the CLA is not signed. Feel free to ping me when the CLA is signed and I'll re-open the PR. Or you can open a new PR after signing the CLA. I'm going to close the PR because the CLA is not signed. Feel free to ping me when the CLA is signed and I'll re-open the PR. Or you can open a new PR after signing the CLA.
gharchive/pull-request
2020-12-02T19:52:50
2025-04-01T06:38:42.768059
{ "authors": [ "cyanglaz", "veljkomih" ], "repo": "flutter/plugins", "url": "https://github.com/flutter/plugins/pull/3298", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
1095622382
Remove dependencies on 'meta' Flutter re-exports everything from meta that we actually use, and all plugins by definition require Flutter, so there's no need to use meta instead of Flutter to access common annotations (e.g., immutable, visibleForTesting). This removes all use of meta, as well as dependencies on the package, from all plugins. Fixes https://github.com/flutter/flutter/issues/95658 Pre-launch Checklist [x] I read the Contributor Guide and followed the process outlined there for submitting PRs. [x] I read the Tree Hygiene wiki page, which explains my responsibilities. [x] I read and followed the relevant style guides and ran the auto-formatter. (Unlike the flutter/flutter repo, the flutter/plugins repo does use dart format.) [x] I signed the CLA. [x] The title of the PR starts with the name of the plugin surrounded by square brackets, e.g. [shared_preferences] [x] I listed at least one issue that this PR fixes in the description above. [x] I updated pubspec.yaml with an appropriate new version according to the pub versioning philosophy, or this PR is exempt from version changes. [x] I updated CHANGELOG.md to add a description of the change, following repository CHANGELOG style. [x] I updated/added relevant documentation (doc comments with ///). [x] I added new tests to check the change I am making, or this PR is test-exempt. [x] All existing and new tests are passing. We actually do have a test for this in the flutter/flutter repo, FWIW. It just reads every Dart file and checks for the banned imports. test-exempt: code refactor with no semantic change We actually do have a test for this in the flutter/flutter repo, FWIW. It just reads every Dart file and checks for the banned imports. I had considered this, but presumably there could be cases where we'd want to use something from meta that Flutter doesn't happen to re-export, so an outright ban didn't seem like the right behavior. (I guess in theory we could make it a complicated check that only allowed import 'meta/meta.dart' show <things not in a list of banned items>...) We could also just require that anything we want to use has to be re-exported from foundation. But I don't feel strongly about this either way. I wish this could be done with: meta: sdk: flutter That way we don't have to remember the random place from which the framework reexports the meta pkg :/ That way we don't have to remember the random place from which the framework reexports the meta pkg :/ It's not really that random, it's the foundation package of the core framework. :-)
gharchive/pull-request
2022-01-06T19:23:15
2025-04-01T06:38:42.779031
{ "authors": [ "Hixie", "ditman", "stuartmorgan" ], "repo": "flutter/plugins", "url": "https://github.com/flutter/plugins/pull/4647", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
1705315876
[BUG] Error with something Describe the bug , if I click on the image picker home page, after a while it goes wrong How to reproduce I downloaded your example, Steps to reproduce the behavior: I downloaded your example, if I click on the image picker home page, after a while it goes wrong, see screnncast https://www.screencast.com/t/R9DZdLBgJNg9 Expected behavior as if it fails to load images, but it should go ahead and not go into error because if , I continue debugging then it loads everything> Version information Device: Samsung s22+ OS:Android 13 Package Version: wechat_assets_picker Flutter Version:3.7.12 AlexV525 extended image package is now updated as per 3.10.0 Track with #445.
gharchive/issue
2023-05-11T08:23:03
2025-04-01T06:38:42.802075
{ "authors": [ "AlexV525", "brux88", "ps6067966" ], "repo": "fluttercandies/flutter_wechat_assets_picker", "url": "https://github.com/fluttercandies/flutter_wechat_assets_picker/issues/442", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1142052625
connectivity_plus is incompatible with flutter_local_notifications. System info Platform the Issue occurs on: Both Plugin name: connectivity_plus Plugin version: 2.2.1 Steps to Reproduce Add connectivity_plus 2.2.1 and flutter_local_notifications 9.0.2 to any project and try pub get Because connectivity_plus >=2.2.1 depends on connectivity_plus_linux ^1.3.0 which depends on nm ^0.5.0, connectivity_plus >=2.2.1 requires nm ^0.5.0. (1) So, because nm >=0.5.0 depends on dbus ^0.7.0, connectivity_plus >=2.2.1 requires dbus ^0.7.0. Because flutter_local_notifications >=9.2.0 <10.0.0-dev.1 depends on flutter_local_notifications_linux ^0.4.1 and flutter_local_notifications >=9.1.5 <9.2.0 depends on flutter_local_notifications_linux ^0.4.0, flutter_local_notifications >=9.1.5 <10.0.0-dev.1 requires flutter_local_notifications_linux ^0.4.0. And because flutter_local_notifications >=9.0.0 <9.1.5 depends on flutter_local_notifications_linux ^0.3.0, flutter_local_notifications >=9.0.0 <10.0.0-dev.1 requires flutter_local_notifications_linux ^0.3.0 or ^0.4.0. And because flutter_local_notifications_linux <0.4.0 depends on dbus ^0.5.0 and flutter_local_notifications_linux >=0.4.0 depends on dbus ^0.6.0, flutter_local_notifications >=9.0.0 <10.0.0-dev.1 requires dbus ^0.5.0 or ^0.6.0. And because connectivity_plus >=2.2.1 requires dbus ^0.7.0 (1), connectivity_plus >=2.2.1 is incompatible with flutter_local_notifications >=9.0.0 <10.0.0-dev.1. So, because 'myappname' depends on both flutter_local_notifications ^9.0.2 and connectivity_plus ^2.2.1, version solving failed. pub get failed (1; So, because 'myappname' depends on both flutter_local_notifications ^9.0.2 and connectivity_plus ^2.2.1, version solving failed.) Flutter doctor output flutter doctor -v [√] Flutter (Channel master, 2.11.0-0.0.pre.604, on Microsoft Windows [versão 10.0.19043.1466], locale pt-BR) • Flutter version 2.11.0-0.0.pre.604 at D:\DEV\flutter • Upstream repository https://github.com/flutter/flutter.git • Framework revision 28e1dea69c (2 hours ago), 2022-02-17 16:24:16 -0500 • Engine revision 01ac6cf661 • Dart version 2.17.0 (build 2.17.0-117.0.dev) • DevTools version 2.10.0 [√] Android toolchain - develop for Android devices (Android SDK version 31.0.0-rc4) • Android SDK at C:\Users\myuser\AppData\Local\Android\sdk • Platform android-31, build-tools 31.0.0-rc4 • Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java • Java version OpenJDK Runtime Environment (build 11.0.8+10-b944.6842174) • All Android licenses accepted. [√] Chrome - develop for the web • Chrome at C:\Program Files (x86)\Google\Chrome\Application\chrome.exe [X] Visual Studio - develop for Windows X Visual Studio not installed; this is necessary for Windows development. Download at https://visualstudio.microsoft.com/downloads/. Please install the "Desktop development with C++" workload, including all of its default components [√] Android Studio (version 4.2) • Android Studio at C:\Program Files\Android\Android Studio • Flutter plugin can be installed from: https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: https://plugins.jetbrains.com/plugin/6351-dart • Java version OpenJDK Runtime Environment (build 11.0.8+10-b944.6842174) [√] Connected device (3 available) • Windows (desktop) • windows • windows-x64 • Microsoft Windows [versão 10.0.19043.1466] • Chrome (web) • chrome • web-javascript • Google Chrome 98.0.4758.102 • Edge (web) • edge • web-javascript • Microsoft Edge 94.0.992.47 [√] HTTP Host Availability • All required HTTP hosts are available ! Doctor found issues in 1 category. Connectivity plus 2.2.1 was updated to use latest nm dependency to be compatible with other plugins #728 Currently, looking at your logs it is flutter_local_notification isn't compatible with Connectivity plus, since uses older version of nm.
gharchive/issue
2022-02-17T23:20:09
2025-04-01T06:38:42.807820
{ "authors": [ "dpedrinha", "vbuberen" ], "repo": "fluttercommunity/plus_plugins", "url": "https://github.com/fluttercommunity/plus_plugins/issues/754", "license": "bsd-3-clause", "license_type": "permissive", "license_source": "bigquery" }
700556554
Support riverpod >0.10.0, state_notifier >0.6.0 Riverpod and state_notifier got several updates (https://pub.dev/packages/riverpod/changelog, https://pub.dev/packages/state_notifier/changelog), which were mostly bug fixes. Could you please update them to the latest versions? Sure, I will get to that as soon as I can. @ac130kz done
gharchive/issue
2020-09-13T11:59:47
2025-04-01T06:38:42.810217
{ "authors": [ "ac130kz", "frank06" ], "repo": "flutterdata/flutter_data", "url": "https://github.com/flutterdata/flutter_data/issues/62", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
726405308
unable to merge value from key 'sharedSecret' in Secret 'pomerium/pomerium-config-secrets' into target path 'config.sharedSecret': unable to parse key: assignment to entry in nil map I have this HelmRelease: apiVersion: helm.toolkit.fluxcd.io/v2beta1 kind: HelmRelease metadata: name: pomerium namespace: pomerium selfLink: /apis/helm.toolkit.fluxcd.io/v2beta1/namespaces/pomerium/helmreleases/pomerium spec: chart: spec: chart: pomerium sourceRef: kind: HelmRepository name: pomerium namespace: gotk-system version: 13.0.0 interval: 10m0s values: config: policy: - allowed_users: - github/stuartpb - s@stuartpb.com from: https://alertmanager.horn.horse to: http://kps-alertmanager.prometheus.svc.cluster.local:9093 - allowed_users: - github/stuartpb - s@stuartpb.com from: https://prometheus.horn.horse to: http://kps-prometheus.prometheus.svc.cluster.local:9090 - allowed_users: - github/stuartpb - s@stuartpb.com from: https://grafana.horn.horse pass_identity_headers: true to: http://kube-prometheus-stack-grafana.prometheus.svc.cluster.local - allowed_users: - github/stuartpb - s@stuartpb.com from: https://rook-ceph.horn.horse to: http://rook-ceph-mgr-dashboard.rook-ceph.svc.cluster.local:7000 - allowed_users: - github/stuartpb - s@stuartpb.com from: https://kubernetes-dashboard.horn.horse tls_skip_verify: true to: https://kubernetes-dashboard.kubernetes-dashboard.svc.cluster.local rootDomain: horn.horse extraEnvFrom: - secretRef: name: hornhorse-github forwardAuth: enabled: true internal: true ingress: annotations: cert-manager.io/cluster-issuer: stuartpb-letsencrypt-staging ingress.kubernetes.io/force-ssl-redirect: "true" kubernetes.io/ingress.class: internal kubernetes.io/tls-acme: "true" nginx.ingress.kubernetes.io/backend-protocol: HTTPS secret: name: pomerium-hornhorse-cert nodeSelector: kubernetes.io/arch: amd64 redis: enabled: true image: repository: library/redis master: persistence: storageClass: throwaway slave: persistence: storageClass: throwaway valuesFrom: - kind: Secret name: pomerium-config-secrets targetPath: config.sharedSecret valuesKey: sharedSecret - kind: Secret name: pomerium-config-secrets targetPath: config.cookieSecret valuesKey: cookieSecret status: conditions: - lastTransitionTime: "2020-10-21T11:33:39Z" message: 'unable to merge value from key ''sharedSecret'' in Secret ''pomerium/pomerium-config-secrets'' into target path ''config.sharedSecret'': unable to parse key: assignment to entry in nil map' reason: InitFailed status: "False" type: Ready failures: 1 helmChart: gotk-system/pomerium-pomerium lastAttemptedRevision: 13.0.2 lastAttemptedValuesChecksum: 5b8d69560c6da71246c86fa2402a934632dd96e1 lastHandledReconcileAt: "2020-10-21T04:33:31.530090319-07:00" lastReleaseRevision: 3 observedGeneration: 12 And this Secret (:shushing_face:) apiVersion: v1 data: cookieSecret: YW83K2tmdTBvR0RPNWFQWjQvWUQ2Y2NrR2dDbi9Sb1gyWkRwTTUyVQ== sharedSecret: YmJlK1BXNlBWTnd1STNYaUp1RStEUXh3eEgvVVB6ZU5QYi9WSGpTYQ== kind: Secret metadata: annotations: secret-generator.v1.mittwald.de/autogenerate: sharedSecret,cookieSecret secret-generator.v1.mittwald.de/autogenerate-generated-at: "2020-10-21T11:21:26Z" secret-generator.v1.mittwald.de/secure: "yes" secret-generator.v1.mittwald.de/type: string name: pomerium-config-secrets namespace: pomerium selfLink: /api/v1/namespaces/pomerium/secrets/pomerium-config-secrets type: Opaque As you can see, the Helm chart isn't reconciling, as every attempt to do so fails with unable to merge value from key ''sharedSecret'' in Secret ''pomerium/pomerium-config-secrets'' into target path ''config.sharedSecret'': unable to parse key: assignment to entry in nil map. This Secret was originally created with the data fields missing (they were created by the secret-generator operator), so I thought it might be possible that it's trying to pull its values from the empty version, but I tried restarting the Helm Controller pod and it's still happening, so I've ruled that out. This is a likely a duplicate of #113, and should have been fixed in the latest v0.1.3 release.
gharchive/issue
2020-10-21T11:48:33
2025-04-01T06:38:42.884998
{ "authors": [ "hiddeco", "stuartpb" ], "repo": "fluxcd/helm-controller", "url": "https://github.com/fluxcd/helm-controller/issues/123", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
928361167
Make concurrent reconciliation configurable Default for both, the ImageRepository and the ImagePolicy controllers is 4 workers. closes #148 Signed-off-by: Max Jonas Werner mail@makk.es Looking good, @makkes! One suggestion I have, for consistency's sake, I think it would make sense to define some types named ImagePolicyReconcilerOptions and respectively ImageRepositoryReconcilerOptions to hold the reconciliation specific options separately, similar to how it's done in other controllers. Also see an example of the SetupWithManager implementation. Looking good, @makkes! One suggestion I have, for consistency's sake, I think it would make sense to define some types named ImagePolicyReconcilerOptions and respectively ImageRepositoryReconcilerOptions to hold the reconciliation specific options separately Yeah, I saw these in the other controllers and was wondering why these were different. If you don't mind, I'll introduce these types in a subsequent PR to keep this focussed on the reconciliation configurability. What do you think? @makkes it's ok to introduce the Options types in this PR. @makkes it's ok to introduce the Options types in this PR. Alright, I'll add a commit shortly. @relu @stefanprodan added option types for both controllers. PS. Can you please do the same in image-automation-controller? sure thing @stefanprodan https://github.com/fluxcd/image-automation-controller/pull/192
gharchive/pull-request
2021-06-23T15:06:34
2025-04-01T06:38:42.898624
{ "authors": [ "makkes", "relu", "stefanprodan" ], "repo": "fluxcd/image-reflector-controller", "url": "https://github.com/fluxcd/image-reflector-controller/pull/153", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1727805574
Provider removing kustomize-controller patch Thanks for the prior help. Implementing SOPS/AAD pod identity, I'm not sure the best way to patch the kustomize-controller so have put it in clusters/staging/flux-system/kustomization.yaml. This did match the approach in the docs https://fluxcd.io/flux/installation/#customize-flux-manifests Having done that I've found that rerunning the terraform provider 1.0.0-rc3 is reverting kustomization.yaml and wiping out my patch Note: the lines matching ^*** are removals: # flux_bootstrap_git.this will be updated in-place ~ resource "flux_bootstrap_git" "this" { id = "flux-system" ~ repository_files = { ~ "clusters/staging/flux-system/kustomization.yaml" = <<-EOT apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: - gotk-components.yaml - gotk-sync.yaml *** - patches: *** - - path: kustomize-controller-patch.yaml EOT # (2 unchanged elements hidden) } # (11 unchanged attributes hidden) } fyi... $ find clusters/staging/ clusters/staging/flux-system clusters/staging/flux-system/kustomization.yaml clusters/staging/flux-system/kustomize-controller-patch.yaml clusters/staging/flux-system/gotk-sync.yaml clusters/staging/flux-system/gotk-components.yaml clusters/staging/infrastructure.yaml clusters/staging/apps.yaml kustomization.yaml: apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: - gotk-components.yaml - gotk-sync.yaml patches: - path: kustomize-controller-patch.yaml kustomize-controller-patch.yaml: apiVersion: apps/v1 kind: Deployment metadata: name: kustomize-controller namespace: flux-system spec: selector: matchLabels: app: kustomize-controller template: metadata: labels: ## For aad-pod-identity # aadpodidbinding: ${IDENTITY_NAME} match the AzureIdentity name aadpodidbinding: sops-decryptor spec: containers: - name: manager ## For aad-pod-identity env: - name: AZURE_AUTH_METHOD value: msi Please see how to customise Flux from Terraform https://registry.terraform.io/providers/fluxcd/flux/latest/docs/resources/bootstrap_git#customizing-flux If your using Terraform this is the only way For future reference... resource "flux_bootstrap_git" "this" { depends_on = [github_repository_deploy_key.this] path = var.flux_cluster_dir kustomization_override = local.kustomization_override } locals { kustomization_override = <<KUST_EOF apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: gotk-components.yaml gotk-sync.yaml patches: path: kustomize-controller-patch.yaml KUST_EOF }
gharchive/issue
2023-05-26T15:08:06
2025-04-01T06:38:42.906212
{ "authors": [ "adeturner", "stefanprodan" ], "repo": "fluxcd/terraform-provider-flux", "url": "https://github.com/fluxcd/terraform-provider-flux/issues/478", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1901735269
🛑 Cartilla is down In 88e686d, Cartilla (https://extranet.osam.org.ar/Consulta/cartilla) was down: HTTP code: 502 Response time: 2130 ms Resolved: Cartilla is back up in dad75f3 after 13 minutes.
gharchive/issue
2023-09-18T21:00:08
2025-04-01T06:38:42.908923
{ "authors": [ "flvanney" ], "repo": "flvanney/OSAMuptime", "url": "https://github.com/flvanney/OSAMuptime/issues/934", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
96583936
Supportting node version Currently fly supports "node": ">= 0.11.16", but co fly are using supports"node": ">= 0.12.0". What do you think about to update supporting version to same version with co? btw, it doesnt work on windows even with node@0.12.7 @iamstarkov Did you get it to work? #50 yep @iamstarkov That's very impressive. Does it handle arrow functions too? not sure --harmony_arrow_functions should do the trick. btw, everything in a fly can be polyfilled, why fly is not shipping already transpiled? @iamstarkov Fly ships transpiled, as you can see by browsing dist/. The use of these flags is to allow users to write Flyfiles using both generators and arrow functions. if fly ship itsled already transpiled, then fly should not require any specific node versions. ability to use arrow functions and generators is in userland and should be fixed by using babel hook with file like flyfile.babel.js. If you want es6 just use babel-version of flyfile =) you even dont need co if fly ship itsled already transpiled, then fly should not require any specific node versions. Fly the CLI and task runner is transpiled and does not require any version. But in order to let you write a Flyfile that uses generators we can't support < 0.11 unless... We transpile every Flyfile we get our hands on. In that case we could support any node version. The drawback is that it will be slower even for users that are only writing ES5. you even dont need co We still need to use co for the co-routine functionality that it provides letting us run tasks concurrently and manipulate generators like state machines out of the box. Just in case there could be any missunderstanding, co has nothing to do with generator support, co is a totally different library, please see some examples here. IMHO I think compiling build scripts on the fly is a bit out of this project's scope. Right now, fly's "selling point" over its competitors is that it fully leverages ES6. This makes fly a nice and lightweight tool for a specific purpose and a specific audience. If fly is going to try to be as universal as other build systems, such as gulp, then it will loose what makes it special. @derhuerst So you are proposing dropping support for ES6/7 and other JavaScript variants? @watilde See tj/co/issues/236 @derhuerst right now, fly does transpiling already. I think this is a great feature that allows me to write flyfiles in Earl Grey (my preferred variant) or ES6/7. This allows fly to do exactly what you want which is to "fully leverage ES6". It doesn't do it internally, it uses js-interpret to import register functions that do the compiling for fly. As far as ES5, the node version and flags, I think we should not compile ES5 flyfiles because it's a nice tradeoff: features -> ES6/variants, performance -> ES5. As a new innovative tool, I think it's important that we push the envelope in terms of pushing node support forward to newer versions rather than eagerly transpiling everything just for supporting all node versions (and also losing performance for ES5 flyfiles). @bucaran Thanks, that changed my mind! Closing as resolved. @derhuerst This is key It (Fly) doesn't do it internally, it uses js-interpret to import register functions (so-called require hooks) that do the (actual) compiling... The source is here. Now, if you have any suggestions on how to improve this part (I know we can do better) I'd love to know. I would like to simplify this bit. IMHO I think compiling build scripts on the fly is a bit out of this project's scope. Right now, fly's "selling point" over its competitors is that it fully leverages ES6. This makes fly a nice and lightweight tool for a specific purpose and a specific audience. If fly is going to try to be as universal as other build systems, such as gulp, then it will loose what makes it special. Now, let me get this straight, are you proposing to completely drop support for ES6/7 and other JavaScript variants? No, I'm not. In fact, I'm urging you to not do this. (; @MadcapJake put it in words I agree with: As far as ES5, the node version and flags, I think we should not compile ES5 flyfiles because it's a nice tradeoff: features -> ES6/variants, performance -> ES5. I agree with this too. As far as ES5, the node version and flags, I think we should not compile ES5 flyfiles because it's a nice tradeoff: features -> ES6/variants, performance -> ES5. 0.4.0 will land support for more node versions by registering the require hook! Bonanza!!
gharchive/issue
2015-07-22T14:37:47
2025-04-01T06:38:42.988857
{ "authors": [ "MadcapJake", "bucaran", "derhuerst", "iamstarkov", "watilde" ], "repo": "flyjs/fly", "url": "https://github.com/flyjs/fly/issues/56", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
180816270
[WIP] Full Rework (v2.0.0) This area is reserved for notes, thoughts, and a (wip) changelog. Please feel free to comment below 🙇 Notes with 1.4: 117 tests in ~980ms with 2.0: 180 tests in ~350ms Todo [ ] add fly.target (lol) & tests [ ] add fly.watch & tests [ ] finalize fly.plugin API definition [ ] define plugins using fly.plugin [ ] bind plugins to this instance [ ] incorporate existing fmt object into logging [ ] consolidate / provide better fmt key names [ ] use clean-stack for tracing? [ ] create _github directory [ ] move examples, contributing, etc [ ] finalize changelog [ ] benchmark Changelog Upgraded minimum Node requirement from 0.12 to 4.6 (LTS) Rewrite with (most) ES2015 syntax Dropped --harmony flag Replaced tj/co with bluebird.coroutine generators every prototype method must be yielded, for performance & consistency every util method (fly.$) must be yielded, for performance & consistency Replaced custom EventEmitter with built-in EventEmitter Globs are only expanded once per task lifecycle Rewrote all tests added 65+ new tests! more fine-tuning and control far less prone to core bugs API Fly can be initialized anywhere programmatically removed fly.concat and fly._.cat removed fly.flatten removed fly.unwrap (use fly.$.expand) removed fly.filter (use fly.plugin) removed fly.exec (use fly.start) changed fly.start acts as the base executor resets the stored internal values (fly._) initializes the fly instance, if not already accepts an opts object in addition to a task name opts may contain a src and val removed opts.parallel (see below) added fly.init adds additional instance validations alerts instance of ready status added fly.serial sequentially runs an array of task names allows for opts to be shared & mutated by each chain member interrupts & aborts chain when a member throws added fly.parallel run a group of tasks in parallel, completely indifferent to member order shares opts across all members; does not cascade is correctly yielded prevents next sequence from running until all members have finished changed fly.source eagerly expands globs once per lifecycle populates fly._.globs and fly._.files replaced fly._.host with fly._.tasks Utilities every must be yielded, for performance & consistency exposed publicly as fly.$ added expand changed 'write' will now handle/create its own ancestor tree (mkdir) removed bind removed defer removed apply removed diff removed shallow-copy removed arrayToMap removed custom UnknownOption and UnknownInput error classes (see CLI) CLI added -m and --mode flag defaults to serial toggles the execution type for tasks added additional cli.help content improved cli.list output changed -f and --file to -p and --pwd always expected a directory anyway still defaults to process.cwd() wrapped cli.spawn with bluebird must be yielded merged UnknownOption and UnknownInput into generic CLI error handler moved all cli-related ramp up to cli.js stopped using child_process.spawn dropped --harmony flag Extras Includes #212 , #177, #170 Closes #203 @lukeed Please, ping me when API will be stable for 2.* release. I work on a tool for migrating from one major version to other one for Fly. Basically, it will have web UI where owner of project, that uses Fly, can add his repo, and then receive PRs from bot that will scan flyfile detect old api parts, etc and rewrite or suggest changes, that should be done. @hzlmn Sounds awesome! Will do @lukeed Hey, I'm writting backend for tool, and wondering, if you have any preferences for tech stack? I was thinking about Python3.5 + Aiohttp and some sort of key-value storage (I pretty familiar with this stack, as used actively at work). For node.js I thought about Koa (I don't like callback nature of Express). @hzlmn I always write backends in Elixir...or PHP if the current team/project sets that limitation. I don't actually write much Node (Fly pretty much covers it, or other small CLI utilities), but the last time I wrote a web-related Node project, it was with Feathers.js. Although, it's based on express. Koa would be interesting, I haven't tried it. But if you wanted to keep the Koa / generator system, you could always just require tj/co or bluebird directly & wrap your callbacks. @hzlmn API is largely complete. Only minor (internal) things may change. Still working on examples, new docs & readme @hzlmn Currently published with the beta flag if you want to start fiddling with it. I haven't had time to write up an "Upgrade Guide" yet, but I surely will. npm i -D fly@beta @lukeed thx, will start playing with it. I just want to say thank you for Fly can be initialized anywhere programmatically I've been doing this programmatically for awhile now, but it is basically a copy of how the CLI instantiated a task, so the code looks pretty awful compared to what a public api will look like. const reporter = require('fly/lib/reporter'); const spawn = require('fly/lib/cli/spawn'); const creed = require('creed'); const path = require('path'); module.exports = function() { creed.coroutine(spawn)(path.resolve(__dirname, '../../')) .then(function onSpawn(fly) { return reporter.call(fly) .emit('fly_run', { path: fly.file }) .start(['build:dynamic'], { value: opts }); }) }; @akkuma you're welcome, great suggestion! All of the Fly tests use this method in case you need any examples while using the beta flag.
gharchive/pull-request
2016-10-04T06:42:12
2025-04-01T06:38:43.018052
{ "authors": [ "Akkuma", "hzlmn", "lukeed" ], "repo": "flyjs/fly", "url": "https://github.com/flyjs/fly/pull/218", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
61301400
SchedulerSuite.TestOmniJobs: unexpected status 500 FAIL: test_scheduler.go:310: SchedulerSuite.TestOmniJobs ++ 23:50:52.930 created app cats-smash-hudson (7232ef2849d84d74b5c113796946fb2f) ++ 23:50:52.982 scaling formation to map[printer:2] ++ 23:50:53.012 waiting for job events: map[printer:map[up:2]] ++ 23:50:53.064 got job event: printer 93d2b834-52bb782faba6425a9d610f8f1daa0137 starting ++ 23:50:53.082 got job event: printer 4f7ece1a-9e5e0e44500540f78137f6966c12637f starting ++ 23:50:54.072 got job event: printer 93d2b834-52bb782faba6425a9d610f8f1daa0137 up ++ 23:50:54.342 got job event: printer 4f7ece1a-9e5e0e44500540f78137f6966c12637f up ++ 23:50:54.342 scaling formation to map[printer:3 omni:2] ++ 23:50:54.351 waiting for job events: map[printer:map[up:1] omni:map[up:6]] ++ 23:50:54.432 got job event: omni 8544f5d4-9e59f62e1fa7406883a37f7fca44fad3 starting ++ 23:50:54.462 got job event: omni 4f7ece1a-545c285b14384c1683a01defbca07433 starting ++ 23:50:54.522 got job event: omni 93d2b834-bbea4364f16a4835bcbf40953f3eefcb starting ++ 23:50:55.575 got job event: omni 8544f5d4-0c388915c5bb47248a892bb09879e619 starting ++ 23:50:55.622 got job event: omni 8544f5d4-9e59f62e1fa7406883a37f7fca44fad3 up ++ 23:50:55.642 got job event: omni 4f7ece1a-8756a65dd2d24d25b24d915d2c137494 starting ++ 23:50:55.662 got job event: omni 4f7ece1a-545c285b14384c1683a01defbca07433 up ++ 23:50:55.712 got job event: omni 93d2b834-db00735b3b214cbfa42e9da5495e1cec starting ++ 23:50:55.732 got job event: omni 93d2b834-bbea4364f16a4835bcbf40953f3eefcb up ++ 23:50:56.782 got job event: printer 8544f5d4-4e43929fb59e465283e7532080699057 starting ++ 23:50:56.812 got job event: omni 8544f5d4-0c388915c5bb47248a892bb09879e619 up ++ 23:50:56.995 got job event: omni 93d2b834-db00735b3b214cbfa42e9da5495e1cec up ++ 23:50:57.022 got job event: omni 4f7ece1a-8756a65dd2d24d25b24d915d2c137494 up ++ 23:50:57.972 got job event: printer 8544f5d4-4e43929fb59e465283e7532080699057 up ++ 23:50:57.972 scaling formation to map[printer:1 omni:1] ++ 23:50:57.988 waiting for job events: map[printer:map[down:2] omni:map[down:3]] ++ 23:50:58.022 got job event: printer 8544f5d4-4e43929fb59e465283e7532080699057 down ++ 23:50:58.102 got job event: printer 4f7ece1a-9e5e0e44500540f78137f6966c12637f down ++ 23:50:58.162 got job event: omni 8544f5d4-0c388915c5bb47248a892bb09879e619 down ++ 23:50:58.202 got job event: omni 93d2b834-db00735b3b214cbfa42e9da5495e1cec down ++ 23:50:58.264 got job event: omni 4f7ece1a-8756a65dd2d24d25b24d915d2c137494 down ++ 23:50:58.264 adding 2 hosts ++ 23:51:04.928 host added: a78dc4ac ++ 23:51:11.709 host added: 096ba1ab ++ 23:51:11.709 waiting for job events: map[omni:map[up:2]] ++ 23:51:11.709 got job event: omni a78dc4ac-447170122d0c4b22b74c914040fba747 starting ++ 23:51:11.710 got job event: omni a78dc4ac-447170122d0c4b22b74c914040fba747 up ++ 23:51:12.222 got job event: omni 096ba1ab-7f3a8d94457441fea89fd2968c2f0a52 starting ++ 23:51:13.122 got job event: omni 096ba1ab-7f3a8d94457441fea89fd2968c2f0a52 up ++ 23:51:13.122 removing 2 hosts test_scheduler.go:370: ... helper.go:206: t.Assert(testCluster.RemoveHost(host), c.IsNil) ... value *url.Error = &url.Error{Op:"DELETE", URL:"https://10.69.3.1:443/cluster/8ab7bf27/a78dc4ac", Err:(*errors.errorString)(0xc2086e2c80)} ("DELETE https://10.69.3.1:443/cluster/8ab7bf27/a78dc4ac: httpclient: unexpected status 500") https://ci.flynn.io/builds/20150313234344-23cc0d7f https://ci.flynn.io/builds/20150314000026-ebedf6ee The error in the runner logs is: runner.go:681: clusterAPI err in DELETE /cluster/622c146d/52f46fd6: timed out waiting for host removal Looking in https://ci.flynn.io/builds/20150313234344-23cc0d7f, the host being removed is a78dc4ac, and from the ps faux output, flynn-host has stopped but the containers are still up. The last output from flynn-host is: now=2015-03-13T23:51:13+0000 app=host fn=main at=sampi_disconnected err=0x42f800 So this looks related to #1177, we should consider manually killing the containers with killall .containerinit if the timeout is hit. https://ci.flynn.io/builds/20150314014931-8761e211
gharchive/issue
2015-03-13T23:58:41
2025-04-01T06:38:43.023254
{ "authors": [ "jvatic", "lmars" ], "repo": "flynn/flynn", "url": "https://github.com/flynn/flynn/issues/1253", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
58633029
test: Use Basic Auth with cluster API Putting the auth key in the URL gets leaked in the test logs because the run script is executed with trace on. LGTM
gharchive/pull-request
2015-02-23T19:11:36
2025-04-01T06:38:43.024526
{ "authors": [ "lmars", "titanous" ], "repo": "flynn/flynn", "url": "https://github.com/flynn/flynn/pull/1061", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
169191351
discoverd: Allow setting service leader during SetServiceMeta This allows us to transactionally set the leader and the service meta at the same time, which is in turn used by Sirenia to prevent the metadata from getting out of sync with the leader entry. Closes #3219 LGTM
gharchive/pull-request
2016-08-03T17:46:30
2025-04-01T06:38:43.025721
{ "authors": [ "josephglanville", "titanous" ], "repo": "flynn/flynn", "url": "https://github.com/flynn/flynn/pull/3221", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
1560608757
Inline input data for execution events Signed-off-by: Katrina Rogan katrina@Katrinas-MBP.UNION.AI TL;DR Adds parity to the existing flow for inline event output data passing and storage. Type [ ] Bug Fix [x] Feature [ ] Plugin Are all requirements met? [x] Code completed [x] Smoke tested [x] Unit tests added [x] Code documentation added [x] Any pending items have an associated Issue Complete description Tested for Python tasks Dynamic nodes Recovered nodes Branch nodes Map tasks Tracking Issue https://github.com/flyteorg/flyte/issues/3232 Follow-up issue NA @EngHabu updated to only send task event input for undefined plugin phases, re-tested on the same set of task and node types. Mind taking another look? friendly ping @EngHabu @hamersaw @EngHabu sorry one more time if you don't mind?
gharchive/pull-request
2023-01-28T00:58:04
2025-04-01T06:38:43.033452
{ "authors": [ "katrogan" ], "repo": "flyteorg/flytepropeller", "url": "https://github.com/flyteorg/flytepropeller/pull/521", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1390833855
Non-transactional migration blocks by SELECT COUNT(*) FROM pg_namespace WHERE nspname=$1 Which version and edition of Flyway are you using? Tested on 9.3.1 and 9.3.0 but got the same results. Which client are you using? (Command-line, Java API, Maven plugin, Gradle plugin) gradle: 7.5.1 org.postgresql:postgresql:42.5.0 com.zaxxer:HikariCP:4.0.3 Which database are you using? (Type & version) PostgreSQL 11.6 Which operating system are you using? Mac os but failing also on Linux. What did you do? (Please include the content causing the issue, any relevant configuration settings, the SQL statement(s) that failed (if any), and the command you ran) Running migration only with non-transacional statement (mixed mode isn't set and it's not needed) create index concurrently if not exists ... on ... (...) where (...); What did you see instead? Flyway uses an auto-detect non transactional migration with regular expression: - https://github.com/flyway/flyway/blob/d5ccaf3c5506ae3c910b9aace5b88869c30641cd/flyway-core/src/main/java/org/flywaydb/core/internal/database/postgresql/PostgreSQLParser.java#L102 And it seems that there is no extra configuration to execute non-transactional queries. The migration was detected correctly as non-transactional, but it freezes on finishing the migration because it waits on the client to close the migration. The migrations execution freezes and is never finished because of the blocking query described above. SELECT activity.pid, activity.usename, activity.query, blocking.pid AS blocking_id, blocking.query AS blocking_query FROM pg_stat_activity AS activity JOIN pg_stat_activity AS blocking ON blocking.pid = ANY(pg_blocking_pids(activity.pid)); pid | usename | query | blocking_id | blocking_query -----+----------+-----------------------------------------------------+-------------+---------------------------------------------------- 72 | sentinel | create index concurrently if not exists ... +| 71 | SELECT COUNT(*) FROM pg_namespace WHERE nspname=$1 | | on ... (...) +| | | | where (...) | | (1 row) Is there any option on how to successfully run a non-transactional migration with a flyway? See this comment In particular, you will need to set flyway.postgresql.transactional.lock=false Closing as duplicate
gharchive/issue
2022-09-29T13:00:59
2025-04-01T06:38:43.039191
{ "authors": [ "DoodleBobBuffPants", "radeklos" ], "repo": "flyway/flyway", "url": "https://github.com/flyway/flyway/issues/3531", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1987134146
🛑 Site nxtc is down In 618d797, Site nxtc ($SECRET_SITE_2) was down: HTTP code: 0 Response time: 0 ms Resolved: Site nxtc is back up in df5f70b after 1 hour, 44 minutes.
gharchive/issue
2023-11-10T08:15:35
2025-04-01T06:38:43.046396
{ "authors": [ "fmmaia" ], "repo": "fmmaia/fmAtAllUptime", "url": "https://github.com/fmmaia/fmAtAllUptime/issues/1262", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
131297089
Clean your mind One cannot know a lot about a lot. Choose wisely. Forget the unchoosen. Clean up this repository from learning things you don't want to focus. Keep coded stuff as history and move forward.
gharchive/issue
2016-02-04T10:00:28
2025-04-01T06:38:43.047840
{ "authors": [ "fmoliveira" ], "repo": "fmoliveira/learning-book", "url": "https://github.com/fmoliveira/learning-book/issues/26", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
3338288
Upgrade strategy does not work if ruby-build is already installed The nof_if clause on execute "Install ruby-build" most likely is not needed. Guess it did work.
gharchive/issue
2012-02-22T18:09:27
2025-04-01T06:38:43.059116
{ "authors": [ "fnichol" ], "repo": "fnichol/chef-ruby_build", "url": "https://github.com/fnichol/chef-ruby_build/issues/4", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
503399226
Algo Kruskal's Algorithm Java Here is the description of the algorithm of the Kruskal algorithm . https://www.geeksforgeeks.org/kruskals-algorithm-simple-implementation-for-adjacency-matrix/ Want to work on this issue yes i wan't to do using c++ Then plss open another issue for C++
gharchive/issue
2019-10-07T11:43:55
2025-04-01T06:38:43.063369
{ "authors": [ "NripeshKumar", "shanky199912" ], "repo": "fnplus/interview-techdev-guide", "url": "https://github.com/fnplus/interview-techdev-guide/issues/355", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1675017448
🛑 Whatsapp is down In a6586a9, Whatsapp (https://web.whatsapp.com) was down: HTTP code: 0 Response time: 0 ms Resolved: Whatsapp is back up in 83a07c7.
gharchive/issue
2023-04-19T14:25:25
2025-04-01T06:38:43.065714
{ "authors": [ "fnzv" ], "repo": "fnzv/status", "url": "https://github.com/fnzv/status/issues/132", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2206235917
🛑 Contaboo is down In d66c14c, Contaboo (https://contabo.com) was down: HTTP code: 403 Response time: 17659 ms Resolved: Contaboo is back up in 57b746c after 27 minutes.
gharchive/issue
2024-03-25T16:55:42
2025-04-01T06:38:43.068209
{ "authors": [ "fnzv" ], "repo": "fnzv/status", "url": "https://github.com/fnzv/status/issues/2256", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1852837961
🛑 Contaboo is down In a666635, Contaboo (https://contabo.com) was down: HTTP code: 403 Response time: 637 ms Resolved: Contaboo is back up in 7b442a6.
gharchive/issue
2023-08-16T09:16:40
2025-04-01T06:38:43.070506
{ "authors": [ "fnzv" ], "repo": "fnzv/status", "url": "https://github.com/fnzv/status/issues/350", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1531339135
Path include error on ubuntu/debian R installation + fix I was getting a R.h not found error when installing according to the docs, and did some digging about where it was looking for R.h. interface_r/pogs/src/config.mk defines R_INC:=$(R_HOME)/include, but the debian install of R stores these files in /usr/share/R/include. Commenting out Line 7 in config.mk and installing from the package directory using devtools::install worked. Thanks Apoorval. Thanks for raising this. I would have hoped that RHOME takes care of this, but I guess not. I'll add both of the includes to cover both cases.
gharchive/issue
2023-01-12T20:40:39
2025-04-01T06:38:43.083903
{ "authors": [ "apoorvalal", "foges" ], "repo": "foges/pogs", "url": "https://github.com/foges/pogs/issues/33", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1516388011
bug: init.lua in plugins directory ignored Did you check docs and existing issues? [X] I have read all the lazy docs [X] I have searched the existing issues of lazy [X] I have searched the exsiting issues of the plugin I have a problem with Neovim version (nvim -v) v0.9.0-dev Operating system/version Ubuntu 18.04 Describe the bug Hi, i have following structure for my nvim config: ├── init.lua ├── lazy-lock.json ├── lua │   ├── keymaps.lua │   ├── options.lua │   └── plugins │   ├── cmp.lua │   ├── hlargs.lua │   ├── init.lua │   ├── lsp.lua │   ├── mason.lua │   └── neo-tree.lua Today i cleaned out the data/state directory (~/.local/{share,state}/nvim/lazy and lazy-lock.json and started nvim so that lazy can resetup. It seems the init.lua in the plugins directory is ignored now, and only after i renamed the file lazy also took the configuration from this file into considerations. Steps To Reproduce clean out data/state directory and remove lock file have an init.lua in lua/plugins with some plugins configs start nvim so that lazy can resetup the init.lua in the plugins dir is ignored and only after renaming to eg general.lua lazy takes this file again in considerations Expected Behavior init.lua in plugins dir should not be ignored Repro -- DO NOT change the paths and don't remove the colorscheme local root = vim.fn.fnamemodify("./.repro", ":p") -- set stdpaths to use .repro for _, name in ipairs({ "config", "data", "state", "cache" }) do vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name end -- bootstrap lazy local lazypath = root .. "/plugins/lazy.nvim" if not vim.loop.fs_stat(lazypath) then vim.fn.system({ "git", "clone", "--filter=blob:none", "--single-branch", "https://github.com/folke/lazy.nvim.git", lazypath, }) end vim.opt.runtimepath:prepend(lazypath) -- install plugins local plugins = { "folke/tokyonight.nvim", -- add any other plugins here } require("lazy").setup(plugins, { root = root .. "/plugins", }) vim.cmd.colorscheme("tokyonight") -- add anything else here I just pushed a bunch of changes. Can you check if the problem persists? Make sure to update lazy or delete the lock file, since otherwise an older version would be installed yeah i remove lazy-lock.json in ~/.config/nvim problem is still there, only renaming the file init.lua -> to .lua lets lazy consider the content of the file I can't reproduce this unfortunately. What does the code below show? vim.pretty_print({require("lazy.core.cache").find_dir("plugins")}) Yeah, I think today's changes broke something: telescope no longer has a preview. (Useless bug report, I know; I'll try to narrow it down.) Yep, reverting https://github.com/folke/lazy.nvim/commit/0bc73db503e550076c0a8effb976a778c7cf5a6a restores the old (correct) behavior. I can reproduce it now. Will fix 02:45:15 PM msg_show  vim.pretty_print({require("lazy.core.cache").find_dir("plugins")}) core.cache").find_dir("plugins")})↴ 6 02:45:15 PM msg_show  vim.pretty_print({require("lazy.core.cache").find_dir("plugins")}) "core.cache").find_dir("plugins")})" [New]↴ 7 02:45:15 PM msg_show  vim.pretty_print({require("lazy.core.cache").find_dir("plugins")}) Cannot open file "core.cache").find_dir("plugins")})"↴ 8  Error 02:45:15 PM msg_show.emsg  vim.pretty_print({require("lazy.core.cache").find_dir("plugins")}) E480: No match: pretty_print({require("lazy↴ Not for me, unfortunately. and now? Autoloading was broken Yep, now it's back :) good :) @shinzu is your problem fixed as well? I think that's another issue than @clason (oops, sorry, didn't mean to hijack!) no worries, it did look like the same issue :) @folke still broken for me What does that command show? You need to add :lua before it, so :lua vim.pretty_print({require("lazy.core.cache").find_dir("plugins")}). CAn you give a full listing of your nvim directory? { "/home/mwyrsch/.config/nvim/lua/plugins" }   ~/.config/nvim   main !6 ?8  21s  14:57:12 ❯ tree . ├── init.lua ├── lazy-lock.json ├── lua │   ├── keymaps.lua │   ├── options.lua │   └── plugins │   ├── cmp.lua │   ├── general.lua │   ├── hlargs.lua │   ├── lsp.lua │   ├── mason.lua │   └── neo-tree.lua ├── minimal.lua ├── README.md ├── repro.lua ├── snippets │   └── vscode_snippets │   ├── CHANGELOG.md │   ├── CODE_OF_CONDUCT.md │   ├── images │   │   ├── cfn-snippets-extension-example.gif │   │   └── cfn-snippets-extension-icon.png │   ├── LICENSE │   ├── package.json │   ├── README.md │   ├── snippets │   │   ├── condition-functions.json │   │   ├── custom.json │   │   ├── intrinsic-functions.json │   │   ├── parameter-types.json │   │   └── resource-types.json │   └── src │   ├── current-json-spec-hash │   ├── feed.py │   ├── requirements.txt │   └── update-cfn-resource-snippets.py ├── test.cf.yaml ├── test.go └── test.py 7 directories, 32 files Can you check again? I pushed something wrong. Just fixed that. sorry! works again, thank you for completeness, that i get now back from the lua command: { "/home/user/.config/nvim/lua/plugins", "/home/user/.config/nvim/lua/plugins/init.lua" }
gharchive/issue
2023-01-02T13:16:14
2025-04-01T06:38:43.151739
{ "authors": [ "Shinzu", "clason", "folke" ], "repo": "folke/lazy.nvim", "url": "https://github.com/folke/lazy.nvim/issues/278", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1561135425
bug: potential state pollution(?) over time could cause a difficult to tackle crashes Did you check docs and existing issues? [X] I have read all the lazy.nvim docs [X] I have searched the existing issues of lazy.nvim [X] I have searched the exsiting issues of plugins related to this issue Neovim version (nvim -v) 0.8.2 Operating system/version MacOS 13.1 Describe the bug It's hard to prove but I had a strange case of Neovim crashing when I press tab to cycle nvim-cmp. My configuration here have been working fine until today. Today all of sudden, when I tab to cycle the suggestions from nvim-cmp, Neovim crashed with messages like the one from this one. nvim(15010,0x1064395c0) malloc: *** error for object 0x500007f8cfdd81e8: pointer being freed was not allocated nvim(15010,0x1064395c0) malloc: *** set a breakpoint in malloc_error_break to debug I did checkout Neovim's issues as well as related plugins issue and I couldn't connect the dots as there was no report that guide me to the issue. I also tried multiple things to pinpoint including running Neovim in different terminals and etc. and nothing was successful (spend some hours here). I also tried to restore and upgrade and downgrade plugins and it was not successful either. It was very difficult to reason about what might have gone wrong. And finally I had an idea of trying "from scratch". So I deleted the path that lazy.nvim uses, ~/.local/share/nvim/lazy. And lazy.nvim picked up this manual clean up automatically when I opened Neovim again and installed all the plugins back. Voilà! No more crashses. (btw clean from lazy.nvim didn't help, hence the manual clean up) This experience made me believe that using lazy.nvim with various usages of restore and update over time might make some sort of state gets "tangled". Of course I don't know enough on internals, so I can't say for sure and it's just a hunch at this point. A Side Note I almost always get this kind of error when I do update or restore (and I just retrying until it eventually succeed (usually after around 3-5 times) and wonder if this have anything to do with this issue. (my git version is 2.39.0) (plugins that fails are different everytime) Also wonder why this happens too. I also understand this issue might be really tricky to tackle, so main purpose of reporting this is not much about appealing to get a fix but just wanted to share this here so anyone experience a similar issue can be aware of the workaround and try what I did if they would like. So feel free to close this issue if there is no clear clue on what might be wrong and what can be done to it. Steps To Reproduce Do these things multiple times over time Restore Update And wait for mysterious crash to happen (at one point) with same exact dotfiles, do the clean install of plugins see if the crash happens again I am aware it's not the one of the best reproducible steps but that's all I got for now. Expected Behavior restore and update doesn't influence how plugins work. Repro (I don't think I can provide this as this is not about the config itself but let me know if you would still like one) Those failing git process are probably caused because you don't have enough memory. Check :h uv.spawn() Try setting config.concurrency and config.checker.concurrency to a low number (like 10) If your system is low on memory then that can obviously also make Neovim unstable and cause all sorts of weird errors. Next time, you should try getting a full stacktrace, since those two lines you posted are not enough to see what's going wrong. Also check on how to get an ASAN report from the Neovim Wiki. Either way, segfaults etc are almost always caused by bugs in Neovim (or probably not enough memory in this case). Closing this for now, but feel free to post a new issue if the issue would persist and you can get a full stacktract @folke Thanks for all the information! These will be helpful for me to report better next time for similar thing if I ever face them again! Also just set those values for concurrency and it seems to work fine! Settled with following for now { concurrency = 32, checker = { enabled = true, concurrency = 8, frequency = 3600 * 24 * 7, } }
gharchive/issue
2023-01-29T05:39:05
2025-04-01T06:38:43.163862
{ "authors": [ "folke", "ryuheechul" ], "repo": "folke/lazy.nvim", "url": "https://github.com/folke/lazy.nvim/issues/462", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
871007071
No errors shown in list I installed lsp-trouble.nvim with Vim-Plug nvim version: 0.5 nightly I use your tokyonight colorscheme I created a file to test the LspTrouble. Then I used :LspTroubleOpen The list is just empty even though, there are errors Are these errors diagnostics from the builtin lsp client? Or is that something like ALE? I have ALE Should I deactivate it? That;s not it, but I wonder if those errors you are seeing are coming from ALE and are not lsp diagnostics. so should I try deactivating it? To make sure they are from lsp, do; :lua vim.lsp.diagnostic.set_loclist() That should show those errors in your quicklist Now it looks different but still no errors shown That means that those errors are not coming from LSP. Closing this as it's an issue with your lsp setup. Nothing to do with trouble. Please follow the guide at https://github.com/neovim/nvim-lspconfig to get it working https://www.reddit.com/r/neovim/comments/n3rary/trouble_just_pushed_a_big_update_with_support_for/ is this still a problem? With ALE you can push your errors to the quickfix and/or loclist, so try one of the commands below: LspTrouble quickfix LspTrouble loclist That should work, although I haven't tested it specifically with ALE :)
gharchive/issue
2021-04-29T13:18:40
2025-04-01T06:38:43.170566
{ "authors": [ "folke", "max397574" ], "repo": "folke/lsp-trouble.nvim", "url": "https://github.com/folke/lsp-trouble.nvim/issues/14", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1583111687
feature: use lua-language-server's builtin luv meta library Did you check the docs? [X] I have read all the neodev.nvim docs Is your feature request related to a problem? Please describe. Hey! So I've noticed that luv has been added to lua-language-server's builtin meta libraries since 3 months ago.. And so it would be nice to simply replace the luv metadata from neodev with lua-language-server's and have much more complete luv information :) Describe the solution you'd like Add "${3rd}/luv/library" to workspace.library Annotate vim.loop with @type uv Describe alternatives you've considered Stay as is. Additional context According to this test: https://github.com/neovim/neovim/tree/master/test/functional/lua/loop_spec.lua#L154 vim.loop isn't modified from luv so there shouldn't be any clashes. Potential caveat If a user updates their lua-language-server version but not Neovim, there could be a slight desync in information. Awesome, didn't know that! Just updated the code. Types will be re-generated in a bit
gharchive/issue
2023-02-13T21:42:10
2025-04-01T06:38:43.175522
{ "authors": [ "T-727", "folke" ], "repo": "folke/neodev.nvim", "url": "https://github.com/folke/neodev.nvim/issues/127", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1410305119
No ui router for win (module 'noice.ui.win' not found) when running :checkhealth Describe the bug Title, happens only when running checkhealth Which version of Neovim are you using? Gui(specify which GUI client you are using)? Nightly? Version? Nightly 0.9.0 To Reproduce Steps to reproduce the behavior: Open neovim Run :checkhealth Expected Behavior No error message Screenshots Noice Log Noice log Thu Oct 6 03:59:39 2022 ...opt/nvim-notify/lua/notify/service/buffer/highlights.lua:153: Invalid buffer id: 4 stack traceback: .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:102: in function <.../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:101> [C]: in function 'nvim_buf_get_option' ...opt/nvim-notify/lua/notify/service/buffer/highlights.lua:153: in function 'set_opacity' ...acker/opt/nvim-notify/lua/notify/service/buffer/init.lua:45: in function '_create_highlights' ...acker/opt/nvim-notify/lua/notify/service/buffer/init.lua:38: in function 'set_notification' .../pack/packer/opt/nvim-notify/lua/notify/service/init.lua:73: in function 'replace' ...vim/site/pack/packer/opt/nvim-notify/lua/notify/init.lua:212: in function 'notify' ...ite/pack/packer/opt/noice.nvim/lua/noice/view/notify.lua:125: in function '_notify' ...ite/pack/packer/opt/noice.nvim/lua/noice/view/notify.lua:151: in function <...ite/pack/packer/opt/noice.nvim/lua/noice/view/notify.lua:128> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' .../site/pack/packer/opt/noice.nvim/lua/noice/view/init.lua:82: in function 'display' .../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:91: in function <.../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:75> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' .../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:34: in function '' vim/_editor.lua: in function '' vim/_editor.lua: in function <vim/_editor.lua:0> Thu Oct 6 04:03:24 2022 ...opt/nvim-notify/lua/notify/service/buffer/highlights.lua:153: Invalid buffer id: 4 stack traceback: .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:102: in function <.../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:101> [C]: in function 'nvim_buf_get_option' ...opt/nvim-notify/lua/notify/service/buffer/highlights.lua:153: in function 'set_opacity' ...acker/opt/nvim-notify/lua/notify/service/buffer/init.lua:45: in function '_create_highlights' ...acker/opt/nvim-notify/lua/notify/service/buffer/init.lua:38: in function 'set_notification' .../pack/packer/opt/nvim-notify/lua/notify/service/init.lua:73: in function 'replace' ...vim/site/pack/packer/opt/nvim-notify/lua/notify/init.lua:212: in function 'notify' ...ite/pack/packer/opt/noice.nvim/lua/noice/view/notify.lua:125: in function '_notify' ...ite/pack/packer/opt/noice.nvim/lua/noice/view/notify.lua:151: in function <...ite/pack/packer/opt/noice.nvim/lua/noice/view/notify.lua:128> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' .../site/pack/packer/opt/noice.nvim/lua/noice/view/init.lua:82: in function 'display' .../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:91: in function <.../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:75> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' .../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:34: in function '' vim/_editor.lua: in function '' vim/_editor.lua: in function <vim/_editor.lua:0> Thu Oct 6 04:03:29 2022 ...m/site/pack/packer/opt/nui.nvim/lua/nui/popup/border.lua:440: Invalid buffer id: 8 stack traceback: .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:102: in function <.../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:101> [C]: in function 'nvim_open_win' ...m/site/pack/packer/opt/nui.nvim/lua/nui/popup/border.lua:440: in function '_open_window' ...vim/site/pack/packer/opt/nui.nvim/lua/nui/popup/init.lua:252: in function 'show' ...m/site/pack/packer/opt/noice.nvim/lua/noice/view/nui.lua:143: in function <...m/site/pack/packer/opt/noice.nvim/lua/noice/view/nui.lua:134> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' .../site/pack/packer/opt/noice.nvim/lua/noice/view/init.lua:82: in function 'display' .../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:91: in function <.../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:75> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' ...im/site/pack/packer/opt/noice.nvim/lua/noice/ui/init.lua:29: in function <...im/site/pack/packer/opt/noice.nvim/lua/noice/ui/init.lua:22> Thu Oct 6 04:03:29 2022 ...vim/site/pack/packer/opt/nui.nvim/lua/nui/utils/init.lua:129: Invalid buffer id: 7 stack traceback: .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:102: in function <.../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:101> [C]: in function 'nvim_buf_set_option' ...vim/site/pack/packer/opt/nui.nvim/lua/nui/utils/init.lua:129: in function 'set_buf_options' .../site/pack/packer/opt/noice.nvim/lua/noice/view/init.lua:156: in function 'render' ...m/site/pack/packer/opt/noice.nvim/lua/noice/view/nui.lua:145: in function <...m/site/pack/packer/opt/noice.nvim/lua/noice/view/nui.lua:134> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' .../site/pack/packer/opt/noice.nvim/lua/noice/view/init.lua:82: in function 'display' .../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:91: in function <.../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:75> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' ...im/site/pack/packer/opt/noice.nvim/lua/noice/ui/init.lua:29: in function <...im/site/pack/packer/opt/noice.nvim/lua/noice/ui/init.lua:22> Thu Oct 6 04:03:29 2022 ...vim/site/pack/packer/opt/nui.nvim/lua/nui/utils/init.lua:129: Invalid buffer id: 7 stack traceback: .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:102: in function <.../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:101> [C]: in function 'nvim_buf_set_option' ...vim/site/pack/packer/opt/nui.nvim/lua/nui/utils/init.lua:129: in function 'set_buf_options' .../site/pack/packer/opt/noice.nvim/lua/noice/view/init.lua:156: in function 'render' ...m/site/pack/packer/opt/noice.nvim/lua/noice/view/nui.lua:145: in function <...m/site/pack/packer/opt/noice.nvim/lua/noice/view/nui.lua:134> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' .../site/pack/packer/opt/noice.nvim/lua/noice/view/init.lua:82: in function 'display' .../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:91: in function <.../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:75> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' ...im/site/pack/packer/opt/noice.nvim/lua/noice/ui/init.lua:29: in function <...im/site/pack/packer/opt/noice.nvim/lua/noice/ui/init.lua:22> Thu Oct 6 04:03:29 2022 ...vim/site/pack/packer/opt/nui.nvim/lua/nui/utils/init.lua:129: Invalid buffer id: 7 stack traceback: .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:102: in function <.../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:101> [C]: in function 'nvim_buf_set_option' ...vim/site/pack/packer/opt/nui.nvim/lua/nui/utils/init.lua:129: in function 'set_buf_options' .../site/pack/packer/opt/noice.nvim/lua/noice/view/init.lua:156: in function 'render' ...m/site/pack/packer/opt/noice.nvim/lua/noice/view/nui.lua:145: in function <...m/site/pack/packer/opt/noice.nvim/lua/noice/view/nui.lua:134> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' .../site/pack/packer/opt/noice.nvim/lua/noice/view/init.lua:82: in function 'display' .../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:91: in function <.../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:75> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' ...im/site/pack/packer/opt/noice.nvim/lua/noice/ui/init.lua:29: in function <...im/site/pack/packer/opt/noice.nvim/lua/noice/ui/init.lua:22> Thu Oct 6 04:03:29 2022 ...vim/site/pack/packer/opt/nui.nvim/lua/nui/utils/init.lua:129: Invalid buffer id: 7 stack traceback: .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:102: in function <.../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:101> [C]: in function 'nvim_buf_set_option' ...vim/site/pack/packer/opt/nui.nvim/lua/nui/utils/init.lua:129: in function 'set_buf_options' .../site/pack/packer/opt/noice.nvim/lua/noice/view/init.lua:156: in function 'render' ...m/site/pack/packer/opt/noice.nvim/lua/noice/view/nui.lua:145: in function <...m/site/pack/packer/opt/noice.nvim/lua/noice/view/nui.lua:134> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' .../site/pack/packer/opt/noice.nvim/lua/noice/view/init.lua:82: in function 'display' .../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:91: in function <.../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:75> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' ...im/site/pack/packer/opt/noice.nvim/lua/noice/ui/init.lua:29: in function <...im/site/pack/packer/opt/noice.nvim/lua/noice/ui/init.lua:22> Thu Oct 6 04:03:29 2022 ...vim/site/pack/packer/opt/nui.nvim/lua/nui/utils/init.lua:129: Invalid buffer id: 7 stack traceback: .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:102: in function <.../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:101> [C]: in function 'nvim_buf_set_option' ...vim/site/pack/packer/opt/nui.nvim/lua/nui/utils/init.lua:129: in function 'set_buf_options' .../site/pack/packer/opt/noice.nvim/lua/noice/view/init.lua:156: in function 'render' ...m/site/pack/packer/opt/noice.nvim/lua/noice/view/nui.lua:145: in function <...m/site/pack/packer/opt/noice.nvim/lua/noice/view/nui.lua:134> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' .../site/pack/packer/opt/noice.nvim/lua/noice/view/init.lua:82: in function 'display' .../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:91: in function <.../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:75> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' ...im/site/pack/packer/opt/noice.nvim/lua/noice/ui/init.lua:29: in function <...im/site/pack/packer/opt/noice.nvim/lua/noice/ui/init.lua:22> Thu Oct 6 04:03:29 2022 ...vim/site/pack/packer/opt/nui.nvim/lua/nui/utils/init.lua:129: Invalid buffer id: 7 stack traceback: .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:102: in function <.../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:101> [C]: in function 'nvim_buf_set_option' ...vim/site/pack/packer/opt/nui.nvim/lua/nui/utils/init.lua:129: in function 'set_buf_options' .../site/pack/packer/opt/noice.nvim/lua/noice/view/init.lua:156: in function 'render' ...m/site/pack/packer/opt/noice.nvim/lua/noice/view/nui.lua:145: in function <...m/site/pack/packer/opt/noice.nvim/lua/noice/view/nui.lua:134> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' .../site/pack/packer/opt/noice.nvim/lua/noice/view/init.lua:82: in function 'display' .../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:91: in function <.../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:75> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' ...im/site/pack/packer/opt/noice.nvim/lua/noice/ui/init.lua:29: in function <...im/site/pack/packer/opt/noice.nvim/lua/noice/ui/init.lua:22> Thu Oct 6 04:03:31 2022 ...m/site/pack/packer/opt/nui.nvim/lua/nui/popup/border.lua:440: Invalid buffer id: 8 stack traceback: .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:102: in function <.../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:101> [C]: in function 'nvim_open_win' ...m/site/pack/packer/opt/nui.nvim/lua/nui/popup/border.lua:440: in function '_open_window' ...vim/site/pack/packer/opt/nui.nvim/lua/nui/popup/init.lua:252: in function 'show' ...m/site/pack/packer/opt/noice.nvim/lua/noice/view/nui.lua:143: in function <...m/site/pack/packer/opt/noice.nvim/lua/noice/view/nui.lua:134> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' .../site/pack/packer/opt/noice.nvim/lua/noice/view/init.lua:82: in function 'display' .../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:91: in function <.../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:75> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' ...im/site/pack/packer/opt/noice.nvim/lua/noice/ui/init.lua:29: in function <...im/site/pack/packer/opt/noice.nvim/lua/noice/ui/init.lua:22> Thu Oct 6 04:03:31 2022 ...vim/site/pack/packer/opt/nui.nvim/lua/nui/utils/init.lua:129: Invalid buffer id: 7 stack traceback: .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:102: in function <.../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:101> [C]: in function 'nvim_buf_set_option' ...vim/site/pack/packer/opt/nui.nvim/lua/nui/utils/init.lua:129: in function 'set_buf_options' .../site/pack/packer/opt/noice.nvim/lua/noice/view/init.lua:156: in function 'render' ...m/site/pack/packer/opt/noice.nvim/lua/noice/view/nui.lua:145: in function <...m/site/pack/packer/opt/noice.nvim/lua/noice/view/nui.lua:134> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' .../site/pack/packer/opt/noice.nvim/lua/noice/view/init.lua:82: in function 'display' .../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:91: in function <.../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:75> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' ...im/site/pack/packer/opt/noice.nvim/lua/noice/ui/init.lua:29: in function <...im/site/pack/packer/opt/noice.nvim/lua/noice/ui/init.lua:22> Thu Oct 6 04:03:31 2022 ...vim/site/pack/packer/opt/nui.nvim/lua/nui/utils/init.lua:129: Invalid buffer id: 7 stack traceback: .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:102: in function <.../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:101> [C]: in function 'nvim_buf_set_option' ...vim/site/pack/packer/opt/nui.nvim/lua/nui/utils/init.lua:129: in function 'set_buf_options' .../site/pack/packer/opt/noice.nvim/lua/noice/view/init.lua:156: in function 'render' ...m/site/pack/packer/opt/noice.nvim/lua/noice/view/nui.lua:145: in function <...m/site/pack/packer/opt/noice.nvim/lua/noice/view/nui.lua:134> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' .../site/pack/packer/opt/noice.nvim/lua/noice/view/init.lua:82: in function 'display' .../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:91: in function <.../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:75> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' ...im/site/pack/packer/opt/noice.nvim/lua/noice/ui/init.lua:29: in function <...im/site/pack/packer/opt/noice.nvim/lua/noice/ui/init.lua:22> Thu Oct 6 04:03:32 2022 ...m/site/pack/packer/opt/nui.nvim/lua/nui/popup/border.lua:440: Invalid buffer id: 8 stack traceback: .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:102: in function <.../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:101> [C]: in function 'nvim_open_win' ...m/site/pack/packer/opt/nui.nvim/lua/nui/popup/border.lua:440: in function '_open_window' ...vim/site/pack/packer/opt/nui.nvim/lua/nui/popup/init.lua:252: in function 'show' ...m/site/pack/packer/opt/noice.nvim/lua/noice/view/nui.lua:143: in function <...m/site/pack/packer/opt/noice.nvim/lua/noice/view/nui.lua:134> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' .../site/pack/packer/opt/noice.nvim/lua/noice/view/init.lua:82: in function 'display' .../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:91: in function <.../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:75> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' ...im/site/pack/packer/opt/noice.nvim/lua/noice/ui/init.lua:29: in function <...im/site/pack/packer/opt/noice.nvim/lua/noice/ui/init.lua:22> Thu Oct 6 04:03:32 2022 ...vim/site/pack/packer/opt/nui.nvim/lua/nui/utils/init.lua:129: Invalid buffer id: 7 stack traceback: .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:102: in function <.../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:101> [C]: in function 'nvim_buf_set_option' ...vim/site/pack/packer/opt/nui.nvim/lua/nui/utils/init.lua:129: in function 'set_buf_options' .../site/pack/packer/opt/noice.nvim/lua/noice/view/init.lua:156: in function 'render' ...m/site/pack/packer/opt/noice.nvim/lua/noice/view/nui.lua:145: in function <...m/site/pack/packer/opt/noice.nvim/lua/noice/view/nui.lua:134> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' .../site/pack/packer/opt/noice.nvim/lua/noice/view/init.lua:82: in function 'display' .../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:91: in function <.../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:75> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:107: in function 'try' ...im/site/pack/packer/opt/noice.nvim/lua/noice/ui/init.lua:29: in function <...im/site/pack/packer/opt/noice.nvim/lua/noice/ui/init.lua:22> Wed Oct 12 17:07:39 2022 ...ite/pack/packer/opt/noice.nvim/lua/noice/view/notify.lua:165: E11: Invalid in command-line window; executes, CTRL-C quits stack traceback: .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:119: in function <.../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:118> [C]: in function 'nvim_win_close' ...ite/pack/packer/opt/noice.nvim/lua/noice/view/notify.lua:165: in function 'hide' .../site/pack/packer/opt/noice.nvim/lua/noice/view/init.lua:90: in function 'display' .../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:91: in function <.../pack/packer/opt/noice.nvim/lua/noice/message/router.lua:75> [C]: in function 'xpcall' .../site/pack/packer/opt/noice.nvim/lua/noice/util/call.lua:124: in function 'try' ...site/pack/packer/opt/noice.nvim/lua/noice/util/hacks.lua:91: in function 'cmd' ...hare/nvim/site/pack/packer/opt/hop.nvim/lua/hop/init.lua:264: in function 'get_input_pattern' ...hare/nvim/site/pack/packer/opt/hop.nvim/lua/hop/init.lua:495: in function 'hint_char1' /home/amaanq/.config/nvim/lua/plugins/hop.lua:49: in function </home/amaanq/.config/nvim/lua/plugins/hop.lua:48> I assume you enabled debug=true? That;s what you get for events coming in that we dont support. Debug message. disable debug to disable it. oops, sorry! that was it, i had accidentally left it on :) thanks!
gharchive/issue
2022-10-15T22:17:50
2025-04-01T06:38:43.226464
{ "authors": [ "amaanq", "folke" ], "repo": "folke/noice.nvim", "url": "https://github.com/folke/noice.nvim/issues/68", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1372258210
How can I disable whichkey for everything but ctrl-r? I only want to use functionality in insert mode, which gives me a pop up of register contents. How can I disable everything else in which-key but that? If that's all you were going to use from Which-Key then you may only need this (tversteeg/registers.nvim)[https://github.com/tversteeg/registers.nvim] Agree, you don't need which-key for just registers
gharchive/issue
2022-09-14T03:02:55
2025-04-01T06:38:43.229058
{ "authors": [ "folke", "grddavies", "sdemura" ], "repo": "folke/which-key.nvim", "url": "https://github.com/folke/which-key.nvim/issues/336", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1363368209
easee unavailable Question After updating HA to latest version my charger is unavailable. What version of the integration are you using? version": "0.9.44", Anything in the logs that might be useful for us? Denne feilen stammer fra en tilpasset integrasjon. Logger: homeassistant Source: custom_components/easee/controller.py:421 Integration: Easee EV Charger (documentation, issues) First occurred: 13:47:21 (152 occurrences) Last logged: 16:18:08 Error doing job: Task exception was never retrieved Traceback (most recent call last): File "/config/custom_components/easee/controller.py", line 421, in refresh_sites_state charger_data.state = site_state.get_charger_state(charger_id, raw=True) File "/usr/local/lib/python3.10/site-packages/pyeasee/site.py", line 128, in get_charger_state return ChargerState(charger_data["chargerState"], raw) File "/usr/local/lib/python3.10/site-packages/pyeasee/charger.py", line 56, in __init__ data = { TypeError: 'NoneType' object is not a mapping Additional information I have tried restart HA and uninstall and install the component with no luck. This is the same issue as: https://github.com/fondberg/easee_hass/issues/208 Solved in https://github.com/fondberg/easee_hass/pull/210
gharchive/issue
2022-09-06T14:21:39
2025-04-01T06:38:43.235925
{ "authors": [ "olalid", "thores81" ], "repo": "fondberg/easee_hass", "url": "https://github.com/fondberg/easee_hass/issues/209", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
291546788
pyftsubset: Dotted I doesn't get subset I don't know if this was reported or I am doing something wrong but. I'm using pyftsubset to subset some characters from an otf font (I don't believe it matters which font) but one character (dotted I) is not getting subset: https://www.fileformat.info/info/unicode/char/0130/index.htm the only way the character would be subset is if I do --unicodes='*', but that is not what I want... I if do --unicodes=U+0130 it just doesn't get through ( everything else works) What is interesting is that I've tried to run the command with --verbose pyftsubset font.otf --output-file=newfont.otf --unicodes=U+0130 --verbose Text: '' Unicodes: [304] Glyphs: [] Gids: [] maxp pruned cmap pruned post pruned CFF pruned GPOS pruned GSUB pruned kern dropped name pruned Added .notdef to subset Closing glyph list over 'GSUB': 2 glyphs before Glyph names: ['.notdef', 'Idotaccent'] Glyph IDs: [0, 259] Closed glyph list over 'GSUB': 2 glyphs after Glyph names: ['.notdef', 'Idotaccent'] Glyph IDs: [0, 259] Retaining 2 glyphs head subsetting not needed hhea subsetting not needed maxp subsetting not needed OS/2 subsetting not needed cmap subsetted post subsetted CFF subsetted GPOS subsetted GSUB subsetted hmtx subsetted name subsetting not needed OS/2 Unicode ranges pruned: [2] CFF pruned GPOS pruned GSUB pruned Input font: 109192 bytes: font.otf Subset font: 1096 bytes: newfont.otf And it looks ok, but if I type the character in with the font it doesn't get shown, like there is no glyph for it while if I try it on the original (input) font it works ok. Am I missing something? This aspect is not implemented in the subsetter. @behdad should there be an issue to track this? I already fixed it.
gharchive/issue
2018-01-25T12:04:03
2025-04-01T06:38:43.288363
{ "authors": [ "O7JaniB", "behdad", "miguelsousa" ], "repo": "fonttools/fonttools", "url": "https://github.com/fonttools/fonttools/issues/1162", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
265566378
[ttLib] add rsb attribute to _TTGlyph As discussed in #1074. More than happy to add a test if needed. well, it's good that we have some tests already See https://travis-ci.org/fonttools/fonttools/jobs/288179180#L2939 sometime a glyf Glyph does not have xMax (empty glyphs). replace self._glyph.xMax with self.glyph._xMax if hasattr(self._glyph, "xMax") else 0 or similar. @anthrotype thanks, I've forced pushed the fix Hm, I wonder... When the xMax is 0 because the glyph has no contours nor components, its right side bearing is also equal to 0, or is it equal to the advance width? Also, I think this won't work with CFF charstrings, does it? The latter don't have xMax or other bbox attributes I'm fairly sure this implementation of rsb is not correct when lsb != xMin. I don't think CFF charstrings have an .lsb attr even... @justvanrossum Good point. I'll take a look now. Like @anthrotype, I'm not super convinced of this addition. It's a higher level bit of info, which suggests it should also work with charstrings, which it cannot. @justvanrossum @anthrotype Thank you for both raising your valid concerns. Yeah, side-bearings seem to be a concept of font editors. Closing. Actually, I was wrong, CFF-based fonts still must have an hmtx table, so the glyph objects do have an lsb attribute. That said, the main reason that the glyph object carries the lsb around is so it can calculate an x offset for drawing a TT glyph to a pen.
gharchive/pull-request
2017-10-15T11:53:46
2025-04-01T06:38:43.293599
{ "authors": [ "anthrotype", "justvanrossum", "m4rc1e" ], "repo": "fonttools/fonttools", "url": "https://github.com/fonttools/fonttools/pull/1075", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
2002441140
[interpolatable] Return master indices instead of names Using names to refer to masters is weird. Return the index and the user can look up the name. This changes the API in two ways: test and test_gen do not accept a names parameter anymore. If needed I can put it back there unused. master, master1, master2 in the problem reports are now indices, not names. If this is undesirable, I can add separate master_idx, master1_idx, master2_idx instead. Maybe that's better. Nevermind. I'll make a non-breaking change. PTAL!
gharchive/pull-request
2023-11-20T15:20:58
2025-04-01T06:38:43.296176
{ "authors": [ "behdad" ], "repo": "fonttools/fonttools", "url": "https://github.com/fonttools/fonttools/pull/3346", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1391416351
Pushing sequential packages doesn't show the name of a package currently being deployed Is your feature request related to a problem? Please describe. Deploying a large number of packages can take a long time. Using pushPackageDirectoriesSequentially set to true makes all packages to be deployed one by one. When we have more than 40 packages inside sfdx-project.json, it's easy to get lost which package is currently being deployed. What are you trying to do I would like to see the name of a package currently being deployed. Describe the solution you'd like Instead of seeing the following console output: *** Pushing with SOAP API v54.0 *** DEPLOY PROGRESS | ████████████████████████████████████████ | 251/251 Components *** Pushing with SOAP API v54.0 *** DEPLOY PROGRESS | ████████████████████████████████████████ | 3453/3453 Components *** Pushing with SOAP API v54.0 *** DEPLOY PROGRESS | ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ | 0/2345 Components I would like to see this for example: *** Pushing pkg-x with SOAP API v54.0 *** DEPLOY PROGRESS | ████████████████████████████████████████ | 251/251 Components *** Pushing pkg-y with SOAP API v54.0 *** DEPLOY PROGRESS | ████████████████████████████████████████ | 3453/3453 Components *** Pushing pkg-z with SOAP API v54.0 *** DEPLOY PROGRESS | ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ | 0/2345 Components Describe alternatives you've considered I can only wait & count packages, which one is currently deployed, and compare it with order in a sfdx-project.json file. Marking this as help wanted in case you or anyone else wants to add this feature. How I see this should work: 1st scenario: no pushPackageDirectoriesSequentially defined, only one pkg: nothing changes, you know there's only one pkg to deploy. 2nd scenario: pushPackageDirectoriesSequentially is set to true, multiple pkg will be deployed: the output should look like what @pznmc suggest so it's clear to the user which pkg is being deployed: *** Pushing pkg-x with SOAP API v54.0 *** DEPLOY PROGRESS | ████████████████████████████████████████ | 251/251 Components *** Pushing pkg-y with SOAP API v54.0 *** DEPLOY PROGRESS | ████████████████████████████████████████ | 3453/3453 Components *** Pushing pkg-z with SOAP API v54.0 *** DEPLOY PROGRESS | ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ | 0/2345 Components technical details There's a variable in force:source:push to detect if it's doing a sequential deploy, use it to detect which msg to render: https://github.com/salesforcecli/plugin-source/blob/main/src/commands/force/source/push.ts#L80 you'll need to update the getVersionMessage func to accept a pkg name (string) as an argument and return the correct msg: https://github.com/salesforcecli/plugin-source/blob/main/src/commands/force/source/push.ts#L108 https://github.com/salesforcecli/plugin-source/blob/main/src/deployCommand.ts#L234 Also use this.project.getSfProjectJson().getUniquePackageNames() to get the pkg names in the order they are defined. The library that deploys the source returns a "Component Set` of metadata per pkg, the order of the component sets returned will be the same as you have pkgs defined in the project so you can rely on that to assign the each pkg name to a component set here https://github.com/salesforcecli/plugin-source/blob/main/src/commands/force/source/push.ts#L90 1st componentSet corresponds to the 1st pkg returned by getUniquePackageNames(), etc. feel free to post here if you have any questions.
gharchive/issue
2022-09-29T19:56:47
2025-04-01T06:38:43.321067
{ "authors": [ "cristiand391", "pznmc" ], "repo": "forcedotcom/cli", "url": "https://github.com/forcedotcom/cli/issues/1731", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
2624800426
Unable to Deploy or Retrieve data/files from the org through VS Code Summary: For my authorized org for a given project, when I right click on my project/lwc/apex class, and select Deploy source to org, a pop up comes up stating that the command is running but it keeps running forever but nothing gets deployed. Steps To Reproduce: Authorize an org. Right click any component/project that you wish to deploy and click SFDX : Deploy source to org. The pop up comes us saying Running SFDX: Deploy Source to Org and it run forever. In the command-line output as well, it doesn't indicates that the deployment has started but it is in pending state for a long time. Expected result It should deploy my selected changes to my authorized org. Actual result The command/action hangs and runs forever and nothing gets deployed. Salesforce Extension Version in VS Code: 57.6.0 SFDX CLI Version: @salesforce/cli/2.16.7 win32-x64 node-v20.8.1 OS and version: Windows 10 VS Code version: 1.94.1 ( user setup) @Radha-4235 from the error I see your CLI install is trying to import an imcompatible version of ansi-escapes (we use v4, latest ones are ESM which cause the error you see). Can you try do a full uninstall of the CLI then install it again?: https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_setup_uninstall.htm
gharchive/issue
2024-10-11T10:51:49
2025-04-01T06:38:43.325696
{ "authors": [ "Radha-4235", "cristiand391" ], "repo": "forcedotcom/cli", "url": "https://github.com/forcedotcom/cli/issues/3088", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
611225147
force:org:list Cannot read property 'getUsername' of undefined Summary force:org:list fails. $ sfdx force:org:list ERROR running force:org:list: Cannot read property 'getUsername' of undefined Steps To Reproduce: Update cli $ sfdx update sfdx-cli: Updating CLI from 7.53.0-839fc82926 to 7.56.1-2773b53bf5... done sfdx-cli: Updating CLI... done warning "@oclif/plugin-autocomplete > @oclif/command@1.5.19" has unmet peer dependency "@oclif/plugin-help@^2". sfdx-cli: Updating plugins... done sfdx force:org:list Actual result ERROR running force:org:list: Cannot read property 'getUsername' of undefined Additional information Feel free to attach a screenshot. SFDX CLI Version(to find the version of the CLI engine run sfdx --version): sfdx-cli/7.56.1-2773b53bf5 linux-x64 node-v10.15.3 SFDX plugin Version(to find the version of the CLI plugin run sfdx plugins --core) @oclif/plugin-autocomplete 0.1.5 @oclif/plugin-commands 1.2.3 (core) @oclif/plugin-help 2.2.3 (core) @oclif/plugin-not-found 1.2.3 (core) @oclif/plugin-plugins 1.7.9 (core) @oclif/plugin-update 1.3.9 (core) @oclif/plugin-warn-if-update-available 1.7.0 (core) @oclif/plugin-which 1.0.3 (core) @salesforce/sfdx-trust 3.0.7 (core) analytics 1.7.1 (core) generator 1.1.2 (core) salesforcedx 48.12.1 ├─ @salesforce/sfdx-plugin-lwc-test 0.1.5 ├─ salesforcedx-templates 48.10.0 └─ salesforce-alm 48.12.0 sfdx-cli 7.56.1 (core) OS and version: Distributor ID: LinuxMint Description: Linux Mint 19.1 Tessa Release: 19.1 Codename: tessa 4.15.0-20-generic Looks like a regression from the org:list updates. We'll fix this asap. It will help us greatly if you could run the command again appending --dev-debug and post the stack trace. Thanks in advance! Hello @shetzel thanks for your quick reply. sfdx:core TRACE Setup child 'OrgListCommand' logger instance +0ms sfdx:force:org:list init version: @oclif/command@1.5.19 argv: [] +0ms sfdx:OrgListCommand INFO Running command [OrgListCommand] with flags [{"loglevel":"warn"}] and args [{}] +0ms sfdx:core TRACE Setup child 'AuthInfo' logger instance +0ms sfdx:core TRACE Setup child 'crypto' logger instance +0ms sfdx:crypto DEBUG retryStatus: undefined +0ms sfdx:core TRACE Setup child 'keyChain' logger instance +1ms sfdx:keyChain DEBUG platform: linux +0ms sfdx:AuthInfo INFO Updated auth info for username: aspectworks@jenkins.com +0ms ERROR running force:org:list: Cannot read property 'getUsername' of undefined *** Internal Diagnostic *** TypeError: Cannot read property 'getUsername' of undefined at contents.reduce (/home/ondrej/.local/share/sfdx/node_modules/salesforce-alm/dist/lib/org/orgListUtil.js:25:25) at Array.reduce (<anonymous>) at Function.readLocallyValidatedMetaConfigsGroupedByOrgType (/home/ondrej/.local/share/sfdx/node_modules/salesforce-alm/dist/lib/org/orgListUtil.js:24:36) Outer stack: at Function.wrap (/home/ondrej/.local/share/sfdx/node_modules/salesforce-alm/node_modules/@salesforce/command/node_modules/@salesforce/core/lib/sfdxError.js:151:27) at OrgListCommand.catch (/home/ondrej/.local/share/sfdx/node_modules/salesforce-alm/node_modules/@salesforce/command/lib/sfdxCommand.js:255:67) ****** Workaround with docker: docker run --rm -t -e \"TERM=xterm-256color\" -v /home/ondrej/.sfdx:/root/.sfdx salesforce/salesforcedx:7.54.4-slim sfdx force:org:list Just change the path /home/ondrej/.sfdx to your .sfdx directory. Seems to be fixed in 7.58.2-937f666ed4
gharchive/issue
2020-05-02T16:26:36
2025-04-01T06:38:43.334668
{ "authors": [ "kratoon3", "shetzel" ], "repo": "forcedotcom/cli", "url": "https://github.com/forcedotcom/cli/issues/388", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
1211431856
Sm/timeout id in sfdx error What does this PR do? throws an sfdxError with data property for id on timeout. I'm making a separate WI for SDR to use error/messages from core rather than its own framework. What issues does this PR fix or reference? @W-10978703@ for QA...SDR is emitting error.code 1 for backward compatibility. I think the logic on plugin-source should set incompletes to 69 based on the mdapi status...but that's worth verifying The failing NUTs passed locally when I ran them. Manual testing looked good as well.
gharchive/pull-request
2022-04-21T18:55:25
2025-04-01T06:38:43.336783
{ "authors": [ "mshanemc", "shetzel" ], "repo": "forcedotcom/source-deploy-retrieve", "url": "https://github.com/forcedotcom/source-deploy-retrieve/pull/614", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
2068457095
Haskell-FibonacciNo Pull Request Type What kind of change does this PR introduce? [ ] Solved an issue/task added fibonacci.hs Merged This is an automated message from Fork, Commit, Merge [BOT]. Thank you for your contribution! Your pull request has been merged. The files have been reset for the next contributor. What's next? If you're looking for more ways to contribute, I invite you to check out our forkcommitmerge.io website repository. The repository contain real issues that you can help to resolve or create some of your own if you see any bugs or want to add new features to the site, etc. You can also check out the Influences section in the README to find more projects similar to this one. Also please leave a star to this project if you feel it helped you, i would really appreciate it. I look forward to seeing your contributions!
gharchive/pull-request
2024-01-06T07:45:52
2025-04-01T06:38:43.360371
{ "authors": [ "izumigoto", "nikohoffren" ], "repo": "fork-commit-merge/fork-commit-merge", "url": "https://github.com/fork-commit-merge/fork-commit-merge/pull/1942", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2447264073
removing 404 http://coq-blog.clarus.me/beginning-of-verification-for-the-parsing-of-smart-contracts.html is 404 OK, thanks for the fix!
gharchive/pull-request
2024-08-04T19:18:31
2025-04-01T06:38:43.409189
{ "authors": [ "clarus", "jmikedupont2" ], "repo": "formal-land/coq-of-ocaml", "url": "https://github.com/formal-land/coq-of-ocaml/pull/232", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
810565374
3.0.0-next.3 => @3.0.0-next.4 - focus jumping to end of input on edit Bug report This is admittedly will be a half-hearted bug report - but since it's on the next/beta branch I figured you'd want it reported anyways. I've been unable to reproduce in one of your codebox sandboxes - but am experiencing within our app and have been able to narrow it down to this release below. https://github.com/formium/formik/compare/formik@3.0.0-next.3...formik@3.0.0-next.4 I've taken a look at the source and cannot discern anything that stands out. Current Behavior Type: "Brooks was here" Move cursor to after "Brooks" Type: "hello" Result is: "Brooksh was hereello" Expected behavior Should be: "Brookshello was here" Reproducible example Suggested solution(s) Additional context We are using the new FastField component as recommended. Will continue to try to reproduce in a sandbox and attach here if narrowed down. Your environment Software Version(s) Formik React TypeScript Browser npm/Yarn Operating System This was a user error (me) - after refactoring all our formik fields to utilize the new apis and removing the function call inside of <Form> i.e. <Form>{((props) => { }))} </Form> the issue went away. Very happy with the refactor - if I could just get isDirty working, I'd be thrilled. Closing this issue I noticed the same, this bug wasn't on 3.0.0-next.7 versoin but occured again on v3.0.0-next.8
gharchive/issue
2021-02-17T21:50:57
2025-04-01T06:38:43.458876
{ "authors": [ "followbl", "valstu" ], "repo": "formium/formik", "url": "https://github.com/formium/formik/issues/3050", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
95302277
How can I add for example 'input-lg' bootstrap class to my input? I would like to use input with 'input-lg' bootstrap class, can I override somewhere? Thanks. Yes! http://angular-formly.com/#/example/custom-types/custom-templates http://angular-formly.com/#/example/custom-types/extending-types Going to go ahead and close this. If you have further questions, please see http://help.angular-formly.com Thanks @benoror!
gharchive/issue
2015-07-15T22:15:10
2025-04-01T06:38:43.461552
{ "authors": [ "attilacsanyi", "benoror", "kentcdodds" ], "repo": "formly-js/angular-formly-templates-bootstrap", "url": "https://github.com/formly-js/angular-formly-templates-bootstrap/issues/39", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
257322592
Error "has no properties in common with type 'FormlyFieldConfig'" with Angular 4.4 I'm submitting a ... (check one with "x") [x] bug report => search github for a similar issue or PR before submitting [ ] feature request [x] support request Current behavior I just copied the instructions from the README 1:1 into my application and started the app. The complete error message is: ERROR in .../ui/src/app/routes/users/users/users.component.ts (17,5): Type '{ className: string; fieldGroup: ({ className: string; key: string; type: string; templateOptions...' has no properties in common with type 'FormlyFieldConfig'. Expected behavior Expected to get a form ;) Minimal reproduction of the problem with instructions As i said, just copied the instructions from the README Please tell us about your environment: Ubuntu 16.04.3 LTS npm 5.4.0 Angular version: 4.4.0-RC.0 Language: Typescript: 2.5.2 Args, solved it myself, sorry still learning angular2+/typescript. Error was the type definition for userFields. Instead of userFields: FormlyFieldConfig = ... it should be userFields: FormlyFieldConfig[] = ... Maybe this should be reflected in the README
gharchive/issue
2017-09-13T09:55:27
2025-04-01T06:38:43.465545
{ "authors": [ "MassiveHiggsField" ], "repo": "formly-js/ng-formly", "url": "https://github.com/formly-js/ng-formly/issues/512", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1869557482
test: fix failing tests due to hardcoded pkg versions Fix failing tests on main due to hardcoded package versions. @colevscode this fixes the failing tests on main. I don't think we need a changeset or a version bump.
gharchive/pull-request
2023-08-28T11:19:25
2025-04-01T06:38:43.466701
{ "authors": [ "bhongy" ], "repo": "formspree/formspree-js", "url": "https://github.com/formspree/formspree-js/pull/56", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
271177483
评论开启出错 当我开启disqus评论 他就这样 然后我hexo d部署上去直接GG,访问网站404 不清楚是什么情况。望解答 缩进不合格,请通过一个好的编辑器检查你的配置文件并严格按照文档配置。 On Sat, Nov 4, 2017 at 4:57 PM, 初遇 notifications@github.com wrote: 当我开启disqus评论 [image: 2] https://user-images.githubusercontent.com/30603407/32403956-fc9095ca-c180-11e7-8258-19fcb65555d2.png 他就这样 [image: 1] https://user-images.githubusercontent.com/30603407/32403945-d8e1234c-c180-11e7-91ff-827b7b52fb41.png 然后我hexo d部署上去直接GG,访问网站404 不清楚是什么情况。望解答 — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/forsigner/fexo/issues/100, or mute the thread https://github.com/notifications/unsubscribe-auth/AP1d4zUP0E07frkvy7F-e9psT-K0M5cGks5szCbngaJpZM4QR8Jo . -- Send From My Google Mail Contact Me: Twitter:@PotatoOnline Facebook:Find"Yang Yuguang" (yang.yuguang.73@facebook.com) QQ:920337808
gharchive/issue
2017-11-04T08:57:10
2025-04-01T06:38:43.497132
{ "authors": [ "ChaBug", "kmahyyg" ], "repo": "forsigner/fexo", "url": "https://github.com/forsigner/fexo/issues/100", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1978407175
Initial Review Descriptions: Add PR descriptions here Fix: Add fix/changes here LGTM 👍
gharchive/pull-request
2023-11-06T06:43:43
2025-04-01T06:38:43.502616
{ "authors": [ "cs-shivaji-kolape", "swapnil-spryiq" ], "repo": "fortinet-fortisoar/connector-security-scorecard", "url": "https://github.com/fortinet-fortisoar/connector-security-scorecard/pull/1", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1829563321
Incorrect order of record @ids for Reset Scenario https://github.com/fortinet-fortisoar/solution-pack-phishing-email-response/blob/2e79e6f820f7e4823d15ae7c8674caa848abd64e/playbooks/02 - Use Case - Phishing Email Response/Scenario - Generate Phishing Email Alert.json#L133C117-L133C117 Issue is not reproducible the the latest version of the soc simulator solution pack
gharchive/issue
2023-07-31T16:00:56
2025-04-01T06:38:43.504136
{ "authors": [ "dcspille" ], "repo": "fortinet-fortisoar/solution-pack-phishing-email-response", "url": "https://github.com/fortinet-fortisoar/solution-pack-phishing-email-response/issues/37", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
136172344
Client generated ID's I am having a problem adding a new record when the responsibility is on the client to generate the ID. I have the following body of a POST request: { "data": { "type": "markers", "id": "pace_avg", "attributes": { "name": "Average Pace", "abbrev": "avg pace", "desc": "the average pace achieved during the session", "type": "exercise", "sub_type": "linear-sport" } } } The error I get back is a 400 "the request body is invalid". The spec says that client generated ID's "may" be supported but if it does not then the error should be 403. Having looked at the code I think the aim is to support this -- although having an id in the URL causes a different error -- but I wanted to check that that is the case. In my case I'm importing data and this client generated scheme is unique (hence no UUID, etc.). Ok the problem seems to be related to inflection. It's almost surely user error but I'm unsure how to correct. In JSON-API's index.js#parseCreate it has identified the "type" as "marker" which is fine but in the contextRequest it is defined as "markers". So is this a bug or not? No. I had some bad data that was the underlying cause.
gharchive/issue
2016-02-24T20:05:38
2025-04-01T06:38:43.519343
{ "authors": [ "0x8890", "ksnyde" ], "repo": "fortunejs/fortune-json-api", "url": "https://github.com/fortunejs/fortune-json-api/issues/17", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
282717073
fix small_test() Fixes # Checklist [x] I have read the Contribution & Best practices Guide and my PR follows them. [x] My branch is up-to-date with the Upstream master branch. [x] I have added necessary documentation (if appropriate) Changes proposed in this pull request: fix small_test() to align with https://github.com/fossasia/query-server/blob/master/app/scrapers/generalized.py#L37 @vaibhavsingh97 Is something more needed on this PR? @cclauss Please follow best practices, Please open issue and then send PR. Rest looks good Done. @dgarvit Please review this proposed change.
gharchive/pull-request
2017-12-17T19:26:15
2025-04-01T06:38:43.589175
{ "authors": [ "cclauss", "vaibhavsingh97" ], "repo": "fossasia/query-server", "url": "https://github.com/fossasia/query-server/pull/398", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2341687844
@@["!Here's Gaa To Watch!"]#!! Laois vs Offaly Live Coverage Free On final Gaa 08 June 2024 # Laois v Offaly: Everything You Need To Know About The Joe McDonagh Cup Final Laois v Offaly: Everything You Need To Know About The Joe McDonagh Cup Final Finn Duffy 🔴➤ ►🌍📺📱👉 gaa finle 🔴➤ ►🌍📺📱👉 gaa finle By Finn Duffy Jun 08, 2024 12:15 PM Share this article Facebook Share Twitter Share Twitter Share Twitter Share Twitter Share Laois are set to take on their neighbours Offaly this weekend in the final of the Joe McDonagh Cup as both sides look to grab hurling's second-tier competition and promotion to the provincial championships. Here's everything you need to know about this years Joe McDonagh Cup final Laois v Offaly. The two sides began their championship campaign against each other in Portlaoise in April, with the O'Moore County getting the better of the Faithful County despite Offaly holding a 0-21 to 0-15 lead with less than 20 minutes to go. Laois midfielder Paddy Purcell would grab two late goals, including one in the last minute, to win his side the match 2-21 to 0-24. READ HERE: The 10 Best Hurlers In Ireland Under The Age Of 20 In 2024 READ HERE: McManus Calls For Championship Restructure After Carlow Relegation Laois would kick on with the momentum gained from the win and would subsequently batter batter Meath 7-29 to 1-16 in round two in Trim. Willie Maher's men would then travel to Austin Stack Park to face Kerry, where they would defeat the Kingdom 1-25 to 0-18. The O'Moore County booked their place in the Joe McDonagh final in a dominant 4-31 to 0-17 win over Down at home. In the last day of fixtures, Laois travelled to Westmeath where they would lose for the only time in the round-robin, with the Lake men getting a 2-26 to 0-16 win in Mullingar. Despite this, Laois would still finish the round-robin at the top spot. Meanwhile Offaly would bounce back quickly from their opening day defeat. They would welcome Westmeath to O'Connor Park in round two where the Faithful County would win 2-23 to 1-20 despite a red card to captain Jason Sampson within seconds of throw-in. Round three would see Johnny Kelly's side cruise past Meath 5-31 to 3-16 in Trim. An impressive win 3-24 to 0-15 at home to Kerry in round four was followed by a round five win away to Down in Ballycran. Despite a late comeback effort by the home side, Offaly would win 5-23 to 3-25 in the end to round-robin second and book their place in the final. ss ### 📺📱👉🥊 𝐂𝐋𝐈𝐂𝐊 𝐇𝐄𝐑𝐄 𝐎𝐍𝐋𝐈𝐍𝐄 𝐋𝐈𝐕𝐄 𝐒𝐓𝐑𝐄𝐀𝐌 ### 📺📱👉🥊 𝐂𝐋𝐈𝐂𝐊 𝐇𝐄𝐑𝐄 𝐎𝐍𝐋𝐈𝐍𝐄 𝐋𝐈𝐕𝐄 𝐒𝐓𝐑𝐄𝐀𝐌 ### 📺📱👉🥊 𝐂𝐋𝐈𝐂𝐊 𝐇𝐄𝐑𝐄 𝐎𝐍𝐋𝐈𝐍𝐄 𝐋𝐈𝐕𝐄 𝐒𝐓𝐑𝐄𝐀𝐌 ### 📺📱👉🥊 𝐂𝐋𝐈𝐂𝐊 𝐇𝐄𝐑𝐄 𝐎𝐍𝐋𝐈𝐍𝐄 𝐋𝐈𝐕𝐄 𝐒𝐓𝐑𝐄𝐀𝐌 ### 📺📱👉🥊 𝐂𝐋𝐈𝐂𝐊 𝐇𝐄𝐑𝐄 𝐎𝐍𝐋𝐈𝐍𝐄 𝐋𝐈𝐕𝐄 𝐒𝐓𝐑𝐄𝐀𝐌 ### 📺📱👉🥊 𝐂𝐋𝐈𝐂𝐊 𝐇𝐄𝐑𝐄 𝐎𝐍𝐋𝐈𝐍𝐄 𝐋𝐈𝐕𝐄 𝐒𝐓𝐑𝐄𝐀𝐌 ### 📺📱👉🥊 𝐂𝐋𝐈𝐂𝐊 𝐇𝐄𝐑𝐄 𝐎𝐍𝐋𝐈𝐍𝐄 𝐋𝐈𝐕𝐄 𝐒𝐓𝐑𝐄𝐀𝐌 ### 📺📱👉🥊 𝐂𝐋𝐈𝐂𝐊 𝐇𝐄𝐑𝐄 𝐎𝐍𝐋𝐈𝐍𝐄 𝐋𝐈𝐕𝐄 𝐒𝐓𝐑𝐄𝐀𝐌 ☝️ ☝️ ☝️
gharchive/issue
2024-06-08T14:43:43
2025-04-01T06:38:43.645430
{ "authors": [ "jokar2025", "rajukar002", "rtwegthg" ], "repo": "foundation/foundation-sites", "url": "https://github.com/foundation/foundation-sites/issues/13127", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2342366104
^^The Secret to Getting Free Robux Revealed Generator Tips and Tricks [ ZXZ] ˏˋ°•*⁀➷The Secret to Getting Free Robux Revealed Generator Tips and Tricks [ ZXZ] Unlock Unlimited Free Robux Codes: The Ultimate Guide to Dominating Roblox Without Spending a Dime! Are you tired of constantly grinding in Roblox to earn enough Robux for your dream items and upgrades? Do you want to level up your gaming experience without breaking the bank? Look no further, because we have the ultimate solution for you - free Robux codes! 🔴📺📱👉 Click here free robux codes 🔴📺📱👉 Click here free robux codes In this comprehensive guide, we will reveal the top secret methods to unlocking unlimited free Robux codes that will revolutionize your Roblox gameplay. Say goodbye to the days of empty wallets and hello to a world of endless possibilities in the Roblox universe. But wait, how exactly can you get your hands on these coveted free Robux codes? It's simple - all you need to do is follow our step-by-step instructions and you'll be rolling in Robux in no time. From completing quick and easy surveys to participating in sponsored offers, there are a plethora of legitimate ways to earn free Robux without spending a single penny. Not convinced yet? Well, how about this - we have insider tips and tricks from top Roblox players who have mastered the art of earning free Robux. Learn from the best and take your Roblox game to the next level with their expert advice and strategies. But that's not all! We also have exclusive access to special events and promotions where you can snag free Robux codes before anyone else. Stay ahead of the game and stay tuned to our updates for the latest opportunities to score big in Roblox. So what are you waiting for? Stop wasting your hard-earned money on Robux and start earning them for free today. With our ultimate guide to free Robux codes, you'll never have to worry about running out of Robux again. Get ready to dominate Roblox like never before and unleash your full gaming potential. Click now to unlock the secrets to unlimited free Robux codes and become a Roblox legend!" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux . . . . . . . . 🔴📺📱👉 Click here Free Robux 🔴📺📱👉 Click here Free Robux
gharchive/issue
2024-06-09T16:20:42
2025-04-01T06:38:43.919355
{ "authors": [ "Charlesnsievers46373", "ghost" ], "repo": "foundation/foundation-sites", "url": "https://github.com/foundation/foundation-sites/issues/13671", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1309930296
fix: reduce CALLER balance before executing tests Closes https://github.com/foundry-rs/foundry/issues/2390 Ran this against some repos locally without issues, want to make sure CI passes before merging though Failure looks unrelated to this change?
gharchive/pull-request
2022-07-19T19:04:24
2025-04-01T06:38:43.945012
{ "authors": [ "mds1", "onbjerg" ], "repo": "foundry-rs/foundry", "url": "https://github.com/foundry-rs/foundry/pull/2393", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2459769694
Kineticist Single Gate 2 Action Elemental Blast not getting con mod or impulse junction at level 1 Hello, one of players is playing as a single gate fire kineticist, and we noticed today that switching to two actions on elemental blast does not change the damage to d8s and does not add the CON modifier. I have disabled all modules and completely rebuilt the character, and the issue persists. Just to make sure, I've reread the class entry and the 2-action version of EB does qualify for this impulse junction. The status bonus is unrelated to that junction, but I imagine there's just something wrong with a rule element somewhere. Other information about the character is Awakened Animal Ancestry, Running Animal Heritage, Magical Experiment Background (thoughtsense). Foundry 12.330 and PF2e 6.2.1 Pathmuncher? Working fine for me If this actor was initially imported with Pathmuncher you will want to make a new actor entirely and build from scratch without Pathmuncher. Also, double check that your player actually has two actions set for the blast Yeah I think she did use Pathmuncher initially. When I remade the character from scratch on a new actor instead of a duplicate, it worked fine. Thanks for telling me this and giving me another reason to tell them I'm uninstalling Pathmuncher lol.
gharchive/issue
2024-08-11T21:31:40
2025-04-01T06:38:43.948083
{ "authors": [ "TikaelSol", "mgoldstein322", "stwlam" ], "repo": "foundryvtt/pf2e", "url": "https://github.com/foundryvtt/pf2e/issues/15998", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2472130412
Damage formula localization incorrect Hi there, looks like the damage formula default label for inline rolls currently looks rather strange if () are used. That's how we localize persistent damage: That's how the inle roll looks like: @Damage[(1d4 + @item.system.damage.dice)[persistent,cold]] That's how the default label looks like: Take a look at the ( and ). There is one ( missing at the beginning of the label and one ) missing at the end.
gharchive/issue
2024-08-18T20:24:40
2025-04-01T06:38:43.950435
{ "authors": [ "MSAbaddon" ], "repo": "foundryvtt/pf2e", "url": "https://github.com/foundryvtt/pf2e/issues/16107", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2001350672
Restore Paladin REs to the Combined Shining Oath Feat Closes https://github.com/foundryvtt/pf2e/issues/11597. Also re-input the feat's text from CRBv4 printing and put the benefits for the various causes in the order of that description. Check errata Eye r dum and missed that; still rearranged the order of the various bonuses.
gharchive/pull-request
2023-11-20T04:38:03
2025-04-01T06:38:43.952166
{ "authors": [ "avagdumortesin", "stwlam" ], "repo": "foundryvtt/pf2e", "url": "https://github.com/foundryvtt/pf2e/pull/11616", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1537210420
Ambiguous wording in the MCAP File Format Specification The following wording in the specification of a Chunk is a bit ambiguous - All messages in the chunk must reference channels recorded earlier in the file (in a previous chunk or earlier in the current chunk). It may be interpreted as "all channels must be in a chunk (previous or current)". However, as far as I'm aware, this is not necessary. Channels can be logged standalone outside a chunk, in the Data section. Please correct me if I'm wrong. Thanks for the report @sanjaynarayanan-brt - the specification currently allows channel, schema, or message records both in chunks and directly in the data section within the same MCAP. however, most MCAP reader implementations won't handle this correctly. I will amend the spec to disallow this case. @james-rms Thanks! I'm not sure what MCAP reader runs under the hood in Foxglove Studio (specifically for plots), but we write channels and schemas directly into the data section and put messages into chunks, and that seems to work great with plots.
gharchive/issue
2023-01-18T00:20:48
2025-04-01T06:38:43.965947
{ "authors": [ "james-rms", "sanjaynarayanan-brt" ], "repo": "foxglove/mcap", "url": "https://github.com/foxglove/mcap/issues/792", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
97198714
readability-api update to last version which use requests_oauthlib to be python3 compliant - need to update my_readability.py to be able to connect to the readability service again. 6e12fb3b437980bac4b12361616dc950a9cd4faa
gharchive/issue
2015-07-25T06:09:58
2025-04-01T06:38:43.969978
{ "authors": [ "foxmask" ], "repo": "foxmask/django-th", "url": "https://github.com/foxmask/django-th/issues/98", "license": "bsd-3-clause", "license_type": "permissive", "license_source": "bigquery" }
184686748
hw-* Ping @newhoggy I'm not sure which hw package is causing this issue but it seems that trying to build with hw-string-parse-0.0.0.3 instead of 0.0.0.2 fails. > /tmp/stackage-build8$ stack unpack hw-succinct-0.0.0.14 Unpacked hw-succinct-0.0.0.14 to /tmp/stackage-build8/hw-succinct-0.0.0.14/ > /tmp/stackage-build8/hw-succinct-0.0.0.14$ runghc -clear-package-db -global-package-db -package-db=/var/stackage/work/builds/nightly/pkgdb Setup configure --package-db=clear --package-db=global --package-db=/var/stackage/work/builds/nightly/pkgdb --libdir=/var/stackage/work/builds/nightly/lib --bindir=/var/stackage/work/builds/nightly/bin --datadir=/var/stackage/work/builds/nightly/share --libexecdir=/var/stackage/work/builds/nightly/libexec --sysconfdir=/var/stackage/work/builds/nightly/etc --docdir=/var/stackage/work/builds/nightly/doc/hw-succinct-0.0.0.14 --htmldir=/var/stackage/work/builds/nightly/doc/hw-succinct-0.0.0.14 --haddockdir=/var/stackage/work/builds/nightly/doc/hw-succinct-0.0.0.14 --flags= Configuring hw-succinct-0.0.0.14... Warning: 'ghc-options: -rtsopts' has no effect for libraries. It should only be used for executables. Warning: 'ghc-options: -with-rtsopts' has no effect for libraries. It should only be used for executables. > /tmp/stackage-build8/hw-succinct-0.0.0.14$ runghc -clear-package-db -global-package-db -package-db=/var/stackage/work/builds/nightly/pkgdb Setup build Building hw-succinct-0.0.0.14... Preprocessing library hw-succinct-0.0.0.14... [1 of 1] Compiling HaskellWorks.Data.Succinct ( src/HaskellWorks/Data/Succinct.hs, dist/build/HaskellWorks/Data/Succinct.o ) src/HaskellWorks/Data/Succinct.hs:10:1: error: Failed to load interface for ‘HaskellWorks.Data.Succinct.BalancedParens’ Perhaps you meant HaskellWorks.Data.BalancedParens (needs flag -package-key hw-balancedparens-0.1.0.0) Use -v to see a list of the files searched for. src/HaskellWorks/Data/Succinct.hs:11:1: error: Failed to load interface for ‘HaskellWorks.Data.Succinct.NearestNeighbour’ Use -v to see a list of the files searched for. src/HaskellWorks/Data/Succinct.hs:12:1: error: Failed to load interface for ‘HaskellWorks.Data.Succinct.RankSelect’ Use -v to see a list of the files searched for. curators@stk-build-i-2a9f06b4:~/stackage/automated$ It wasn't (only) hw-string-select, I ended up holding back all of the packages to the ones in the previous nightly: - hw-bits < 0.4 - hw-conduit < 0.1 - hw-prim < 0.4 - hw-rankselect < 0.5 - hw-string-parse < 0.0.0.3 I was doing some refactoring yesterday that included breaking changes. How might I fix this issue and prevent it from happening in future when I need to make breaking changes again? Also, I'm deprecating hw-succinct. The code has been split up into other libraries. I think the problem might be with hw-succinct. I'm updating it now and see what happens. If you have one stack project including all packages you can implement, test, and release everything together. I’ve pushed a new version of hw-succinct. Hopefully that fixes the issue? Actually not pushed yet. I've kicked off a new build though: https://circleci.com/gh/haskell-works/hw-succinct Should push when done. I'll check tomorrow morning. I've also set up an hw-all project, as you suggest: https://github.com/haskell-works/hw-all @newhoggy the issue does seem to be fixed. Thanks! Hi Adam, I’ve pushed a new version of hw-succinct. Hopefully that fixes the issue? Cheers, -John ​ On Mon, 24 Oct 2016 at 09:52 Adam Bergmark notifications@github.com wrote: If you have one stack project including all packages you can implement, test, and release everything together. — You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/fpco/stackage/issues/2010#issuecomment-255620497, or mute the thread https://github.com/notifications/unsubscribe-auth/AAD2JtG7Ax62qbt64iBMmHPWwzEuFgRBks5q2-UhgaJpZM4KeHfX . Hi Adam, I did some refactoring yesterday, which included breaking changes. Is there a way I can edit the bounds of older versions on hackage? Cheers, -John On Mon, 24 Oct 2016 at 00:53 Adam Bergmark notifications@github.com wrote: It wasn't (only) hw-string-select, I ended up holding back all of the packages to the ones in the previous nightly: - hw-bits < 0.4 - hw-conduit < 0.1 - hw-prim < 0.4 - hw-rankselect < 0.5 - hw-string-parse < 0.0.0.3 — You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/fpco/stackage/issues/2010#issuecomment-255589927, or mute the thread https://github.com/notifications/unsubscribe-auth/AAD2JqVnmrHbp0osOyW4qGOrvOi4T19Hks5q22a_gaJpZM4KeHfX . @newhoggy yes! on the package page click "edit package information" > Cabal file metadata > pick version > make edits, or go to e.g. https://hackage.haskell.org/package/aeson-1.0.2.1/aeson.cabal/edit directly
gharchive/issue
2016-10-23T12:14:14
2025-04-01T06:38:43.987410
{ "authors": [ "DanBurton", "bergmark", "newhoggy" ], "repo": "fpco/stackage", "url": "https://github.com/fpco/stackage/issues/2010", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1592626940
Is the gh-pages branch for MkDocs supposed to be created manually? Question I'm trying to setup a new project and noticed that a gh-pages branch wasn't created automatically at any point for making auto MkDocs possible. The documentation doesn't specify when/how the branch is created so I've become a bit confused on whether or not I was supposed to create it myself and then run a specific make command or similar to get the docs published on the remote repo. What are the proper steps here? Thanks! Thanks for raising this! I will update the documentation to better reflect what's happening.
gharchive/issue
2023-02-21T01:05:54
2025-04-01T06:38:43.992214
{ "authors": [ "ariffjeff", "fpgmaas" ], "repo": "fpgmaas/cookiecutter-poetry", "url": "https://github.com/fpgmaas/cookiecutter-poetry/issues/83", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
651043555
bump premailer version This gem relies on a very old version of premailer, namely one that includes hpricot whose hpricot_slate_method_added magic causes issues with sorbet. Please update this dependency to use a more recent version of premailer. This is the dependency definition: https://github.com/fphilipe/premailer-rails/blob/v1.11.1/premailer-rails.gemspec#L24 premailer is currently at 1.11.1. If you do a fresh install of premailer-rails, it will install the latest premailer version. Thus, you should be able to simply run bundle update premailer to get a newer version of premailer in your project. Thank you for the quick and educational reply, new ecosystem I'm working in.
gharchive/issue
2020-07-05T10:29:49
2025-04-01T06:38:43.994510
{ "authors": [ "fphilipe", "rex-remind101" ], "repo": "fphilipe/premailer-rails", "url": "https://github.com/fphilipe/premailer-rails/issues/254", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1422159748
task collection 1.x from pypi Preliminary requirement: we need a shared folder that is readable and executable by the fractal user, let it be FRACTAL_ROOT_DIR from PyPI in a subprocess... create dedicated venv in FRACTAL_ROOT_DIR/<pkg>_<version> install package in venv extract manifest by /venv/python -c "import <pkg>; print(pkg.__manifest__)" load all tasks exposed in manifest default behaviour cd $FRACTAL_ROOT_DIR PKG_DIR=$PKG_NAME_$PKG_VERSION mkdir $PKG_DIR cd $PKG_DIR python -m venv venv (or similar for conda and the like) source /venv/bin/activate (or similar) (venv) pip install $PKG_NAME==$PKG_VERSION (venv) python -c "import $PKG_NAME; print($PKG_NAME.__manifest__)" > /tmp/fractal/pkg_name_version.manifest.json we read the output of the last command and access the manifest from within the server the resulting tasks will have source = pypi:fractal-tasks-core==0.2.3 command = /path/to/venv/python path/to/module.py custom behaviour (TODO) We keep the folder structure with the following pseudo-script cd $FRACTAL_ROOT_DIR PKG_DIR=$PKG_NAME_$PKG_VERSION mkdir $PKG_DIR cd $PKG_DIR the user can provide a custom initialisation / installation script, which needs to output how to call the dedicated python interpreter the manifest from FRACTAL_ROOT_DIR/<userdir>/<taskdir>/ TODO @tcompa can you please write here the command you would use to start an env with conda pls? conda create --prefix /tmp/MY_ENV python==3.8 --quiet --yes conda activate /tmp/MY_ENV pip install fractal-tasks-core==0.2.6 But notice that there is no special reason to use conda, for the default modules (to be made available for all users). You can go on with standard venvs if you prefer. Also note that the previous script creates a 3G folder (that would be only 200M before installing the tasks). conda create --prefix /tmp/MY_ENV python==3.8 --quiet --yes conda activate /tmp/MY_ENV pip install fractal-tasks-core==0.2.6 But notice that there is no special reason to use conda, for the default modules (to be made available for all users). You can go on with standard venvs if you prefer. I actually prefer venv, but we need a way to specify the python version. I can write some fallback logic if needed, i.e., try venv if it doesn't work try pyenv + vnev if it doesn't work try conda
gharchive/issue
2022-10-25T09:32:53
2025-04-01T06:38:44.003928
{ "authors": [ "jacopo-exact", "tcompa" ], "repo": "fractal-analytics-platform/fractal-server", "url": "https://github.com/fractal-analytics-platform/fractal-server/issues/180", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
2405499818
[ngio] Refactor masked_loading_wrapper logic to do relabeling in the masking step I have revisited how we handle masking & relabeling to fix #785 . For the moment, I do the relabeling in segment_ROI. In ngio, we'll want to do this in the wrapper class that handles the masking (currently masked_loading_wrapper). The main reason: Current approach doesn't 100% guarantee consecutive labels. Within the cellpose task, there could be labels that are taken into account for relabeling but are masked away afterwards. That's very unlikely to be an issue, because we set the background to 0 in the input image. But the mock testing ignores the input Also, it will be nicer if that's functionality that comes with the IO package, instead of everyone that writes a function that creates labels having to take care of it
gharchive/issue
2024-07-12T12:48:58
2025-04-01T06:38:44.005958
{ "authors": [ "jluethi" ], "repo": "fractal-analytics-platform/fractal-tasks-core", "url": "https://github.com/fractal-analytics-platform/fractal-tasks-core/issues/787", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
1711674397
AUTH_COOKIE_NAME error in npm run build "AUTH_COOKIE_NAME" is not exported by "$env/static/private", imported by "src/routes/auth/logout/+server.js". file: /xxx/server_05_to_use_apache/fractal-web/src/routes/auth/logout/+server.js:4:1 2: import { logout } from '$lib/server/api/v1/auth_api' 3: import { 4: AUTH_COOKIE_NAME, ^ 5: AUTH_COOKIE_DOMAIN, 6: AUTH_COOKIE_PATH, error during build: RollupError: "AUTH_COOKIE_NAME" is not exported by "$env/static/private", imported by "src/routes/auth/logout/+server.js". at error (file:///xxx/server_05_to_use_apache/fractal-web/node_modules/rollup/dist/es/shared/node-entry.js:2125:30) at Module.error (file:///xxx/server_05_to_use_apache/fractal-web/node_modules/rollup/dist/es/shared/node-entry.js:13340:16) at Module.traceVariable (file:///xxx/server_05_to_use_apache/fractal-web/node_modules/rollup/dist/es/shared/node-entry.js:13725:29) at ModuleScope.findVariable (file:///xxx/server_05_to_use_apache/fractal-web/node_modules/rollup/dist/es/shared/node-entry.js:12240:39) at FunctionScope.findVariable (file:///xxx/server_05_to_use_apache/fractal-web/node_modules/rollup/dist/es/shared/node-entry.js:6980:38) at ChildScope.findVariable (file:///xxx/server_05_to_use_apache/fractal-web/node_modules/rollup/dist/es/shared/node-entry.js:6980:38) at Identifier.bind (file:///xxx/server_05_to_use_apache/fractal-web/node_modules/rollup/dist/es/shared/node-entry.js:8130:40) at CallExpression.bind (file:///xxx/server_05_to_use_apache/fractal-web/node_modules/rollup/dist/es/shared/node-entry.js:5743:28) at CallExpression.bind (file:///xxx/server_05_to_use_apache/fractal-web/node_modules/rollup/dist/es/shared/node-entry.js:9659:15) at ExpressionStatement.bind (file:///xxx/server_05_to_use_apache/fractal-web/node_modules/rollup/dist/es/shared/node-entry.js:5747:23) I think this is because .env.developement is not being used. I think this is because .env.developement is not being used. I confirm. If I move all its content to .env, then the build succeeds.
gharchive/issue
2023-05-16T09:56:57
2025-04-01T06:38:44.008058
{ "authors": [ "tcompa" ], "repo": "fractal-analytics-platform/fractal-web", "url": "https://github.com/fractal-analytics-platform/fractal-web/issues/141", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
1645664176
[v0.3] Job submission and monitoring Placeholder issue for all kind of planning/discussion on: How to run a workflow, for given I/O datasets and possibly with additional parameters. How to visualize a job list? What should be in there? Where should it appear (per-user? per-project? per-workflow?)? ... Replaced by figma discussion
gharchive/issue
2023-03-29T12:03:07
2025-04-01T06:38:44.009929
{ "authors": [ "tcompa" ], "repo": "fractal-analytics-platform/fractal-web", "url": "https://github.com/fractal-analytics-platform/fractal-web/issues/83", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
263107848
Thread solids invalid Thread solids are not valid, and consequently fail boolean operations. >>> import cqparts >>> thread = cqparts.types.threads.iso_262.ISO262Thread().make(5) >>> thread.val().wrapped.isValid() False solids can be cleaned up using the method(s) described here, but they're not always successful. slight variations initially yield an unclosed solid, but are fixed with sewShape(), for example >>> import cqparts >>> thread = cqparts.types.threads.iso_262.ISO262Thread(pitch=0.7).make(3) >>> thread.val().wrapped.isValid() True Exception code modified to crash more gracefully by raising: SolidValidityError: created thread solid cannot be made watertight Is there a way to detect when a thread is invalid so that fixes could be applied conditionally and then rechecked? I know how to check geometry from the GUI, but I've never done it from a script. @jmwright There is a section in the code to do exactly that, but it's only working some of the time (less than half) https://github.com/fragmuffin/cqparts/blob/develop/src/cqparts/types/threads/base.py#L251-L260 when building a dodgy thread at the moment, you'll see: thread shape not valid new thread STILL not valid on the console... context is obvious after reading the above linked code These tools might be a clue: https://www.freecadweb.org/wiki/Mesh_FillHoles https://www.freecadweb.org/wiki/Mesh_FillInteractiveHole This bug is making thread-building completely unmanageable. It's making building a very painful and error-prone experience... the presence of thread faces makes cqparts very unstable. Mitigated by Simplifying to Cylinder For the time being, I've converted the base Thread type to a Part so I can exploit the _simple=True flag, which causes the make_simple() method to build the part's .local_obj as opposed to .make(). (see f1e98fe) In other words, by default, threads are not generated. Instead they are replaced with a cylinder with the thread's outer radius. Workaround If you'd like to play with real threads, you can turn off default simplification with any of... import cqparts from cqparts.display import display from cqparts.params import Boolean from cqparts.fasteners.base import FastenerMalePart from cqparts.solidtypes.threads import base # --- an individual part screw = FastenerMalePart() screw.thread._simple = False display(screw) # --- all threads by default base.Thread._simple.default = False # you'll have to re-define the thread type, because the default thread # was instantiated before the above change was made screw = FastenerMalePart( thread=('iso262', { 'diameter': 3.0, 'pitch': 0.7, }), ) display(screw) # --- all threads by default (by environment variable) # because the above way is messy... you can set an environment variable: # CQPARTS_COMPLEX_THREADS=yes display(FastenerMalePart()) # default of _simple is False at import time none of the above methods are permanent, please keep this in mind if you're planning a future-proofed script. Fix Delay I also won't have time to fix this for the initial release... but it's very high on the priorities list after v0.2 example of the simplified thread... Test created to raise failure: test and catalogue A variety of thread dimensions are created, most of which currently fail to create a watertight object. Error example ====================================================================== ERROR: test_triangular_4x1_040 (cqparts.utils.test.CatalogueTest_thread_catalogue) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/nymphii/prj/cqparts/tests/../src/cqparts/utils/test.py", line 147, in test_meth obj.build() File "/home/nymphii/prj/cqparts/tests/../src/cqparts/part.py", line 91, in build self.local_obj # force object's construction, but don't do anything with it File "/home/nymphii/prj/cqparts/tests/../src/cqparts/part.py", line 113, in local_obj value = self.make() File "/home/nymphii/prj/cqparts/tests/../src/cqparts_fasteners/solidtypes/threads/base.py", line 352, in make "created thread solid cannot be made watertight" SolidValidityError: created thread solid cannot be made watertight Tests skipped until this issue is closed: test_ball_screw_10x1_012 (cqparts.utils.test.CatalogueTest_thread_catalogue) ... skipped 'skipped until #1 is fixed' test_ball_screw_10x3_013 (cqparts.utils.test.CatalogueTest_thread_catalogue) ... skipped 'skipped until #1 is fixed' ... test_triangular_4x4_042 (cqparts.utils.test.CatalogueTest_thread_catalogue) ... skipped 'skipped until #1 is fixed' test_triangular_4x5_043 (cqparts.utils.test.CatalogueTest_thread_catalogue) ... skipped 'skipped until #1 is fixed' Task [ ] remove FIXME from test_fasteners_thread.py Task [ ] remove warning about this fault from cqparts_fasteners README.rst
gharchive/issue
2017-10-05T12:32:54
2025-04-01T06:38:44.030371
{ "authors": [ "fragmuffin", "jmwright" ], "repo": "fragmuffin/cqparts", "url": "https://github.com/fragmuffin/cqparts/issues/1", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1465542324
CLI Generated sample program does not work This issue is reporting a bug in the code of Perseus. Details of the scope will be available in issue labels. The author described their issue as follows: I have created an app with perseus new (cli version = 0.4.0.beta.11). Then I attempt to start it with perseus serve. It fails to build. The steps to reproduce this issue are as follows: perseus new client cd client && perseus serve A minimum reproducible example is available at <>. Hydration-related: false The author is willing to attempt a fix: false Tribble internal data dHJpYmJsZS1yZXBvcnRlZCxDLWJ1ZyxBLWNsaQ== What error are you getting? Had same issue, updated Rust to 1.65.0 and worked. Ah, I see. That would be because Perseus relies internally on GATs, which were only stabilized in 1.65.0. I haven't updated the MSRV yet (since usually it's in line with Sycamore). Thanks for the report! @HBnetDE please let me know if updating to Rust v1.65.0 doesn't solve your issue. I am already at rust 1.65. Errors produced by perseus serve (edited to remove username) error[E0432]: unresolved import `crate::sys::IoSourceState` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:12:5 | 12 | use crate::sys::IoSourceState; | ^^^^^^^^^^^^^^^^^^^^^^^^^ no `IoSourceState` in `sys` error[E0432]: unresolved import `crate::sys::tcp` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:15:17 | 15 | use crate::sys::tcp::{bind, listen, new_for_addr}; | ^^^ could not find `tcp` in `sys` error[E0432]: unresolved import `crate::sys::tcp` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/stream.rs:13:17 | 13 | use crate::sys::tcp::{connect, new_for_addr}; | ^^^ could not find `tcp` in `sys` error[E0433]: failed to resolve: could not find `Selector` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/poll.rs:301:18 | 301 | sys::Selector::new().map(|selector| Poll { | ^^^^^^^^ could not find `Selector` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:24:14 | 24 | sys::event::token(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:38:14 | 38 | sys::event::is_readable(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:43:14 | 43 | sys::event::is_writable(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:68:14 | 68 | sys::event::is_error(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:99:14 | 99 | sys::event::is_read_closed(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:129:14 | 129 | sys::event::is_write_closed(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:151:14 | 151 | sys::event::is_priority(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:173:14 | 173 | sys::event::is_aio(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:183:14 | 183 | sys::event::is_lio(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:221:26 | 221 | sys::event::debug_details(f, self.0) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `tcp` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:103:18 | 103 | sys::tcp::accept(inner).map(|(stream, addr)| (TcpStream::from_std(stream), addr)) | ^^^ could not find `tcp` in `sys` error[E0433]: failed to resolve: could not find `udp` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/udp.rs:122:14 | 122 | sys::udp::bind(addr).map(UdpSocket::from_std) | ^^^ could not find `udp` in `sys` error[E0433]: failed to resolve: could not find `udp` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/udp.rs:544:14 | 544 | sys::udp::only_v6(&self.inner) | ^^^ could not find `udp` in `sys` error[E0412]: cannot find type `Selector` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/poll.rs:255:20 | 255 | selector: sys::Selector, | ^^^^^^^^ not found in `sys` error[E0412]: cannot find type `Selector` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/poll.rs:689:44 | 689 | pub(crate) fn selector(&self) -> &sys::Selector { | ^^^^^^^^ not found in `sys` error[E0412]: cannot find type `Waker` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/waker.rs:79:17 | 79 | inner: sys::Waker, | ^^^^^ not found in `sys` | help: consider importing one of these items | 1 | use core::task::Waker; | 1 | use crate::Waker; | 1 | use std::task::Waker; | help: if you import `Waker`, refer to it directly | 79 - inner: sys::Waker, 79 + inner: Waker, | error[E0433]: failed to resolve: could not find `Waker` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/waker.rs:87:14 | 87 | sys::Waker::new(registry.selector(), token).map(|inner| Waker { inner }) | ^^^^^ not found in `sys` | help: consider importing one of these items | 1 | use core::task::Waker; | 1 | use crate::Waker; | 1 | use std::task::Waker; | help: if you import `Waker`, refer to it directly | 87 - sys::Waker::new(registry.selector(), token).map(|inner| Waker { inner }) 87 + Waker::new(registry.selector(), token).map(|inner| Waker { inner }) | error[E0412]: cannot find type `Event` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:18:17 | 18 | inner: sys::Event, | ^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::event::Event; | help: if you import `Event`, refer to it directly | 18 - inner: sys::Event, 18 + inner: Event, | error[E0412]: cannot find type `Event` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:187:55 | 187 | pub(crate) fn from_sys_event_ref(sys_event: &sys::Event) -> &Event { | ^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::event::Event; | help: if you import `Event`, refer to it directly | 187 - pub(crate) fn from_sys_event_ref(sys_event: &sys::Event) -> &Event { 187 + pub(crate) fn from_sys_event_ref(sys_event: &Event) -> &Event { | error[E0412]: cannot find type `Event` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:191:41 | 191 | &*(sys_event as *const sys::Event as *const Event) | ^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::event::Event; | help: if you import `Event`, refer to it directly | 191 - &*(sys_event as *const sys::Event as *const Event) 191 + &*(sys_event as *const Event as *const Event) | error[E0412]: cannot find type `Event` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:217:46 | 217 | struct EventDetails<'a>(&'a sys::Event); | ^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::event::Event; | help: if you import `Event`, refer to it directly | 217 - struct EventDetails<'a>(&'a sys::Event); 217 + struct EventDetails<'a>(&'a Event); | error[E0412]: cannot find type `Events` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/events.rs:43:17 | 43 | inner: sys::Events, | ^^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::Events; | help: if you import `Events`, refer to it directly | 43 - inner: sys::Events, 43 + inner: Events, | error[E0433]: failed to resolve: could not find `Events` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/events.rs:94:25 | 94 | inner: sys::Events::with_capacity(capacity), | ^^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::Events; | help: if you import `Events`, refer to it directly | 94 - inner: sys::Events::with_capacity(capacity), 94 + inner: Events::with_capacity(capacity), | error[E0412]: cannot find type `Events` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/events.rs:189:47 | 189 | pub(crate) fn sys(&mut self) -> &mut sys::Events { | ^^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::Events; | help: if you import `Events`, refer to it directly | 189 - pub(crate) fn sys(&mut self) -> &mut sys::Events { 189 + pub(crate) fn sys(&mut self) -> &mut Events { | error[E0425]: cannot find function `set_reuseaddr` in this scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:74:9 | 74 | set_reuseaddr(&listener.inner, true)?; | ^^^^^^^^^^^^^ not found in this scope error[E0425]: cannot find value `listener` in this scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:74:24 | 74 | set_reuseaddr(&listener.inner, true)?; | ^^^^^^^^ not found in this scope error[E0425]: cannot find value `listener` in this scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:76:15 | 76 | bind(&listener.inner, addr)?; | ^^^^^^^^ not found in this scope error[E0425]: cannot find value `listener` in this scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:77:17 | 77 | listen(&listener.inner, 1024)?; | ^^^^^^^^ not found in this scope error[E0425]: cannot find value `listener` in this scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:78:12 | 78 | Ok(listener) | ^^^^^^^^ not found in this scope error[E0425]: cannot find value `stream` in this scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/stream.rs:90:18 | 90 | connect(&stream.inner, addr)?; | ^^^^^^ not found in this scope error[E0425]: cannot find value `stream` in this scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/stream.rs:91:12 | 91 | Ok(stream) | ^^^^^^ not found in this scope error[E0599]: no method named `register` found for struct `IoSource<std::net::TcpListener>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:146:20 | 146 | self.inner.register(registry, token, interests) | ^^^^^^^^ method not found in `IoSource<std::net::TcpListener>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `register` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `register`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `reregister` found for struct `IoSource<std::net::TcpListener>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:155:20 | 155 | self.inner.reregister(registry, token, interests) | ^^^^^^^^^^ method not found in `IoSource<std::net::TcpListener>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `reregister` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `reregister`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `deregister` found for struct `IoSource<std::net::TcpListener>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:159:20 | 159 | self.inner.deregister(registry) | ^^^^^^^^^^ method not found in `IoSource<std::net::TcpListener>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `deregister` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `deregister`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `register` found for struct `IoSource<std::net::TcpStream>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/stream.rs:325:20 | 325 | self.inner.register(registry, token, interests) | ^^^^^^^^ method not found in `IoSource<std::net::TcpStream>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `register` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `register`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `reregister` found for struct `IoSource<std::net::TcpStream>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/stream.rs:334:20 | 334 | self.inner.reregister(registry, token, interests) | ^^^^^^^^^^ method not found in `IoSource<std::net::TcpStream>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `reregister` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `reregister`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `deregister` found for struct `IoSource<std::net::TcpStream>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/stream.rs:338:20 | 338 | self.inner.deregister(registry) | ^^^^^^^^^^ method not found in `IoSource<std::net::TcpStream>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `deregister` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `deregister`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `register` found for struct `IoSource<std::net::UdpSocket>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/udp.rs:622:20 | 622 | self.inner.register(registry, token, interests) | ^^^^^^^^ method not found in `IoSource<std::net::UdpSocket>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `register` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `register`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `reregister` found for struct `IoSource<std::net::UdpSocket>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/udp.rs:631:20 | 631 | self.inner.reregister(registry, token, interests) | ^^^^^^^^^^ method not found in `IoSource<std::net::UdpSocket>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `reregister` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `reregister`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `deregister` found for struct `IoSource<std::net::UdpSocket>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/udp.rs:635:20 | 635 | self.inner.deregister(registry) | ^^^^^^^^^^ method not found in `IoSource<std::net::UdpSocket>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `deregister` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `deregister`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ Some errors have detailed explanations: E0412, E0425, E0432, E0433, E0599. For more information about an error, try `rustc --explain E0412`. error: could not compile `mio` due to 44 previous errors warning: build failed, waiting for other jobs to finish... Seems that you are getting the wrong wasm. On instructions when creating a new app you should write: perseus new my-app --wasm-opt-version version_110 instead of just: perseus new client i guess is part of being in beta @enrand22 you're right that this looks like a Wasm problem, but not adding that extra flag shouldn't cause this. If that were the problem, you shouldn't be able to even get to compiling the app. @HBnetDE could you provide the outputs of perseus snoop build and perseus snoop wasm-build? Those will try to build the engine-side and browser-side of the app independently, which might give us a better clue of what's going on. To me, it looks like a Cargo problem... perseus snoop build Finished dev [unoptimized + debuginfo] target(s) in 0.07s Running `dist/target_engine/debug/client` perseus snoop wasm-build Compiling mio v0.8.5 Compiling web-sys v0.3.60 Compiling wasm-bindgen-futures v0.4.33 error[E0432]: unresolved import `crate::sys::IoSourceState` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:12:5 | 12 | use crate::sys::IoSourceState; | ^^^^^^^^^^^^^^^^^^^^^^^^^ no `IoSourceState` in `sys` error[E0432]: unresolved import `crate::sys::tcp` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:15:17 | 15 | use crate::sys::tcp::{bind, listen, new_for_addr}; | ^^^ could not find `tcp` in `sys` error[E0432]: unresolved import `crate::sys::tcp` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/stream.rs:13:17 | 13 | use crate::sys::tcp::{connect, new_for_addr}; | ^^^ could not find `tcp` in `sys` error[E0433]: failed to resolve: could not find `Selector` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/poll.rs:301:18 | 301 | sys::Selector::new().map(|selector| Poll { | ^^^^^^^^ could not find `Selector` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:24:14 | 24 | sys::event::token(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:38:14 | 38 | sys::event::is_readable(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:43:14 | 43 | sys::event::is_writable(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:68:14 | 68 | sys::event::is_error(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:99:14 | 99 | sys::event::is_read_closed(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:129:14 | 129 | sys::event::is_write_closed(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:151:14 | 151 | sys::event::is_priority(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:173:14 | 173 | sys::event::is_aio(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:183:14 | 183 | sys::event::is_lio(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:221:26 | 221 | sys::event::debug_details(f, self.0) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `tcp` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:103:18 | 103 | sys::tcp::accept(inner).map(|(stream, addr)| (TcpStream::from_std(stream), addr)) | ^^^ could not find `tcp` in `sys` error[E0433]: failed to resolve: could not find `udp` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/udp.rs:122:14 | 122 | sys::udp::bind(addr).map(UdpSocket::from_std) | ^^^ could not find `udp` in `sys` error[E0433]: failed to resolve: could not find `udp` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/udp.rs:544:14 | 544 | sys::udp::only_v6(&self.inner) | ^^^ could not find `udp` in `sys` error[E0412]: cannot find type `Selector` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/poll.rs:255:20 | 255 | selector: sys::Selector, | ^^^^^^^^ not found in `sys` error[E0412]: cannot find type `Selector` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/poll.rs:689:44 | 689 | pub(crate) fn selector(&self) -> &sys::Selector { | ^^^^^^^^ not found in `sys` error[E0412]: cannot find type `Waker` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/waker.rs:79:17 | 79 | inner: sys::Waker, | ^^^^^ not found in `sys` | help: consider importing one of these items | 1 | use core::task::Waker; | 1 | use crate::Waker; | 1 | use std::task::Waker; | help: if you import `Waker`, refer to it directly | 79 - inner: sys::Waker, 79 + inner: Waker, | error[E0433]: failed to resolve: could not find `Waker` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/waker.rs:87:14 | 87 | sys::Waker::new(registry.selector(), token).map(|inner| Waker { inner }) | ^^^^^ not found in `sys` | help: consider importing one of these items | 1 | use core::task::Waker; | 1 | use crate::Waker; | 1 | use std::task::Waker; | help: if you import `Waker`, refer to it directly | 87 - sys::Waker::new(registry.selector(), token).map(|inner| Waker { inner }) 87 + Waker::new(registry.selector(), token).map(|inner| Waker { inner }) | error[E0412]: cannot find type `Event` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:18:17 | 18 | inner: sys::Event, | ^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::event::Event; | help: if you import `Event`, refer to it directly | 18 - inner: sys::Event, 18 + inner: Event, | error[E0412]: cannot find type `Event` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:187:55 | 187 | pub(crate) fn from_sys_event_ref(sys_event: &sys::Event) -> &Event { | ^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::event::Event; | help: if you import `Event`, refer to it directly | 187 - pub(crate) fn from_sys_event_ref(sys_event: &sys::Event) -> &Event { 187 + pub(crate) fn from_sys_event_ref(sys_event: &Event) -> &Event { | error[E0412]: cannot find type `Event` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:191:41 | 191 | &*(sys_event as *const sys::Event as *const Event) | ^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::event::Event; | help: if you import `Event`, refer to it directly | 191 - &*(sys_event as *const sys::Event as *const Event) 191 + &*(sys_event as *const Event as *const Event) | error[E0412]: cannot find type `Event` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:217:46 | 217 | struct EventDetails<'a>(&'a sys::Event); | ^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::event::Event; | help: if you import `Event`, refer to it directly | 217 - struct EventDetails<'a>(&'a sys::Event); 217 + struct EventDetails<'a>(&'a Event); | error[E0412]: cannot find type `Events` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/events.rs:43:17 | 43 | inner: sys::Events, | ^^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::Events; | help: if you import `Events`, refer to it directly | 43 - inner: sys::Events, 43 + inner: Events, | error[E0433]: failed to resolve: could not find `Events` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/events.rs:94:25 | 94 | inner: sys::Events::with_capacity(capacity), | ^^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::Events; | help: if you import `Events`, refer to it directly | 94 - inner: sys::Events::with_capacity(capacity), 94 + inner: Events::with_capacity(capacity), | error[E0412]: cannot find type `Events` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/events.rs:189:47 | 189 | pub(crate) fn sys(&mut self) -> &mut sys::Events { | ^^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::Events; | help: if you import `Events`, refer to it directly | 189 - pub(crate) fn sys(&mut self) -> &mut sys::Events { 189 + pub(crate) fn sys(&mut self) -> &mut Events { | error[E0425]: cannot find function `set_reuseaddr` in this scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:74:9 | 74 | set_reuseaddr(&listener.inner, true)?; | ^^^^^^^^^^^^^ not found in this scope error[E0425]: cannot find value `listener` in this scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:74:24 | 74 | set_reuseaddr(&listener.inner, true)?; | ^^^^^^^^ not found in this scope error[E0425]: cannot find value `listener` in this scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:76:15 | 76 | bind(&listener.inner, addr)?; | ^^^^^^^^ not found in this scope error[E0425]: cannot find value `listener` in this scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:77:17 | 77 | listen(&listener.inner, 1024)?; | ^^^^^^^^ not found in this scope error[E0425]: cannot find value `listener` in this scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:78:12 | 78 | Ok(listener) | ^^^^^^^^ not found in this scope error[E0425]: cannot find value `stream` in this scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/stream.rs:90:18 | 90 | connect(&stream.inner, addr)?; | ^^^^^^ not found in this scope error[E0425]: cannot find value `stream` in this scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/stream.rs:91:12 | 91 | Ok(stream) | ^^^^^^ not found in this scope error[E0599]: no method named `register` found for struct `IoSource<std::net::TcpListener>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:146:20 | 146 | self.inner.register(registry, token, interests) | ^^^^^^^^ method not found in `IoSource<std::net::TcpListener>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `register` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `register`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `reregister` found for struct `IoSource<std::net::TcpListener>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:155:20 | 155 | self.inner.reregister(registry, token, interests) | ^^^^^^^^^^ method not found in `IoSource<std::net::TcpListener>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `reregister` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `reregister`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `deregister` found for struct `IoSource<std::net::TcpListener>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:159:20 | 159 | self.inner.deregister(registry) | ^^^^^^^^^^ method not found in `IoSource<std::net::TcpListener>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `deregister` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `deregister`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `register` found for struct `IoSource<std::net::TcpStream>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/stream.rs:325:20 | 325 | self.inner.register(registry, token, interests) | ^^^^^^^^ method not found in `IoSource<std::net::TcpStream>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `register` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `register`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `reregister` found for struct `IoSource<std::net::TcpStream>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/stream.rs:334:20 | 334 | self.inner.reregister(registry, token, interests) | ^^^^^^^^^^ method not found in `IoSource<std::net::TcpStream>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `reregister` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `reregister`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ Compiling sycamore-futures v0.8.0 error[E0599]: no method named `deregister` found for struct `IoSource<std::net::TcpStream>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/stream.rs:338:20 | 338 | self.inner.deregister(registry) | ^^^^^^^^^^ method not found in `IoSource<std::net::TcpStream>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `deregister` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `deregister`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `register` found for struct `IoSource<std::net::UdpSocket>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/udp.rs:622:20 | 622 | self.inner.register(registry, token, interests) | ^^^^^^^^ method not found in `IoSource<std::net::UdpSocket>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `register` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `register`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `reregister` found for struct `IoSource<std::net::UdpSocket>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/udp.rs:631:20 | 631 | self.inner.reregister(registry, token, interests) | ^^^^^^^^^^ method not found in `IoSource<std::net::UdpSocket>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `reregister` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `reregister`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `deregister` found for struct `IoSource<std::net::UdpSocket>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/udp.rs:635:20 | 635 | self.inner.deregister(registry) | ^^^^^^^^^^ method not found in `IoSource<std::net::UdpSocket>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `deregister` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `deregister`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ Some errors have detailed explanations: E0412, E0425, E0432, E0433, E0599. For more information about an error, try `rustc --explain E0412`. error: could not compile `mio` due to 44 previous errors warning: build failed, waiting for other jobs to finish... Alright, your engine-side build is normal, but the Wasm build is completely broken. Are you using rustup? Also, what OS are you running? Yes, I am rustup. My OS is Linux - Ubuntu 22.04. Same issue here. I'm using GitHub Workflows and build with Debian 11 based Docker. However, work fine in Windows 10 (rustc 1.67.0-nightly). Dockerfile: FROM rust:slim AS build ARG CLI_VERSION=0.4.0-beta.11 # -------------------- snip -------------------- RUN rustup toolchain install nightly RUN rustup default nightly RUN rustup update RUN cargo install perseus-cli --version ${CLI_VERSION} RUN perseus deploy # -------------------- snip -------------------- Cargo.toml: # snip [dependencies] perseus = { git = "https://github.com/framesurge/perseus.git", features = [ "hydrate", ] } sycamore = { version = "*", features = ["hydrate", "ssr"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] perseus-axum = { git = "https://github.com/framesurge/perseus.git", features = [ "dflt-server", ] } tokio = { version = "*", features = ["macros", "rt", "rt-multi-thread"] } [target.'cfg(target_arch = "wasm32")'.dependencies] wasm-bindgen = "*" wee_alloc = "*" # snip workflows log: #29 239.2 Compiling perseus v0.4.0-beta.11 (https://github.com/framesurge/perseus.git#9e6501a9) #29 239.2 Compiling flate2 v1.0.25 #29 239.2 Compiling url v2.3.1 #29 239.2 Compiling webpki-roots v0.22.5 #29 239.2 Compiling chunked_transfer v1.4.0 #29 239.2 Compiling base64 v0.13.1 #29 239.2 Compiling closure v0.3.0 #29 239.2 Compiling perseus-axum v0.4.0-beta.11 (https://github.com/framesurge/perseus.git#9e6501a9) #29 239.2 Compiling ureq v2.5.0 #29 239.2 Compiling frontend v0.1.0 (/app) #29 239.2 Finished release [optimized] target(s) in 3m 53s #29 239.2 Running `dist/target_engine/release/frontend` #29 239.2 thread 'main' panicked at 'you must provide your own error pages in production', /usr/local/cargo/git/checkouts/perseus-f6f2bdad302e666f/9e6501a/packages/perseus/src/error_pages.rs:306:9 #29 239.2 stack backtrace: #29 239.2 0: rust_begin_unwind #29 239.2 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/std/src/panicking.rs:575:5 #29 239.2 1: core::panicking::panic_fmt #29 239.2 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/core/src/panicking.rs:65:14 #29 239.2 2: <perseus::error_pages::ErrorPages<G> as core::default::Default>::default #29 239.2 3: perseus::init::PerseusAppBase<G,perseus::stores::mutable::FsMutableStore,T>::new #29 239.2 4: frontend::__perseus_simple_main #29 239.2 5: perseus::engine::dflt_engine::run_dflt_engine::{{closure}} #29 239.2 6: tokio::runtime::park::CachedParkThread::block_on #29 239.2 7: tokio::runtime::scheduler::multi_thread::MultiThread::block_on #29 239.2 8: tokio::runtime::runtime::Runtime::block_on #29 239.2 9: frontend::main #29 239.2 note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. #29 ERROR: process "/bin/sh -c RUST_BACKTRACE=1 perseus deploy" did not complete successfully: exit code: 1 ------ > [build 20/20] RUN RUST_BACKTRACE=1 perseus deploy: #29 239.2 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/core/src/panicking.rs:65:14 #29 239.2 2: <perseus::error_pages::ErrorPages<G> as core::default::Default>::default #29 239.2 3: perseus::init::PerseusAppBase<G,perseus::stores::mutable::FsMutableStore,T>::new #29 239.2 4: frontend::__perseus_simple_main #29 239.2 5: perseus::engine::dflt_engine::run_dflt_engine::{{closure}} #29 239.2 6: tokio::runtime::park::CachedParkThread::block_on #29 239.2 7: tokio::runtime::scheduler::multi_thread::MultiThread::block_on #29 239.2 8: tokio::runtime::runtime::Runtime::block_on #29 239.2 9: frontend::main #29 239.2 note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. ------ Dockerfile:51 -------------------- 49 | RUN perseus clean 50 | 51 | >>> RUN RUST_BACKTRACE=1 perseus deploy 52 | 53 | FROM debian:11-slim -------------------- ERROR: failed to solve: process "/bin/sh -c RUST_BACKTRACE=1 perseus deploy" did not complete successfully: exit code: 1 with RUST_BACKTRACE=full: #29 218.0 Compiling perseus v0.4.0-beta.11 (https://github.com/framesurge/perseus.git#9e6501a9) #29 218.0 Compiling flate2 v1.0.25 #29 218.0 Compiling url v2.3.1 #29 218.0 Compiling webpki-roots v0.22.5 #29 218.0 Compiling closure v0.3.0 #29 218.0 Compiling base64 v0.13.1 #29 218.0 Compiling chunked_transfer v1.4.0 #29 218.0 Compiling ureq v2.5.0 #29 218.0 Compiling perseus-axum v0.4.0-beta.11 (https://github.com/framesurge/perseus.git#9e6501a9) #29 218.0 Compiling frontend v0.1.0 (/app) #29 218.0 Finished release [optimized] target(s) in 3m 34s #29 218.0 Running `dist/target_engine/release/frontend` #29 218.0 thread 'main' panicked at 'you must provide your own error pages in production', /usr/local/cargo/git/checkouts/perseus-f6f2bdad302e666f/9e6501a/packages/perseus/src/error_pages.rs:306:9 #29 218.0 stack backtrace: #29 218.0 0: 0x55a12742ba9a - std::backtrace_rs::backtrace::libunwind::trace::hec1c9a33ec35a782 #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5 #29 218.0 1: 0x55a12742ba9a - std::backtrace_rs::backtrace::trace_unsynchronized::hef44794102f9589c #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5 #29 218.0 2: 0x55a12742ba9a - std::sys_common::backtrace::_print_fmt::h3d085ebafa3ff4d4 #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/std/src/sys_common/backtrace.rs:65:5 #29 218.0 3: 0x55a12742ba9a - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::h1dc483ce0b0acc38 #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/std/src/sys_common/backtrace.rs:44:22 #29 218.0 4: 0x55a127452eee - core::fmt::write::hdde74b1f9f025400 #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/core/src/fmt/mod.rs:[1208](https://github.com/Tangel/koi-no/actions/runs/3599858142/jobs/6063881127#step:6:1210):17 #29 218.0 5: 0x55a127425d55 - std::io::Write::write_fmt::h93bb2bce537087eb #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/std/src/io/mod.rs:1682:15 #29 218.0 6: 0x55a12742b865 - std::sys_common::backtrace::_print::hffbee7406e6f5871 #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/std/src/sys_common/backtrace.rs:47:5 #29 218.0 7: 0x55a12742b865 - std::sys_common::backtrace::print::ha3e39199dd4aff7e #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/std/src/sys_common/backtrace.rs:34:9 #29 218.0 8: 0x55a12742d04f - std::panicking::default_hook::{{closure}}::h9d3052b99dbdb269 #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/std/src/panicking.rs:267:22 #29 218.0 9: 0x55a12742cd8b - std::panicking::default_hook::hf85cde60e828679e #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/std/src/panicking.rs:286:9 #29 218.0 10: 0x55a12742d75c - std::panicking::rust_panic_with_hook::h7bb6b938bd4ce622 #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/std/src/panicking.rs:688:13 #29 218.0 11: 0x55a12742d4b2 - std::panicking::begin_panic_handler::{{closure}}::h894513d3c9ea77f1 #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/std/src/panicking.rs:577:13 #29 218.0 12: 0x55a12742bf4c - std::sys_common::backtrace::__rust_end_short_backtrace::h478da9df1dc8d9c3 #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/std/src/sys_common/backtrace.rs:137:18 #29 218.0 13: 0x55a12742d202 - rust_begin_unwind #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/std/src/panicking.rs:575:5 #29 218.0 14: 0x55a127099373 - core::panicking::panic_fmt::h0f7f0682c1639601 #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/core/src/panicking.rs:65:14 #29 218.0 15: 0x55a12710fdb9 - <perseus::error_pages::ErrorPages<G> as core::default::Default>::default::h9530715906577bfd #29 218.0 16: 0x55a1270aac64 - perseus::init::PerseusAppBase<G,perseus::stores::mutable::FsMutableStore,T>::new::h733ff80722ab637c #29 218.0 17: 0x55a12719080c - frontend::__perseus_simple_main::h8036ffff2c7e7a86 #29 218.0 18: 0x55a1270d759f - perseus::engine::dflt_engine::run_dflt_engine::{{closure}}::hd9c97dd908b58959 #29 218.0 19: 0x55a1270cf4b0 - tokio::runtime::park::CachedParkThread::block_on::h22fc48c8149dbe34 #29 218.0 20: 0x55a1270a760b - tokio::runtime::scheduler::multi_thread::MultiThread::block_on::h163fe71d846bd96d #29 218.0 21: 0x55a127156a10 - tokio::runtime::runtime::Runtime::block_on::ha11bc5bc26d78aa3 #29 218.0 22: 0x55a127190d2f - frontend::main::h47a05cdbfe823592 #29 218.0 23: 0x55a12711e603 - std::sys_common::backtrace::__rust_begin_short_backtrace::h5fc47d3e25f2b1d7 #29 218.0 24: 0x55a127149d39 - std::rt::lang_start::{{closure}}::h04d38424564156fa #29 218.0 25: 0x55a12742112c - core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once::h162ddbe93a8e5d3d #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/core/src/ops/function.rs:606:13 #29 218.0 26: 0x55a12742112c - std::panicking::try::do_call::h21b0f0d525d215e5 #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/std/src/panicking.rs:483:40 #29 218.0 27: 0x55a12742112c - std::panicking::try::hd61d2ba99b8182e3 #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/std/src/panicking.rs:447:19 #29 218.0 28: 0x55a12742112c - std::panic::catch_unwind::hd6b0ecc6b055e1e0 #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/std/src/panic.rs:137:14 #29 218.0 29: 0x55a12742112c - std::rt::lang_start_internal::{{closure}}::ha91d000e2bcaf66a #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/std/src/rt.rs:148:48 #29 218.0 30: 0x55a12742112c - std::panicking::try::do_call::h594aa1d798036a46 #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/std/src/panicking.rs:483:40 #29 218.0 31: 0x55a12742112c - std::panicking::try::h5ac6b9132cb32902 #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/std/src/panicking.rs:447:19 #29 218.0 32: 0x55a12742112c - std::panic::catch_unwind::h72555755a0c1dc12 #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/std/src/panic.rs:137:14 #29 218.0 33: 0x55a12742112c - std::rt::lang_start_internal::heaabc2d640d42dd4 #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/std/src/rt.rs:148:20 #29 218.0 34: 0x55a127190e05 - main #29 218.0 35: 0x7f974d844d0a - __libc_start_main #29 218.0 36: 0x55a1270997ca - _start #29 218.0 37: 0x0 - <unknown> #29 ERROR: process "/bin/sh -c RUST_BACKTRACE=full perseus deploy" did not complete successfully: exit code: 1 ------ > [build 20/20] RUN RUST_BACKTRACE=full perseus deploy: #29 218.0 31: 0x55a12742112c - std::panicking::try::h5ac6b9132cb32902 #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/std/src/panicking.rs:447:19 #29 218.0 32: 0x55a12742112c - std::panic::catch_unwind::h72555755a0c1dc12 #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/std/src/panic.rs:137:14 #29 218.0 33: 0x55a12742112c - std::rt::lang_start_internal::heaabc2d640d42dd4 #29 218.0 at /rustc/c090c6880c0183ba248bde4a16e29ba29ac4fbba/library/std/src/rt.rs:148:20 #29 218.0 34: 0x55a127190e05 - main #29 218.0 35: 0x7f974d844d0a - __libc_start_main #29 218.0 36: 0x55a1270997ca - _start #29 218.0 37: 0x0 - <unknown> ------ Dockerfile:51 -------------------- 49 | RUN perseus clean 50 | 51 | >>> RUN RUST_BACKTRACE=full perseus deploy 52 | 53 | FROM debian:11-slim -------------------- ERROR: failed to solve: process "/bin/sh -c RUST_BACKTRACE=full perseus deploy" did not complete successfully: exit code: 1 @rieval as an aside: you should know that wee_alloc is unmaintained and leaks memory. https://github.com/rustwasm/wee_alloc/issues/107 https://github.com/rustwasm/wee_alloc/issues/106 @rieval could you try with a usual crates.io dependency? The main branch has about 8 breaking changes on it right now, some relating to how error pages are handled, which could be causing your problem. I'm fairly certain these two problems are different though, so would you mind opening a separate issue? @HBnetDE can you try renaming ~/.cargo/registry to ~/.cargo/registry.old? Then run perseus clean && cargo clean in your app's directory, and then try perseus check. That will completely reset your system-level Cargo cache, which can sometimes fix really strange problems like this. I've done it a few times myself for other weird errors, and it's worked. (Just changing the registry directory shouldn't have any other adverse consequences.) @rieval could you try with a usual crates.io dependency? The main branch has about 8 breaking changes on it right now, some relating to how error pages are handled, which could be causing your problem. I'm fairly certain these two problems are different though, so would you mind opening a separate issue? I tested 0.4.0-beta.11, and it worked fine(Windows and Debian). [dependencies] perseus = { version = "0.4.0-beta.11", features = ["hydrate"] } serde = { version = "*", features = ["derive"] } serde_json = "*" sycamore = { version = "*", features = ["hydrate", "ssr"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] perseus-axum = { version = "0.4.0-beta.11", features = ["dflt-server"] } @rieval as an aside: you should know that wee_alloc is unmaintained and leaks memory. rustwasm/wee_alloc#107 rustwasm/wee_alloc#106 Oops! Thanks for letting me know. @rieval no problem, likely my fault, there are a lot of breaking changes on main right now! Output of perseus check after renaming ~/.cargo/registry and cleaning Blocking waiting for file lock on package cache Blocking waiting for file lock on package cache Compiling wasm-bindgen-macro-support v0.2.83 Checking futures-util v0.3.25 Checking mio v0.8.5 Compiling serde v1.0.147 Compiling darling_macro v0.13.4 Checking bytes v1.3.0 Compiling paste v1.0.9 Compiling unicode-xid v0.2.4 Compiling async-trait v0.1.58 Compiling itoa v1.0.4 Compiling regex-syntax v0.6.28 Compiling ryu v1.0.11 error[E0432]: unresolved import `crate::sys::IoSourceState` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:12:5 | 12 | use crate::sys::IoSourceState; | ^^^^^^^^^^^^^^^^^^^^^^^^^ no `IoSourceState` in `sys` error[E0432]: unresolved import `crate::sys::tcp` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:15:17 | 15 | use crate::sys::tcp::{bind, listen, new_for_addr}; | ^^^ could not find `tcp` in `sys` error[E0432]: unresolved import `crate::sys::tcp` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/stream.rs:13:17 | 13 | use crate::sys::tcp::{connect, new_for_addr}; | ^^^ could not find `tcp` in `sys` error[E0433]: failed to resolve: could not find `Selector` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/poll.rs:301:18 | 301 | sys::Selector::new().map(|selector| Poll { | ^^^^^^^^ could not find `Selector` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:24:14 | 24 | sys::event::token(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:38:14 | 38 | sys::event::is_readable(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:43:14 | 43 | sys::event::is_writable(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:68:14 | 68 | sys::event::is_error(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:99:14 | 99 | sys::event::is_read_closed(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:129:14 | 129 | sys::event::is_write_closed(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:151:14 | 151 | sys::event::is_priority(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:173:14 | 173 | sys::event::is_aio(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:183:14 | 183 | sys::event::is_lio(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:221:26 | 221 | sys::event::debug_details(f, self.0) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `tcp` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:103:18 | 103 | sys::tcp::accept(inner).map(|(stream, addr)| (TcpStream::from_std(stream), addr)) | ^^^ could not find `tcp` in `sys` error[E0433]: failed to resolve: could not find `udp` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/udp.rs:122:14 | 122 | sys::udp::bind(addr).map(UdpSocket::from_std) | ^^^ could not find `udp` in `sys` error[E0433]: failed to resolve: could not find `udp` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/udp.rs:544:14 | 544 | sys::udp::only_v6(&self.inner) | ^^^ could not find `udp` in `sys` error[E0412]: cannot find type `Selector` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/poll.rs:255:20 | 255 | selector: sys::Selector, | ^^^^^^^^ not found in `sys` error[E0412]: cannot find type `Selector` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/poll.rs:689:44 | 689 | pub(crate) fn selector(&self) -> &sys::Selector { | ^^^^^^^^ not found in `sys` error[E0412]: cannot find type `Waker` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/waker.rs:79:17 | 79 | inner: sys::Waker, | ^^^^^ not found in `sys` | help: consider importing one of these items | 1 | use core::task::Waker; | 1 | use crate::Waker; | 1 | use std::task::Waker; | help: if you import `Waker`, refer to it directly | 79 - inner: sys::Waker, 79 + inner: Waker, | error[E0433]: failed to resolve: could not find `Waker` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/waker.rs:87:14 | 87 | sys::Waker::new(registry.selector(), token).map(|inner| Waker { inner }) | ^^^^^ not found in `sys` | help: consider importing one of these items | 1 | use core::task::Waker; | 1 | use crate::Waker; | 1 | use std::task::Waker; | help: if you import `Waker`, refer to it directly | 87 - sys::Waker::new(registry.selector(), token).map(|inner| Waker { inner }) 87 + Waker::new(registry.selector(), token).map(|inner| Waker { inner }) | error[E0412]: cannot find type `Event` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:18:17 | 18 | inner: sys::Event, | ^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::event::Event; | help: if you import `Event`, refer to it directly | 18 - inner: sys::Event, 18 + inner: Event, | error[E0412]: cannot find type `Event` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:187:55 | 187 | pub(crate) fn from_sys_event_ref(sys_event: &sys::Event) -> &Event { | ^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::event::Event; | help: if you import `Event`, refer to it directly | 187 - pub(crate) fn from_sys_event_ref(sys_event: &sys::Event) -> &Event { 187 + pub(crate) fn from_sys_event_ref(sys_event: &Event) -> &Event { | error[E0412]: cannot find type `Event` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:191:41 | 191 | &*(sys_event as *const sys::Event as *const Event) | ^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::event::Event; | help: if you import `Event`, refer to it directly | 191 - &*(sys_event as *const sys::Event as *const Event) 191 + &*(sys_event as *const Event as *const Event) | error[E0412]: cannot find type `Event` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:217:46 | 217 | struct EventDetails<'a>(&'a sys::Event); | ^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::event::Event; | help: if you import `Event`, refer to it directly | 217 - struct EventDetails<'a>(&'a sys::Event); 217 + struct EventDetails<'a>(&'a Event); | error[E0412]: cannot find type `Events` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/events.rs:43:17 | 43 | inner: sys::Events, | ^^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::Events; | help: if you import `Events`, refer to it directly | 43 - inner: sys::Events, 43 + inner: Events, | error[E0433]: failed to resolve: could not find `Events` in `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/events.rs:94:25 | 94 | inner: sys::Events::with_capacity(capacity), | ^^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::Events; | help: if you import `Events`, refer to it directly | 94 - inner: sys::Events::with_capacity(capacity), 94 + inner: Events::with_capacity(capacity), | error[E0412]: cannot find type `Events` in module `sys` --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/events.rs:189:47 | 189 | pub(crate) fn sys(&mut self) -> &mut sys::Events { | ^^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::Events; | help: if you import `Events`, refer to it directly | 189 - pub(crate) fn sys(&mut self) -> &mut sys::Events { 189 + pub(crate) fn sys(&mut self) -> &mut Events { | error[E0425]: cannot find function `set_reuseaddr` in this scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:74:9 | 74 | set_reuseaddr(&listener.inner, true)?; | ^^^^^^^^^^^^^ not found in this scope error[E0425]: cannot find value `listener` in this scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:74:24 | 74 | set_reuseaddr(&listener.inner, true)?; | ^^^^^^^^ not found in this scope error[E0425]: cannot find value `listener` in this scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:76:15 | 76 | bind(&listener.inner, addr)?; | ^^^^^^^^ not found in this scope error[E0425]: cannot find value `listener` in this scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:77:17 | 77 | listen(&listener.inner, 1024)?; | ^^^^^^^^ not found in this scope error[E0425]: cannot find value `listener` in this scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:78:12 | 78 | Ok(listener) | ^^^^^^^^ not found in this scope error[E0425]: cannot find value `stream` in this scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/stream.rs:90:18 | 90 | connect(&stream.inner, addr)?; | ^^^^^^ not found in this scope error[E0425]: cannot find value `stream` in this scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/stream.rs:91:12 | 91 | Ok(stream) | ^^^^^^ not found in this scope Compiling sycamore-router-macro v0.8.0 Compiling sycamore-reactive v0.8.1 error[E0599]: no method named `register` found for struct `IoSource<std::net::TcpListener>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:146:20 | 146 | self.inner.register(registry, token, interests) | ^^^^^^^^ method not found in `IoSource<std::net::TcpListener>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `register` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `register`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `reregister` found for struct `IoSource<std::net::TcpListener>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:155:20 | 155 | self.inner.reregister(registry, token, interests) | ^^^^^^^^^^ method not found in `IoSource<std::net::TcpListener>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `reregister` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `reregister`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `deregister` found for struct `IoSource<std::net::TcpListener>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:159:20 | 159 | self.inner.deregister(registry) | ^^^^^^^^^^ method not found in `IoSource<std::net::TcpListener>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `deregister` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `deregister`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `register` found for struct `IoSource<std::net::TcpStream>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/stream.rs:325:20 | 325 | self.inner.register(registry, token, interests) | ^^^^^^^^ method not found in `IoSource<std::net::TcpStream>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `register` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `register`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `reregister` found for struct `IoSource<std::net::TcpStream>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/stream.rs:334:20 | 334 | self.inner.reregister(registry, token, interests) | ^^^^^^^^^^ method not found in `IoSource<std::net::TcpStream>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `reregister` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `reregister`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `deregister` found for struct `IoSource<std::net::TcpStream>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/stream.rs:338:20 | 338 | self.inner.deregister(registry) | ^^^^^^^^^^ method not found in `IoSource<std::net::TcpStream>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `deregister` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `deregister`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `register` found for struct `IoSource<std::net::UdpSocket>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/udp.rs:622:20 | 622 | self.inner.register(registry, token, interests) | ^^^^^^^^ method not found in `IoSource<std::net::UdpSocket>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `register` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `register`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `reregister` found for struct `IoSource<std::net::UdpSocket>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/udp.rs:631:20 | 631 | self.inner.reregister(registry, token, interests) | ^^^^^^^^^^ method not found in `IoSource<std::net::UdpSocket>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `reregister` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `reregister`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `deregister` found for struct `IoSource<std::net::UdpSocket>` in the current scope --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/udp.rs:635:20 | 635 | self.inner.deregister(registry) | ^^^^^^^^^^ method not found in `IoSource<std::net::UdpSocket>` | ::: /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `deregister` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `deregister`, perhaps you need to implement it --> /home/user/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ Some errors have detailed explanations: E0412, E0425, E0432, E0433, E0599. For more information about an error, try `rustc --explain E0412`. error: could not compile `mio` due to 44 previous errors warning: build failed, waiting for other jobs to finish... looks like still the same error to me. I really have no clue what could be causing this, sorry. I'm on Ubuntu 22.04 as well, and I'm not experiencing this issue. The output of RUST_BACKTRACE=1 perseus snoop wasm-build might contain some clues, but can I just check for absolute certainty that you are definitely using the pure output of perseus new? I've seen these kinds of issues before with Wasm, but only when using a non-Wasm crate, like reqwest or something, in Wasm. For that reason, Perseus advises dependency splitting. But that shouldn't be necessary in the demo app... Also, maybe run rustup target add wasm32-unknown-unknown to make sure you actually have the Wasm target installed. This should be automatically executed by the CLI, but it might perhaps be being skipped over, and that might have caused this. The only other thing I can think of right now is that you might have an override somewhere in ~/.cargo for the perseus crate? It's pretty unlikely, but that might cause this... It definitely isn't the missing target, since I can build and run sycamore on its own just fine. And yes it is definitely unmodified. I even deleted the app and recreated it before I opened the issue, just to be sure. I'll check the snoop and the override when I have time. This is why I thought about clearing the registry, in case there was an old version of Tokio doing weird things. Unless there's a new version of Tokio doing weird things? Hey, sorry it took so long! Here is the output of RUST_BACKTRACE=1 perseus snoop wasm-build: [NOTE]: You should expect unused code warnings here! Don't worry about them, they're just a product of the target-gating. Compiling sycamore-core v0.8.2 Compiling js-sys v0.3.60 Compiling mio v0.8.5 Compiling futures v0.3.25 Compiling console_error_panic_hook v0.1.7 error[E0432]: unresolved import `crate::sys::IoSourceState` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:12:5 | 12 | use crate::sys::IoSourceState; | ^^^^^^^^^^^^^^^^^^^^^^^^^ no `IoSourceState` in `sys` error[E0432]: unresolved import `crate::sys::tcp` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:15:17 | 15 | use crate::sys::tcp::{bind, listen, new_for_addr}; | ^^^ could not find `tcp` in `sys` error[E0432]: unresolved import `crate::sys::tcp` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/stream.rs:13:17 | 13 | use crate::sys::tcp::{connect, new_for_addr}; | ^^^ could not find `tcp` in `sys` error[E0433]: failed to resolve: could not find `Selector` in `sys` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/poll.rs:301:18 | 301 | sys::Selector::new().map(|selector| Poll { | ^^^^^^^^ could not find `Selector` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:24:14 | 24 | sys::event::token(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:38:14 | 38 | sys::event::is_readable(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:43:14 | 43 | sys::event::is_writable(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:68:14 | 68 | sys::event::is_error(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:99:14 | 99 | sys::event::is_read_closed(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:129:14 | 129 | sys::event::is_write_closed(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:151:14 | 151 | sys::event::is_priority(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:173:14 | 173 | sys::event::is_aio(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:183:14 | 183 | sys::event::is_lio(&self.inner) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `event` in `sys` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:221:26 | 221 | sys::event::debug_details(f, self.0) | ^^^^^ could not find `event` in `sys` error[E0433]: failed to resolve: could not find `tcp` in `sys` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:103:18 | 103 | sys::tcp::accept(inner).map(|(stream, addr)| (TcpStream::from_std(stream), addr)) | ^^^ could not find `tcp` in `sys` error[E0433]: failed to resolve: could not find `udp` in `sys` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/udp.rs:122:14 | 122 | sys::udp::bind(addr).map(UdpSocket::from_std) | ^^^ could not find `udp` in `sys` error[E0433]: failed to resolve: could not find `udp` in `sys` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/udp.rs:544:14 | 544 | sys::udp::only_v6(&self.inner) | ^^^ could not find `udp` in `sys` error[E0412]: cannot find type `Selector` in module `sys` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/poll.rs:255:20 | 255 | selector: sys::Selector, | ^^^^^^^^ not found in `sys` error[E0412]: cannot find type `Selector` in module `sys` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/poll.rs:689:44 | 689 | pub(crate) fn selector(&self) -> &sys::Selector { | ^^^^^^^^ not found in `sys` error[E0412]: cannot find type `Waker` in module `sys` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/waker.rs:79:17 | 79 | inner: sys::Waker, | ^^^^^ not found in `sys` | help: consider importing one of these items | 1 | use core::task::Waker; | 1 | use crate::Waker; | 1 | use std::task::Waker; | help: if you import `Waker`, refer to it directly | 79 - inner: sys::Waker, 79 + inner: Waker, | error[E0433]: failed to resolve: could not find `Waker` in `sys` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/waker.rs:87:14 | 87 | sys::Waker::new(registry.selector(), token).map(|inner| Waker { inner }) | ^^^^^ not found in `sys` | help: consider importing one of these items | 1 | use core::task::Waker; | 1 | use crate::Waker; | 1 | use std::task::Waker; | help: if you import `Waker`, refer to it directly | 87 - sys::Waker::new(registry.selector(), token).map(|inner| Waker { inner }) 87 + Waker::new(registry.selector(), token).map(|inner| Waker { inner }) | error[E0412]: cannot find type `Event` in module `sys` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:18:17 | 18 | inner: sys::Event, | ^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::event::Event; | help: if you import `Event`, refer to it directly | 18 - inner: sys::Event, 18 + inner: Event, | error[E0412]: cannot find type `Event` in module `sys` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:187:55 | 187 | pub(crate) fn from_sys_event_ref(sys_event: &sys::Event) -> &Event { | ^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::event::Event; | help: if you import `Event`, refer to it directly | 187 - pub(crate) fn from_sys_event_ref(sys_event: &sys::Event) -> &Event { 187 + pub(crate) fn from_sys_event_ref(sys_event: &Event) -> &Event { | error[E0412]: cannot find type `Event` in module `sys` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:191:41 | 191 | &*(sys_event as *const sys::Event as *const Event) | ^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::event::Event; | help: if you import `Event`, refer to it directly | 191 - &*(sys_event as *const sys::Event as *const Event) 191 + &*(sys_event as *const Event as *const Event) | error[E0412]: cannot find type `Event` in module `sys` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/event.rs:217:46 | 217 | struct EventDetails<'a>(&'a sys::Event); | ^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::event::Event; | help: if you import `Event`, refer to it directly | 217 - struct EventDetails<'a>(&'a sys::Event); 217 + struct EventDetails<'a>(&'a Event); | error[E0412]: cannot find type `Events` in module `sys` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/events.rs:43:17 | 43 | inner: sys::Events, | ^^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::Events; | help: if you import `Events`, refer to it directly | 43 - inner: sys::Events, 43 + inner: Events, | error[E0433]: failed to resolve: could not find `Events` in `sys` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/events.rs:94:25 | 94 | inner: sys::Events::with_capacity(capacity), | ^^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::Events; | help: if you import `Events`, refer to it directly | 94 - inner: sys::Events::with_capacity(capacity), 94 + inner: Events::with_capacity(capacity), | error[E0412]: cannot find type `Events` in module `sys` --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/events.rs:189:47 | 189 | pub(crate) fn sys(&mut self) -> &mut sys::Events { | ^^^^^^ not found in `sys` | help: consider importing this struct | 1 | use crate::Events; | help: if you import `Events`, refer to it directly | 189 - pub(crate) fn sys(&mut self) -> &mut sys::Events { 189 + pub(crate) fn sys(&mut self) -> &mut Events { | error[E0425]: cannot find function `set_reuseaddr` in this scope --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:74:9 | 74 | set_reuseaddr(&listener.inner, true)?; | ^^^^^^^^^^^^^ not found in this scope error[E0425]: cannot find value `listener` in this scope --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:74:24 | 74 | set_reuseaddr(&listener.inner, true)?; | ^^^^^^^^ not found in this scope error[E0425]: cannot find value `listener` in this scope --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:76:15 | 76 | bind(&listener.inner, addr)?; | ^^^^^^^^ not found in this scope error[E0425]: cannot find value `listener` in this scope --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:77:17 | 77 | listen(&listener.inner, 1024)?; | ^^^^^^^^ not found in this scope error[E0425]: cannot find value `listener` in this scope --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:78:12 | 78 | Ok(listener) | ^^^^^^^^ not found in this scope error[E0425]: cannot find value `stream` in this scope --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/stream.rs:90:18 | 90 | connect(&stream.inner, addr)?; | ^^^^^^ not found in this scope error[E0425]: cannot find value `stream` in this scope --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/stream.rs:91:12 | 91 | Ok(stream) | ^^^^^^ not found in this scope error[E0599]: no method named `register` found for struct `IoSource<std::net::TcpListener>` in the current scope --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:146:20 | 146 | self.inner.register(registry, token, interests) | ^^^^^^^^ method not found in `IoSource<std::net::TcpListener>` | ::: /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `register` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `register`, perhaps you need to implement it --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `reregister` found for struct `IoSource<std::net::TcpListener>` in the current scope --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:155:20 | 155 | self.inner.reregister(registry, token, interests) | ^^^^^^^^^^ method not found in `IoSource<std::net::TcpListener>` | ::: /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `reregister` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `reregister`, perhaps you need to implement it --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `deregister` found for struct `IoSource<std::net::TcpListener>` in the current scope --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/listener.rs:159:20 | 159 | self.inner.deregister(registry) | ^^^^^^^^^^ method not found in `IoSource<std::net::TcpListener>` | ::: /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `deregister` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `deregister`, perhaps you need to implement it --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `register` found for struct `IoSource<std::net::TcpStream>` in the current scope --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/stream.rs:325:20 | 325 | self.inner.register(registry, token, interests) | ^^^^^^^^ method not found in `IoSource<std::net::TcpStream>` | ::: /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `register` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `register`, perhaps you need to implement it --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `reregister` found for struct `IoSource<std::net::TcpStream>` in the current scope --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/stream.rs:334:20 | 334 | self.inner.reregister(registry, token, interests) | ^^^^^^^^^^ method not found in `IoSource<std::net::TcpStream>` | ::: /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `reregister` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `reregister`, perhaps you need to implement it --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `deregister` found for struct `IoSource<std::net::TcpStream>` in the current scope --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/tcp/stream.rs:338:20 | 338 | self.inner.deregister(registry) | ^^^^^^^^^^ method not found in `IoSource<std::net::TcpStream>` | ::: /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `deregister` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `deregister`, perhaps you need to implement it --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `register` found for struct `IoSource<std::net::UdpSocket>` in the current scope --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/udp.rs:622:20 | 622 | self.inner.register(registry, token, interests) | ^^^^^^^^ method not found in `IoSource<std::net::UdpSocket>` | ::: /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `register` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `register`, perhaps you need to implement it --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `reregister` found for struct `IoSource<std::net::UdpSocket>` in the current scope --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/udp.rs:631:20 | 631 | self.inner.reregister(registry, token, interests) | ^^^^^^^^^^ method not found in `IoSource<std::net::UdpSocket>` | ::: /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `reregister` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `reregister`, perhaps you need to implement it --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ error[E0599]: no method named `deregister` found for struct `IoSource<std::net::UdpSocket>` in the current scope --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/net/udp.rs:635:20 | 635 | self.inner.deregister(registry) | ^^^^^^^^^^ method not found in `IoSource<std::net::UdpSocket>` | ::: /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/io_source.rs:62:1 | 62 | pub struct IoSource<T> { | ---------------------- method `deregister` not found for this struct | = help: items from traits can only be used if the trait is implemented and in scope note: `Source` defines an item `deregister`, perhaps you need to implement it --> /home/bene/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/event/source.rs:75:1 | 75 | pub trait Source { | ^^^^^^^^^^^^^^^^ Some errors have detailed explanations: E0412, E0425, E0432, E0433, E0599. For more information about an error, try `rustc --explain E0412`. error: could not compile `mio` due to 44 previous errors warning: build failed, waiting for other jobs to finish... I also double checked my Cargo.toml: [package] name = "client" version = "0.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # Dependencies for the engine and the browser go here [dependencies] perseus = { version = "=0.4.0-beta.11" } sycamore = "^0.8.1" serde = { version = "1", features = [ "derive" ] } serde_json = "1" # Engine-only dependencies go here [target.'cfg(not(target_arch = "wasm32"))'.dependencies] tokio = { version = "1", features = [ "macros", "rt", "rt-multi-thread" ] } perseus-warp = { version = "=0.4.0-beta.11", features = [ "dflt-server" ] } # Browser-only dependencies go here [target.'cfg(target_arch = "wasm32")'.dependencies] No problem! Your Cargo.toml looks fine unfortunately (that would've been an easy fix), and, worse still, I've installed an entirely fresh system on my laptop, and I cannot replicate this issue. My best idea at this point is for you to totally reinstall Rust on your system, as the only thing that makes sense to me at this point is some kind of old residual package somewhere. (Even though mio v0.8.5 is the latest version...) @HBnetDE have you had any luck with this? There have been a few new beta versions over the last few weeks, so it might be worth trying those as well. @HBnetDE let me know if you're still experiencing this issue and I'll reopen. Closing for now. @arctic-hen7 Sorry it took me so long to get back to this. I just tried this with version 0.4.0-beta.17 and it's working now No problem, glad it's working! Let me know if you ever figure out what the problem was! It seems I was experiencing this same issue when the application was included in my workspace with other crates, but when it wasn't, it was fine. I added resolver = "2" to my workspace's Cargo.toml and it solved the issue. Everything else seems to work fine with the newer resolver. Ah yes @El-Wumbus I've had the same problem myself a few times! Pretty sure that was in the FAQs at some point, but I'm not sure if it still is.
gharchive/issue
2022-11-27T18:53:04
2025-04-01T06:38:44.090579
{ "authors": [ "El-Wumbus", "HBnetDE", "arctic-hen7", "enrand22", "rieval" ], "repo": "framesurge/perseus", "url": "https://github.com/framesurge/perseus/issues/241", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2062133554
Record max depth reached in CFG construction Add this information to the statistics in the DFS. Add the result to the title of the CFG to indicate the size of the deepest branch. I think this is done?
gharchive/issue
2024-01-02T09:13:38
2025-04-01T06:38:44.106973
{ "authors": [ "aodhgan", "franck44" ], "repo": "franck44/evm-dis", "url": "https://github.com/franck44/evm-dis/issues/41", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
965142423
feat: add build.keepIndexHtml plugin option Closes #70. vite-ssr build removes index.html from the client bundle to prevent serving it by mistake in an SSR app. However, there may be use cases where index.html should be preserved in the client build (e.g. when using server side routing to selectively use SSR for a subset of routes). Let's provide a plugin option build.keepIndexHtml so that a user can keep index.html in the client bundle if desired. @Xenonym Thank you for also adding docs! Will be released soon.
gharchive/pull-request
2021-08-10T16:58:29
2025-04-01T06:38:44.108717
{ "authors": [ "Xenonym", "frandiox" ], "repo": "frandiox/vite-ssr", "url": "https://github.com/frandiox/vite-ssr/pull/79", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
910323460
Prepare distribution via Homebrew I think that I do not have to introduce [Homebrew] to you. It makes Mac as easy to maintain like Linux distros :-) My favourite maintenance command is: brew update && brew upgrade && brew cleanup I would like to include lite-xl in installable and upgradable packages too. Would you with a Homebrew cask for lite-xl too? I did the following: Prepare a cask Confirm that it works Your feedback (questions) Submit the cask to the official Homebrew repo (not yet) 1. Prepare a cask You can review the cask source lite-xl.rb and test it like this: brew install --cask prantlf/tap/lite-xl Or install the tap for regular updates: brew tap prantlf/tap brew update brew install --cask lite-xl Installation and audit succeed: $ brew install -v --cask Casks/lite-xl.rb ==> Downloading https://github.com/franko/lite-xl/releases/download/v1.16.11/lite-xl-macos-x86-64.dmg Already downloaded: /Users/prantlf/Library/Caches/Homebrew/downloads/99247f3abe52b1a2d96dce5dcce6dee31658bbbd4d2caefbd74c674150dc01bf--lite-xl-macos-x86-64.dmg ==> Verifying checksum for cask 'lite-xl' All formula dependencies satisfied. ==> Installing Cask lite-xl hdiutil attach -plist -nobrowse -readonly -mountrandom /private/tmp/d20210603-25344-1ouhw00 /Users/prantlf/Library/Caches/Homebrew/downloads/99247f3abe52b1a2d96dce5dcce6dee31658bbbd4d2caefbd74c674150dc01bf--lite-xl-macos-x86-64.dmg mkbom -s -i /private/tmp/20210603-25344-ll1k01.list -- /private/tmp/20210603-25344-phx5tf.bom ditto --bom /private/tmp/20210603-25344-phx5tf.bom -- /private/tmp/d20210603-25344-1ouhw00/dmg.m6pUaK /private/tmp/d20210603-25344-1591k19 diskutil info -plist /private/tmp/d20210603-25344-1ouhw00/dmg.m6pUaK diskutil eject disk2s1 cp -pR /private/tmp/d20210603-25344-1591k19/lite-xl.app/. /usr/local/Caskroom/lite-xl/1.16.11/lite-xl.app chmod -Rf +w /private/tmp/d20210603-25344-1591k19 ==> Moving App 'lite-xl.app' to '/Applications/lite-xl.app' ==> Linking Binary 'lite-xl' to '/usr/local/bin/lite-xl' 🍺 lite-xl was successfully installed! $ brew audit --cask --strict Casks/lite-xl.rb audit for lite-xl: passed 2. Confirm that it works Works when launched from Spotlight. Works when launched on the command line by /Applications/lite-xl.app/Contents/MacOS/lite-xl. Does not work when launched using a symlink /usr/local/bin/lite-xl to binary above. The application can be started from the application launcher or Spotlight, but it is probably not what you see the most. It starts lite-xl showing the file system root in the tree panel. You usually start lite-xl in the project directory. Homebrew creates a symlink to the binary in /usr/local/bin for this purpose. You simply start TextMate by typing mate of Visual Studio Code by typing code from the command line. I let a symlink lite-xl be created during the installation, but launching the application using the symlink failed: $ lite-xl Error: cannot open /usr/local/bin/core/start.lua: No such file or directory stack traceback: [C]: in function 'xpcall' [string "local core..."]:2: in main chunk Apparently, the path to the Resources directory was computed from the unresolved symlink location: $ ls -l /usr/local/bin/lite-xl ... /usr/local/bin/lite-xl -> /Applications/lite-xl.app/Contents/MacOS/lite-xl How to make sure that the symlink is resolved and the path to the resources computes from original location of the application executable? I used executablePath with "/../../Resources" instead of resourcePath to get it working. But I am only a seasonal Mac developer and I do not know if it is the proper way how to deal with this. I opened #249 with this fix. 3. Your feedback (questions) Should the symlink be called lite instead of lite-xl. It is shorter to type. I do not expect people installing both lite and lite-xl for production. There is o cask for lite right now. If there is one created in the future, installing both can be prevented by declaring conflicts_with in the cask. Of course, people who develop lite and lite-xl know how to run either of them from a custom built binary. I noticed that the official binary is a lot bigger that the binary that I get from a build using build-packages.sh. The official one is probably liked statically: $ ls -l /Applications/lite-xl.app/Contents/MacOS ... 343680 3 Jun 02:38 lite-xl ... 2168736 28 Mai 16:38 lite-xl.orig Do you want to continue with this approach or do you want to link it dynamically? The Homebrew package could declare the required dependencies in that case: depends_on formula: "freetype" depends_on formula: "libagg" depends_on formula: "libx11" depends_on formula: "pcre2" depends_on formula: "sdl2" Lua is liked statically and system dependencies are ensured by declaring the minimum OSX version as 10.3 (high_sierra). Is the new web site ready? I used the repo readme URL in the cask for the time being: url "https://github.com/franko/lite-xl/releases/download/v#{version}/lite-xl-macos-x86-64.dmg" name "Lite XL" desc "Lightweight text editor written in Lua" homepage "https://github.com/franko/lite-xl#readme" Once a better home page is ready on a different host, it can be updated, for example: url "https://github.com/franko/lite-xl/releases/download/v#{version}/lite-xl-macos-x86-64.dmg", verified: "github.com/franko/lite-xl/" name "Lite XL" desc "Lightweight text editor written in Lua" homepage "https://franko.github.io/lite-xl/" 4. Submit the cask to the official Homebrew repo People should be able to discover and install lite-xl by running brew search lite without having to install a custom tap before. For example: $ brew search lite ==> Formulae dlite libspatialite literate-git rqlite sqlite ✔ ... ==> Casks ableton-live-lite lite-xl ✔ .... $ brew install --cask lite-xl .... I showed the way how to maintain casks outside the main Homebrew package list with the brew tap prantlf/tap example above. Once you like the cask, I could create a merge request about it for the official Homebrew repo. Thank you for all this work on macOS, I appreciate. I went another route to create a self-contained executable in a notarized package but having a homebrew recipe is great! 1. Should the symlink be called `lite` instead of `lite-xl`. It is shorter to type. I do not expect people installing both `lite` and `lite-xl` for production. There is o cask for `lite` right now. If there is one created in the future, installing both can be prevented by declaring `conflicts_with` in the cask. Of course, people who develop lite and lite-xl know how to run either of them from a custom built binary. It is customary to keep the executable called lite and we can align with this also on macOS which is an exception for no good reason. 2. I noticed that the official binary is a lot bigger that the binary that I get from a build using `build-packages.sh`. The official one is probably liked statically: $ ls -l /Applications/lite-xl.app/Contents/MacOS ... 343680 3 Jun 02:38 lite-xl ... 2168736 28 Mai 16:38 lite-xl.orig The binary you see is not linked statically but it links SDL2, freetype2, libagg and lua as static libraries and this is meant to be like this. I don't see any advantage to use SDL2 as a dynamic library, it just happens that homebrew does this by default like most linux distributions. In addition my binary use a special version of the SDL library that use zero CPU when idle. This is not the case for the stock SDL you are using and lite-xl will always use the CPU a little bit even when minimized or unfocused. The modified SDL library can be found there: https://github.com/franko/SDL-4d and here the tag for the 2.0.14 release: https://github.com/franko/SDL-4d/releases/tag/release-2.0.14-s4d-2 Do you want to continue with this approach or do you want to link it dynamically? The Homebrew package could declare the required dependencies in that case: It is okay for me that distributions and homebrew build lite-xl as they prefer based on their standards. On the other side for the binaries I craft I prefer static linking to the external libraries. In theory static linking with the modified SDL library and freetype is better but I understand this is non-standard for a homebrew package. Lua is liked statically and system dependencies are ensured by declaring the minimum OSX version as 10.3 (high_sierra). Right. 1. Is the new web site ready? I used the repo readme URL in the cask for the time being: The Website is ready since today, the varnish is still fresh! Please use the new website for the URL if you prepare a cask. Should the symlink be called lite instead of lite-xl? It is customary to keep the executable called lite and we can align with this also on macOS which is an exception for no good reason. Sounds good, I renamed the symlink to lite. I noticed that the official binary is a lot bigger that the binary that I get from a build using build-packages.sh. The official one is probably liked statically: The binary you see is not linked statically but it links SDL2, freetype2, libagg and lua as static libraries and this is meant to be like this. I don't see any advantage to use SDL2 as a dynamic library, it just happens that homebrew does this by default like most linux distributions. Yes, I agree. SDL and freetype are not libraries that would be too big to bundle or too critical to get patched quickly and often. In addition my binary use a special version of the SDL library that use zero CPU when idle. This is not the case for the stock SDL you are using and lite-xl will always use the CPU a little bit even when minimized or unfocused. This is very important. Now I know why my build was eating 3% CPU constantly, even in the background, but yours was idling with 0%. The modified SDL library can be found there: https://github.com/franko/SDL-4d and here the tag for the 2.0.14 release: Thank you! Unfortunately, It fails building on my machine with one redefined and many missing identifiers from X11. Apparently it does not like the contents of my /opt/X11/include. But it is not so important. I use my builds for testing purposes and I will stick with the official ones for the production. Do you want to continue with this approach or do you want to link it dynamically? The Homebrew package could declare the required dependencies in that case: It is okay for me that distributions and homebrew build lite-xl as they prefer based on their standards. On the other side for the binaries I craft I prefer static linking to the external libraries. In theory static linking with the modified SDL library and freetype is better but I understand this is non-standard for a homebrew package. I did compare the unified way to lookup, install and maintain Homebrew packages to a Linux distro, but it is by no means so coherent. Homebrew packages are are not developed together for a common release, like forcing all applications to use SDL2.0 for 2021.04, for example. That is why trying to reuse the shared packages as much as possible does not improve the maintenance as much as in a Linux distro. While Homebrew formulae describe how to build many packages from source on Mac, Homebrew casks are meant for describing how to download and unpack binaries using installers published by software vendors. Symlinking the binaries installed to /Applications in /usr/local/bin is a nifty trick to prevent the PATH from blowing up. In case of lite-xl, I do not see it worth having a special Homebrew build using shared libraries from other Homebrew packages. As long as there is no other reason and the binary installed by Homebrew can be the same as you distribute, there will be less work to maintain it and less risk of problems. Is the new web site ready? I used the repo readme URL in the cask for the time being: The Website is ready since today, the varnish is still fresh! Please use the new website for the URL if you prepare a cask. Yay, it is shining so nicely! :-) I put it to the cask in progress. I will wait for 1.16.12 with #249 before I send it to the homebrew-cask repo. Thank you! The modified SDL library can be found there: https://github.com/franko/SDL-4d and here the tag for the 2.0.14 release: Thank you! Unfortunately, It fails building on my machine with one redefined and many missing identifiers from X11. Apparently it does not like the contents of my /opt/X11/include. But it is not so important. I use my builds for testing purposes and I will stick with the official ones for the production. If it fails to build on your machine it means the standard SDL2 release 2.0.14 will fail too. My modification do not touch the building system and the dependencies. You may use lhelper, it knows how to build it for you. It works nicely with homebrew. To build the standard SDL2 library: # from inside an lhelper environment lhelper install sdl2 to install the modified version: lhelper install sdl2 2.0.14-wait-event-timeout-1 On the other side, to be honest, I didn't test on macOS when the x11 libraries are installed so it may fail at well. By the way, in the same way you can build the freetype library: lhelper install freetype2 Yay, it is shining so nicely! :-) I put it to the cask in progress. I will wait for 1.16.12 with #249 before I send it to the homebrew-cask repo. Great, thank you. In addition my binary use a special version of the SDL library that use zero CPU when idle. This is not the case for the stock SDL you are using and lite-xl will always use the CPU a little bit even when minimized or unfocused. This is very important. Now I know why my build was eating 3% CPU constantly, even in the background, but yours was idling with 0%. The modified SDL library can be found there: https://github.com/franko/SDL-4d and here the tag for the 2.0.14 release: My modification to the SDL library was merged, like one hour ago! https://github.com/libsdl-org/SDL/pull/4419 So it should be included with the next great release of the SDL library!
gharchive/issue
2021-06-03T09:52:44
2025-04-01T06:38:44.143075
{ "authors": [ "franko", "prantlf" ], "repo": "franko/lite-xl", "url": "https://github.com/franko/lite-xl/issues/250", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
105553008
info-all = 'false' attribute not working Hi! Thanks for creating this angular version of the duallistbox. I tried to use the info-all = 'false' setting, but instead of hiding the info text it shows the text 'false' above the dual list box. I changed the code myself by adding an extra transformFn to the InfoAll attribute. var getFalseOrStringValue = function (attributeValue) { if (attributeValue === false || attributeValue === 'false') return false; return attributeValue; }; ...and... 'infoAll': { changeFn: 'setInfoText', defaultValue: 'Showing all {0}', transformFn: getFalseOrStringValue }, I am not keen on making own changes. If you could provide a fix I would be very gratefull. Hello BasvdM! You can use a special character as '­'. Its work for me. Cya Hi, Thanks for your reply. Unfortunately I don't understand your answer.... What should I do with the soft hyphen? Gr. Bas Wow, srry! Use info-all="­". Can I see a live demo of the issue please?
gharchive/issue
2015-09-09T09:04:03
2025-04-01T06:38:44.156706
{ "authors": [ "BasvdM", "fabiogel", "frapontillo" ], "repo": "frapontillo/angular-bootstrap-duallistbox", "url": "https://github.com/frapontillo/angular-bootstrap-duallistbox/issues/13", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
1353462939
🛑 Senior School Website is down In b7475c8, Senior School Website (https://www.cranleigh.org) was down: HTTP code: 0 Response time: 0 ms Resolved: Senior School Website is back up in 908dc05.
gharchive/issue
2022-08-28T20:38:06
2025-04-01T06:38:44.250574
{ "authors": [ "fredbradley" ], "repo": "fredbradley/upptime", "url": "https://github.com/fredbradley/upptime/issues/269", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
236755757
Counting Cards Challenge Counting Cards has an issue. User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36. Please describe how to reproduce this issue, and include links to screenshots if possible. My code: var count = 0; function cc(card) { // Only change code below this line switch(card) { case 2: case 3: case 4: case 5: case 6: count+=1; break; case 10: case 'J': case 'Q': case 'K': case 'A': count-=1; break; } return count + (count > 0 ? " Bet " : " Hold "); // Only change code above this line } // Add/remove calls to test your function. // Note: Only the last will display cc(2); cc(3); cc(7); cc('K'); cc('A'); ``` i got 0 hold but it didnt go through You have extra spaces after "Bet" and "Hold".
gharchive/issue
2017-06-19T00:30:34
2025-04-01T06:38:44.270908
{ "authors": [ "louiss0", "nmdoliveira" ], "repo": "freeCodeCamp/freeCodeCamp", "url": "https://github.com/freeCodeCamp/freeCodeCamp/issues/15437", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
464205419
Login 401 error I am trying to have a login set up in the application and I am using the loopback login and its throwing a 401 Unauthorized error. can you guys help? Closing this for lack of sufficient information, can you please elaborate in comments below detailed steps with how you see the error. Please make sure you fill up the information template presented to you while opening the issue: **Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. Go to '...' 2. Click on '....' 3. Scroll down to '....' 4. See error **Expected behavior** A clear and concise description of what you expected to happen. **Screenshots** If applicable, add screenshots to help explain your problem. **Desktop (please complete the following information):** - OS: [e.g. iOS] - Browser [e.g. chrome, safari] - Version [e.g. 22] **Smartphone (please complete the following information):** - Device: [e.g. iPhone6] - OS: [e.g. iOS8.1] - Browser [e.g. stock browser, safari] - Version [e.g. 22] **Additional context** Add any other context about the problem here.
gharchive/issue
2019-07-04T11:03:00
2025-04-01T06:38:44.272904
{ "authors": [ "raisedadead", "sadikn" ], "repo": "freeCodeCamp/freeCodeCamp", "url": "https://github.com/freeCodeCamp/freeCodeCamp/issues/36372", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
520669122
Confusing task in Basic JavaScript: Comparisons with the Logical And Operator Describe your problem and how to reproduce it: For this challenge, the starting code in my editor contains the following lines: if (val) { if (val) { return "Yes"; } } The challenge is Combine the two if statements into one statement which will return "Yes" if val is less than or equal to 50 and greater than or equal to 25. Otherwise, will return "No". Since the idea behind this challenge is the ability to combine conditions with the && operator, I would expect the starting code to instead read: if (val <= 50) { if (val >= 25) { return "Yes"; } } Add a Link to the page with the problem: https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-javascript/comparisons-with-the-logical-and-operator Tell us about your browser and operating system: Browser Name: Chrome Browser Version: 76.0.3809.100 Operating System: MacOS Sierra If possible, add a screenshot here (you can drag and drop, png, jpg, gif, etc. in this box):' The instructions tell you what to do regardless of the seed code. If the seed code was provided as you describe, it would not be much of a challenge to solve. I think the point of the exercise is to demonstrate the usage of the && operator, so even though it's easier with my suggestion, it's not trivial. If you'd rather not give that hint, though, there's no reason for the nested if statements in the seed code, and I was confused by them. The seed code should read: if (val) { return "Yes"; } The point of the exercise is two-fold. One is to teach the user how to use the && operator. The other is to have the user figure how to achieve the same logic with the && operator as without the operator using the nested if statements. I do not see any reason to change this challenge. I will let the other collaborators/mods give their opinions on this issue. I'm with @RandellDawson on this one - I don't think the seed needs changing. I redid the challenge and found that the nested if statements were helpful. You can create the intermediate solution: function testLogicalAnd(val) { // Only change code below this line if (val >= 25) { if (val <= 50) { return "Yes"; } } // Only change code above this line return "No"; } if you're more comfortable with nested if statements and that will pass all but the first two tests. This allows you to confirm that you've got the logic right before refactoring it into a single conditional. The only thing I would consider changing is Combine the two if statements into one statement to Replace the two if statements with one statement, using the && operator, since 'combine' slightly implies that the new statement is built out of the original two, which isn't really the case here. Doing that should make it less confusing without watering the task down. Thanks @ojeytonwilliams: I like your suggestion to change the wording to Replace the two if statements with one statement, using the && operator, Any interest in creating a PR for that @allison-strandberg? Thank you for the link @moT01!
gharchive/issue
2019-11-10T22:38:25
2025-04-01T06:38:44.282178
{ "authors": [ "RandellDawson", "allison-strandberg", "moT01", "ojeytonwilliams" ], "repo": "freeCodeCamp/freeCodeCamp", "url": "https://github.com/freeCodeCamp/freeCodeCamp/issues/37734", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
560766651
Broken link on Redux Challenge Intro Page Describe your problem and how to reproduce it: 1) Go to: https://www.freecodecamp.org/learn/front-end-libraries/redux/ 2) Find this text: "Improve this intro on GitHub." 3) Link to GitHub to improve the intro is broken Add a Link to the page with the problem: https://www.freecodecamp.org/learn/front-end-libraries/redux/ Tell us about your browser and operating system: Browser Name: Chrome Browser Version: 79 Operating System: Mac OS 10.13.6 If possible, add a screenshot here (you can drag and drop, png, jpg, gif, etc. in this box): I am not even sure why that last sentence is present. I think it is best if it is removed completely from the introduction. If you see anymore links like this, please add them to this issue, so someone can create a PR to fix them all at the same time. What do you think about removing the link to the redux website @RandellDawson? (the first word in the intro) @moT01 I think for now, we can leave it alone. I think the discussion of external links should be on a separate issue (if there is not already an outstanding issue). I thought I had an open issue at one point about external links. It may have gotten closed at some point (can't remember why). If you see anymore links like this, please add them to this issue, so someone can create a PR to fix them all at the same time. Hey guys, the same issue is happening in the React and Redux section, please check: https://www.freecodecamp.org/learn/front-end-libraries/react-and-redux/
gharchive/issue
2020-02-06T04:09:37
2025-04-01T06:38:44.289325
{ "authors": [ "RandellDawson", "andrescaroc", "moT01" ], "repo": "freeCodeCamp/freeCodeCamp", "url": "https://github.com/freeCodeCamp/freeCodeCamp/issues/38171", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
808626218
No image at coding challenge "Add a Text Alternative to Images for Visually Impaired Accessibility" Describe your problem and how to reproduce it: No image at coding challenge Add a Link to the page with the problem: https://www.freecodecamp.org/learn/responsive-web-design/applied-accessibility/add-a-text-alternative-to-images-for-visually-impaired-accessibility Tell us about your browser and operating system: Browser Name: Brave Browser Version: V1.20.103 Operating System: MacOS Big Sur v11.1 If possible, add a screenshot here (you can drag and drop, png, jpg, gif, etc. in this box): Duplicate of issue #41131, so closing.
gharchive/issue
2021-02-15T15:24:07
2025-04-01T06:38:44.292830
{ "authors": [ "RandellDawson", "sondregi" ], "repo": "freeCodeCamp/freeCodeCamp", "url": "https://github.com/freeCodeCamp/freeCodeCamp/issues/41130", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
284292210
Master: update my repo Pre-Submission Checklist [ ] Your pull request targets the staging branch of freeCodeCamp. [ ] Branch starts with either fix/, feature/, or translate/ (e.g. fix/signin-issue) [ ] You have only one commit (if not, squash them into one commit). [ ] All new and existing tests pass the command npm test. Use git commit --amend to amend any fixes. Type of Change [ ] Small bug fix (non-breaking change which fixes an issue) [ ] New feature (non-breaking change which adds new functionality) [ ] Breaking change (fix or feature that would change existing functionality) [ ] Add new translation (feature adding new translations) Checklist: [ ] Tested changes locally. [ ] Addressed currently open issue (replace XXXXX with an issue no in next line) Closes #XXXXX Description Oops, made that by mistake.
gharchive/pull-request
2017-12-23T07:35:48
2025-04-01T06:38:44.297907
{ "authors": [ "profoundhub" ], "repo": "freeCodeCamp/freeCodeCamp", "url": "https://github.com/freeCodeCamp/freeCodeCamp/pull/16287", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
372267452
Typo on strcpy [x] I have read freeCodeCamp's contribution guidelines. [x] My pull request has a descriptive title (not a vague title like Update index.md) [x] My pull request targets the master branch of freeCodeCamp. [x] None of my changes are plagiarized from another source without proper attribution. [x] My article does not contain shortened URLs or affiliate links. If your pull request closes a GitHub issue, replace the XXXXX below with the issue number. Closes #XXXXX Thank you @TrollzorFTW for your contribution and congratulations on your first PR merge to this repo! 🎉 Hope to see more contributions from you in the future.
gharchive/pull-request
2018-10-21T00:57:36
2025-04-01T06:38:44.300972
{ "authors": [ "TrollzorFTW", "ezioda004" ], "repo": "freeCodeCamp/freeCodeCamp", "url": "https://github.com/freeCodeCamp/freeCodeCamp/pull/24848", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
374981280
Added brief description and example [x] I have read freeCodeCamp's contribution guidelines. [x] My pull request has a descriptive title (not a vague title like Update index.md) [x] My pull request targets the master branch of freeCodeCamp. [x] None of my changes are plagiarized from another source without proper attribution. [x] My article does not contain shortened URLs or affiliate links. If your pull request closes a GitHub issue, replace the XXXXX below with the issue number. Closes #XXXXX Closed and Reopened this PR to attempt to resolve a specific Travis build failure. Changes to this file have been made by #28260 in favour of which I'm closing this PR
gharchive/pull-request
2018-10-29T11:57:45
2025-04-01T06:38:44.303987
{ "authors": [ "CodingHero97", "RandellDawson", "thecodingaviator" ], "repo": "freeCodeCamp/freeCodeCamp", "url": "https://github.com/freeCodeCamp/freeCodeCamp/pull/31715", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
489752486
fix(style): rework color scheme for icons I reworked the colors of our icons to go with the new theme. I'm not sure if that was wanted - I think they look pretty good - see photos. [x] I have read freeCodeCamp's contribution guidelines. [x] My pull request has a descriptive title (not a vague title like Update index.md) [x] My pull request targets the master branch of freeCodeCamp. [x] None of my changes are plagiarized from another source without proper attribution. [x] All the files I changed are in the same world language (for example: only English changes, or only Chinese changes, etc.) [x] My changes do not use shortened URLs or affiliate links. Closes #36666 Not related but could you add a 1-2px padding or margin between those test lists. I have always hated them getting squished like that. We could even add more space. Alternate background colors for list items could be re-evaluated. See #36681 mocks for reference. we could also experiment with smaller icons for the tests I added my changes to the PR in case anyone wants to see the code or test it locally. it looks much better already
gharchive/pull-request
2019-09-05T13:21:43
2025-04-01T06:38:44.309080
{ "authors": [ "ahmadabdolsaheb", "moT01", "raisedadead" ], "repo": "freeCodeCamp/freeCodeCamp", "url": "https://github.com/freeCodeCamp/freeCodeCamp/pull/36760", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
1321202691
Fix(curriculum) accessibility issue with labels in registration form course Checklist: [x] I have read freeCodeCamp's contribution guidelines. [x] My pull request has a descriptive title (not a vague title like Update index.md) [x] My pull request targets the main branch of freeCodeCamp. [x] I have tested these changes either locally on my machine, or GitPod. Closes #46593 Adjusted all steps starting from when labels are first introduced to incorporate accessibility formatting. hi @JohnathanTWebster, the file has been changed after you had worked on them, which lead to merge conflict Clicking use the command line will open instruction of how to fix the conflict If you have any questions, feel free to ask questions on the 'Contributors' category on our forum or the contributors chat room. Fairly confident I just removed my changes @Sboonny I just adjusted the pull request. Sorry, It wasn't cooperating but this pull should be correct. @JohnathanTWebster no worries, I have seen the new pull request there are issues with it, but I am rhetoric enough to describe them well. I have contacted another mod, and hopefully they will guide you better
gharchive/pull-request
2022-07-28T16:35:55
2025-04-01T06:38:44.314218
{ "authors": [ "JohnathanTWebster", "Sboonny" ], "repo": "freeCodeCamp/freeCodeCamp", "url": "https://github.com/freeCodeCamp/freeCodeCamp/pull/47064", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
168001771
Fixing vt_p There are some bogus records at the bottom of the page. There are a lot of cases on the page in general, 130+. Since we are only concerned about the newest cases, I've added a limit to extract, at most, the 100 most recent cases. This solves the problem presented by the bogus records and reduces the network load by a bit. That being said, the bogus records looks like they are valid opinions that were simply improperly entered. I will try to reach out to the court to have them fix it. Added new text file. Good solution. Merged! I should have commented here as well (I did in slack), but by fixed those bogus records Sent from a phone On Aug 2, 2016, at 7:48 AM, Mike Lissner notifications@github.com wrote: Good solution. Merged! — You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or mute the thread.
gharchive/pull-request
2016-07-28T02:39:24
2025-04-01T06:38:44.375252
{ "authors": [ "arderyp", "mlissner" ], "repo": "freelawproject/juriscraper", "url": "https://github.com/freelawproject/juriscraper/pull/146", "license": "bsd-2-clause", "license_type": "permissive", "license_source": "bigquery" }
279872437
Fix apparent swift issues with swift 4 I had issues when cloning so fixed the issues. I'd be happy to find out this is an unnecessary PR. I fixed these in my repo on my computer at home, but I forgot to push them. Also, I'm pretty sure that your attempt at fixing FreeOTP/TokenStore.swift breaks compatibility with anyone using the code from master. This isn't necessarily a deal-breaker because we haven't released this code yet. I'm also not excited to learn that NSCoding seems to be so fragile. That's good to hear. I thought I was going crazy when I clone and recloned and still had build issues. I'm doing a clean fork to use for a newer project I am working on so i didn't have issues with the token store but happy to try and figure out how to fix that for others. Or to cancel my PR if you have a working version already that you'd like to push. @joshglick What are these new commits? Sorry! These were pushed to the wrong remote, closing now @joshglick I'm still curious what you're working on. Are you able to talk about it? I actually can’t talk about it quite yet, but I will let you know once we are ready to make something more public. On Thu, Feb 15, 2018 at 11:45 AM Nathaniel McCallum < notifications@github.com> wrote: @joshglick https://github.com/joshglick I'm still curious what you're working on. Are you able to talk about it? — You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/freeotp/freeotp-ios/pull/97#issuecomment-365987550, or mute the thread https://github.com/notifications/unsubscribe-auth/AA11qP1tvQH9KO4KYxr5lrz_L5syWkAFks5tVF8XgaJpZM4Q4cFg .
gharchive/pull-request
2017-12-06T19:13:03
2025-04-01T06:38:44.395686
{ "authors": [ "joshglick", "npmccallum" ], "repo": "freeotp/freeotp-ios", "url": "https://github.com/freeotp/freeotp-ios/pull/97", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
231443494
My apologies for this println :( Codecov Report Merging #327 into master will not change coverage. The diff coverage is n/a. @@ Coverage Diff @@ ## master #327 +/- ## ====================================== Coverage 82.4% 82.4% ====================================== Files 25 25 Lines 216 216 Branches 2 2 ====================================== Hits 178 178 Misses 38 38
gharchive/pull-request
2017-05-25T20:02:21
2025-04-01T06:38:44.402678
{ "authors": [ "codecov-io", "raulraja" ], "repo": "frees-io/freestyle", "url": "https://github.com/frees-io/freestyle/pull/327", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
288427552
Changing the src results in a "data-ofi-undefined" attribute. I assume this will break cloneNode. Duplicate of #85 Duplicate of #85
gharchive/issue
2018-01-14T18:12:30
2025-04-01T06:38:44.420237
{ "authors": [ "fregante", "grant77" ], "repo": "fregante/object-fit-images", "url": "https://github.com/fregante/object-fit-images/issues/102", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
157532823
[dataset upload] sparql + endpoint parameter In the extended API Documentation, POST /e-entity/freme-ner/datasets successfully creates a dataset when only the body is set to the provided sample dataset. (and language = en) But when the provided sparql query is used for the sparql parameter together with the given endpoint (http://dbpedia.org/sparql) like this: curl -X POST -H "Content-Type: text/turtle" -H "X-Auth-Token: TOKEN" -d '' "http://api-dev.freme-project.eu/current/e-entity/freme-ner/datasets?language=en&name=arneTest&description=just for testing&sparql=%20%20SELECT%20%3Fres%20%3Flabel%0A%20%20WHERE%20%7B%20%3Fres%20%3Chttp%3A%2F%2Fwww.w3.org%2F2000%2F01%2Frdf-schema%23label%3E%20%3Flabel%20.%0A%20%20%20%20%3Fres%20%3Chttp%3A%2F%2Fwww.w3.org%2F1999%2F02%2F22-rdf-syntax-ns%23type%3E%20%5Cn%0A%20%20%20%20%3Chttp%3A%2F%2Fdbpedia.org%2Fontology%2FCountry%3E%20FILTER%20(%20strstarts(str(%3Fres)%2C%20%22http%3A%2F%2Fdbpedia.org%2F%22)%20)%0A%20%20%7D%20ORDER%20BY%20%3Fres%20LIMIT%20500%20OFFSET%20500&endpoint=http%3A%2F%2Fdbpedia.org%2Fsparql" I get: `{ "exception": "eu.freme.common.exception.FREMEHttpException", "path": "/e-entity/freme-ner/datasets", "message": "Encountered \" <ECHAR> \"\\\\n \"\" at line 3, column 60.\nWas expecting one of:\n <IRIref> ...\n <PNAME_NS> ...\n <PNAME_LN> ...\n <BLANK_NODE_LABEL> ...\n <VAR1> ...\n <VAR2> ...\n \"true\" ...\n \"false\" ...\n <INTEGER> ...\n <DECIMAL> ...\n <DOUBLE> ...\n <INTEGER_POSITIVE> ...\n <DECIMAL_POSITIVE> ...\n <DOUBLE_POSITIVE> ...\n <INTEGER_NEGATIVE> ...\n <DECIMAL_NEGATIVE> ...\n <DOUBLE_NEGATIVE> ...\n <STRING_LITERAL1> ...\n <STRING_LITERAL2> ...\n <STRING_LITERAL_LONG1> ...\n <STRING_LITERAL_LONG2> ...\n \"(\" ...\n <NIL> ...\n \"[\" ...\n <ANON> ...\n \"+\" ...\n \"*\" ...\n \"/\" ...\n \"|\" ...\n \"?\" ...\n ", "error": "Internal Server Error", "status": 500, "timestamp": 1464623054061 } @bgrusdt please examine what is going wrong. This is fixed. There was a typo in the sparql parameter example.
gharchive/issue
2016-05-30T16:46:27
2025-04-01T06:38:44.428001
{ "authors": [ "bgrusdt", "jnehring" ], "repo": "freme-project/freme-ner", "url": "https://github.com/freme-project/freme-ner/issues/109", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
186670156
nif:taMsClassRef @m1ci , @koidl have requested to fill the property nif:taMsClassRef with the most specific one based on the dbpedia ontology. E.g: <http://freme-project.eu/#offset_0_14> a nif:OffsetBasedString , nif:Phrase ; nif:anchorOf "Diego Maradona"^^xsd:string ; nif:annotationUnit [ a nif:EntityOccurrence ; itsrdf:taAnnotatorsRef <http://freme-project.eu/tools/freme-ner> ; itsrdf:taClassRef <http://nerd.eurecom.fr/ontology#Person> , <http://dbpedia.org/ontology/SoccerManager> , <http://dbpedia.org/ontology/Agent> , <http://dbpedia.org/ontology/SportsManager> , <http://dbpedia.org/ontology/Person> ; nif:taMsClassRef <http://dbpedia.org/ontology/SoccerManager> ; itsrdf:taConfidence "0.9869992701528016"^^xsd:double ; itsrdf:taIdentRef <http://dbpedia.org/resource/Diego_Maradona> ] ; nif:beginIndex "0"^^xsd:nonNegativeInteger ; nif:endIndex "14"^^xsd:nonNegativeInteger ; nif:referenceContext <http://freme-project.eu/#offset_0_33> . Basically, it can be retrieved the following SPARQL Query SELECT ?type WHERE { <http://dbpedia.org/resource/Diego_Maradona> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?type . FILTER NOT EXISTS { ?subtype ^a <http://dbpedia.org/resource/Diego_Maradona> ; rdfs:subClassOf ?type . } FILTER regex(str(?type), "dbpedia.org/ontology/") } Hi @m1ci : I ran the same query at http://rv2622.1blu.de:8890/sparql and did not get the same result as DBpedia SPARQL. I would bet that this problem is related to our indexed data. Just to ensure that I am in the right way, could you please check if my SPARQL is correct? Thank you Hi @sandroacoelho the query at the FREME sparql endpoint did not work because the dbpedia ontology wasn't loaded and there were the required subClassOf statements. Now it shoud work. Try http://rv2622.1blu.de:8890/sparql @sandroacoelho can you now implement so that we have the nif:taMsClassRef property in the NIF output? thanks! Hi @m1ci. As I promised, nif:taMsClassRef is already implemented. Could you please test it? Best I dont see the nif:taMsClassRef in the output, see https://api-dev.freme-project.eu/current/e-entity/freme-ner/documents?language=en&dataset=dbpedia&mode=all&outformat=turtle&informat=text&input=Diego Maradona is from Argentina.&nif-version=2.1 Hi @m1ci , Checking Jenkins, I saw that the main jar is not using SNAPSHOTS. The build is using our last stable version 0.11 that does not contain this new feature. I forced it to give you a chance to test - (Note: This is wrong and should be reversed as soon as possible) . At SPARQLProcessor.java, the address "http://www.freme-project.eu/datasets/types" is used as defaultGraph. Could you please load the DBpedia ontology inside it? Best, At SPARQLProcessor.java, the address "http://www.freme-project.eu/datasets/types" is used as defaultGraph. Could you please load the DBpedia ontology inside it? Can you try without specifying the default graph? Just `QueryExecution qexec = QueryExecutionFactory.sparqlService(this.endpoint, query); Hi @m1ci , Done! Thanks, however for https://api-dev.freme-project.eu/current/e-entity/freme-ner/documents?language=en&dataset=dbpedia&mode=all&outformat=turtle&informat=text&input=Diego Maradona is from Argentina.&nif-version=2.1 I get one type for Diego Maradna, which is fine, but two types for Argentina - problem. Why there are two types for Argentina? I found the reason why, actually, in the dbpedia ontology there is <http://dbpedia.org/ontology/Place> <http://www.w3.org/2002/07/owl#equivalentClass> <http://dbpedia.org/ontology/Location> . which means they are same types. In order to return only one, just add LIMIT 1 at the end of the query. That will solve the isssue. I found why, there is no subclass relation between http://dbpedia.org/ontology/Country and http://dbpedia.org/ontology/Location, also Location is sameAs Place. We need to fix the sparql query. By definition, our query retrieves leafs (a type that does not have subtypes) for the most specific types in DBpedia ontology. For Argentina, we have two "leafs" types and it could happen with others. If we want just one resource to fill in nif:taMsClassRef, we could Takes the first (I don't like this solution because is not deterministic); Define filters to decide what type we should select to be a nif:taMsClassRef Best, not, it's one leaf and its Country. Location is super class. Here is the solution SELECT ?type WHERE { <http://dbpedia.org/resource/Argentina> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?type . FILTER NOT EXISTS { <http://dbpedia.org/resource/Argentina> a ?subtype . ?subtype rdfs:subClassOf|owl:equivalentClass ?type . } FILTER regex(str(?type), "dbpedia.org/ontology/") } @sandroacoelho please update the query @m1ci : done! thanks @sandroacoelho @koidl @xFran please test, for example: https://api-dev.freme-project.eu/current/e-entity/freme-ner/documents?language=en&dataset=dbpedia&mode=all&outformat=turtle&informat=text&input=Diego Maradona is from Argentina.&nif-version=2.1 the query at the FREME sparql endpoint did not work because the dbpedia ontology wasn't loaded and there were the required subClassOf statements. Now it shoud work. Do we need to update the dataset dumps for the docker installation because of that? Oh forget the last comment, I just read https://github.com/freme-project/freme-docker/issues/17#issuecomment-258323248 which says we need to update the dataset @sandroacoelho do we need to update the dataset? I think it is irrelevant in which graph are the datasets loaded, we query all data in all graphs. Correct me if Im wrong. @m1ci is working with turtle but no json-ld https://api-dev.freme-project.eu/current/e-entity/freme-ner/documents?language=en&dataset=dbpedia&mode=all&outformat=json-ld&informat=text&input=Diego Maradona is from Argentina. I can't see nif:taMsClassRef or something similar in the response. Hi, @xFran: I will check our jsonld. It works with NIF version 2.1, see http://tinyurl.com/jedem72 2016-11-14 13:32 GMT+01:00 Sandro notifications@github.com: Hi, @xFran https://github.com/xFran: I will check our jsonld. — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/freme-project/freme-ner/issues/160#issuecomment-260323656, or mute the thread https://github.com/notifications/unsubscribe-auth/ABH5AuVMMltjcYTvsNf__2HepaM4VYQ5ks5q-FT6gaJpZM4KmrZJ . Works with NIF version 2.1 indeed. https://api-dev.freme-project.eu/current/e-entity/freme-ner/documents?language=en&dataset=dbpedia&mode=all&outformat=json-ld&informat=text&input=Diego Maradona is from Argentina.&nif-version=2.1 Thank you @fsasaki I have a few questions about this feature: Would it be complicated to add a configuration option to switch off the feature? I guess it has a huge impact on the performance of NER. What happens when the data for this feature is not contained in the triple store? Does it produce no MFS value? Or an error message? Is there any documentation about the feature? We should add a (brief) documentation to https://freme-project.github.io/knowledge-base/freme-for-api-users/freme-ner.html Would it be complicated to add a configuration option to switch off the feature? I guess it has a huge impact on the performance of NER. I would not complicate the things. And provide this info always. In other words, leave as it is. What happens when the data for this feature is not contained in the triple store? Does it produce no MFS value? Or an error message? If there is no data, then we dont provide the mfs value. If there is then we provide. Also, if there is just one type, then we list this type as most-specific-type and also as itsrdf:taClassRef. Is there any documentation about the feature? We should add a (brief) documentation to https://freme-project.github.io/knowledge-base/freme-for-api-users/freme-ner.html I'm afraid this is not documented. Please add section to the doc called "NIF Output explained" and explain each piece of information (1-2 sentences). | Would it be complicated to add a configuration option to switch off the feature? I guess it has a huge impact on the performance of NER. | I would not complicate the things. And provide this info always. In other words, leave as it is. Ok thanks for the information I tested and this is installed on freme-live also. The documentation issue is moved to https://github.com/freme-project/freme-project.github.io/issues/320 . So this issue is done
gharchive/issue
2016-11-01T22:56:16
2025-04-01T06:38:44.456574
{ "authors": [ "fsasaki", "jnehring", "m1ci", "sandroacoelho", "xFran" ], "repo": "freme-project/freme-ner", "url": "https://github.com/freme-project/freme-ner/issues/160", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
2556917727
Hack-Fix bug that eventloop leaks into other tests This is so far the only reliable way to make the bug not happen. Unfortunately it also happens with this
gharchive/pull-request
2024-09-30T14:49:56
2025-04-01T06:38:44.492189
{ "authors": [ "Marenz" ], "repo": "frequenz-floss/frequenz-dispatch-python", "url": "https://github.com/frequenz-floss/frequenz-dispatch-python/pull/62", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
546351018
Cocoapods support Hi! I saw that Cocoapods is deprecated now, I would like to suggest adding support again since it doesn't change the way to develop for SPM as well. The library is a very useful library and Cocoapods still in use for a huge number of projects out there, would be nice to keep using this the way it is. Thanks. Well, at least set it as deprecated on the cocoapods-specs repo. I second this. Adding PODs support back in would be much appreciated. We have several projects that are using Cocoapods, and I'd like to not mix my dependency management. I third this. I've inherited a codebase that has a third-party Cocoapod library which includes Then as a dependency, along with other Cocoapods. This is making it difficult - and maybe impossible - for me to compile since I can't find a way to get Cocoapods to work with SPM dependencies.
gharchive/issue
2020-01-07T15:36:05
2025-04-01T06:38:44.494379
{ "authors": [ "JGwilliams", "bguidolim", "steventnorris-40AU" ], "repo": "freshOS/Then", "url": "https://github.com/freshOS/Then/issues/66", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
17612051
Google spreadsheet data package (simple data format) example What data? Timeline data Spend data example (should be easy to get one) ...? Would be nice to try that out with the create tool as well DUPLICATE of #31
gharchive/issue
2013-08-04T19:46:58
2025-04-01T06:38:44.520252
{ "authors": [ "rgrp" ], "repo": "frictionlessdata/ideas", "url": "https://github.com/frictionlessdata/ideas/issues/63", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }