{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":685727052,"defaultBranch":"main","name":"lonboard","ownerLogin":"developmentseed","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2023-08-31T21:48:10.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/92384?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1719843793.0","currentOid":""},"activityList":{"items":[{"before":"6115481b6caf7eb129ffa8bfcba86f1dc57039e5","after":"03f16adff348d99cdd4db3ae820bc910f828d27b","ref":"refs/heads/dependabot/npm_and_yarn/geoarrow/deck.gl-layers-0.3.0-beta.17","pushedAt":"2024-07-01T14:24:05.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump @geoarrow/deck.gl-layers from 0.3.0-beta.16 to 0.3.0-beta.17\n\nBumps [@geoarrow/deck.gl-layers](https://github.com/geoarrow/deck.gl-layers) from 0.3.0-beta.16 to 0.3.0-beta.17.\n- [Release notes](https://github.com/geoarrow/deck.gl-layers/releases)\n- [Changelog](https://github.com/geoarrow/deck.gl-layers/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/geoarrow/deck.gl-layers/commits/v0.3.0-beta.17)\n\n---\nupdated-dependencies:\n- dependency-name: \"@geoarrow/deck.gl-layers\"\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump @geoarrow/deck.gl-layers from 0.3.0-beta.16 to 0.3.0-beta.17"}},{"before":"fc0a042f66caa7937500b472fccd7595278aab1f","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/other-809d011832","pushedAt":"2024-07-01T14:23:13.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"kylebarron","name":"Kyle Barron","path":"/kylebarron","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15164633?s=80&v=4"}},{"before":"5fbe35618d6367d758a64d7c2724c0f53a66a361","after":"de87051c59b7c7c22346656f70783c362abf6193","ref":"refs/heads/main","pushedAt":"2024-07-01T14:23:12.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"kylebarron","name":"Kyle Barron","path":"/kylebarron","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15164633?s=80&v=4"},"commit":{"message":"Bump esbuild from 0.21.5 to 0.22.0 in the other group (#560)\n\nBumps the other group with 1 update:\r\n[esbuild](https://github.com/evanw/esbuild).\r\n\r\nUpdates `esbuild` from 0.21.5 to 0.22.0\r\n
\r\nRelease notes\r\n

Sourced from esbuild's\r\nreleases.

\r\n
\r\n

v0.22.0

\r\n

This release deliberately contains backwards-incompatible\r\nchanges. To avoid automatically picking up releases like this,\r\nyou should either be pinning the exact version of esbuild\r\nin your package.json file (recommended) or be using a\r\nversion range syntax that only accepts patch upgrades such as\r\n^0.21.0 or ~0.21.0. See npm's documentation\r\nabout semver for\r\nmore information.

\r\n
    \r\n
  • \r\n

    Omit packages from bundles by default when targeting node (#1874,\r\n#2830,\r\n#2846,\r\n#2915,\r\n#3145,\r\n#3294,\r\n#3323,\r\n#3582,\r\n#3809,\r\n#3815)

    \r\n

    This breaking change is an experiment. People are commonly confused\r\nwhen using esbuild to bundle code for node (i.e. for\r\n--platform=node) because some packages may not be intended\r\nfor bundlers, and may use node-specific features that don't work with a\r\nbundler. Even though esbuild's "getting started" instructions\r\nsay to use --packages=external to work around this problem,\r\nmany people don't read the documentation and don't do this, and are then\r\nconfused when it doesn't work. So arguably this is a bad default\r\nbehavior for esbuild to have if people keep tripping over this.

    \r\n

    With this release, esbuild will now omit packages from the bundle by\r\ndefault when the platform is node (i.e. the previous\r\nbehavior of --packages=external is now the default in this\r\ncase). Note that your dependencies must now be present on the file\r\nsystem when your bundle is run. If you don't want this behavior,\r\nyou can do --packages=bundle to allow packages to be\r\nincluded in the bundle (i.e. the previous default behavior). Note that\r\n--packages=bundle doesn't mean all packages are bundled,\r\njust that packages are allowed to be bundled. You can still exclude\r\nindividual packages from the bundle using --external: even\r\nwhen --packages=bundle is present.

    \r\n

    The --packages= setting considers all import paths that\r\n"look like" package imports in the original source code to be\r\npackage imports. Specifically import paths that don't start with a path\r\nsegment of / or . or .. are\r\nconsidered to be package imports. The only two exceptions to this rule\r\nare subpath\r\nimports (which start with a # character) and TypeScript\r\npath remappings via paths and/or baseUrl in\r\ntsconfig.json (which are applied first).

    \r\n
  • \r\n
  • \r\n

    Drop support for older platforms (#3802)

    \r\n

    This release drops support for the following operating systems:

    \r\n
      \r\n
    • Windows 7
    • \r\n
    • Windows 8
    • \r\n
    • Windows Server 2008
    • \r\n
    • Windows Server 2012
    • \r\n
    \r\n

    This is because the Go programming language dropped support for these\r\noperating system versions in Go 1.21, and this release\r\nupdates esbuild from Go 1.20 to Go 1.22.

    \r\n

    Note that this only affects the binary esbuild executables that are\r\npublished to the esbuild npm package. It's still possible\r\nto compile esbuild's source code for these older operating systems. If\r\nyou need to, you can compile esbuild for yourself using an older version\r\nof the Go compiler (before Go version 1.21). That might look something\r\nlike this:

    \r\n
    git clone https://github.com/evanw/esbuild.git\r\ncd esbuild\r\ngo build ./cmd/esbuild\r\n./esbuild.exe --version\r\n
    \r\n

    In addition, this release increases the minimum required node version\r\nfor esbuild's JavaScript API from node 12 to node 18. Node 18 is the\r\noldest version of node that is still being supported (see node's release\r\nschedule for more information). This increase is because of an\r\nincompatibility between the JavaScript that the Go compiler generates\r\nfor the esbuild-wasm package and versions of node before\r\nnode 17.4 (specifically the crypto.getRandomValues\r\nfunction).

    \r\n
  • \r\n
  • \r\n

    Update await using behavior to match TypeScript

    \r\n

    TypeScript 5.5 subtly changes the way await using\r\nbehaves. This release updates esbuild to match these changes in\r\nTypeScript. You can read more about these changes in microsoft/TypeScript#58624.

    \r\n
  • \r\n
  • \r\n

    Allow es2024 as a target environment

    \r\n

    The ECMAScript 2024 specification was just approved, so it has been\r\nadded to esbuild as a possible compilation target. You can read more\r\nabout the features that it adds here: https://2ality.com/2024/06/ecmascript-2024.html.\r\nThe only addition that's relevant for esbuild is the regular expression\r\n/v flag. With --target=es2024, regular\r\nexpressions that use the /v flag will now be passed through\r\nuntransformed instead of being transformed into a call to new\r\nRegExp.

    \r\n
  • \r\n
  • \r\n

    Publish binaries for OpenBSD on 64-bit ARM (#3665,\r\n#3674)

    \r\n

    With this release, you should now be able to install the\r\nesbuild npm package in OpenBSD on 64-bit ARM, such as on an\r\nApple device with an M1 chip.

    \r\n

    This was contributed by @​ikmckenz.

    \r\n
  • \r\n
  • \r\n

    Publish binaries for WASI (WebAssembly System Interface) preview 1\r\n(#3300,\r\n#3779)

    \r\n

    The upcoming WASI (WebAssembly System Interface) standard is going to\r\nbe a way to run WebAssembly outside of a JavaScript host environment. In\r\nthis scenario you only need a .wasm file without any\r\nsupporting JavaScript code. Instead of JavaScript providing the APIs for\r\nthe host environment, the WASI standard specifies a "system\r\ninterface" that WebAssembly code can access directly (e.g. for file\r\nsystem access).

    \r\n
  • \r\n
\r\n\r\n
\r\n

... (truncated)

\r\n
\r\n
\r\nChangelog\r\n

Sourced from esbuild's\r\nchangelog.

\r\n
\r\n

0.22.0

\r\n

This release deliberately contains backwards-incompatible\r\nchanges. To avoid automatically picking up releases like this,\r\nyou should either be pinning the exact version of esbuild\r\nin your package.json file (recommended) or be using a\r\nversion range syntax that only accepts patch upgrades such as\r\n^0.21.0 or ~0.21.0. See npm's documentation\r\nabout semver for\r\nmore information.

\r\n
    \r\n
  • \r\n

    Omit packages from bundles by default when targeting node (#1874,\r\n#2830,\r\n#2846,\r\n#2915,\r\n#3145,\r\n#3294,\r\n#3323,\r\n#3582,\r\n#3809,\r\n#3815)

    \r\n

    This breaking change is an experiment. People are commonly confused\r\nwhen using esbuild to bundle code for node (i.e. for\r\n--platform=node) because some packages may not be intended\r\nfor bundlers, and may use node-specific features that don't work with a\r\nbundler. Even though esbuild's "getting started" instructions\r\nsay to use --packages=external to work around this problem,\r\nmany people don't read the documentation and don't do this, and are then\r\nconfused when it doesn't work. So arguably this is a bad default\r\nbehavior for esbuild to have if people keep tripping over this.

    \r\n

    With this release, esbuild will now omit packages from the bundle by\r\ndefault when the platform is node (i.e. the previous\r\nbehavior of --packages=external is now the default in this\r\ncase). Note that your dependencies must now be present on the file\r\nsystem when your bundle is run. If you don't want this behavior,\r\nyou can do --packages=bundle to allow packages to be\r\nincluded in the bundle (i.e. the previous default behavior). Note that\r\n--packages=bundle doesn't mean all packages are bundled,\r\njust that packages are allowed to be bundled. You can still exclude\r\nindividual packages from the bundle using --external: even\r\nwhen --packages=bundle is present.

    \r\n

    The --packages= setting considers all import paths that\r\n"look like" package imports in the original source code to be\r\npackage imports. Specifically import paths that don't start with a path\r\nsegment of / or . or .. are\r\nconsidered to be package imports. The only two exceptions to this rule\r\nare subpath\r\nimports (which start with a # character) and TypeScript\r\npath remappings via paths and/or baseUrl in\r\ntsconfig.json (which are applied first).

    \r\n
  • \r\n
  • \r\n

    Drop support for older platforms (#3802)

    \r\n

    This release drops support for the following operating systems:

    \r\n
      \r\n
    • Windows 7
    • \r\n
    • Windows 8
    • \r\n
    • Windows Server 2008
    • \r\n
    • Windows Server 2012
    • \r\n
    \r\n

    This is because the Go programming language dropped support for these\r\noperating system versions in Go 1.21, and this release\r\nupdates esbuild from Go 1.20 to Go 1.22.

    \r\n

    Note that this only affects the binary esbuild executables that are\r\npublished to the esbuild npm package. It's still possible\r\nto compile esbuild's source code for these older operating systems. If\r\nyou need to, you can compile esbuild for yourself using an older version\r\nof the Go compiler (before Go version 1.21). That might look something\r\nlike this:

    \r\n
    git clone https://github.com/evanw/esbuild.git\r\ncd esbuild\r\ngo build ./cmd/esbuild\r\n./esbuild.exe --version\r\n
    \r\n

    In addition, this release increases the minimum required node version\r\nfor esbuild's JavaScript API from node 12 to node 18. Node 18 is the\r\noldest version of node that is still being supported (see node's release\r\nschedule for more information). This increase is because of an\r\nincompatibility between the JavaScript that the Go compiler generates\r\nfor the esbuild-wasm package and versions of node before\r\nnode 17.4 (specifically the crypto.getRandomValues\r\nfunction).

    \r\n
  • \r\n
  • \r\n

    Update await using behavior to match TypeScript

    \r\n

    TypeScript 5.5 subtly changes the way await using\r\nbehaves. This release updates esbuild to match these changes in\r\nTypeScript. You can read more about these changes in microsoft/TypeScript#58624.

    \r\n
  • \r\n
  • \r\n

    Allow es2024 as a target environment

    \r\n

    The ECMAScript 2024 specification was just approved, so it has been\r\nadded to esbuild as a possible compilation target. You can read more\r\nabout the features that it adds here: https://2ality.com/2024/06/ecmascript-2024.html.\r\nThe only addition that's relevant for esbuild is the regular expression\r\n/v flag. With --target=es2024, regular\r\nexpressions that use the /v flag will now be passed through\r\nuntransformed instead of being transformed into a call to new\r\nRegExp.

    \r\n
  • \r\n
  • \r\n

    Publish binaries for OpenBSD on 64-bit ARM (#3665,\r\n#3674)

    \r\n

    With this release, you should now be able to install the\r\nesbuild npm package in OpenBSD on 64-bit ARM, such as on an\r\nApple device with an M1 chip.

    \r\n

    This was contributed by @​ikmckenz.

    \r\n
  • \r\n
  • \r\n

    Publish binaries for WASI (WebAssembly System Interface) preview 1\r\n(#3300,\r\n#3779)

    \r\n
  • \r\n
\r\n\r\n
\r\n

... (truncated)

\r\n
\r\n
\r\nCommits\r\n\r\n
\r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=esbuild&package-manager=npm_and_yarn&previous-version=0.21.5&new-version=0.22.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n
\r\nDependabot commands and options\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot show ignore conditions` will show all\r\nof the ignore conditions of the specified dependency\r\n- `@dependabot ignore major version` will close this\r\ngroup update PR and stop Dependabot creating any more for the specific\r\ndependency's major version (unless you unignore this specific\r\ndependency's major version or upgrade to it yourself)\r\n- `@dependabot ignore minor version` will close this\r\ngroup update PR and stop Dependabot creating any more for the specific\r\ndependency's minor version (unless you unignore this specific\r\ndependency's minor version or upgrade to it yourself)\r\n- `@dependabot ignore ` will close this group update PR\r\nand stop Dependabot creating any more for the specific dependency\r\n(unless you unignore this specific dependency or upgrade to it yourself)\r\n- `@dependabot unignore ` will remove all of the ignore\r\nconditions of the specified dependency\r\n- `@dependabot unignore ` will\r\nremove the ignore condition of the specified dependency and ignore\r\nconditions\r\n\r\n\r\n
\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"Bump esbuild from 0.21.5 to 0.22.0 in the other group (#560)"}},{"before":"cc916eed7bbaef838d04805e7740002676653718","after":"4595de55e5456c9df643525fe90e31015d25df8f","ref":"refs/heads/fix/map-attribution","pushedAt":"2024-07-01T12:01:08.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"vgeorge","name":"Vitor George","path":"/vgeorge","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/329694?s=80&v=4"},"commit":{"message":"More lint fixes","shortMessageHtmlLink":"More lint fixes"}},{"before":"4628b62983b68484f6ee9eadce238d1c2f93167b","after":"cc916eed7bbaef838d04805e7740002676653718","ref":"refs/heads/fix/map-attribution","pushedAt":"2024-07-01T11:48:20.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"vgeorge","name":"Vitor George","path":"/vgeorge","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/329694?s=80&v=4"},"commit":{"message":"Fix lint errors","shortMessageHtmlLink":"Fix lint errors"}},{"before":null,"after":"4628b62983b68484f6ee9eadce238d1c2f93167b","ref":"refs/heads/fix/map-attribution","pushedAt":"2024-07-01T11:22:14.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"vgeorge","name":"Vitor George","path":"/vgeorge","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/329694?s=80&v=4"},"commit":{"message":"Remove console.log","shortMessageHtmlLink":"Remove console.log"}},{"before":null,"after":"fc0a042f66caa7937500b472fccd7595278aab1f","ref":"refs/heads/dependabot/npm_and_yarn/other-809d011832","pushedAt":"2024-07-01T04:53:31.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump esbuild from 0.21.5 to 0.22.0 in the other group\n\nBumps the other group with 1 update: [esbuild](https://github.com/evanw/esbuild).\n\n\nUpdates `esbuild` from 0.21.5 to 0.22.0\n- [Release notes](https://github.com/evanw/esbuild/releases)\n- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/evanw/esbuild/compare/v0.21.5...v0.22.0)\n\n---\nupdated-dependencies:\n- dependency-name: esbuild\n dependency-type: direct:development\n update-type: version-update:semver-minor\n dependency-group: other\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump esbuild from 0.21.5 to 0.22.0 in the other group"}},{"before":"cd6d0e20002025893921b4b97bfc3ddacb5cf597","after":null,"ref":"refs/heads/kyle/add-docs-test-ci","pushedAt":"2024-06-28T15:16:05.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"kylebarron","name":"Kyle Barron","path":"/kylebarron","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15164633?s=80&v=4"}},{"before":"7349babf09fad1534ee43feb12efc49189d01194","after":"5fbe35618d6367d758a64d7c2724c0f53a66a361","ref":"refs/heads/main","pushedAt":"2024-06-28T15:16:04.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"kylebarron","name":"Kyle Barron","path":"/kylebarron","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15164633?s=80&v=4"},"commit":{"message":"Add CI check to ensure docs build without warnings (#558)\n\nCloses https://github.com/developmentseed/lonboard/issues/554","shortMessageHtmlLink":"Add CI check to ensure docs build without warnings (#558)"}},{"before":"b1323446ad2c7ac1ef7b5c2943121f4f762aa77c","after":"cd6d0e20002025893921b4b97bfc3ddacb5cf597","ref":"refs/heads/kyle/add-docs-test-ci","pushedAt":"2024-06-28T15:14:09.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"kylebarron","name":"Kyle Barron","path":"/kylebarron","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15164633?s=80&v=4"},"commit":{"message":"space","shortMessageHtmlLink":"space"}},{"before":"f2a674e31c1190653e5eb8184c8a6cca432d0488","after":"b1323446ad2c7ac1ef7b5c2943121f4f762aa77c","ref":"refs/heads/kyle/add-docs-test-ci","pushedAt":"2024-06-28T15:11:56.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"kylebarron","name":"Kyle Barron","path":"/kylebarron","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15164633?s=80&v=4"},"commit":{"message":"only on 3.9","shortMessageHtmlLink":"only on 3.9"}},{"before":"8a3381cca79e8e84bf3c1d1c140f0a6ed319dac6","after":"f2a674e31c1190653e5eb8184c8a6cca432d0488","ref":"refs/heads/kyle/add-docs-test-ci","pushedAt":"2024-06-28T15:08:10.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"kylebarron","name":"Kyle Barron","path":"/kylebarron","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15164633?s=80&v=4"},"commit":{"message":"try to install docs group","shortMessageHtmlLink":"try to install docs group"}},{"before":"68f18a8f4305a9cfa384ee80eeff7b283268469e","after":null,"ref":"refs/heads/kyle/move-docs-deps","pushedAt":"2024-06-28T15:02:56.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"kylebarron","name":"Kyle Barron","path":"/kylebarron","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15164633?s=80&v=4"}},{"before":"225185eac910fa266db556f4a8585f4a20216599","after":"7349babf09fad1534ee43feb12efc49189d01194","ref":"refs/heads/main","pushedAt":"2024-06-28T15:02:55.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"kylebarron","name":"Kyle Barron","path":"/kylebarron","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15164633?s=80&v=4"},"commit":{"message":"Move docs dependencies to docs group (#557)\n\nCloses https://github.com/developmentseed/lonboard/issues/553","shortMessageHtmlLink":"Move docs dependencies to docs group (#557)"}},{"before":null,"after":"8a3381cca79e8e84bf3c1d1c140f0a6ed319dac6","ref":"refs/heads/kyle/add-docs-test-ci","pushedAt":"2024-06-28T15:02:30.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"kylebarron","name":"Kyle Barron","path":"/kylebarron","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15164633?s=80&v=4"},"commit":{"message":"Add ci check to ensure docs build without warnings","shortMessageHtmlLink":"Add ci check to ensure docs build without warnings"}},{"before":null,"after":"68f18a8f4305a9cfa384ee80eeff7b283268469e","ref":"refs/heads/kyle/move-docs-deps","pushedAt":"2024-06-28T15:00:31.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"kylebarron","name":"Kyle Barron","path":"/kylebarron","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15164633?s=80&v=4"},"commit":{"message":"Move docs dependencies to docs group","shortMessageHtmlLink":"Move docs dependencies to docs group"}},{"before":"fec4eadfaaeaf819afca0856325577b934bbe368","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/other-1af2459089","pushedAt":"2024-06-24T15:01:03.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"kylebarron","name":"Kyle Barron","path":"/kylebarron","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15164633?s=80&v=4"}},{"before":"1214223e0dbac7f082cc36211d7bddc0a50c131b","after":"225185eac910fa266db556f4a8585f4a20216599","ref":"refs/heads/main","pushedAt":"2024-06-24T15:01:02.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"kylebarron","name":"Kyle Barron","path":"/kylebarron","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15164633?s=80&v=4"},"commit":{"message":"Bump the other group with 3 updates (#556)\n\nBumps the other group with 3 updates:\r\n[@types/uuid](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/uuid),\r\n[nodemon](https://github.com/remy/nodemon) and\r\n[typescript](https://github.com/Microsoft/TypeScript).\r\n\r\nUpdates `@types/uuid` from 9.0.8 to 10.0.0\r\n
\r\nCommits\r\n
    \r\n
  • See full diff in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\nUpdates `nodemon` from 3.1.3 to 3.1.4\r\n
\r\nRelease notes\r\n

Sourced from nodemon's\r\nreleases.

\r\n
\r\n

v3.1.4

\r\n

3.1.4\r\n(2024-06-20)

\r\n

Bug Fixes

\r\n
    \r\n
  • ensure local env have priority (6020968),\r\ncloses #2209
  • \r\n
\r\n
\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • d7cfe08\r\ndocs: clarify how to handle SIGUSR2
  • \r\n
  • 6020968\r\nfix: ensure local env have priority
  • \r\n
  • bb34032\r\nchore: website
  • \r\n
  • 4688b68\r\nchore: website
  • \r\n
  • See full diff in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\nUpdates `typescript` from 5.4.5 to 5.5.2\r\n
\r\nRelease notes\r\n

Sourced from typescript's\r\nreleases.

\r\n
\r\n

TypeScript 5.5

\r\n

For release notes, check out the release\r\nannouncement.

\r\n

For the complete list of fixed issues, check out the

\r\n
    \r\n
  • fixed\r\nissues query for TypeScript v5.5.2 (Stable).
  • \r\n
  • fixed\r\nissues query for TypeScript v5.5.1 (RC).
  • \r\n
  • fixed\r\nissues query for TypeScript v5.5.0 (Beta).
  • \r\n
\r\n

Downloads are available on:

\r\n
    \r\n
  • npm
  • \r\n
  • NuGet\r\npackage
  • \r\n
\r\n

TypeScript 5.5 RC

\r\n

For release notes, check out the release\r\nannouncement.

\r\n

For the complete list of fixed issues, check out the

\r\n
    \r\n
  • fixed\r\nissues query for Typescript 5.5.0 (Beta).
  • \r\n
  • fixed\r\nissues query for Typescript 5.5.1 (RC).
  • \r\n
\r\n

Downloads are available on:

\r\n
    \r\n
  • NuGet\r\npackage
  • \r\n
\r\n

TypeScript 5.5 Beta

\r\n

For release notes, check out the release\r\nannouncement.

\r\n

For the complete list of fixed issues, check out the

\r\n
    \r\n
  • fixed\r\nissues query for Typescript 5.5.0 (Beta).
  • \r\n
\r\n

Downloads are available on:

\r\n
    \r\n
  • npm
  • \r\n
  • NuGet\r\npackage
  • \r\n
\r\n
\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • ce2e60e\r\nUpdate LKG
  • \r\n
  • f3b21a2\r\n🤖 Pick PR #58931\r\n(Defer creation of barebonesLibSourc...) into release-5.5 (#...
  • \r\n
  • 7b1620b\r\n🤖 Pick PR #58811\r\n(fix(58801): "Move to file" on globa...) into release-5.5\r\n(#...
  • \r\n
  • 5367ae1\r\nBump version to 5.5.2 and LKG
  • \r\n
  • 02132e5\r\n🤖 Pick PR #58895\r\n(Fix global when typescript.js loade...) into release-5.5 (#...
  • \r\n
  • 45b1e3c\r\n🤖 Pick PR #58872\r\n(Fix declaration emit crash) into release-5.5 (#58874)
  • \r\n
  • 17933ee\r\n🤖 Pick PR #58810\r\n(Fixed declaration emit issue relate...) into release-5.5 (#...
  • \r\n
  • 552b07e\r\n🤖 Pick PR #58786\r\n(Fixed declaration emit crash relate...) into release-5.5 (#...
  • \r\n
  • 39c9eeb\r\nPick #58857\r\nto release-5.5 (#58858)
  • \r\n
  • 2b0009c\r\n🤖 Pick PR #58846\r\n(Ensure the updates with crashes rev...) into release-5.5 (#...
  • \r\n
  • Additional commits viewable in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n
\r\nDependabot commands and options\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot show ignore conditions` will show all\r\nof the ignore conditions of the specified dependency\r\n- `@dependabot ignore major version` will close this\r\ngroup update PR and stop Dependabot creating any more for the specific\r\ndependency's major version (unless you unignore this specific\r\ndependency's major version or upgrade to it yourself)\r\n- `@dependabot ignore minor version` will close this\r\ngroup update PR and stop Dependabot creating any more for the specific\r\ndependency's minor version (unless you unignore this specific\r\ndependency's minor version or upgrade to it yourself)\r\n- `@dependabot ignore ` will close this group update PR\r\nand stop Dependabot creating any more for the specific dependency\r\n(unless you unignore this specific dependency or upgrade to it yourself)\r\n- `@dependabot unignore ` will remove all of the ignore\r\nconditions of the specified dependency\r\n- `@dependabot unignore ` will\r\nremove the ignore condition of the specified dependency and ignore\r\nconditions\r\n\r\n\r\n
\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"Bump the other group with 3 updates (#556)"}},{"before":null,"after":"fec4eadfaaeaf819afca0856325577b934bbe368","ref":"refs/heads/dependabot/npm_and_yarn/other-1af2459089","pushedAt":"2024-06-24T04:31:34.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump the other group with 3 updates\n\nBumps the other group with 3 updates: [@types/uuid](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/uuid), [nodemon](https://github.com/remy/nodemon) and [typescript](https://github.com/Microsoft/TypeScript).\n\n\nUpdates `@types/uuid` from 9.0.8 to 10.0.0\n- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)\n- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/uuid)\n\nUpdates `nodemon` from 3.1.3 to 3.1.4\n- [Release notes](https://github.com/remy/nodemon/releases)\n- [Commits](https://github.com/remy/nodemon/compare/v3.1.3...v3.1.4)\n\nUpdates `typescript` from 5.4.5 to 5.5.2\n- [Release notes](https://github.com/Microsoft/TypeScript/releases)\n- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)\n- [Commits](https://github.com/Microsoft/TypeScript/compare/v5.4.5...v5.5.2)\n\n---\nupdated-dependencies:\n- dependency-name: \"@types/uuid\"\n dependency-type: direct:development\n update-type: version-update:semver-major\n dependency-group: other\n- dependency-name: nodemon\n dependency-type: direct:development\n update-type: version-update:semver-patch\n dependency-group: other\n- dependency-name: typescript\n dependency-type: direct:development\n update-type: version-update:semver-minor\n dependency-group: other\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump the other group with 3 updates"}},{"before":"2cb7b89fd971efcddebff85d97c24fbfc16ac499","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/deck-loaders-luma-fe9c2d7d23","pushedAt":"2024-06-24T04:31:07.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":null,"after":"95d6154f39090400086877454ad50c9f462164c0","ref":"refs/heads/dependabot/npm_and_yarn/deck-loaders-luma-3e7941c7d2","pushedAt":"2024-06-24T04:31:02.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump the deck-loaders-luma group across 1 directory with 4 updates\n\nBumps the deck-loaders-luma group with 4 updates in the / directory: [@deck.gl/core](https://github.com/visgl/deck.gl), [@deck.gl/extensions](https://github.com/visgl/deck.gl), [@deck.gl/layers](https://github.com/visgl/deck.gl) and [@deck.gl/react](https://github.com/visgl/deck.gl).\n\n\nUpdates `@deck.gl/core` from 8.9.35 to 9.0.20\n- [Release notes](https://github.com/visgl/deck.gl/releases)\n- [Changelog](https://github.com/visgl/deck.gl/blob/v9.0.20/CHANGELOG.md)\n- [Commits](https://github.com/visgl/deck.gl/compare/v8.9.35...v9.0.20)\n\nUpdates `@deck.gl/extensions` from 8.9.35 to 9.0.20\n- [Release notes](https://github.com/visgl/deck.gl/releases)\n- [Changelog](https://github.com/visgl/deck.gl/blob/v9.0.20/CHANGELOG.md)\n- [Commits](https://github.com/visgl/deck.gl/compare/v8.9.35...v9.0.20)\n\nUpdates `@deck.gl/layers` from 8.9.35 to 9.0.20\n- [Release notes](https://github.com/visgl/deck.gl/releases)\n- [Changelog](https://github.com/visgl/deck.gl/blob/v9.0.20/CHANGELOG.md)\n- [Commits](https://github.com/visgl/deck.gl/compare/v8.9.35...v9.0.20)\n\nUpdates `@deck.gl/react` from 8.9.35 to 9.0.20\n- [Release notes](https://github.com/visgl/deck.gl/releases)\n- [Changelog](https://github.com/visgl/deck.gl/blob/v9.0.20/CHANGELOG.md)\n- [Commits](https://github.com/visgl/deck.gl/compare/v8.9.35...v9.0.20)\n\n---\nupdated-dependencies:\n- dependency-name: \"@deck.gl/core\"\n dependency-type: direct:production\n update-type: version-update:semver-major\n dependency-group: deck-loaders-luma\n- dependency-name: \"@deck.gl/extensions\"\n dependency-type: direct:production\n update-type: version-update:semver-major\n dependency-group: deck-loaders-luma\n- dependency-name: \"@deck.gl/layers\"\n dependency-type: direct:production\n update-type: version-update:semver-major\n dependency-group: deck-loaders-luma\n- dependency-name: \"@deck.gl/react\"\n dependency-type: direct:production\n update-type: version-update:semver-major\n dependency-group: deck-loaders-luma\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump the deck-loaders-luma group across 1 directory with 4 updates"}},{"before":"75503def50aa6a00507a47639931d632b01b908b","after":null,"ref":"refs/heads/kyle/bump-duckdb","pushedAt":"2024-06-20T20:42:03.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"kylebarron","name":"Kyle Barron","path":"/kylebarron","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15164633?s=80&v=4"}},{"before":"a31267f213c1e50ac8ebb827df1786a7bd66328f","after":"1214223e0dbac7f082cc36211d7bddc0a50c131b","ref":"refs/heads/main","pushedAt":"2024-06-20T20:42:03.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"kylebarron","name":"Kyle Barron","path":"/kylebarron","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15164633?s=80&v=4"},"commit":{"message":"Fix tests with duckdb 0.10.3 (#552)\n\n~~Need to debug this~~\r\n\r\nTurned out this is an improvement/fix on the duckdb side to error before\r\ndoing a replacement scan across connections. Previously we had tests\r\nthat called back into the default connection, but those now fail unless\r\nthe user passes the `con` argument directly.\r\n\r\nAs long as users pass in the `con`, this just works already.","shortMessageHtmlLink":"Fix tests with duckdb 0.10.3 (#552)"}},{"before":"4d349280bfe91a51af5fd3d13ad6c7960cbe66f6","after":"75503def50aa6a00507a47639931d632b01b908b","ref":"refs/heads/kyle/bump-duckdb","pushedAt":"2024-06-20T20:33:17.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"kylebarron","name":"Kyle Barron","path":"/kylebarron","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15164633?s=80&v=4"},"commit":{"message":"Update tests","shortMessageHtmlLink":"Update tests"}},{"before":"7e89ead173c3e20ab7afb404740a5a4bcbe36f09","after":"0c23e2e4aeb04b760e14253eaf89f6dff02c1c7d","ref":"refs/heads/gh-pages","pushedAt":"2024-06-18T15:00:12.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"Deployed a31267f to v0.9.3 with MkDocs 1.6.0 and mike 2.1.1","shortMessageHtmlLink":"Deployed a31267f to v0.9.3 with MkDocs 1.6.0 and mike 2.1.1"}},{"before":null,"after":"4d349280bfe91a51af5fd3d13ad6c7960cbe66f6","ref":"refs/heads/kyle/bump-duckdb","pushedAt":"2024-06-18T14:59:33.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"kylebarron","name":"Kyle Barron","path":"/kylebarron","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15164633?s=80&v=4"},"commit":{"message":"tests fail with duckdb 0.10.3","shortMessageHtmlLink":"tests fail with duckdb 0.10.3"}},{"before":"9cbf9cf03272c1c99935810ad729019003a1dd55","after":null,"ref":"refs/heads/kyle/bump-mkdocstrings-version","pushedAt":"2024-06-18T14:57:33.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"kylebarron","name":"Kyle Barron","path":"/kylebarron","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15164633?s=80&v=4"}},{"before":"1d89c4fc696edce4022fa987a4b41329f6e3c27c","after":"a31267f213c1e50ac8ebb827df1786a7bd66328f","ref":"refs/heads/main","pushedAt":"2024-06-18T14:57:32.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"kylebarron","name":"Kyle Barron","path":"/kylebarron","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15164633?s=80&v=4"},"commit":{"message":"Bump mkdocstrings version (#551)\n\nInclude the new features in the public mkdocstrings-python version that\r\n[previously were only available in the insiders\r\nbuild](https://mkdocstrings.github.io/python/changelog/#180-2024-01-08).\r\n\r\nYou can click on links in the function signature and the TOC on the\r\nright has colored badges!\r\n\r\n\r\n![image](https://github.com/developmentseed/lonboard/assets/15164633/1fbf7a8d-d4a8-4da3-879a-41b7ac59dc04)","shortMessageHtmlLink":"Bump mkdocstrings version (#551)"}},{"before":null,"after":"9cbf9cf03272c1c99935810ad729019003a1dd55","ref":"refs/heads/kyle/bump-mkdocstrings-version","pushedAt":"2024-06-18T14:54:20.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"kylebarron","name":"Kyle Barron","path":"/kylebarron","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15164633?s=80&v=4"},"commit":{"message":"Bump mkdocstrings version","shortMessageHtmlLink":"Bump mkdocstrings version"}},{"before":"2e3fb68c95a272d116bdfb2d6ecb22736c4e6c91","after":null,"ref":"refs/heads/kyle/simplify-docstrings-inherited","pushedAt":"2024-06-18T14:42:06.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"kylebarron","name":"Kyle Barron","path":"/kylebarron","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15164633?s=80&v=4"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEc9vTTQA","startCursor":null,"endCursor":null}},"title":"Activity · developmentseed/lonboard"}