Skip to content

Fix TLS Issue with GitHub Commenting + More

Latest

Choose a tag to compare

@sbdchd sbdchd released this 12 Feb 23:27
· 2 commits to master since this release
f42cbd9

Fixed

  • github: fix commenting via rust_crypto features in jsonwebtoken (#929). Thanks @lokiwins!

Added

  • parser: parse leading from clauses but warn they're not supported (#927)

    from t select c;

    now gives:

       error[syntax-error]: Leading from clauses are not supported in Postgres
      β•­β–Έ stdin:1:1
      β”‚
    1 β”‚ from t select c;
      ╰╴━━━━━━
    

    We also check for solo from clauses:

    from t;

    gives:

      error[syntax-error]: Missing select clause
      β•­β–Έ stdin:1:1
      β”‚
    1 β”‚ from t
      ╰╴━
    
  • parser: fix parsing any/all/some in exprs (#926)

    select * from t order by all

    now properly errors:

       error[syntax-error]: expected expression in atom_expr
      β•­β–Έ stdin:1:26
      β”‚
    1 β”‚ select * from t order by all
      β•°β•΄                         ━

    Before it parsed all as a name reference.

  • ide: goto def func call in on conflict (#925)