purescript / registry

Registry of PureScript packages and metadata about them
46 stars 14 forks source link

Update node-stream-pipes #493

Closed th-awake closed 3 months ago

th-awake commented 3 months ago
{
  "name": "node-stream-pipes",
  "ref": "v2.1.3",
  "compiler": "0.15.4"
}
pacchettibotti commented 3 months ago

Package source does not have a purs.json file, creating one from your spago.yaml file...

pacchettibotti commented 3 months ago

Converted your spago.yaml into a purs.json manifest to use for publishing:


  "name": "node-stream-pipes",
  "version": "2.1.3",
  "license": "GPL-3.0-or-later",
  "location": {
    "githubOwner": "cakekindel",
    "githubRepo": "purescript-node-stream-pipes"
  },
  "dependencies": {
    "aff": ">=7.1.0 <8.0.0",
    "arrays": ">=7.3.0 <8.0.0",
    "console": ">=6.1.0 <7.0.0",
    "control": ">=6.0.0 <7.0.0",
    "datetime": ">=6.1.0 <7.0.0",
    "effect": ">=4.0.0 <5.0.0",
    "either": ">=6.1.0 <7.0.0",
    "exceptions": ">=6.0.0 <7.0.0",
    "foldable-traversable": ">=6.0.0 <7.0.0",
    "foreign-object": ">=4.1.0 <5.0.0",
    "fork": ">=6.0.0 <7.0.0",
    "lists": ">=7.0.0 <8.0.0",
    "maybe": ">=6.0.0 <7.0.0",
    "mmorph": ">=7.0.0 <8.0.0",
    "newtype": ">=5.0.0 <6.0.0",
    "node-buffer": ">=9.0.0 <10.0.0",
    "node-event-emitter": ">=3.0.0 <4.0.0",
    "node-fs": ">=9.1.0 <10.0.0",
    "node-path": ">=5.0.0 <6.0.0",
    "node-streams": ">=9.0.0 <10.0.0",
    "node-zlib": ">=0.4.0 <0.5.0",
    "now": ">=6.0.0 <7.0.0",
    "ordered-collections": ">=3.2.0 <4.0.0",
    "parallel": ">=6.0.0 <7.0.0",
    "pipes": ">=8.0.0 <9.0.0",
    "prelude": ">=6.0.1 <7.0.0",
    "st": ">=6.2.0 <7.0.0",
    "strings": ">=6.0.1 <7.0.0",
    "tailrec": ">=6.1.0 <7.0.0",
    "transformers": ">=6.0.0 <7.0.0",
    "tuples": ">=7.0.0 <8.0.0",
    "unordered-collections": ">=3.1.0 <4.0.0",
    "unsafe-coerce": ">=6.0.0 <7.0.0"
  }
}```
pacchettibotti commented 3 months ago

Compilation failed because the build plan does not compile with version 0.15.4 of the compiler:

Error 1 of 1

  Module: Pipes.Async
  File: src/Pipes.Async.purs

  Message:

  Cannot derive a type class instance for

    Data.Traversable.Traversable ReadResult

  since instances of this type class are not derivable.

  Position:
  80:1 - 80:39

  Error details:
  https://github.com/purescript/documentation/blob/master/errors/CannotDerive.md
th-awake commented 3 months ago
{
  "name": "node-stream-pipes",
  "ref": "v2.1.3",
  "compiler": "0.15.14"
}
pacchettibotti commented 3 months ago

Package source does not have a purs.json file, creating one from your spago.yaml file...

pacchettibotti commented 3 months ago

Converted your spago.yaml into a purs.json manifest to use for publishing:


  "name": "node-stream-pipes",
  "version": "2.1.3",
  "license": "GPL-3.0-or-later",
  "location": {
    "githubOwner": "cakekindel",
    "githubRepo": "purescript-node-stream-pipes"
  },
  "dependencies": {
    "aff": ">=7.1.0 <8.0.0",
    "arrays": ">=7.3.0 <8.0.0",
    "console": ">=6.1.0 <7.0.0",
    "control": ">=6.0.0 <7.0.0",
    "datetime": ">=6.1.0 <7.0.0",
    "effect": ">=4.0.0 <5.0.0",
    "either": ">=6.1.0 <7.0.0",
    "exceptions": ">=6.0.0 <7.0.0",
    "foldable-traversable": ">=6.0.0 <7.0.0",
    "foreign-object": ">=4.1.0 <5.0.0",
    "fork": ">=6.0.0 <7.0.0",
    "lists": ">=7.0.0 <8.0.0",
    "maybe": ">=6.0.0 <7.0.0",
    "mmorph": ">=7.0.0 <8.0.0",
    "newtype": ">=5.0.0 <6.0.0",
    "node-buffer": ">=9.0.0 <10.0.0",
    "node-event-emitter": ">=3.0.0 <4.0.0",
    "node-fs": ">=9.1.0 <10.0.0",
    "node-path": ">=5.0.0 <6.0.0",
    "node-streams": ">=9.0.0 <10.0.0",
    "node-zlib": ">=0.4.0 <0.5.0",
    "now": ">=6.0.0 <7.0.0",
    "ordered-collections": ">=3.2.0 <4.0.0",
    "parallel": ">=6.0.0 <7.0.0",
    "pipes": ">=8.0.0 <9.0.0",
    "prelude": ">=6.0.1 <7.0.0",
    "st": ">=6.2.0 <7.0.0",
    "strings": ">=6.0.1 <7.0.0",
    "tailrec": ">=6.1.0 <7.0.0",
    "transformers": ">=6.0.0 <7.0.0",
    "tuples": ">=7.0.0 <8.0.0",
    "unordered-collections": ">=3.1.0 <4.0.0",
    "unsafe-coerce": ">=6.0.0 <7.0.0"
  }
}```
pacchettibotti commented 3 months ago

