Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package dagger for openSUSE:Factory checked in at 2022-09-14 13:44:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/dagger (Old) and /work/SRC/openSUSE:Factory/.dagger.new.2083 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "dagger" Wed Sep 14 13:44:59 2022 rev:22 rq:1003426 version:0.2.34 Changes: -------- --- /work/SRC/openSUSE:Factory/dagger/dagger.changes 2022-09-07 11:06:50.600529556 +0200 +++ /work/SRC/openSUSE:Factory/.dagger.new.2083/dagger.changes 2022-09-14 13:45:12.337928014 +0200 @@ -1,0 +2,12 @@ +Wed Sep 14 05:41:15 UTC 2022 - ka...@b1-systems.de + +- Update to version 0.2.34: + * feat: add tags support to `go` pkg (#3005) + * Remove stdout tty check since dagger supports headless auth. (#3003) + * build(deps): bump sass from 1.54.8 to 1.54.9 in /website + * build(deps): bump amplitude-js from 8.20.1 to 8.21.0 in /website + * docs: Disable medium-zoom on non-illustrative imgs + * docs: Add Docusaurus medium-zoom plugin + * build(deps): bump github.com/spf13/viper from 1.12.0 to 1.13.0 (#2998) + +------------------------------------------------------------------- Old: ---- dagger-0.2.33.tar.gz New: ---- dagger-0.2.34.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ dagger.spec ++++++ --- /var/tmp/diff_new_pack.txIJ2C/_old 2022-09-14 13:45:13.301930441 +0200 +++ /var/tmp/diff_new_pack.txIJ2C/_new 2022-09-14 13:45:13.305930451 +0200 @@ -19,7 +19,7 @@ %define __arch_install_post export NO_BRP_STRIP_DEBUG=true Name: dagger -Version: 0.2.33 +Version: 0.2.34 Release: 0 Summary: A portable devkit for CI/CD pipelines License: GPL-3.0-only ++++++ _service ++++++ --- /var/tmp/diff_new_pack.txIJ2C/_old 2022-09-14 13:45:13.365930602 +0200 +++ /var/tmp/diff_new_pack.txIJ2C/_new 2022-09-14 13:45:13.369930612 +0200 @@ -3,7 +3,7 @@ <param name="url">https://github.com/dagger/dagger</param> <param name="scm">git</param> <param name="exclude">.git</param> - <param name="revision">v0.2.33</param> + <param name="revision">v0.2.34</param> <param name="versionformat">@PARENT_TAG@</param> <param name="changesgenerate">enable</param> <param name="versionrewrite-pattern">v(.*)</param> @@ -16,7 +16,7 @@ <param name="compression">gz</param> </service> <service name="go_modules" mode="disabled"> - <param name="archive">dagger-0.2.33.tar.gz</param> + <param name="archive">dagger-0.2.34.tar.gz</param> </service> </services> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.txIJ2C/_old 2022-09-14 13:45:13.409930713 +0200 +++ /var/tmp/diff_new_pack.txIJ2C/_new 2022-09-14 13:45:13.417930733 +0200 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/dagger/dagger</param> - <param name="changesrevision">c3d3c265fd1adb05e43d2d35adbf37d1dd0ef62a</param></service></servicedata> + <param name="changesrevision">46adf1fbd36cd8bd1052ed4e19f10f26df39540d</param></service></servicedata> (No newline at EOF) ++++++ dagger-0.2.33.tar.gz -> dagger-0.2.34.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dagger-0.2.33/api/auth/auth.go new/dagger-0.2.34/api/auth/auth.go --- old/dagger-0.2.33/api/auth/auth.go 2022-09-05 16:52:32.000000000 +0200 +++ new/dagger-0.2.34/api/auth/auth.go 2022-09-13 14:30:13.000000000 +0200 @@ -5,7 +5,6 @@ "crypto/rand" "encoding/hex" "encoding/json" - "errors" "fmt" "io/ioutil" "net/http" @@ -16,7 +15,6 @@ "github.com/pkg/browser" "github.com/rs/zerolog/log" "golang.org/x/oauth2" - "golang.org/x/term" ) const ( @@ -43,11 +41,6 @@ func Login(ctx context.Context) error { lg := log.Ctx(ctx) lg.Info().Msg("logging into your dagger account") - if !term.IsTerminal(int(os.Stdout.Fd())) { - lg.Error().Msg("login is only supported in interactive mode (stdout is not a terminal)") - lg.Error().Msg("please log in from a terminal") - return errors.New("authentication failed") - } // oauth2 localhost handler requestCh := make(chan *http.Request) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dagger-0.2.33/docs/dgr18-overview.mdx new/dagger-0.2.34/docs/dgr18-overview.mdx --- old/dagger-0.2.33/docs/dgr18-overview.mdx 2022-09-05 16:52:32.000000000 +0200 +++ new/dagger-0.2.34/docs/dgr18-overview.mdx 2022-09-13 14:30:13.000000000 +0200 @@ -64,7 +64,7 @@ export const InfoCard = () => ( <div className={styles.infoCard}> <h2>Where does Dagger fit?</h2> - <img src={`/img/docker-compatible-runtime.png`} /> + <img src={`/img/docker-compatible-runtime.png`} className="not-zoom" /> <div> <ul> <li>Give your developers parity between dev and CI environments</li> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dagger-0.2.33/docs/getting-started/1242-install.mdx new/dagger-0.2.34/docs/getting-started/1242-install.mdx --- old/dagger-0.2.33/docs/getting-started/1242-install.mdx 2022-09-05 16:52:32.000000000 +0200 +++ new/dagger-0.2.34/docs/getting-started/1242-install.mdx 2022-09-13 14:30:13.000000000 +0200 @@ -167,7 +167,7 @@ {data.templates.map((x, index) => ( <div className={styles.templateCard}> <div className={styles.templateInfo}> - <img src={`/img/getting-started/install-dagger/${x.imgFilename}`} /> + <img className="not-zoom" src={`/img/getting-started/install-dagger/${x.imgFilename}`} /> <a href={x.url}>{x.label}</a> </div> <CodeBlock> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dagger-0.2.33/docs/getting-started/f44rm-how-it-works.mdx new/dagger-0.2.34/docs/getting-started/f44rm-how-it-works.mdx --- old/dagger-0.2.33/docs/getting-started/f44rm-how-it-works.mdx 2022-09-05 16:52:32.000000000 +0200 +++ new/dagger-0.2.34/docs/getting-started/f44rm-how-it-works.mdx 2022-09-13 14:30:13.000000000 +0200 @@ -64,7 +64,7 @@ <div className={`${styles.card} ${x.fullWidth ? styles.fullWidth : ""}`} > - <img src={`/img/${x.imgFilename}`} /> + <img className="not-zoom" src={`/img/${x.imgFilename}`} /> <div className={styles.description}> <h4>{x.label}</h4> <p>{x.description}</p> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dagger-0.2.33/docs/introduction/1000-what_is.md new/dagger-0.2.34/docs/introduction/1000-what_is.md --- old/dagger-0.2.33/docs/introduction/1000-what_is.md 2022-09-05 16:52:32.000000000 +0200 +++ new/dagger-0.2.34/docs/introduction/1000-what_is.md 2022-09-13 14:30:13.000000000 +0200 @@ -22,7 +22,7 @@ - Avoid CI lock-in. Dagger runs natively on GitHub Actions, GitLab, CircleCI, Jenkins, AWS Codebuild, Tekton, and more. - Test and debug your pipelines locally; catch configuration errors in seconds with static type checking. -<img src="/img/what-is-dagger.png" alt="Dagger_Website_Ship" style={{maxWidth: '50%'}} /> +<img className="not-zoom" src="/img/what-is-dagger.png" alt="Dagger_Website_Ship" style={{maxWidth: '50%'}} /> ## Dagger is alpha software diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dagger-0.2.33/go.mod new/dagger-0.2.34/go.mod --- old/dagger-0.2.33/go.mod 2022-09-05 16:52:32.000000000 +0200 +++ new/dagger-0.2.34/go.mod 2022-09-13 14:30:13.000000000 +0200 @@ -29,7 +29,7 @@ github.com/sirupsen/logrus v1.9.0 github.com/spf13/cobra v1.5.0 github.com/spf13/pflag v1.0.5 - github.com/spf13/viper v1.12.0 + github.com/spf13/viper v1.13.0 github.com/stretchr/testify v1.8.0 github.com/tonistiigi/fsutil v0.0.0-20220315205639-9ed612626da3 github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea @@ -120,7 +120,7 @@ github.com/muesli/termenv v0.12.0 // indirect github.com/olekukonko/tablewriter v0.0.5 // indirect github.com/pelletier/go-toml v1.9.5 // indirect - github.com/pelletier/go-toml/v2 v2.0.1 // indirect + github.com/pelletier/go-toml/v2 v2.0.5 // indirect github.com/petermattis/goid v0.0.0-20220712135657-ac599d9cba15 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect @@ -131,7 +131,7 @@ github.com/spf13/afero v1.8.2 // indirect github.com/spf13/cast v1.5.0 // indirect github.com/spf13/jwalterweatherman v1.1.0 // indirect - github.com/subosito/gotenv v1.3.0 // indirect + github.com/subosito/gotenv v1.4.1 // indirect github.com/tliron/glsp v0.1.2-0.20220705150211-aa8066a02133 // indirect github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect @@ -153,7 +153,7 @@ google.golang.org/appengine v1.6.7 // indirect google.golang.org/genproto v0.0.0-20220616135557-88e70c0c3a90 // indirect google.golang.org/protobuf v1.28.1 // indirect - gopkg.in/ini.v1 v1.66.4 // indirect + gopkg.in/ini.v1 v1.67.0 // indirect gopkg.in/warnings.v0 v0.1.2 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dagger-0.2.33/go.sum new/dagger-0.2.34/go.sum --- old/dagger-0.2.33/go.sum 2022-09-05 16:52:32.000000000 +0200 +++ new/dagger-0.2.34/go.sum 2022-09-13 14:30:13.000000000 +0200 @@ -1365,8 +1365,8 @@ github.com/pelletier/go-toml v1.9.4/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= github.com/pelletier/go-toml v1.9.5 h1:4yBQzkHv+7BHq2PQUZF3Mx0IYxG7LsP222s7Agd3ve8= github.com/pelletier/go-toml v1.9.5/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= -github.com/pelletier/go-toml/v2 v2.0.1 h1:8e3L2cCQzLFi2CR4g7vGFuFxX7Jl1kKX8gW+iV0GUKU= -github.com/pelletier/go-toml/v2 v2.0.1/go.mod h1:r9LEWfGN8R5k0VXJ+0BkIe7MYkRdwZOjgMj2KwnJFUo= +github.com/pelletier/go-toml/v2 v2.0.5 h1:ipoSadvV8oGUjnUbMub59IDPPwfxF694nG/jwbMiyQg= +github.com/pelletier/go-toml/v2 v2.0.5/go.mod h1:OMHamSCAODeSsVrwwvcJOaoN0LIUIaFVNZzmWyNfXas= github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod h1:uqqh8zWWbv1HBMNONnaR/tNboyR3/BZd58JJSHlUSCU= github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5/go.mod h1:jvVRKCrJTQWu0XVbaOlby/2lO20uSCHEMzzplHXte1o= github.com/petermattis/goid v0.0.0-20220712135657-ac599d9cba15 h1:4lW1DeHHRUzImL9Uz2Fa4j7IIJr+7FNfzjSJxGSZz/k= @@ -1567,8 +1567,8 @@ github.com/spf13/viper v1.7.0/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg= github.com/spf13/viper v1.8.1/go.mod h1:o0Pch8wJ9BVSWGQMbra6iw0oQ5oktSIBaujf1rJH9Ns= github.com/spf13/viper v1.9.0/go.mod h1:+i6ajR7OX2XaiBkrcZJFK21htRk7eDeLg7+O6bhUPP4= -github.com/spf13/viper v1.12.0 h1:CZ7eSOd3kZoaYDLbXnmzgQI5RlciuXBMA+18HwHRfZQ= -github.com/spf13/viper v1.12.0/go.mod h1:b6COn30jlNxbm/V2IqWiNWkJ+vZNiMNksliPCiuKtSI= +github.com/spf13/viper v1.13.0 h1:BWSJ/M+f+3nmdz9bxB+bWX28kkALN2ok11D0rSo8EJU= +github.com/spf13/viper v1.13.0/go.mod h1:Icm2xNL3/8uyh/wFuB1jI7TiTNKp8632Nwegu+zgdYw= github.com/ssgreg/nlreturn/v2 v2.2.1/go.mod h1:E/iiPB78hV7Szg2YfRgyIrk1AD6JVMTRkkxBiELzh2I= github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980/go.mod h1:AO3tvPzVZ/ayst6UlUKUv6rcPQInYe3IknH3jYhAKu8= github.com/stoewer/go-strcase v1.2.0/go.mod h1:IBiWB2sKIp3wVVQ3Y035++gc+knqhUQag1KpM8ahLw8= @@ -1592,8 +1592,8 @@ github.com/stretchr/testify v1.8.0 h1:pSgiaMZlXftHpm5L7V1+rVB+AZJydKsMxsQBIJw4PKk= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw= -github.com/subosito/gotenv v1.3.0 h1:mjC+YW8QpAdXibNi+vNWgzmgBH4+5l5dCXv8cNysBLI= -github.com/subosito/gotenv v1.3.0/go.mod h1:YzJjq/33h7nrwdY+iHMhEOEEbW0ovIz0tB6t6PwAXzs= +github.com/subosito/gotenv v1.4.1 h1:jyEFiXpy21Wm81FBN71l9VoMMV8H8jG+qIK3GCpY6Qs= +github.com/subosito/gotenv v1.4.1/go.mod h1:ayKnFf/c6rvx/2iiLrJUk1e6plDbT3edrFNGqEflhK0= github.com/sylvia7788/contextcheck v1.0.4/go.mod h1:vuPKJMQ7MQ91ZTqfdyreNKwZjyUg6KO+IebVyQDedZQ= github.com/syndtr/gocapability v0.0.0-20170704070218-db04d3cc01c8/go.mod h1:hkRG7XYTFWNJGYcbNJQlaLq0fg1yr4J4t/NcTQtrfww= github.com/syndtr/gocapability v0.0.0-20180916011248-d98352740cb2/go.mod h1:hkRG7XYTFWNJGYcbNJQlaLq0fg1yr4J4t/NcTQtrfww= @@ -2548,8 +2548,8 @@ gopkg.in/ini.v1 v1.56.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/ini.v1 v1.62.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/ini.v1 v1.63.2/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= -gopkg.in/ini.v1 v1.66.4 h1:SsAcf+mM7mRZo2nJNGt8mZCjG8ZRaNGMURJw7BsIST4= -gopkg.in/ini.v1 v1.66.4/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= +gopkg.in/ini.v1 v1.67.0 h1:Dgnx+6+nfE+IfzjUEISNeydPJh9AXNNsWbGP9KzCsOA= +gopkg.in/ini.v1 v1.67.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/natefinch/lumberjack.v2 v2.0.0/go.mod h1:l0ndWWf7gzL7RNwBG7wST/UCcT4T24xpD6X8LsfU/+k= gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= gopkg.in/square/go-jose.v2 v2.2.2/go.mod h1:M9dMgbHiYLoDGQrXy7OpJDJWiKiU//h+vD76mk0e1AI= diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dagger-0.2.33/pkg/universe.dagger.io/go/test.cue new/dagger-0.2.34/pkg/universe.dagger.io/go/test.cue --- old/dagger-0.2.33/pkg/universe.dagger.io/go/test.cue 2022-09-05 16:52:32.000000000 +0200 +++ new/dagger-0.2.34/pkg/universe.dagger.io/go/test.cue 2022-09-13 14:30:13.000000000 +0200 @@ -7,13 +7,17 @@ // Packages to test packages: [...string] | *[package] + // Build tags to use for testing + tags: *"" | string + #Container & { command: { name: "go" args: packages flags: { - test: true - "-v": true + test: true + "-v": true + "-tags": tags } } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dagger-0.2.33/website/docusaurus.config.js new/dagger-0.2.34/website/docusaurus.config.js --- old/dagger-0.2.33/website/docusaurus.config.js 2022-09-05 16:52:32.000000000 +0200 +++ new/dagger-0.2.34/website/docusaurus.config.js 2022-09-13 14:30:13.000000000 +0200 @@ -81,6 +81,16 @@ }, posthog: { apiKey: "phc_hqwS484sDJhTnrPCANTyWX48nKL3AEucgf6w0czQtQi", + }, + zoom: { + selector: '.markdown img:not(.not-zoom)', + background: { + light: 'rgb(255, 255, 255)', + dark: 'rgb(50, 50, 50)' + }, + // medium-zoom configuration options + // Refer to https://github.com/francoischalifour/medium-zoom#options + config: {} } }, presets: [ @@ -110,6 +120,7 @@ "docusaurus-plugin-sass", "docusaurus2-dotenv", "posthog-docusaurus", + "docusaurus-plugin-image-zoom", path.resolve(__dirname, "plugins/docusaurus-plugin-hotjar"), path.resolve(__dirname, "plugins/docusaurus-plugin-dagger-version"), ], diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dagger-0.2.33/website/package.json new/dagger-0.2.34/website/package.json --- old/dagger-0.2.33/website/package.json 2022-09-05 16:52:32.000000000 +0200 +++ new/dagger-0.2.34/website/package.json 2022-09-13 14:30:13.000000000 +0200 @@ -19,8 +19,9 @@ "@docusaurus/preset-classic": "^2.1.0", "@mdx-js/react": "^1.6.22", "@svgr/webpack": "^6.3.1", - "amplitude-js": "^8.20.1", + "amplitude-js": "^8.21.0", "clsx": "^1.2.1", + "docusaurus-plugin-image-zoom": "^0.1.1", "docusaurus-plugin-sass": "^0.2.2", "docusaurus2-dotenv": "^1.4.0", "file-loader": "^6.2.0", @@ -32,7 +33,7 @@ "react-dom": "^17.0.1", "react-social-login-buttons": "^3.6.1", "remark-code-import": "^0.4.0", - "sass": "^1.54.8", + "sass": "^1.54.9", "url-loader": "^4.1.1" }, "browserslist": { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dagger-0.2.33/website/src/components/atoms/linkCTA.js new/dagger-0.2.34/website/src/components/atoms/linkCTA.js --- old/dagger-0.2.33/website/src/components/atoms/linkCTA.js 2022-09-05 16:52:32.000000000 +0200 +++ new/dagger-0.2.34/website/src/components/atoms/linkCTA.js 2022-09-13 14:30:13.000000000 +0200 @@ -2,9 +2,9 @@ import styles from "../../css/atoms/linkCTA.module.scss"; import Link from "@docusaurus/Link"; -const LinkCTA = ({url, label}) => ( +const LinkCTA = ({ url, label }) => ( <Link className={styles.linkCTA} target="_self" href={url}> - <img src="/img/Dagger_Icons_Arrow-2-right.svg" /> + <img className="not-zoom" src="/img/Dagger_Icons_Arrow-2-right.svg" /> <span>{label}</span> </Link> ); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dagger-0.2.33/website/src/components/molecules/tutorialCard.js new/dagger-0.2.34/website/src/components/molecules/tutorialCard.js --- old/dagger-0.2.33/website/src/components/molecules/tutorialCard.js 2022-09-05 16:52:32.000000000 +0200 +++ new/dagger-0.2.34/website/src/components/molecules/tutorialCard.js 2022-09-13 14:30:13.000000000 +0200 @@ -3,10 +3,10 @@ import Link from "@docusaurus/Link"; import Button from "../atoms/button"; -const TutorialCard = ({img, title, description, buttonLabel, url}) => { +const TutorialCard = ({ img, title, description, buttonLabel, url }) => { return ( <div className={styles.tutorialCard}> - <img src={img}></img> + <img src={img} className="not-zoom"></img> <div> <h4>{title}</h4> <p>{description}</p> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dagger-0.2.33/website/yarn.lock new/dagger-0.2.34/website/yarn.lock --- old/dagger-0.2.33/website/yarn.lock 2022-09-05 16:52:32.000000000 +0200 +++ new/dagger-0.2.34/website/yarn.lock 2022-09-13 14:30:13.000000000 +0200 @@ -1558,7 +1558,7 @@ "@docsearch/css" "3.1.1" algoliasearch "^4.0.0" -"@docusaurus/core@2.1.0", "@docusaurus/core@^2.0.1": +"@docusaurus/core@2.1.0", "@docusaurus/core@^2.1.0": version "2.1.0" resolved "https://registry.yarnpkg.com/@docusaurus/core/-/core-2.1.0.tgz#4aedc306f4c4cd2e0491b641bf78941d4b480ab6" integrity sha512-/ZJ6xmm+VB9Izbn0/s6h6289cbPy2k4iYFwWDhjiLsVqwa/Y0YBBcXvStfaHccudUC3OfP+26hMk7UCjc50J6Q== @@ -2756,10 +2756,10 @@ "@algolia/requester-node-http" "4.13.1" "@algolia/transporter" "4.13.1" -amplitude-js@^8.20.1: - version "8.20.1" - resolved "https://registry.yarnpkg.com/amplitude-js/-/amplitude-js-8.20.1.tgz#24d224f3db65e2b8c15ede7a0f5850dcbacafc32" - integrity sha512-SWmUNgCd9HwqmnoLsMxgZrKDcj363H68/+rOgbnySpk+dfHPyDkmMTIh2qJAGVxrcFPbH5g6UeqYzk/+9fOFfg== +amplitude-js@^8.21.0: + version "8.21.0" + resolved "https://registry.yarnpkg.com/amplitude-js/-/amplitude-js-8.21.0.tgz#6cebd767b666a1e4ad2ec15da4288daa71d806c8" + integrity sha512-kC01TmmCdDrtms8LhvC/r65FtbmCbNHZ1/jiezXmTH82TsWI/SkN47jKs8CCwjZNakqTBN/hmficiZBUKv4myw== dependencies: "@amplitude/analytics-connector" "1.4.4" "@amplitude/ua-parser-js" "0.7.31" @@ -4327,6 +4327,13 @@ dependencies: "@leichtgewicht/ip-codec" "^2.0.1" +docusaurus-plugin-image-zoom@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/docusaurus-plugin-image-zoom/-/docusaurus-plugin-image-zoom-0.1.1.tgz#f5e16ae568f7b74e8a357ee67ea7922521f64539" + integrity sha512-cJXo5TKh9OR1gE4B5iS5ovLWYYDFwatqRm00iXFPOaShZG99l5tgkDKgbQPAwSL9wg4I+wz3aMwkOtDhMIpKDQ== + dependencies: + medium-zoom "^1.0.6" + docusaurus-plugin-sass@^0.2.2: version "0.2.2" resolved "https://registry.yarnpkg.com/docusaurus-plugin-sass/-/docusaurus-plugin-sass-0.2.2.tgz#9b7f8c6fbe833677064ec05b09b98d90b50be324" @@ -6687,6 +6694,11 @@ resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= +medium-zoom@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/medium-zoom/-/medium-zoom-1.0.6.tgz#9247f21ca9313d8bbe9420aca153a410df08d027" + integrity sha512-UdiUWfvz9fZMg1pzf4dcuqA0W079o0mpqbTnOz5ip4VGYX96QjmbM+OgOU/0uOzAytxC0Ny4z+VcYQnhdifimg== + mem@^4.0.0: version "4.3.0" resolved "https://registry.yarnpkg.com/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178" @@ -8989,10 +9001,10 @@ schema-utils "^3.0.0" semver "^7.3.2" -sass@^1.54.8: - version "1.54.8" - resolved "https://registry.yarnpkg.com/sass/-/sass-1.54.8.tgz#4adef0dd86ea2b1e4074f551eeda4fc5f812a996" - integrity sha512-ib4JhLRRgbg6QVy6bsv5uJxnJMTS2soVcCp9Y88Extyy13A8vV0G1fAwujOzmNkFQbR3LvedudAMbtuNRPbQww== +sass@^1.54.9: + version "1.54.9" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.54.9.tgz#b05f14ed572869218d1a76961de60cd647221762" + integrity sha512-xb1hjASzEH+0L0WI9oFjqhRi51t/gagWnxLiwUNMltA0Ab6jIDkAacgKiGYKM9Jhy109osM7woEEai6SXeJo5Q== dependencies: chokidar ">=3.0.0 <4.0.0" immutable "^4.0.0" ++++++ vendor.tar.gz ++++++ /work/SRC/openSUSE:Factory/dagger/vendor.tar.gz /work/SRC/openSUSE:Factory/.dagger.new.2083/vendor.tar.gz differ: char 5, line 1