-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build(deps-dev): bump cypress-localstorage-commands from 2.0.0 to 2.2.1 in /website #7
Conversation
Bumps [cypress-localstorage-commands](https://github.com/javierbrea/cypress-localstorage-commands) from 2.0.0 to 2.2.1. - [Release notes](https://github.com/javierbrea/cypress-localstorage-commands/releases) - [Changelog](https://github.com/javierbrea/cypress-localstorage-commands/blob/master/CHANGELOG.md) - [Commits](javierbrea/cypress-localstorage-commands@v2.0.0...v2.2.1) --- updated-dependencies: - dependency-name: cypress-localstorage-commands dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
The following labels could not be found: |
OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting If you change your mind, just re-open this PR and I'll resolve any conflicts on it. |
* Initial project * Construct client and perform query. * Implement engine connection to find connection to Dagger. * Add query builder to build graphql query and select data from response. * Handle error when fetching Dagger session * Remove unused field and asserting type in Selection.build/1 * Remove unused code * Generate code from GraphQL introspection Closes #3 * Ensure first argument match with the module Prevent accidentally chain function by pattern match with module. * Change version to 0.1.0-dev * Generate document for functions * Use field name from introspection not from function name * Render deprecate functions * Extract format doc to function * Eliminate arg to_string conversion * Add required & optional arguments to function doc * Add ex_doc * Do not export Dagger.Codegen.Compiler to doc * Add tutorial through livebook * Fix argument not convert to snake case in doc * Running dagger via dagger session * Add experiment env to Livebook tutorial * Rename opts to args `args` is make sense since it's arguments of graph api not options. * Update README.md * Create ci.yml * Rework on obtaining session Create a session module for talking with `dagger session` which's start in a new process. The session accept the EngineConn pid for passing the session info and logger function to print log line after session is comming. * Support graceful disconnect from dagger session * Add mix task to run test with dagger * Rework on GitHub CI * Rename dagger to dagger-cue on GitHub Workflow * Try install Dagger manually * Use curl instead of wget * Fix path extraction * Do not do anything with session env disconnect * Show dagger version in GitHub Workflow * Fix invalid env variable * Fix invalid env variable * Rename lib/mix/task to lib/mix/tasks * Eliminate to_string conversion for optional argument Fixes dagger#12 * Revert "Eliminate to_string conversion for optional argument" This reverts commit ae5fc7cb35e96e4cc84571b491bf0fe3184bf444. * Support custom timeout via Dagger.connect/1 * Fix query builder argument not adding comma separator * Rework on optional args code generation Fixes: dagger#12 * Refactor how render function * Add `Dagger.Codegen.Elixir.Function.define/4`. * Refactor in `Dagger.Codegen.Elixir.Templates.ObjectTmpl` to define via `Function.define/4` instead. * Refactor function rendering * Rename `format_function` to `format_function_body`. * Refactor how format function name. * Move doc generation to Function.define/5 * Move deprecated generation to Function.define/5 * Refactor required arg verification * Change function signature code generation * Add Dagger.Codegen.Elixir.Function tests * Remove get variable name from type * Check formatting in CI * Refactor arguments doc generation * Remove `.` in deprecated reason * Prepare 0.1.0 * Add donation badge * Prepare 0.1.0 round 2 * Generate a new code from Dagger 0.5.1 * Fix crash on Dagger 0.5.1 Skip `Connected to engine...` message before session comes in. * Fix source reference not presents in docs And include CHANGELOG in the Hex.pm page. * Prepare 0.1.1 * Prepare 0.1.1 round 2 * Generate scalar type and no explict get id before pass to function Closes #7 Closes dagger#13 * Run unit test and check format concurrently * Generate enum types Closes #8 * Change version * Generate type spec for object and enum types * Refactor format module name * Fix incorrect type generation * Any function that accept *ID type must accept proper type instead. * Add typespec to Enum functions. Closes dagger#15 * Add v0.2.0 CHANGELOG * Optimize context transfer in CI test * Experiment with_session/2 in mix ci.test * Add connect schema * Add connect schema to conform SDK guide specification. * Separate connect timeout and query timeout. * Add TODOs. * Move connect schema to Dagger.Client * Implement download CLI (dagger#22) Recheck the CLI in `$XDG_CACHE_HOME` before start downloading. If binary exists, use that binary, otherwise, download it from dagger site. * Remove IO.puts in mix ci.test * Do not swallow dagger connect message * Returns error when execute graphql query * Rename ci.test to dagger.ci.test * Refactor filter type mechanism * Move Dagger.Codegen.Compiler to new file * Attach module name into introspection type and regenerate code * Add Rewrite into compile pipeline * Use mod_name in private instead of using from name And re-generate code. * Rename Rewrite module to Mutator * Add mutator test * Rename Dagger.disconnect/1 to Dagger.close/1 Updates dagger#18 * Move Dagger.Client into Dagger.Internal * Add option during call dagger session * Add `:workdir` into `dagger session`. * Remove `:config_path`. * Cleanup `:log_output` to accept device uses by `IO.binwrite/2`. * Use `IO.binwrite/2` instead of `IO.write/2`. Closes dagger#28 * Bump dagger to 0.5.3 and re-generate code * Update dagger to 0.6.0 * Bump CI to use dagger 0.6.0 * Fix code gen for ProjectID and ProjectCommandID * Import wingyplus/dagger_ex into sdk/elixir subdir Signed-off-by: Gerhard Lazu <gerhard@dagger.io> * Add experimental warning to README Signed-off-by: Gerhard Lazu <gerhard@dagger.io> * Update GitHub URL & fix path in package info Signed-off-by: Gerhard Lazu <gerhard@dagger.io> * Add /sdk/elixir to CODEOWNERS Signed-off-by: Gerhard Lazu <gerhard@dagger.io> * Remove rename_query_type mutator This is still in complete and make test failures. So remove it. Signed-off-by: Thanabodee Charoenpiriyakij <wingyminus@gmail.com> * Make mix dagger.ci.test exit non-zero status code when test failures Signed-off-by: Thanabodee Charoenpiriyakij <wingyminus@gmail.com> * Implement ./hack/make sdk:elixir:test and add it to CI Signed-off-by: Thanabodee Charoenpiriyakij <wingyminus@gmail.com> * Allow to configure Elixir/OTP version And change Sync to ExitCode. Signed-off-by: Thanabodee Charoenpiriyakij <wingyminus@gmail.com> * Implement ./hack/make sdk:elixir:lint and add it to CI Signed-off-by: Thanabodee Charoenpiriyakij <wingyminus@gmail.com> * Remove sdk/elixir/.github Signed-off-by: Thanabodee Charoenpiriyakij <wingyminus@gmail.com> * Remove sdk/elixir/lib/mix/tasks/dagger.ci.test.exs It already ported to ./hack/make sdk:elixir:[test,lint] Signed-off-by: Thanabodee Charoenpiriyakij <wingyminus@gmail.com> * Fix pipeline should be elixir, not go Signed-off-by: Thanabodee Charoenpiriyakij <wingyminus@gmail.com> * Change source url and changelog url Signed-off-by: Thanabodee Charoenpiriyakij <wingyminus@gmail.com> * Add sdk:elixir tasks description Signed-off-by: Thanabodee Charoenpiriyakij <wingyminus@gmail.com> * Fix incorrect pipeline name in sdk:elixir:lint task Signed-off-by: Thanabodee Charoenpiriyakij <wingyminus@gmail.com> * ci: implement sdk:elixir:generate Signed-off-by: Thanabodee Charoenpiriyakij <wingyminus@gmail.com> * Extract versions in constants So that they are declared only once - single replace when needed. Signed-off-by: Gerhard Lazu <gerhard@dagger.io> * Fix sdk/elixir gitignores They are not repository top-level. Signed-off-by: Gerhard Lazu <gerhard@dagger.io> --------- Signed-off-by: Thanabodee Charoenpiriyakij <wingyminus@gmail.com> Co-authored-by: Gerhard Lazu <gerhard@dagger.io>
* Initial commit Signed-off-by: Jean-Christophe Sirot <jcsirot@gmail.com> * Initial version (#1) Initial version of the SDK --------- Signed-off-by: Jean-Christophe Sirot <jcsirot@gmail.com> * Clean up build process & better samples (#2) * build: clean up build update pom.xml dependency management remove unused dependencies remove unused import * build: Add maven exec plugin to run the code samples from the CLI * build: support dependency caching in github action (#3) * fix: add missing sample in the sample code demo app (#4) * feat(log): add debug log when response is contains errors. (#5) Set the log level to debug in integration tests * fix: support macos arm64 architure by cli downloader (#7) * fix: client hangs on close (#8) fix(connection): refactoring of the engine connection package Move CLIRunner and ConnectParams to a dedicated class file Replace JSON-B by JSON-P to deserialize the connection parameters Move the Dagger CLI process execution to the CLI runner (Single-responsibility principle) Fix process hanging when connection to the engine failed Improve code style Add some tests for Connection class --------- Signed-off-by: Jean-Christophe Sirot <jcsirot@gmail.com> * build(workflow): enable build on linux and macos (#9) macos is limited to PR builds So far windows VM does not support Linux containers Signed-off-by: Jean-Christophe Sirot <jean-christophe.sirot@docker.com> * build: package jar with dependencies and upload artifacts in github (dagger#11) package jar with dependencies and upload artifact in github upload artifact only on push to main update README.md --------- Signed-off-by: Jean-Christophe Sirot <jcsirot@gmail.com> * Move all files into sdk/java subdir So that this can be imported into dagger/dagger repository Signed-off-by: Gerhard Lazu <gerhard@dagger.io> * sdk(java): Add experimental warning to README Signed-off-by: Gerhard Lazu <gerhard@dagger.io> * sdk(java): Rename LICENSE But keep as is, same as we did for other experimental SDKs. Signed-off-by: Gerhard Lazu <gerhard@dagger.io> * chore: Add /sdk/java to CODEOWNERS Signed-off-by: Gerhard Lazu <gerhard@dagger.io> * build: rename package name from 'org.chelonix.dagger.*' to 'io.dagger.*' Signed-off-by: Jean-Christophe Sirot <jcsirot@gmail.com> * build(codegen): add introspection query in the codegen plugin resources and use it when schema is not available. Inject the CLI version in the code at build time Signed-off-by: Jean-Christophe Sirot <jcsirot@gmail.com> * build: add linter plugin and lint current code Signed-off-by: Jean-Christophe Sirot <jcsirot@gmail.com> * build: set development version to 1.0.0-SNAPSHOT. Add "release" profile dedicated to deployment Signed-off-by: Jean-Christophe Sirot <jcsirot@gmail.com> * fix: correctly return the dagger CLI path in codegen plugin and fix some log messages Signed-off-by: Jean-Christophe Sirot <jcsirot@gmail.com> * build: Add schema for 0.6.4 Signed-off-by: Jean-Christophe Sirot <jcsirot@gmail.com> * fix: fix coding style for linter Signed-off-by: Jean-Christophe Sirot <jcsirot@gmail.com> * build: fix maven versions plugin groupId Signed-off-by: Jean-Christophe Sirot <jcsirot@gmail.com> * ci: add java sdk CI - add initial build worflow in internal/mage/sdk/java.go - add test & lint actions in github action worflow Signed-off-by: Jean-Christophe Sirot <jcsirot@gmail.com> * fix: replace deprecated API calls in tests - Container.fs -> Container.rootfs - Container.exec -> Container.withExec Signed-off-by: Jean-Christophe Sirot <jcsirot@gmail.com> * fix: Add a static 'from' method to instanciate a Scalar from a String literal Signed-off-by: Jean-Christophe Sirot <jcsirot@gmail.com> * fix(doc): fix javadoc for field parameters in generated code Signed-off-by: Jean-Christophe Sirot <jcsirot@gmail.com> * fix: Fix NPE when CLI download fails and log error Signed-off-by: Jean-Christophe Sirot <jcsirot@gmail.com> * fix(codegen): clarify codegen plugin parameters and Dagger version in generated code Separate CLI and SDK version Use either a previously generated schema or a query a locally installed dagger CLI update the CI to generate the schema matching the used dagger CLI Signed-off-by: Jean-Christophe Sirot <jcsirot@gmail.com> * fix(codegen): fix sdk:java:generate goal Now the generate goal will query the dagger CLI to generate the API JSON schema and write a file A new dagger-codegen:generateSchema plugin goal has been added to the dagger-codegen maven plugin (with some code refactoring between both goals) to generate the schema. The generate schema is copied to plugin resources dir /schemas according to the engine version declared in the pom.xml file afterwards. The schema file naming has been simplifying (removing the 'v' prefix) and the existing files have been renamed accordingly Signed-off-by: Jean-Christophe Sirot <jcsirot@gmail.com> * feat(codegen): add schema for dagger engine 0.8.3 and 0.8.4 Signed-off-by: Jean-Christophe Sirot <jcsirot@gmail.com> * doc(codegen): document how to bump engine dependency Signed-off-by: Jean-Christophe Sirot <jcsirot@gmail.com> * Remove redundant return & go fmt Signed-off-by: Gerhard Lazu <gerhard@dagger.io> * Make Java SDK workflow standalone, same as the Elixir one Leverage the re-usable _hack_make workflow. Signed-off-by: Gerhard Lazu <gerhard@dagger.io> * Use same Apache 2.0 license as all other SDKs Engine & CLI use the same Apache 2.0 license. Signed-off-by: Jean-Christophe Sirot <jcsirot@gmail.com> --------- Signed-off-by: Jean-Christophe Sirot <jcsirot@gmail.com> Signed-off-by: Jean-Christophe Sirot <jean-christophe.sirot@docker.com> Signed-off-by: Gerhard Lazu <gerhard@dagger.io> Signed-off-by: Jean-Christophe Sirot <470082+jcsirot@users.noreply.github.com> Co-authored-by: Jean-Christophe Sirot <jcsirot@gmail.com> Co-authored-by: Jean-Christophe Sirot <470082+jcsirot@users.noreply.github.com> Co-authored-by: Daniel Lavoie <dlavoie@live.ca>
Rebasing might not happen immediately, so don't worry if this takes some time.
Note: if you make any changes to this PR yourself, they will take precedence over the rebase.
Bumps cypress-localstorage-commands from 2.0.0 to 2.2.1.
Release notes
Sourced from cypress-localstorage-commands's releases.
Changelog
Sourced from cypress-localstorage-commands's changelog.
Commits
20dcd31
Merge pull request #457 from javierbrea/release435cfed
Merge branch 'chore-deps' into releasec0b3864
chore(release): Upgrade version83d4179
chore(deps): Update cypress65fa8de
Merge pull request #456 from javierbrea/chore-deps177c609
chore: update devDependenciese121dd1
Merge pull request #453 from javierbrea/release7e510b3
chore: Exclude file exporting plugin from coveragefa74074
docs: Add changes to changelog1d9614b
chore: Upgrade versionDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)