Package is verified! Uploading it to the storage backend...

pacchettibotti commented 3 months ago

Successfully uploaded package to the registry! 🎉 🚀

pacchettibotti commented 3 months ago

Successfully uploaded package docs to Pursuit! 🎉 🚀

pacchettibotti commented 3 months ago

Mirrored registry operation to the legacy registry.

th-awake commented 3 months ago
{
  "name": "node-stream-pipes",
  "ref": "v2.1.2",
  "compiler": "0.15.14"
}
pacchettibotti commented 3 months ago

Package source does not have a purs.json file, creating one from your spago.yaml file...

pacchettibotti commented 3 months ago

Converted your spago.yaml into a purs.json manifest to use for publishing:


  "name": "node-stream-pipes",
  "version": "2.1.2",
  "license": "GPL-3.0-or-later",
  "location": {
    "githubOwner": "cakekindel",
    "githubRepo": "purescript-node-stream-pipes"
  },
  "dependencies": {
    "aff": ">=7.1.0 <8.0.0",
    "arrays": ">=7.3.0 <8.0.0",
    "console": ">=6.1.0 <7.0.0",
    "control": ">=6.0.0 <7.0.0",
    "datetime": ">=6.1.0 <7.0.0",
    "effect": ">=4.0.0 <5.0.0",
    "either": ">=6.1.0 <7.0.0",
    "exceptions": ">=6.0.0 <7.0.0",
    "foldable-traversable": ">=6.0.0 <7.0.0",
    "foreign-object": ">=4.1.0 <5.0.0",
    "fork": ">=6.0.0 <7.0.0",
    "lists": ">=7.0.0 <8.0.0",
    "maybe": ">=6.0.0 <7.0.0",
    "mmorph": ">=7.0.0 <8.0.0",
    "newtype": ">=5.0.0 <6.0.0",
    "node-buffer": ">=9.0.0 <10.0.0",
    "node-event-emitter": ">=3.0.0 <4.0.0",
    "node-fs": ">=9.1.0 <10.0.0",
    "node-path": ">=5.0.0 <6.0.0",
    "node-streams": ">=9.0.0 <10.0.0",
    "node-zlib": ">=0.4.0 <0.5.0",
    "now": ">=6.0.0 <7.0.0",
    "ordered-collections": ">=3.2.0 <4.0.0",
    "parallel": ">=6.0.0 <7.0.0",
    "pipes": ">=8.0.0 <9.0.0",
    "prelude": ">=6.0.1 <7.0.0",
    "st": ">=6.2.0 <7.0.0",
    "strings": ">=6.0.1 <7.0.0",
    "tailrec": ">=6.1.0 <7.0.0",
    "transformers": ">=6.0.0 <7.0.0",
    "tuples": ">=7.0.0 <8.0.0",
    "unordered-collections": ">=3.1.0 <4.0.0",
    "unsafe-coerce": ">=6.0.0 <7.0.0"
  }
}```
pacchettibotti commented 3 months ago

Package is verified! Uploading it to the storage backend...

pacchettibotti commented 3 months ago

Successfully uploaded package to the registry! 🎉 🚀

pacchettibotti commented 3 months ago

Successfully uploaded package docs to Pursuit! 🎉 🚀

pacchettibotti commented 3 months ago

Mirrored registry operation to the legacy registry.